Skip to content

Commit

Permalink
Feat/dfd trust boundary (#26)
Browse files Browse the repository at this point in the history
* DFD: added a draggable & resizable trust boundary node type (yet stateless)

* DFD: intruduces trust boundaries (coded the foundation)

* further coding to accomodate trust boundary rectangles

* removed a trailing space
  • Loading branch information
idumitru-cds authored Nov 22, 2023
1 parent 6be2b1d commit e17146d
Show file tree
Hide file tree
Showing 10 changed files with 517 additions and 505 deletions.
4 changes: 2 additions & 2 deletions src/components/application/ApplicationInfo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,15 @@ const ApplicationInfo: FC<EditableComponentBaseProps> = ({
header={<Header actions={actions}>{applicationInfo.name || 'Application Introduction'}</Header>}
>{editMode ? (<SpaceBetween direction='vertical' size='l'>
<FormField
label="Application name"
label="Application or feature name"
>
<Input
value={name}
onChange={event =>
setName(event.detail.value)
}
validateData={ApplicationInfoSchema.shape.name.safeParse}
placeholder='Enter application name'
placeholder='Enter application or feature name'
/>
</FormField>
<MarkdownEditor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ class FlowChartWithState extends React.Component<IFlowChartWithStateProps, IChar
<label>Description:</label>
<Input onChange={this.handleDescriptionInput} value={this.state.nodeDescription} type="text" />
</InputBox>
<InputBox>
<InputBox style={{ display: 'none' }}>
<label>Role:</label>
<Select
optionList={ nodeRoleOptions }
Expand Down
Loading

0 comments on commit e17146d

Please sign in to comment.