├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── documentation-update.md │ └── get-help.md └── workflows │ └── build.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE-SAMPLECODE ├── LICENSE-SUMMARY ├── README.md ├── components ├── alert.md ├── annotation-context.md ├── app-layout.md ├── area-chart.md ├── attribute-editor.md ├── autosuggest.md ├── badge.md ├── bar-chart.md ├── box.md ├── breadcrumb-group.md ├── button-dropdown.md ├── button.md ├── cards.md ├── checkbox.md ├── code-editor.md ├── collection-preferences.md ├── column-layout.md ├── container.md ├── date-picker.md ├── date-range-picker.md ├── expandable-section.md ├── flashbar.md ├── form-field.md ├── form.md ├── grid.md ├── header.md ├── help-panel.md ├── hotspot.md ├── icon.md ├── input.md ├── line-chart.md ├── link.md ├── mixed-line-bar-chart.md ├── modal.md ├── multiselect.md ├── pagination.md ├── pie-chart.md ├── popover.md ├── progress-bar.md ├── property-filter.md ├── radio-group.md ├── s3-resource-selector.md ├── segmented-control.md ├── select.md ├── side-navigation.md ├── space-between.md ├── spinner.md ├── split-panel.md ├── status-indicator.md ├── table.md ├── tabs.md ├── tag-editor.md ├── text-content.md ├── text-filter.md ├── textarea.md ├── tiles.md ├── time-input.md ├── toggle.md ├── token-group.md ├── top-navigation.md ├── tutorial-panel.md └── wizard.md ├── example.png └── example ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── src ├── App.tsx ├── main.tsx └── vite-env.d.ts ├── tsconfig.json └── vite.config.ts /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/.github/ISSUE_TEMPLATE/documentation-update.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/get-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/.github/ISSUE_TEMPLATE/get-help.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-SAMPLECODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/LICENSE-SAMPLECODE -------------------------------------------------------------------------------- /LICENSE-SUMMARY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/LICENSE-SUMMARY -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/README.md -------------------------------------------------------------------------------- /components/alert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/alert.md -------------------------------------------------------------------------------- /components/annotation-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/annotation-context.md -------------------------------------------------------------------------------- /components/app-layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/app-layout.md -------------------------------------------------------------------------------- /components/area-chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/area-chart.md -------------------------------------------------------------------------------- /components/attribute-editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/attribute-editor.md -------------------------------------------------------------------------------- /components/autosuggest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/autosuggest.md -------------------------------------------------------------------------------- /components/badge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/badge.md -------------------------------------------------------------------------------- /components/bar-chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/bar-chart.md -------------------------------------------------------------------------------- /components/box.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/box.md -------------------------------------------------------------------------------- /components/breadcrumb-group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/breadcrumb-group.md -------------------------------------------------------------------------------- /components/button-dropdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/button-dropdown.md -------------------------------------------------------------------------------- /components/button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/button.md -------------------------------------------------------------------------------- /components/cards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/cards.md -------------------------------------------------------------------------------- /components/checkbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/checkbox.md -------------------------------------------------------------------------------- /components/code-editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/code-editor.md -------------------------------------------------------------------------------- /components/collection-preferences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/collection-preferences.md -------------------------------------------------------------------------------- /components/column-layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/column-layout.md -------------------------------------------------------------------------------- /components/container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/container.md -------------------------------------------------------------------------------- /components/date-picker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/date-picker.md -------------------------------------------------------------------------------- /components/date-range-picker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/date-range-picker.md -------------------------------------------------------------------------------- /components/expandable-section.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/expandable-section.md -------------------------------------------------------------------------------- /components/flashbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/flashbar.md -------------------------------------------------------------------------------- /components/form-field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/form-field.md -------------------------------------------------------------------------------- /components/form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/form.md -------------------------------------------------------------------------------- /components/grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/grid.md -------------------------------------------------------------------------------- /components/header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/header.md -------------------------------------------------------------------------------- /components/help-panel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/help-panel.md -------------------------------------------------------------------------------- /components/hotspot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/hotspot.md -------------------------------------------------------------------------------- /components/icon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/icon.md -------------------------------------------------------------------------------- /components/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/input.md -------------------------------------------------------------------------------- /components/line-chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/line-chart.md -------------------------------------------------------------------------------- /components/link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/link.md -------------------------------------------------------------------------------- /components/mixed-line-bar-chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/mixed-line-bar-chart.md -------------------------------------------------------------------------------- /components/modal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/modal.md -------------------------------------------------------------------------------- /components/multiselect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/multiselect.md -------------------------------------------------------------------------------- /components/pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/pagination.md -------------------------------------------------------------------------------- /components/pie-chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/pie-chart.md -------------------------------------------------------------------------------- /components/popover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/popover.md -------------------------------------------------------------------------------- /components/progress-bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/progress-bar.md -------------------------------------------------------------------------------- /components/property-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/property-filter.md -------------------------------------------------------------------------------- /components/radio-group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/radio-group.md -------------------------------------------------------------------------------- /components/s3-resource-selector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/s3-resource-selector.md -------------------------------------------------------------------------------- /components/segmented-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/segmented-control.md -------------------------------------------------------------------------------- /components/select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/select.md -------------------------------------------------------------------------------- /components/side-navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/side-navigation.md -------------------------------------------------------------------------------- /components/space-between.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/space-between.md -------------------------------------------------------------------------------- /components/spinner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/spinner.md -------------------------------------------------------------------------------- /components/split-panel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/split-panel.md -------------------------------------------------------------------------------- /components/status-indicator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/status-indicator.md -------------------------------------------------------------------------------- /components/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/table.md -------------------------------------------------------------------------------- /components/tabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/tabs.md -------------------------------------------------------------------------------- /components/tag-editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/tag-editor.md -------------------------------------------------------------------------------- /components/text-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/text-content.md -------------------------------------------------------------------------------- /components/text-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/text-filter.md -------------------------------------------------------------------------------- /components/textarea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/textarea.md -------------------------------------------------------------------------------- /components/tiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/tiles.md -------------------------------------------------------------------------------- /components/time-input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/time-input.md -------------------------------------------------------------------------------- /components/toggle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/toggle.md -------------------------------------------------------------------------------- /components/token-group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/token-group.md -------------------------------------------------------------------------------- /components/top-navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/top-navigation.md -------------------------------------------------------------------------------- /components/tutorial-panel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/tutorial-panel.md -------------------------------------------------------------------------------- /components/wizard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/components/wizard.md -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/example.png -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/example/README.md -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/example/index.html -------------------------------------------------------------------------------- /example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/example/package-lock.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/example/src/main.tsx -------------------------------------------------------------------------------- /example/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/awsui-documentation/HEAD/example/vite.config.ts --------------------------------------------------------------------------------