@fluentui/web-components 2.5.11 → 3.0.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +62 -0
- package/CHANGELOG.json +64 -36
- package/CHANGELOG.md +14 -20
- package/build/{clean.js → clean.cjs} +0 -0
- package/dist/dts/badge/badge.d.ts +49 -0
- package/dist/dts/badge/badge.definition.d.ts +11 -0
- package/dist/dts/badge/badge.options.d.ts +73 -0
- package/dist/dts/badge/badge.stories.d.ts +10 -12
- package/dist/dts/badge/badge.styles.d.ts +4 -3
- package/dist/dts/badge/badge.template.d.ts +9 -0
- package/dist/{esm/color/recipe.js → dts/badge/define.d.ts} +0 -0
- package/dist/dts/badge/index.d.ts +5 -29
- package/dist/dts/counter-badge/counter-badge.d.ts +90 -0
- package/dist/dts/counter-badge/counter-badge.definition.d.ts +11 -0
- package/dist/dts/counter-badge/counter-badge.options.d.ts +69 -0
- package/dist/dts/counter-badge/counter-badge.stories.d.ts +14 -0
- package/dist/dts/counter-badge/counter-badge.styles.d.ts +4 -0
- package/dist/dts/counter-badge/counter-badge.template.d.ts +7 -0
- package/dist/dts/counter-badge/define.d.ts +1 -0
- package/dist/dts/counter-badge/index.d.ts +5 -0
- package/dist/dts/fluent-design-system.d.ts +5 -9
- package/dist/dts/index-rollup.d.ts +1 -8
- package/dist/dts/index.d.ts +5 -49
- package/dist/dts/progress-bar/define.d.ts +1 -0
- package/dist/dts/progress-bar/index.d.ts +5 -0
- package/dist/dts/progress-bar/progress-bar.d.ts +30 -0
- package/dist/dts/progress-bar/progress-bar.definition.d.ts +10 -0
- package/dist/dts/progress-bar/progress-bar.options.d.ts +41 -0
- package/dist/dts/progress-bar/progress-bar.stories.d.ts +9 -0
- package/dist/dts/progress-bar/progress-bar.styles.d.ts +4 -0
- package/dist/dts/progress-bar/progress-bar.template.d.ts +3 -0
- package/dist/dts/styles/index.d.ts +1 -5
- package/dist/dts/styles/partials/badge.partials.d.ts +28 -0
- package/dist/dts/styles/partials/index.d.ts +1 -0
- package/dist/dts/text/define.d.ts +1 -0
- package/dist/dts/text/index.d.ts +5 -0
- package/dist/dts/text/text.d.ts +91 -0
- package/dist/dts/text/text.definition.d.ts +10 -0
- package/dist/dts/text/text.options.d.ts +67 -0
- package/dist/dts/text/text.stories.d.ts +8 -0
- package/dist/dts/text/text.styles.d.ts +4 -0
- package/dist/dts/text/text.template.d.ts +6 -0
- package/dist/dts/theme/design-tokens.d.ts +379 -0
- package/dist/dts/theme/index.d.ts +2 -0
- package/dist/dts/theme/set-theme.d.ts +6 -0
- package/dist/dts/{anchored-region/anchored-region.stories.d.ts → theme/theme.stories.d.ts} +1 -2
- package/dist/esm/badge/badge.definition.js +18 -0
- package/dist/esm/badge/badge.js +42 -0
- package/dist/esm/badge/badge.options.js +45 -0
- package/dist/esm/badge/badge.stories.js +101 -20
- package/dist/esm/badge/badge.styles.js +25 -36
- package/dist/esm/badge/badge.template.js +14 -0
- package/dist/esm/badge/define.js +3 -0
- package/dist/esm/badge/index.js +5 -45
- package/dist/esm/counter-badge/counter-badge.definition.js +18 -0
- package/dist/esm/counter-badge/counter-badge.js +89 -0
- package/dist/esm/counter-badge/counter-badge.options.js +42 -0
- package/dist/esm/counter-badge/counter-badge.stories.js +102 -0
- package/dist/esm/counter-badge/counter-badge.styles.js +30 -0
- package/dist/esm/counter-badge/counter-badge.template.js +12 -0
- package/dist/esm/counter-badge/define.js +3 -0
- package/dist/esm/counter-badge/index.js +5 -0
- package/dist/esm/fluent-design-system.js +5 -11
- package/dist/esm/index-rollup.js +1 -12
- package/dist/esm/index.js +5 -49
- package/dist/esm/progress-bar/define.js +3 -0
- package/dist/esm/progress-bar/index.js +5 -0
- package/dist/esm/progress-bar/progress-bar.definition.js +17 -0
- package/dist/esm/progress-bar/progress-bar.js +18 -0
- package/dist/esm/progress-bar/progress-bar.options.js +25 -0
- package/dist/esm/progress-bar/progress-bar.stories.js +60 -0
- package/dist/esm/progress-bar/progress-bar.styles.js +155 -0
- package/dist/esm/progress-bar/progress-bar.template.js +5 -0
- package/dist/esm/styles/index.js +1 -5
- package/dist/esm/styles/partials/badge.partials.js +272 -0
- package/dist/esm/styles/partials/index.js +1 -0
- package/dist/esm/text/define.js +3 -0
- package/dist/esm/text/index.js +5 -0
- package/dist/esm/text/text.definition.js +17 -0
- package/dist/esm/text/text.js +91 -0
- package/dist/esm/text/text.options.js +45 -0
- package/dist/esm/text/text.stories.js +111 -0
- package/dist/esm/text/text.styles.js +104 -0
- package/dist/esm/text/text.template.js +5 -0
- package/dist/esm/theme/design-tokens.js +381 -0
- package/dist/esm/theme/index.js +2 -0
- package/dist/esm/theme/set-theme.js +11 -0
- package/dist/esm/theme/theme.stories.js +21 -0
- package/dist/fluent-web-components.api.json +6683 -12477
- package/dist/tsdoc-metadata.json +1 -1
- package/dist/web-components.d.ts +895 -2490
- package/dist/web-components.js +5181 -20475
- package/dist/web-components.min.js +269 -239
- package/docs/api-report.md +783 -1074
- package/package.json +53 -17
- package/public/theme-switch.ts +13 -0
- package/rollup.config.js +5 -0
- package/dist/dts/_docs/design-system/color-explorer/app.d.ts +0 -25
- package/dist/dts/_docs/design-system/color-explorer/colors.d.ts +0 -13
- package/dist/dts/_docs/design-system/color-explorer/component-types.d.ts +0 -6
- package/dist/dts/_docs/design-system/color-explorer/components/color-block.d.ts +0 -10
- package/dist/dts/_docs/design-system/color-explorer/components/color-picker/color-picker.d.ts +0 -190
- package/dist/dts/_docs/design-system/color-explorer/components/color-picker/color-picker.form-associated.d.ts +0 -15
- package/dist/dts/_docs/design-system/color-explorer/components/color-picker/color-picker.styles.d.ts +0 -3
- package/dist/dts/_docs/design-system/color-explorer/components/color-picker/color-picker.template.d.ts +0 -8
- package/dist/dts/_docs/design-system/color-explorer/components/color-picker/index.d.ts +0 -9
- package/dist/dts/_docs/design-system/color-explorer/components/control-pane/control-pane.d.ts +0 -8
- package/dist/dts/_docs/design-system/color-explorer/components/control-pane/control-pane.styles.d.ts +0 -1
- package/dist/dts/_docs/design-system/color-explorer/components/control-pane/control-pane.template.d.ts +0 -2
- package/dist/dts/_docs/design-system/color-explorer/components/control-pane/index.d.ts +0 -6
- package/dist/dts/_docs/design-system/color-explorer/components/gradient/gradient.d.ts +0 -5
- package/dist/dts/_docs/design-system/color-explorer/components/gradient/gradient.styles.d.ts +0 -1
- package/dist/dts/_docs/design-system/color-explorer/components/gradient/gradient.template.d.ts +0 -2
- package/dist/dts/_docs/design-system/color-explorer/components/gradient/index.d.ts +0 -6
- package/dist/dts/_docs/design-system/color-explorer/components/layer-background/index.d.ts +0 -21
- package/dist/dts/_docs/design-system/color-explorer/components/sample-app/index.d.ts +0 -6
- package/dist/dts/_docs/design-system/color-explorer/components/sample-app/sample-app.d.ts +0 -3
- package/dist/dts/_docs/design-system/color-explorer/components/sample-app/sample-app.styles.d.ts +0 -1
- package/dist/dts/_docs/design-system/color-explorer/components/sample-app/sample-app.template.d.ts +0 -1
- package/dist/dts/_docs/design-system/color-explorer/components/sample-page/index.d.ts +0 -6
- package/dist/dts/_docs/design-system/color-explorer/components/sample-page/sample-page.d.ts +0 -3
- package/dist/dts/_docs/design-system/color-explorer/components/sample-page/sample-page.styles.d.ts +0 -1
- package/dist/dts/_docs/design-system/color-explorer/components/sample-page/sample-page.template.d.ts +0 -1
- package/dist/dts/_docs/design-system/color-explorer/components/swatch.d.ts +0 -30
- package/dist/dts/_docs/design-system/color-explorer/custom-elements.d.ts +0 -7
- package/dist/dts/_docs/design-system/color-explorer/index.d.ts +0 -2
- package/dist/dts/accordion/accordion-item/accordion-item.styles.d.ts +0 -3
- package/dist/dts/accordion/accordion-item/index.d.ts +0 -17
- package/dist/dts/accordion/accordion.stories.d.ts +0 -15
- package/dist/dts/accordion/accordion.styles.d.ts +0 -3
- package/dist/dts/accordion/index.d.ts +0 -22
- package/dist/dts/anchor/anchor.stories.d.ts +0 -14
- package/dist/dts/anchor/anchor.styles.d.ts +0 -3
- package/dist/dts/anchor/index.d.ts +0 -49
- package/dist/dts/anchored-region/anchored-region.styles.d.ts +0 -3
- package/dist/dts/anchored-region/index.d.ts +0 -21
- package/dist/dts/breadcrumb/breadcrumb.stories.d.ts +0 -15
- package/dist/dts/breadcrumb/breadcrumb.styles.d.ts +0 -3
- package/dist/dts/breadcrumb/index.d.ts +0 -21
- package/dist/dts/breadcrumb-item/breadcrumb-item.stories.d.ts +0 -15
- package/dist/dts/breadcrumb-item/breadcrumb-item.styles.d.ts +0 -3
- package/dist/dts/breadcrumb-item/index.d.ts +0 -21
- package/dist/dts/button/button.stories.d.ts +0 -21
- package/dist/dts/button/button.styles.d.ts +0 -3
- package/dist/dts/button/index.d.ts +0 -48
- package/dist/dts/calendar/calendar.stories.d.ts +0 -86
- package/dist/dts/calendar/calendar.styles.d.ts +0 -7
- package/dist/dts/calendar/index.d.ts +0 -18
- package/dist/dts/card/card.stories.d.ts +0 -15
- package/dist/dts/card/card.styles.d.ts +0 -3
- package/dist/dts/card/index.d.ts +0 -46
- package/dist/dts/checkbox/checkbox.stories.d.ts +0 -28
- package/dist/dts/checkbox/checkbox.styles.d.ts +0 -3
- package/dist/dts/checkbox/index.d.ts +0 -16
- package/dist/dts/color/palette.d.ts +0 -73
- package/dist/dts/color/recipe.d.ts +0 -20
- package/dist/dts/color/recipes/contrast-and-delta-swatch-set.d.ts +0 -11
- package/dist/dts/color/recipes/contrast-swatch.d.ts +0 -12
- package/dist/dts/color/recipes/delta-swatch-set.d.ts +0 -36
- package/dist/dts/color/recipes/delta-swatch.d.ts +0 -12
- package/dist/dts/color/recipes/focus-stroke.d.ts +0 -10
- package/dist/dts/color/recipes/foreground-on-accent.d.ts +0 -11
- package/dist/dts/color/recipes/gradient-shadow-stroke.d.ts +0 -7
- package/dist/dts/color/recipes/gradient-swatch.d.ts +0 -36
- package/dist/dts/color/recipes/neutral-layer-1.d.ts +0 -10
- package/dist/dts/color/recipes/neutral-layer-2.d.ts +0 -6
- package/dist/dts/color/recipes/neutral-layer-3.d.ts +0 -6
- package/dist/dts/color/recipes/neutral-layer-4.d.ts +0 -6
- package/dist/dts/color/recipes/neutral-layer-floating.d.ts +0 -6
- package/dist/dts/color/recipes/underline-stroke.d.ts +0 -7
- package/dist/dts/color/swatch.d.ts +0 -31
- package/dist/dts/color/utilities/base-layer-luminance.d.ts +0 -11
- package/dist/dts/color/utilities/binary-search.d.ts +0 -4
- package/dist/dts/color/utilities/color-constants.d.ts +0 -14
- package/dist/dts/color/utilities/direction-by-is-dark.d.ts +0 -5
- package/dist/dts/color/utilities/is-dark.d.ts +0 -9
- package/dist/dts/color/utilities/relative-luminance.d.ts +0 -13
- package/dist/dts/combobox/combobox.stories.d.ts +0 -36
- package/dist/dts/combobox/combobox.styles.d.ts +0 -3
- package/dist/dts/combobox/index.d.ts +0 -43
- package/dist/dts/component-definitions.d.ts +0 -43
- package/dist/dts/custom-elements.d.ts +0 -103
- package/dist/dts/data-grid/data-grid-cell.styles.d.ts +0 -3
- package/dist/dts/data-grid/data-grid-row.styles.d.ts +0 -3
- package/dist/dts/data-grid/data-grid.stories.d.ts +0 -15
- package/dist/dts/data-grid/data-grid.styles.d.ts +0 -3
- package/dist/dts/data-grid/index.d.ts +0 -45
- package/dist/dts/design-system-provider/index.d.ts +0 -582
- package/dist/dts/design-tokens.d.ts +0 -519
- package/dist/dts/dialog/dialog.stories.d.ts +0 -25
- package/dist/dts/dialog/dialog.styles.d.ts +0 -3
- package/dist/dts/dialog/index.d.ts +0 -21
- package/dist/dts/divider/divider.stories.d.ts +0 -6
- package/dist/dts/divider/divider.styles.d.ts +0 -3
- package/dist/dts/divider/index.d.ts +0 -21
- package/dist/dts/flipper/flipper.stories.d.ts +0 -17
- package/dist/dts/flipper/flipper.styles.d.ts +0 -3
- package/dist/dts/flipper/index.d.ts +0 -21
- package/dist/dts/horizontal-scroll/horizontal-scroll.stories.d.ts +0 -15
- package/dist/dts/horizontal-scroll/horizontal-scroll.styles.d.ts +0 -12
- package/dist/dts/horizontal-scroll/index.d.ts +0 -25
- package/dist/dts/listbox/index.d.ts +0 -19
- package/dist/dts/listbox/listbox.stories.d.ts +0 -6
- package/dist/dts/listbox/listbox.styles.d.ts +0 -3
- package/dist/dts/listbox-option/index.d.ts +0 -17
- package/dist/dts/listbox-option/listbox-option.stories.d.ts +0 -23
- package/dist/dts/listbox-option/listbox-option.styles.d.ts +0 -3
- package/dist/dts/menu/index.d.ts +0 -26
- package/dist/dts/menu/menu.stories.d.ts +0 -6
- package/dist/dts/menu/menu.styles.d.ts +0 -3
- package/dist/dts/menu-item/index.d.ts +0 -21
- package/dist/dts/menu-item/menu-item.stories.d.ts +0 -18
- package/dist/dts/menu-item/menu-item.styles.d.ts +0 -3
- package/dist/dts/number-field/index.d.ts +0 -41
- package/dist/dts/number-field/number-field.stories.d.ts +0 -71
- package/dist/dts/number-field/number-field.styles.d.ts +0 -3
- package/dist/dts/progress/index.d.ts +0 -2
- package/dist/dts/progress/progress/index.d.ts +0 -22
- package/dist/dts/progress/progress/progress.stories.d.ts +0 -15
- package/dist/dts/progress/progress/progress.styles.d.ts +0 -3
- package/dist/dts/progress/progress-ring/index.d.ts +0 -22
- package/dist/dts/progress/progress-ring/progress-ring.stories.d.ts +0 -15
- package/dist/dts/progress/progress-ring/progress-ring.styles.d.ts +0 -3
- package/dist/dts/radio/index.d.ts +0 -21
- package/dist/dts/radio/radio.stories.d.ts +0 -23
- package/dist/dts/radio/radio.styles.d.ts +0 -3
- package/dist/dts/radio-group/index.d.ts +0 -21
- package/dist/dts/radio-group/radio-group.stories.d.ts +0 -18
- package/dist/dts/radio-group/radio-group.styles.d.ts +0 -3
- package/dist/dts/search/index.d.ts +0 -38
- package/dist/dts/search/search.stories.d.ts +0 -75
- package/dist/dts/search/search.styles.d.ts +0 -3
- package/dist/dts/search/search.template.d.ts +0 -6
- package/dist/dts/select/index.d.ts +0 -44
- package/dist/dts/select/select.stories.d.ts +0 -28
- package/dist/dts/select/select.styles.d.ts +0 -13
- package/dist/dts/skeleton/index.d.ts +0 -21
- package/dist/dts/skeleton/skeleton.stories.d.ts +0 -20
- package/dist/dts/skeleton/skeleton.styles.d.ts +0 -3
- package/dist/dts/slider/index.d.ts +0 -21
- package/dist/dts/slider/slider.stories.d.ts +0 -14
- package/dist/dts/slider/slider.styles.d.ts +0 -3
- package/dist/dts/slider-label/index.d.ts +0 -21
- package/dist/dts/slider-label/slider-label.stories.d.ts +0 -23
- package/dist/dts/slider-label/slider-label.styles.d.ts +0 -3
- package/dist/dts/styles/direction.d.ts +0 -34
- package/dist/dts/styles/elevation.d.ts +0 -64
- package/dist/dts/styles/focus.d.ts +0 -13
- package/dist/dts/styles/patterns/button.styles.d.ts +0 -31
- package/dist/dts/styles/patterns/index.d.ts +0 -3
- package/dist/dts/styles/patterns/input.styles.d.ts +0 -30
- package/dist/dts/styles/patterns/type-ramp.d.ts +0 -18
- package/dist/dts/styles/size.d.ts +0 -7
- package/dist/dts/switch/index.d.ts +0 -21
- package/dist/dts/switch/switch.stories.d.ts +0 -18
- package/dist/dts/switch/switch.styles.d.ts +0 -3
- package/dist/dts/tabs/index.d.ts +0 -23
- package/dist/dts/tabs/tab/index.d.ts +0 -21
- package/dist/dts/tabs/tab/tab.styles.d.ts +0 -3
- package/dist/dts/tabs/tab-panel/index.d.ts +0 -21
- package/dist/dts/tabs/tab-panel/tab-panel.styles.d.ts +0 -3
- package/dist/dts/tabs/tabs.stories.d.ts +0 -19
- package/dist/dts/tabs/tabs.styles.d.ts +0 -3
- package/dist/dts/text-area/index.d.ts +0 -45
- package/dist/dts/text-area/text-area.stories.d.ts +0 -41
- package/dist/dts/text-area/text-area.styles.d.ts +0 -3
- package/dist/dts/text-field/index.d.ts +0 -45
- package/dist/dts/text-field/text-field.stories.d.ts +0 -81
- package/dist/dts/text-field/text-field.styles.d.ts +0 -3
- package/dist/dts/toolbar/index.d.ts +0 -17
- package/dist/dts/toolbar/toolbar.stories.d.ts +0 -9
- package/dist/dts/toolbar/toolbar.styles.d.ts +0 -3
- package/dist/dts/tooltip/index.d.ts +0 -21
- package/dist/dts/tooltip/tooltip.stories.d.ts +0 -14
- package/dist/dts/tooltip/tooltip.styles.d.ts +0 -3
- package/dist/dts/tree-item/index.d.ts +0 -22
- package/dist/dts/tree-item/tree-item.stories.d.ts +0 -18
- package/dist/dts/tree-item/tree-item.styles.d.ts +0 -4
- package/dist/dts/tree-view/index.d.ts +0 -22
- package/dist/dts/tree-view/tree-view.stories.d.ts +0 -13
- package/dist/dts/tree-view/tree-view.styles.d.ts +0 -3
- package/dist/dts/utilities/behaviors.d.ts +0 -12
- package/dist/dts/utilities/type-ramp.d.ts +0 -12
- package/dist/esm/_docs/design-system/color-explorer/app.js +0 -247
- package/dist/esm/_docs/design-system/color-explorer/colors.js +0 -24
- package/dist/esm/_docs/design-system/color-explorer/component-types.js +0 -7
- package/dist/esm/_docs/design-system/color-explorer/components/color-block.js +0 -408
- package/dist/esm/_docs/design-system/color-explorer/components/color-picker/color-picker.form-associated.js +0 -16
- package/dist/esm/_docs/design-system/color-explorer/components/color-picker/color-picker.js +0 -297
- package/dist/esm/_docs/design-system/color-explorer/components/color-picker/color-picker.styles.js +0 -124
- package/dist/esm/_docs/design-system/color-explorer/components/color-picker/color-picker.template.js +0 -130
- package/dist/esm/_docs/design-system/color-explorer/components/color-picker/index.js +0 -15
- package/dist/esm/_docs/design-system/color-explorer/components/control-pane/control-pane.js +0 -24
- package/dist/esm/_docs/design-system/color-explorer/components/control-pane/control-pane.styles.js +0 -19
- package/dist/esm/_docs/design-system/color-explorer/components/control-pane/control-pane.template.js +0 -52
- package/dist/esm/_docs/design-system/color-explorer/components/control-pane/index.js +0 -18
- package/dist/esm/_docs/design-system/color-explorer/components/gradient/gradient.js +0 -11
- package/dist/esm/_docs/design-system/color-explorer/components/gradient/gradient.styles.js +0 -31
- package/dist/esm/_docs/design-system/color-explorer/components/gradient/gradient.template.js +0 -21
- package/dist/esm/_docs/design-system/color-explorer/components/gradient/index.js +0 -18
- package/dist/esm/_docs/design-system/color-explorer/components/layer-background/index.js +0 -70
- package/dist/esm/_docs/design-system/color-explorer/components/sample-app/index.js +0 -18
- package/dist/esm/_docs/design-system/color-explorer/components/sample-app/sample-app.js +0 -3
- package/dist/esm/_docs/design-system/color-explorer/components/sample-app/sample-app.styles.js +0 -166
- package/dist/esm/_docs/design-system/color-explorer/components/sample-app/sample-app.template.js +0 -97
- package/dist/esm/_docs/design-system/color-explorer/components/sample-page/index.js +0 -18
- package/dist/esm/_docs/design-system/color-explorer/components/sample-page/sample-page.js +0 -3
- package/dist/esm/_docs/design-system/color-explorer/components/sample-page/sample-page.styles.js +0 -130
- package/dist/esm/_docs/design-system/color-explorer/components/sample-page/sample-page.template.js +0 -82
- package/dist/esm/_docs/design-system/color-explorer/components/swatch.js +0 -163
- package/dist/esm/_docs/design-system/color-explorer/custom-elements.js +0 -3
- package/dist/esm/_docs/design-system/color-explorer/index.js +0 -14
- package/dist/esm/accordion/accordion-item/accordion-item.styles.js +0 -154
- package/dist/esm/accordion/accordion-item/accordion-item.vscode.definition.json +0 -67
- package/dist/esm/accordion/accordion-item/index.js +0 -32
- package/dist/esm/accordion/accordion.stories.js +0 -66
- package/dist/esm/accordion/accordion.styles.js +0 -13
- package/dist/esm/accordion/accordion.vscode.definition.json +0 -35
- package/dist/esm/accordion/index.js +0 -27
- package/dist/esm/anchor/anchor.stories.js +0 -34
- package/dist/esm/anchor/anchor.styles.js +0 -5
- package/dist/esm/anchor/anchor.vscode.definition.json +0 -138
- package/dist/esm/anchor/index.js +0 -67
- package/dist/esm/anchored-region/anchored-region.stories.js +0 -133
- package/dist/esm/anchored-region/anchored-region.styles.js +0 -7
- package/dist/esm/anchored-region/anchored-region.vscode.definition.json +0 -140
- package/dist/esm/anchored-region/index.js +0 -26
- package/dist/esm/badge/badge.vscode.definition.json +0 -60
- package/dist/esm/breadcrumb/breadcrumb.stories.js +0 -20
- package/dist/esm/breadcrumb/breadcrumb.styles.js +0 -13
- package/dist/esm/breadcrumb/breadcrumb.vscode.definition.json +0 -18
- package/dist/esm/breadcrumb/index.js +0 -26
- package/dist/esm/breadcrumb-item/breadcrumb-item.stories.js +0 -16
- package/dist/esm/breadcrumb-item/breadcrumb-item.styles.js +0 -96
- package/dist/esm/breadcrumb-item/breadcrumb-item.vscode.definition.json +0 -50
- package/dist/esm/breadcrumb-item/index.js +0 -34
- package/dist/esm/button/button.stories.js +0 -40
- package/dist/esm/button/button.styles.js +0 -24
- package/dist/esm/button/button.vscode.definition.json +0 -158
- package/dist/esm/button/index.js +0 -67
- package/dist/esm/calendar/calendar.stories.js +0 -115
- package/dist/esm/calendar/calendar.styles.js +0 -132
- package/dist/esm/calendar/index.js +0 -31
- package/dist/esm/card/card.stories.js +0 -30
- package/dist/esm/card/card.styles.js +0 -28
- package/dist/esm/card/card.vscode.definition.json +0 -33
- package/dist/esm/card/index.js +0 -79
- package/dist/esm/checkbox/checkbox.stories.js +0 -43
- package/dist/esm/checkbox/checkbox.styles.js +0 -161
- package/dist/esm/checkbox/checkbox.vscode.definition.json +0 -69
- package/dist/esm/checkbox/index.js +0 -31
- package/dist/esm/color/palette.js +0 -250
- package/dist/esm/color/recipes/contrast-and-delta-swatch-set.js +0 -28
- package/dist/esm/color/recipes/contrast-swatch.js +0 -12
- package/dist/esm/color/recipes/delta-swatch-set.js +0 -53
- package/dist/esm/color/recipes/delta-swatch.js +0 -13
- package/dist/esm/color/recipes/focus-stroke.js +0 -14
- package/dist/esm/color/recipes/foreground-on-accent.js +0 -21
- package/dist/esm/color/recipes/gradient-shadow-stroke.js +0 -54
- package/dist/esm/color/recipes/gradient-swatch.js +0 -36
- package/dist/esm/color/recipes/neutral-layer-1.js +0 -13
- package/dist/esm/color/recipes/neutral-layer-2.js +0 -7
- package/dist/esm/color/recipes/neutral-layer-3.js +0 -7
- package/dist/esm/color/recipes/neutral-layer-4.js +0 -7
- package/dist/esm/color/recipes/neutral-layer-floating.js +0 -7
- package/dist/esm/color/recipes/underline-stroke.js +0 -31
- package/dist/esm/color/swatch.js +0 -53
- package/dist/esm/color/utilities/base-layer-luminance.js +0 -14
- package/dist/esm/color/utilities/binary-search.js +0 -15
- package/dist/esm/color/utilities/color-constants.js +0 -19
- package/dist/esm/color/utilities/direction-by-is-dark.js +0 -7
- package/dist/esm/color/utilities/is-dark.js +0 -17
- package/dist/esm/color/utilities/relative-luminance.js +0 -8
- package/dist/esm/combobox/combobox.stories.js +0 -84
- package/dist/esm/combobox/combobox.styles.js +0 -40
- package/dist/esm/combobox/combobox.vscode.definition.json +0 -121
- package/dist/esm/combobox/index.js +0 -63
- package/dist/esm/component-definitions.js +0 -84
- package/dist/esm/custom-elements.js +0 -102
- package/dist/esm/data-grid/data-grid-cell.styles.js +0 -36
- package/dist/esm/data-grid/data-grid-cell.vscode.definition.json +0 -34
- package/dist/esm/data-grid/data-grid-row.styles.js +0 -24
- package/dist/esm/data-grid/data-grid-row.vscode.definition.json +0 -34
- package/dist/esm/data-grid/data-grid.stories.js +0 -381
- package/dist/esm/data-grid/data-grid.styles.js +0 -8
- package/dist/esm/data-grid/data-grid.vscode.definition.json +0 -34
- package/dist/esm/data-grid/index.js +0 -60
- package/dist/esm/design-system-provider/design-system-provider.vscode.definition.json +0 -510
- package/dist/esm/design-system-provider/index.js +0 -518
- package/dist/esm/design-tokens.js +0 -685
- package/dist/esm/dialog/dialog.stories.js +0 -36
- package/dist/esm/dialog/dialog.styles.js +0 -47
- package/dist/esm/dialog/dialog.vscode.definition.json +0 -67
- package/dist/esm/dialog/index.js +0 -26
- package/dist/esm/divider/divider.stories.js +0 -17
- package/dist/esm/divider/divider.styles.js +0 -11
- package/dist/esm/divider/divider.vscode.definition.json +0 -29
- package/dist/esm/divider/index.js +0 -26
- package/dist/esm/flipper/flipper.stories.js +0 -31
- package/dist/esm/flipper/flipper.styles.js +0 -84
- package/dist/esm/flipper/flipper.vscode.definition.json +0 -56
- package/dist/esm/flipper/index.js +0 -36
- package/dist/esm/horizontal-scroll/horizontal-scroll.stories.js +0 -81
- package/dist/esm/horizontal-scroll/horizontal-scroll.styles.js +0 -138
- package/dist/esm/horizontal-scroll/horizontal-scroll.vscode.definition.json +0 -85
- package/dist/esm/horizontal-scroll/index.js +0 -47
- package/dist/esm/listbox/index.js +0 -24
- package/dist/esm/listbox/listbox.stories.js +0 -29
- package/dist/esm/listbox/listbox.styles.js +0 -21
- package/dist/esm/listbox/listbox.vscode.definition.json +0 -40
- package/dist/esm/listbox-option/index.js +0 -22
- package/dist/esm/listbox-option/listbox-option.stories.js +0 -38
- package/dist/esm/listbox-option/listbox-option.styles.js +0 -133
- package/dist/esm/listbox-option/listbox-option.vscode.definition.json +0 -45
- package/dist/esm/menu/index.js +0 -36
- package/dist/esm/menu/menu.stories.js +0 -56
- package/dist/esm/menu/menu.styles.js +0 -42
- package/dist/esm/menu/menu.vscode.definition.json +0 -18
- package/dist/esm/menu-item/index.js +0 -41
- package/dist/esm/menu-item/menu-item.stories.js +0 -34
- package/dist/esm/menu-item/menu-item.styles.js +0 -265
- package/dist/esm/menu-item/menu-item.vscode.definition.json +0 -82
- package/dist/esm/number-field/index.js +0 -57
- package/dist/esm/number-field/number-field.stories.js +0 -83
- package/dist/esm/number-field/number-field.styles.js +0 -71
- package/dist/esm/number-field/number-field.vscode.definition.json +0 -167
- package/dist/esm/progress/index.js +0 -2
- package/dist/esm/progress/progress/index.js +0 -33
- package/dist/esm/progress/progress/progress.stories.js +0 -59
- package/dist/esm/progress/progress/progress.styles.js +0 -119
- package/dist/esm/progress/progress/progress.vscode.definition.json +0 -56
- package/dist/esm/progress/progress-ring/index.js +0 -45
- package/dist/esm/progress/progress-ring/progress-ring.stories.js +0 -59
- package/dist/esm/progress/progress-ring/progress-ring.styles.js +0 -79
- package/dist/esm/progress/progress-ring/progress-ring.vscode.definition.json +0 -56
- package/dist/esm/radio/index.js +0 -31
- package/dist/esm/radio/radio.stories.js +0 -41
- package/dist/esm/radio/radio.styles.js +0 -152
- package/dist/esm/radio/radio.vscode.definition.json +0 -63
- package/dist/esm/radio-group/index.js +0 -26
- package/dist/esm/radio-group/radio-group.stories.js +0 -42
- package/dist/esm/radio-group/radio-group.styles.js +0 -21
- package/dist/esm/radio-group/radio-group.vscode.definition.json +0 -64
- package/dist/esm/search/index.js +0 -52
- package/dist/esm/search/search.stories.js +0 -83
- package/dist/esm/search/search.styles.js +0 -104
- package/dist/esm/search/search.template.js +0 -82
- package/dist/esm/search/search.vscode.definition.json +0 -145
- package/dist/esm/select/index.js +0 -61
- package/dist/esm/select/select.stories.js +0 -53
- package/dist/esm/select/select.styles.js +0 -139
- package/dist/esm/select/select.vscode.definition.json +0 -79
- package/dist/esm/skeleton/index.js +0 -26
- package/dist/esm/skeleton/skeleton.stories.js +0 -37
- package/dist/esm/skeleton/skeleton.styles.js +0 -77
- package/dist/esm/skeleton/skeleton.vscode.definition.json +0 -49
- package/dist/esm/slider/index.js +0 -29
- package/dist/esm/slider/slider.stories.js +0 -40
- package/dist/esm/slider/slider.styles.js +0 -162
- package/dist/esm/slider/slider.vscode.definition.json +0 -101
- package/dist/esm/slider-label/index.js +0 -26
- package/dist/esm/slider-label/slider-label.stories.js +0 -40
- package/dist/esm/slider-label/slider-label.styles.js +0 -77
- package/dist/esm/slider-label/slider-label.vscode.definition.json +0 -43
- package/dist/esm/styles/direction.js +0 -73
- package/dist/esm/styles/elevation.js +0 -74
- package/dist/esm/styles/focus.js +0 -21
- package/dist/esm/styles/patterns/button.styles.js +0 -427
- package/dist/esm/styles/patterns/index.js +0 -3
- package/dist/esm/styles/patterns/input.styles.js +0 -227
- package/dist/esm/styles/patterns/type-ramp.js +0 -74
- package/dist/esm/styles/size.js +0 -9
- package/dist/esm/switch/index.js +0 -31
- package/dist/esm/switch/switch.stories.js +0 -42
- package/dist/esm/switch/switch.styles.js +0 -213
- package/dist/esm/switch/switch.vscode.definition.json +0 -68
- package/dist/esm/tabs/index.js +0 -28
- package/dist/esm/tabs/tab/index.js +0 -26
- package/dist/esm/tabs/tab/tab.styles.js +0 -75
- package/dist/esm/tabs/tab/tab.vscode.definition.json +0 -17
- package/dist/esm/tabs/tab-panel/index.js +0 -26
- package/dist/esm/tabs/tab-panel/tab-panel.styles.js +0 -11
- package/dist/esm/tabs/tab-panel/tab-panel.vscode.definition.json +0 -17
- package/dist/esm/tabs/tabs.stories.js +0 -105
- package/dist/esm/tabs/tabs.styles.js +0 -98
- package/dist/esm/tabs/tabs.vscode.definition.json +0 -50
- package/dist/esm/text-area/index.js +0 -56
- package/dist/esm/text-area/text-area.stories.js +0 -56
- package/dist/esm/text-area/text-area.styles.js +0 -39
- package/dist/esm/text-area/text-area.vscode.definition.json +0 -141
- package/dist/esm/text-field/index.js +0 -56
- package/dist/esm/text-field/text-field.stories.js +0 -88
- package/dist/esm/text-field/text-field.styles.js +0 -48
- package/dist/esm/text-field/text-field.vscode.definition.json +0 -150
- package/dist/esm/toolbar/index.js +0 -23
- package/dist/esm/toolbar/toolbar.stories.js +0 -9
- package/dist/esm/toolbar/toolbar.styles.js +0 -73
- package/dist/esm/tooltip/index.js +0 -31
- package/dist/esm/tooltip/tooltip.stories.js +0 -34
- package/dist/esm/tooltip/tooltip.styles.js +0 -107
- package/dist/esm/tooltip/tooltip.vscode.definition.json +0 -56
- package/dist/esm/tree-item/index.js +0 -32
- package/dist/esm/tree-item/tree-item.stories.js +0 -34
- package/dist/esm/tree-item/tree-item.styles.js +0 -227
- package/dist/esm/tree-item/tree-item.vscode.definition.json +0 -63
- package/dist/esm/tree-view/index.js +0 -27
- package/dist/esm/tree-view/tree-view.stories.js +0 -99
- package/dist/esm/tree-view/tree-view.styles.js +0 -14
- package/dist/esm/tree-view/tree-view.vscode.definition.json +0 -26
- package/dist/esm/utilities/behaviors.js +0 -13
- package/dist/esm/utilities/type-ramp.js +0 -12
- package/karma.conf.js +0 -147
- package/public/switches.ts +0 -24
package/docs/api-report.md
CHANGED
|
@@ -4,1730 +4,1439 @@
|
|
|
4
4
|
|
|
5
5
|
```ts
|
|
6
6
|
|
|
7
|
-
import { Accordion } from '@microsoft/fast-foundation';
|
|
8
|
-
import { AccordionItem } from '@microsoft/fast-foundation';
|
|
9
|
-
import { AccordionItemOptions } from '@microsoft/fast-foundation';
|
|
10
|
-
import { Anchor as Anchor_2 } from '@microsoft/fast-foundation';
|
|
11
|
-
import { AnchoredRegion } from '@microsoft/fast-foundation';
|
|
12
|
-
import { Badge as Badge_2 } from '@microsoft/fast-foundation';
|
|
13
|
-
import { BaseProgress } from '@microsoft/fast-foundation';
|
|
14
|
-
import { Behavior } from '@microsoft/fast-element';
|
|
15
|
-
import { Breadcrumb } from '@microsoft/fast-foundation';
|
|
16
|
-
import { BreadcrumbItem } from '@microsoft/fast-foundation';
|
|
17
|
-
import { BreadcrumbItemOptions } from '@microsoft/fast-foundation';
|
|
18
|
-
import { Button as Button_2 } from '@microsoft/fast-foundation';
|
|
19
|
-
import { CalendarOptions } from '@microsoft/fast-foundation';
|
|
20
|
-
import { Card as Card_2 } from '@microsoft/fast-foundation';
|
|
21
|
-
import { CheckboxOptions } from '@microsoft/fast-foundation';
|
|
22
|
-
import { Combobox as Combobox_2 } from '@microsoft/fast-foundation';
|
|
23
|
-
import { ComboboxOptions } from '@microsoft/fast-foundation';
|
|
24
|
-
import { Constructable } from '@microsoft/fast-element';
|
|
25
|
-
import type { Container } from '@microsoft/fast-foundation';
|
|
26
7
|
import { CSSDesignToken } from '@microsoft/fast-foundation';
|
|
27
|
-
import { CSSDirective } from '@microsoft/fast-element';
|
|
28
|
-
import { DataGrid } from '@microsoft/fast-foundation';
|
|
29
|
-
import { DataGridCell } from '@microsoft/fast-foundation';
|
|
30
|
-
import { DataGridRow } from '@microsoft/fast-foundation';
|
|
31
|
-
import { DesignSystem } from '@microsoft/fast-foundation';
|
|
32
|
-
import { DesignToken } from '@microsoft/fast-foundation';
|
|
33
|
-
import { Dialog } from '@microsoft/fast-foundation';
|
|
34
|
-
import { Direction } from '@microsoft/fast-web-utilities';
|
|
35
|
-
import { Divider } from '@microsoft/fast-foundation';
|
|
36
|
-
import { ElementDefinitionContext } from '@microsoft/fast-foundation';
|
|
37
8
|
import { ElementStyles } from '@microsoft/fast-element';
|
|
9
|
+
import { ElementViewTemplate } from '@microsoft/fast-element';
|
|
38
10
|
import { FASTElement } from '@microsoft/fast-element';
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
import { Menu as Menu_2 } from '@microsoft/fast-foundation';
|
|
49
|
-
import { MenuItem } from '@microsoft/fast-foundation';
|
|
50
|
-
import { MenuItemOptions } from '@microsoft/fast-foundation';
|
|
51
|
-
import { NumberField as NumberField_2 } from '@microsoft/fast-foundation';
|
|
52
|
-
import { NumberFieldOptions } from '@microsoft/fast-foundation';
|
|
53
|
-
import { OverrideFoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
54
|
-
import { ProgressOptions } from '@microsoft/fast-foundation';
|
|
55
|
-
import { ProgressRingOptions } from '@microsoft/fast-foundation';
|
|
56
|
-
import { Radio } from '@microsoft/fast-foundation';
|
|
57
|
-
import { RadioGroup } from '@microsoft/fast-foundation';
|
|
58
|
-
import { RadioOptions } from '@microsoft/fast-foundation';
|
|
59
|
-
import { Search as Search_2 } from '@microsoft/fast-foundation';
|
|
60
|
-
import { SearchOptions } from '@microsoft/fast-foundation';
|
|
61
|
-
import { Select as Select_2 } from '@microsoft/fast-foundation';
|
|
62
|
-
import { SelectOptions } from '@microsoft/fast-foundation';
|
|
63
|
-
import { Skeleton } from '@microsoft/fast-foundation';
|
|
64
|
-
import { Slider } from '@microsoft/fast-foundation';
|
|
65
|
-
import { SliderLabel } from '@microsoft/fast-foundation';
|
|
66
|
-
import { SliderOptions } from '@microsoft/fast-foundation';
|
|
67
|
-
import { Switch } from '@microsoft/fast-foundation';
|
|
68
|
-
import { SwitchOptions } from '@microsoft/fast-foundation';
|
|
69
|
-
import { Tab } from '@microsoft/fast-foundation';
|
|
70
|
-
import { TabPanel } from '@microsoft/fast-foundation';
|
|
71
|
-
import { Tabs } from '@microsoft/fast-foundation';
|
|
72
|
-
import { TextArea as TextArea_2 } from '@microsoft/fast-foundation';
|
|
73
|
-
import { TextField as TextField_2 } from '@microsoft/fast-foundation';
|
|
74
|
-
import { Toolbar as Toolbar_2 } from '@microsoft/fast-foundation';
|
|
75
|
-
import { Tooltip as Tooltip_2 } from '@microsoft/fast-foundation';
|
|
76
|
-
import { TreeItem } from '@microsoft/fast-foundation';
|
|
77
|
-
import { TreeItemOptions } from '@microsoft/fast-foundation';
|
|
78
|
-
import { TreeView } from '@microsoft/fast-foundation';
|
|
79
|
-
import { ViewTemplate } from '@microsoft/fast-element';
|
|
80
|
-
|
|
81
|
-
// @public (undocumented)
|
|
82
|
-
export const accentBaseColor: CSSDesignToken<Swatch>;
|
|
83
|
-
|
|
84
|
-
// Warning: (ae-internal-missing-underscore) The name "AccentButtonStyles" should be prefixed with an underscore because the declaration is marked as @internal
|
|
11
|
+
import { FASTElementDefinition } from '@microsoft/fast-element';
|
|
12
|
+
import { FASTProgress } from '@microsoft/fast-foundation';
|
|
13
|
+
import { StartEnd } from '@microsoft/fast-foundation';
|
|
14
|
+
import { StartEndOptions } from '@microsoft/fast-foundation';
|
|
15
|
+
import { StaticallyComposableHTML } from '@microsoft/fast-foundation';
|
|
16
|
+
import type { Theme } from '@fluentui/tokens';
|
|
17
|
+
import { ValuesOf } from '@microsoft/fast-foundation';
|
|
18
|
+
|
|
19
|
+
// Warning: (ae-internal-mixed-release-tag) Mixed release tags are not allowed for "Badge" because one of its declarations is marked as @internal
|
|
85
20
|
//
|
|
86
|
-
// @
|
|
87
|
-
export
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
21
|
+
// @public
|
|
22
|
+
export class Badge extends FASTElement {
|
|
23
|
+
appearance: BadgeAppearance;
|
|
24
|
+
color: BadgeColor;
|
|
25
|
+
shape: BadgeShape;
|
|
26
|
+
size: BadgeSize;
|
|
27
|
+
}
|
|
91
28
|
|
|
92
|
-
// @
|
|
93
|
-
export
|
|
29
|
+
// @internal
|
|
30
|
+
export interface Badge extends StartEnd {
|
|
31
|
+
}
|
|
94
32
|
|
|
95
|
-
// @public
|
|
96
|
-
export const
|
|
33
|
+
// @public
|
|
34
|
+
export const BadgeAppearance: {
|
|
35
|
+
readonly filled: "filled";
|
|
36
|
+
readonly ghost: "ghost";
|
|
37
|
+
readonly outline: "outline";
|
|
38
|
+
readonly tint: "tint";
|
|
39
|
+
};
|
|
97
40
|
|
|
98
|
-
// @public
|
|
99
|
-
export
|
|
41
|
+
// @public
|
|
42
|
+
export type BadgeAppearance = ValuesOf<typeof BadgeAppearance>;
|
|
100
43
|
|
|
101
|
-
// @public
|
|
102
|
-
export const
|
|
44
|
+
// @public
|
|
45
|
+
export const BadgeColor: {
|
|
46
|
+
readonly brand: "brand";
|
|
47
|
+
readonly danger: "danger";
|
|
48
|
+
readonly important: "important";
|
|
49
|
+
readonly informative: "informative";
|
|
50
|
+
readonly severe: "severe";
|
|
51
|
+
readonly subtle: "subtle";
|
|
52
|
+
readonly success: "success";
|
|
53
|
+
readonly warning: "warning";
|
|
54
|
+
};
|
|
103
55
|
|
|
104
|
-
// @public
|
|
105
|
-
export
|
|
56
|
+
// @public
|
|
57
|
+
export type BadgeColor = ValuesOf<typeof BadgeColor>;
|
|
106
58
|
|
|
107
|
-
// @public
|
|
108
|
-
export const
|
|
59
|
+
// @public
|
|
60
|
+
export const BadgeDefinition: FASTElementDefinition<typeof Badge>;
|
|
109
61
|
|
|
110
|
-
//
|
|
111
|
-
|
|
62
|
+
// Warning: (ae-internal-missing-underscore) The name "BadgeOptions" should be prefixed with an underscore because the declaration is marked as @internal
|
|
63
|
+
//
|
|
64
|
+
// @internal
|
|
65
|
+
export type BadgeOptions = StartEndOptions<Badge> & {
|
|
66
|
+
defaultContent?: StaticallyComposableHTML;
|
|
67
|
+
};
|
|
112
68
|
|
|
113
|
-
// @public
|
|
114
|
-
export const
|
|
69
|
+
// @public
|
|
70
|
+
export const BadgeShape: {
|
|
71
|
+
readonly circular: "circular";
|
|
72
|
+
readonly rounded: "rounded";
|
|
73
|
+
readonly square: "square";
|
|
74
|
+
};
|
|
115
75
|
|
|
116
|
-
// @public
|
|
117
|
-
export
|
|
76
|
+
// @public
|
|
77
|
+
export type BadgeShape = ValuesOf<typeof BadgeShape>;
|
|
118
78
|
|
|
119
|
-
// @public
|
|
120
|
-
export const
|
|
79
|
+
// @public
|
|
80
|
+
export const BadgeSize: {
|
|
81
|
+
readonly tiny: "tiny";
|
|
82
|
+
readonly extraSmall: "extra-small";
|
|
83
|
+
readonly small: "small";
|
|
84
|
+
readonly medium: "medium";
|
|
85
|
+
readonly large: "large";
|
|
86
|
+
readonly extraLarge: "extra-large";
|
|
87
|
+
};
|
|
121
88
|
|
|
122
|
-
// @public
|
|
123
|
-
export
|
|
89
|
+
// @public
|
|
90
|
+
export type BadgeSize = ValuesOf<typeof BadgeSize>;
|
|
124
91
|
|
|
125
|
-
// @public
|
|
126
|
-
export const
|
|
92
|
+
// @public
|
|
93
|
+
export const BadgeStyles: ElementStyles;
|
|
127
94
|
|
|
128
95
|
// @public (undocumented)
|
|
129
|
-
export const
|
|
96
|
+
export const BadgeTemplate: ElementViewTemplate<Badge>;
|
|
130
97
|
|
|
131
98
|
// @public (undocumented)
|
|
132
|
-
export const
|
|
99
|
+
export const borderRadiusCircular: CSSDesignToken<string>;
|
|
133
100
|
|
|
134
101
|
// @public (undocumented)
|
|
135
|
-
export const
|
|
102
|
+
export const borderRadiusLarge: CSSDesignToken<string>;
|
|
136
103
|
|
|
137
104
|
// @public (undocumented)
|
|
138
|
-
export const
|
|
105
|
+
export const borderRadiusMedium: CSSDesignToken<string>;
|
|
139
106
|
|
|
140
107
|
// @public (undocumented)
|
|
141
|
-
export const
|
|
108
|
+
export const borderRadiusNone: CSSDesignToken<string>;
|
|
142
109
|
|
|
143
110
|
// @public (undocumented)
|
|
144
|
-
export const
|
|
111
|
+
export const borderRadiusSmall: CSSDesignToken<string>;
|
|
145
112
|
|
|
146
113
|
// @public (undocumented)
|
|
147
|
-
export const
|
|
114
|
+
export const borderRadiusXLarge: CSSDesignToken<string>;
|
|
148
115
|
|
|
149
116
|
// @public (undocumented)
|
|
150
|
-
export const
|
|
117
|
+
export const colorBackgroundOverlay: CSSDesignToken<string>;
|
|
151
118
|
|
|
152
119
|
// @public (undocumented)
|
|
153
|
-
export const
|
|
120
|
+
export const colorBrandBackground: CSSDesignToken<string>;
|
|
154
121
|
|
|
155
122
|
// @public (undocumented)
|
|
156
|
-
export const
|
|
123
|
+
export const colorBrandBackground2: CSSDesignToken<string>;
|
|
157
124
|
|
|
158
125
|
// @public (undocumented)
|
|
159
|
-
export const
|
|
126
|
+
export const colorBrandBackgroundHover: CSSDesignToken<string>;
|
|
160
127
|
|
|
161
128
|
// @public (undocumented)
|
|
162
|
-
export const
|
|
129
|
+
export const colorBrandBackgroundInverted: CSSDesignToken<string>;
|
|
163
130
|
|
|
164
131
|
// @public (undocumented)
|
|
165
|
-
export const
|
|
166
|
-
|
|
167
|
-
export { Accordion }
|
|
168
|
-
|
|
169
|
-
export { AccordionItem }
|
|
170
|
-
|
|
171
|
-
// @public
|
|
172
|
-
export const accordionItemStyles: (context: ElementDefinitionContext, definition: AccordionItemOptions) => ElementStyles;
|
|
173
|
-
|
|
174
|
-
// @public
|
|
175
|
-
export const accordionStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
|
|
176
|
-
|
|
177
|
-
// @public
|
|
178
|
-
export const allComponents: {
|
|
179
|
-
fluentAccordion: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Accordion>;
|
|
180
|
-
fluentAccordionItem: (overrideDefinition?: OverrideFoundationElementDefinition<AccordionItemOptions> | undefined) => FoundationElementRegistry<AccordionItemOptions, Constructable<FoundationElement>>;
|
|
181
|
-
fluentAnchor: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Anchor>;
|
|
182
|
-
fluentAnchoredRegion: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof AnchoredRegion>;
|
|
183
|
-
fluentBadge: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Badge>;
|
|
184
|
-
fluentBreadcrumb: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Breadcrumb>;
|
|
185
|
-
fluentBreadcrumbItem: (overrideDefinition?: OverrideFoundationElementDefinition<BreadcrumbItemOptions> | undefined) => FoundationElementRegistry<BreadcrumbItemOptions, Constructable<FoundationElement>>;
|
|
186
|
-
fluentButton: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Button>;
|
|
187
|
-
fluentCalendar: (overrideDefinition?: OverrideFoundationElementDefinition<CalendarOptions> | undefined) => FoundationElementRegistry<CalendarOptions, Constructable<FoundationElement>>;
|
|
188
|
-
fluentCard: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Card>;
|
|
189
|
-
fluentCheckbox: (overrideDefinition?: OverrideFoundationElementDefinition<CheckboxOptions> | undefined) => FoundationElementRegistry<CheckboxOptions, Constructable<FoundationElement>>;
|
|
190
|
-
fluentCombobox: (overrideDefinition?: OverrideFoundationElementDefinition<ComboboxOptions> | undefined) => FoundationElementRegistry<ComboboxOptions, Constructable<FoundationElement>>;
|
|
191
|
-
fluentDataGrid: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof DataGrid>;
|
|
192
|
-
fluentDataGridCell: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, DataGridCell>;
|
|
193
|
-
fluentDataGridRow: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, DataGridRow>;
|
|
194
|
-
fluentDesignSystemProvider: (overrideDefinition?: OverrideFoundationElementDefinition< {
|
|
195
|
-
baseName: string;
|
|
196
|
-
template: ViewTemplate<any, any>;
|
|
197
|
-
styles: ElementStyles;
|
|
198
|
-
}> | undefined) => FoundationElementRegistry< {
|
|
199
|
-
baseName: string;
|
|
200
|
-
template: ViewTemplate<any, any>;
|
|
201
|
-
styles: ElementStyles;
|
|
202
|
-
}, DesignSystemProvider>;
|
|
203
|
-
fluentDialog: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Dialog>;
|
|
204
|
-
fluentDivider: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Divider>;
|
|
205
|
-
fluentFlipper: (overrideDefinition?: OverrideFoundationElementDefinition<FlipperOptions> | undefined) => FoundationElementRegistry<FlipperOptions, Constructable<FoundationElement>>;
|
|
206
|
-
fluentHorizontalScroll: (overrideDefinition?: OverrideFoundationElementDefinition<HorizontalScrollOptions> | undefined) => FoundationElementRegistry<HorizontalScrollOptions, Constructable<FoundationElement>>;
|
|
207
|
-
fluentListbox: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Listbox>;
|
|
208
|
-
fluentOption: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof ListboxOption>;
|
|
209
|
-
fluentMenu: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Menu>;
|
|
210
|
-
fluentMenuItem: (overrideDefinition?: OverrideFoundationElementDefinition<MenuItemOptions> | undefined) => FoundationElementRegistry<MenuItemOptions, Constructable<FoundationElement>>;
|
|
211
|
-
fluentNumberField: (overrideDefinition?: OverrideFoundationElementDefinition<NumberFieldOptions> | undefined) => FoundationElementRegistry<NumberFieldOptions, Constructable<FoundationElement>>;
|
|
212
|
-
fluentProgress: (overrideDefinition?: OverrideFoundationElementDefinition<ProgressOptions> | undefined) => FoundationElementRegistry<ProgressOptions, Constructable<FoundationElement>>;
|
|
213
|
-
fluentProgressRing: (overrideDefinition?: OverrideFoundationElementDefinition<ProgressRingOptions> | undefined) => FoundationElementRegistry<ProgressRingOptions, Constructable<FoundationElement>>;
|
|
214
|
-
fluentRadio: (overrideDefinition?: OverrideFoundationElementDefinition<RadioOptions> | undefined) => FoundationElementRegistry<RadioOptions, Constructable<FoundationElement>>;
|
|
215
|
-
fluentRadioGroup: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof RadioGroup>;
|
|
216
|
-
fluentSearch: (overrideDefinition?: OverrideFoundationElementDefinition<SearchOptions> | undefined) => FoundationElementRegistry<SearchOptions, Constructable<FoundationElement>>;
|
|
217
|
-
fluentSelect: (overrideDefinition?: OverrideFoundationElementDefinition<SelectOptions> | undefined) => FoundationElementRegistry<SelectOptions, Constructable<FoundationElement>>;
|
|
218
|
-
fluentSkeleton: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Skeleton>;
|
|
219
|
-
fluentSlider: (overrideDefinition?: OverrideFoundationElementDefinition<SliderOptions> | undefined) => FoundationElementRegistry<SliderOptions, Constructable<FoundationElement>>;
|
|
220
|
-
fluentSliderLabel: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof SliderLabel>;
|
|
221
|
-
fluentSwitch: (overrideDefinition?: OverrideFoundationElementDefinition<SwitchOptions> | undefined) => FoundationElementRegistry<SwitchOptions, Constructable<FoundationElement>>;
|
|
222
|
-
fluentTabs: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Tabs>;
|
|
223
|
-
fluentTab: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Tab>;
|
|
224
|
-
fluentTabPanel: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, TabPanel>;
|
|
225
|
-
fluentTextArea: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, TextArea>;
|
|
226
|
-
fluentTextField: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, TextField>;
|
|
227
|
-
fluentToolbar: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Toolbar>;
|
|
228
|
-
fluentTooltip: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Tooltip>;
|
|
229
|
-
fluentTreeView: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof TreeView>;
|
|
230
|
-
fluentTreeItem: (overrideDefinition?: OverrideFoundationElementDefinition<TreeItemOptions> | undefined) => FoundationElementRegistry<TreeItemOptions, Constructable<FoundationElement>>;
|
|
231
|
-
register(container?: Container | undefined, ...rest: any[]): void;
|
|
232
|
-
};
|
|
233
|
-
|
|
234
|
-
// Warning: (ae-internal-missing-underscore) The name "ambientShadow" should be prefixed with an underscore because the declaration is marked as @internal
|
|
235
|
-
//
|
|
236
|
-
// @internal @deprecated
|
|
237
|
-
export const ambientShadow = "0 0 2px rgba(0, 0, 0, 0.14)";
|
|
238
|
-
|
|
239
|
-
// Warning: (ae-internal-missing-underscore) The name "Anchor" should be prefixed with an underscore because the declaration is marked as @internal
|
|
240
|
-
//
|
|
241
|
-
// @internal
|
|
242
|
-
export class Anchor extends Anchor_2 {
|
|
243
|
-
// @public
|
|
244
|
-
appearance: AnchorAppearance;
|
|
245
|
-
// (undocumented)
|
|
246
|
-
appearanceChanged(oldValue: AnchorAppearance, newValue: AnchorAppearance): void;
|
|
247
|
-
// (undocumented)
|
|
248
|
-
connectedCallback(): void;
|
|
249
|
-
defaultSlottedContentChanged(): void;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
// @public
|
|
253
|
-
export type AnchorAppearance = ButtonAppearance | 'hypertext';
|
|
254
|
-
|
|
255
|
-
export { AnchoredRegion }
|
|
256
|
-
|
|
257
|
-
// @public
|
|
258
|
-
export const anchoredRegionStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
|
|
259
|
-
|
|
260
|
-
// @public
|
|
261
|
-
export const anchorStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
|
|
262
|
-
|
|
263
|
-
// Warning: (ae-internal-missing-underscore) The name "Badge" should be prefixed with an underscore because the declaration is marked as @internal
|
|
264
|
-
//
|
|
265
|
-
// @internal
|
|
266
|
-
export class Badge extends Badge_2 {
|
|
267
|
-
// (undocumented)
|
|
268
|
-
appearance: BadgeAppearance;
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
// @public
|
|
272
|
-
export type BadgeAppearance = 'accent' | 'lightweight' | 'neutral' | string;
|
|
273
|
-
|
|
274
|
-
// @public
|
|
275
|
-
export const badgeStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
|
|
276
|
-
|
|
277
|
-
// Warning: (ae-internal-missing-underscore) The name "baseButtonStyles" should be prefixed with an underscore because the declaration is marked as @internal
|
|
278
|
-
//
|
|
279
|
-
// @internal
|
|
280
|
-
export const baseButtonStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, interactivitySelector: string, nonInteractivitySelector?: string) => ElementStyles;
|
|
132
|
+
export const colorBrandBackgroundInvertedHover: CSSDesignToken<string>;
|
|
281
133
|
|
|
282
134
|
// @public (undocumented)
|
|
283
|
-
export const
|
|
135
|
+
export const colorBrandBackgroundInvertedPressed: CSSDesignToken<string>;
|
|
284
136
|
|
|
285
137
|
// @public (undocumented)
|
|
286
|
-
export const
|
|
287
|
-
|
|
288
|
-
// Warning: (ae-internal-missing-underscore) The name "baseInputStyles" should be prefixed with an underscore because the declaration is marked as @internal
|
|
289
|
-
//
|
|
290
|
-
// @internal
|
|
291
|
-
export const baseInputStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, logicalControlSelector: string) => ElementStyles;
|
|
138
|
+
export const colorBrandBackgroundInvertedSelected: CSSDesignToken<string>;
|
|
292
139
|
|
|
293
140
|
// @public (undocumented)
|
|
294
|
-
export const
|
|
141
|
+
export const colorBrandBackgroundPressed: CSSDesignToken<string>;
|
|
295
142
|
|
|
296
143
|
// @public (undocumented)
|
|
297
|
-
export const
|
|
298
|
-
|
|
299
|
-
export { Breadcrumb }
|
|
300
|
-
|
|
301
|
-
export { BreadcrumbItem }
|
|
302
|
-
|
|
303
|
-
// @public
|
|
304
|
-
export const breadcrumbItemStyles: (context: ElementDefinitionContext, definition: BreadcrumbItemOptions) => ElementStyles;
|
|
305
|
-
|
|
306
|
-
// @public
|
|
307
|
-
export const breadcrumbStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
|
|
308
|
-
|
|
309
|
-
// Warning: (ae-internal-missing-underscore) The name "Button" should be prefixed with an underscore because the declaration is marked as @internal
|
|
310
|
-
//
|
|
311
|
-
// @internal
|
|
312
|
-
export class Button extends Button_2 {
|
|
313
|
-
// @public
|
|
314
|
-
appearance: ButtonAppearance;
|
|
315
|
-
// (undocumented)
|
|
316
|
-
appearanceChanged(oldValue: ButtonAppearance, newValue: ButtonAppearance): void;
|
|
317
|
-
// (undocumented)
|
|
318
|
-
connectedCallback(): void;
|
|
319
|
-
defaultSlottedContentChanged(): void;
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
// @public
|
|
323
|
-
export type ButtonAppearance = 'accent' | 'lightweight' | 'neutral' | 'outline' | 'stealth';
|
|
324
|
-
|
|
325
|
-
// @public
|
|
326
|
-
export const buttonStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
|
|
144
|
+
export const colorBrandBackgroundSelected: CSSDesignToken<string>;
|
|
327
145
|
|
|
328
146
|
// @public (undocumented)
|
|
329
|
-
export
|
|
330
|
-
cardFillColor: string;
|
|
331
|
-
// (undocumented)
|
|
332
|
-
connectedCallback(): void;
|
|
333
|
-
// @internal (undocumented)
|
|
334
|
-
handleChange(source: any, propertyName: string): void;
|
|
335
|
-
neutralPaletteSource: string;
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
// @public
|
|
339
|
-
export const cardStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
|
|
340
|
-
|
|
341
|
-
// @public
|
|
342
|
-
export const checkboxStyles: (context: ElementDefinitionContext, definition: CheckboxOptions) => ElementStyles;
|
|
147
|
+
export const colorBrandBackgroundStatic: CSSDesignToken<string>;
|
|
343
148
|
|
|
344
149
|
// @public (undocumented)
|
|
345
|
-
export
|
|
346
|
-
// (undocumented)
|
|
347
|
-
evaluate(element: HTMLElement, reference?: Swatch): Swatch;
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
// Warning: (ae-internal-missing-underscore) The name "Combobox" should be prefixed with an underscore because the declaration is marked as @internal
|
|
351
|
-
//
|
|
352
|
-
// @internal
|
|
353
|
-
export class Combobox extends Combobox_2 {
|
|
354
|
-
// @public
|
|
355
|
-
appearance: ComboboxAppearance;
|
|
356
|
-
// (undocumented)
|
|
357
|
-
appearanceChanged(oldValue: ComboboxAppearance, newValue: ComboboxAppearance): void;
|
|
358
|
-
// (undocumented)
|
|
359
|
-
connectedCallback(): void;
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
// @public
|
|
363
|
-
export type ComboboxAppearance = 'filled' | 'outline';
|
|
364
|
-
|
|
365
|
-
// @public
|
|
366
|
-
export const comboboxStyles: (context: ElementDefinitionContext, definition: ComboboxOptions) => ElementStyles;
|
|
150
|
+
export const colorBrandForeground1: CSSDesignToken<string>;
|
|
367
151
|
|
|
368
152
|
// @public (undocumented)
|
|
369
|
-
export const
|
|
370
|
-
|
|
371
|
-
// @public @deprecated (undocumented)
|
|
372
|
-
export const cornerRadius: CSSDesignToken<number>;
|
|
373
|
-
|
|
374
|
-
export { DataGrid }
|
|
375
|
-
|
|
376
|
-
export { DataGridCell }
|
|
377
|
-
|
|
378
|
-
// @public
|
|
379
|
-
export const dataGridCellStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
|
|
380
|
-
|
|
381
|
-
export { DataGridRow }
|
|
382
|
-
|
|
383
|
-
// @public
|
|
384
|
-
export const dataGridRowStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
|
|
385
|
-
|
|
386
|
-
// @public
|
|
387
|
-
export const dataGridStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ElementStyles;
|
|
153
|
+
export const colorBrandForeground2: CSSDesignToken<string>;
|
|
388
154
|
|
|
389
155
|
// @public (undocumented)
|
|
390
|
-
export const
|
|
391
|
-
|
|
392
|
-
// @public
|
|
393
|
-
export class DesignSystemProvider extends FoundationElement {
|
|
394
|
-
constructor();
|
|
395
|
-
accentBaseColor: Swatch;
|
|
396
|
-
accentFillActiveDelta: number;
|
|
397
|
-
accentFillFocusDelta: number;
|
|
398
|
-
accentFillHoverDelta: number;
|
|
399
|
-
accentFillRestDelta: number;
|
|
400
|
-
accentForegroundActiveDelta: number;
|
|
401
|
-
accentForegroundFocusDelta: number;
|
|
402
|
-
accentForegroundHoverDelta: number;
|
|
403
|
-
accentForegroundRestDelta: number;
|
|
404
|
-
baseHeightMultiplier: number;
|
|
405
|
-
baseHorizontalSpacingMultiplier: number;
|
|
406
|
-
baseLayerLuminance: number;
|
|
407
|
-
// (undocumented)
|
|
408
|
-
connectedCallback(): void;
|
|
409
|
-
controlCornerRadius: number;
|
|
410
|
-
density: number;
|
|
411
|
-
designUnit: number;
|
|
412
|
-
direction: Direction;
|
|
413
|
-
disabledOpacity: number;
|
|
414
|
-
fillColor: Swatch;
|
|
415
|
-
focusStrokeWidth: number;
|
|
416
|
-
layerCornerRadius: number;
|
|
417
|
-
neutralBaseColor: Swatch;
|
|
418
|
-
neutralFillActiveDelta: number;
|
|
419
|
-
neutralFillFocusDelta: number;
|
|
420
|
-
neutralFillHoverDelta: number;
|
|
421
|
-
neutralFillInputActiveDelta: number;
|
|
422
|
-
neutralFillInputFocusDelta: number;
|
|
423
|
-
neutralFillInputHoverDelta: number;
|
|
424
|
-
neutralFillInputRestDelta: number;
|
|
425
|
-
neutralFillLayerRestDelta: number;
|
|
426
|
-
neutralFillRestDelta: number;
|
|
427
|
-
neutralFillStealthActiveDelta: number;
|
|
428
|
-
neutralFillStealthFocusDelta: number;
|
|
429
|
-
neutralFillStealthHoverDelta: number;
|
|
430
|
-
neutralFillStealthRestDelta: number;
|
|
431
|
-
neutralFillStrongActiveDelta: number;
|
|
432
|
-
neutralFillStrongFocusDelta: number;
|
|
433
|
-
neutralFillStrongHoverDelta: number;
|
|
434
|
-
neutralStrokeActiveDelta: number;
|
|
435
|
-
neutralStrokeDividerRestDelta: number;
|
|
436
|
-
neutralStrokeFocusDelta: number;
|
|
437
|
-
neutralStrokeHoverDelta: number;
|
|
438
|
-
neutralStrokeRestDelta: number;
|
|
439
|
-
noPaint: boolean;
|
|
440
|
-
strokeWidth: number;
|
|
441
|
-
typeRampBaseFontSize: string;
|
|
442
|
-
typeRampBaseLineHeight: string;
|
|
443
|
-
typeRampMinus1FontSize: string;
|
|
444
|
-
typeRampMinus1LineHeight: string;
|
|
445
|
-
typeRampMinus2FontSize: string;
|
|
446
|
-
typeRampMinus2LineHeight: string;
|
|
447
|
-
typeRampPlus1FontSize: string;
|
|
448
|
-
typeRampPlus1LineHeight: string;
|
|
449
|
-
typeRampPlus2FontSize: string;
|
|
450
|
-
typeRampPlus2LineHeight: string;
|
|
451
|
-
typeRampPlus3FontSize: string;
|
|
452
|
-
typeRampPlus3LineHeight: string;
|
|
453
|
-
typeRampPlus4FontSize: string;
|
|
454
|
-
typeRampPlus4LineHeight: string;
|
|
455
|
-
typeRampPlus5FontSize: string;
|
|
456
|
-
typeRampPlus5LineHeight: string;
|
|
457
|
-
typeRampPlus6FontSize: string;
|
|
458
|
-
typeRampPlus6LineHeight: string;
|
|
459
|
-
}
|
|
156
|
+
export const colorBrandForegroundInverted: CSSDesignToken<string>;
|
|
460
157
|
|
|
461
158
|
// @public (undocumented)
|
|
462
|
-
export const
|
|
159
|
+
export const colorBrandForegroundInvertedHover: CSSDesignToken<string>;
|
|
463
160
|
|
|
464
|
-
|
|
161
|
+
// @public (undocumented)
|
|
162
|
+
export const colorBrandForegroundInvertedPressed: CSSDesignToken<string>;
|
|
465
163
|
|
|
466
|
-
// @public
|
|
467
|
-
export const
|
|
164
|
+
// @public (undocumented)
|
|
165
|
+
export const colorBrandForegroundLink: CSSDesignToken<string>;
|
|
468
166
|
|
|
469
167
|
// @public (undocumented)
|
|
470
|
-
export const
|
|
168
|
+
export const colorBrandForegroundLinkHover: CSSDesignToken<string>;
|
|
471
169
|
|
|
472
|
-
//
|
|
473
|
-
|
|
474
|
-
// @internal @deprecated (undocumented)
|
|
475
|
-
export const directionalShadow = "0 calc(var(--elevation) * 0.5px) calc((var(--elevation) * 1px)) rgba(0, 0, 0, 0.2)";
|
|
170
|
+
// @public (undocumented)
|
|
171
|
+
export const colorBrandForegroundLinkPressed: CSSDesignToken<string>;
|
|
476
172
|
|
|
477
|
-
// @public
|
|
478
|
-
export
|
|
479
|
-
constructor(ltr: ElementStyles | null, rtl: ElementStyles | null);
|
|
480
|
-
// @internal (undocumented)
|
|
481
|
-
bind(source: FASTElement & HTMLElement): void;
|
|
482
|
-
// @internal (undocumented)
|
|
483
|
-
unbind(source: FASTElement & HTMLElement): void;
|
|
484
|
-
}
|
|
173
|
+
// @public (undocumented)
|
|
174
|
+
export const colorBrandForegroundLinkSelected: CSSDesignToken<string>;
|
|
485
175
|
|
|
486
176
|
// @public (undocumented)
|
|
487
|
-
export const
|
|
177
|
+
export const colorBrandForegroundOnLight: CSSDesignToken<string>;
|
|
488
178
|
|
|
489
|
-
|
|
179
|
+
// @public (undocumented)
|
|
180
|
+
export const colorBrandForegroundOnLightHover: CSSDesignToken<string>;
|
|
490
181
|
|
|
491
|
-
// @public
|
|
492
|
-
export const
|
|
182
|
+
// @public (undocumented)
|
|
183
|
+
export const colorBrandForegroundOnLightPressed: CSSDesignToken<string>;
|
|
493
184
|
|
|
494
|
-
// @public
|
|
495
|
-
export const
|
|
185
|
+
// @public (undocumented)
|
|
186
|
+
export const colorBrandForegroundOnLightSelected: CSSDesignToken<string>;
|
|
496
187
|
|
|
497
|
-
// @public
|
|
498
|
-
export const
|
|
188
|
+
// @public (undocumented)
|
|
189
|
+
export const colorBrandShadowAmbient: CSSDesignToken<string>;
|
|
499
190
|
|
|
500
191
|
// @public (undocumented)
|
|
501
|
-
export
|
|
502
|
-
// (undocumented)
|
|
503
|
-
evaluate(element: HTMLElement, size: number, reference?: Swatch): string;
|
|
504
|
-
}
|
|
192
|
+
export const colorBrandShadowKey: CSSDesignToken<string>;
|
|
505
193
|
|
|
506
194
|
// @public (undocumented)
|
|
507
|
-
export const
|
|
195
|
+
export const colorBrandStroke1: CSSDesignToken<string>;
|
|
508
196
|
|
|
509
197
|
// @public (undocumented)
|
|
510
|
-
export const
|
|
198
|
+
export const colorBrandStroke2: CSSDesignToken<string>;
|
|
511
199
|
|
|
512
200
|
// @public (undocumented)
|
|
513
|
-
export const
|
|
201
|
+
export const colorCompoundBrandBackground: CSSDesignToken<string>;
|
|
514
202
|
|
|
515
203
|
// @public (undocumented)
|
|
516
|
-
export const
|
|
204
|
+
export const colorCompoundBrandBackgroundHover: CSSDesignToken<string>;
|
|
517
205
|
|
|
518
206
|
// @public (undocumented)
|
|
519
|
-
export const
|
|
207
|
+
export const colorCompoundBrandBackgroundPressed: CSSDesignToken<string>;
|
|
520
208
|
|
|
521
209
|
// @public (undocumented)
|
|
522
|
-
export const
|
|
210
|
+
export const colorCompoundBrandForeground1: CSSDesignToken<string>;
|
|
523
211
|
|
|
524
212
|
// @public (undocumented)
|
|
525
|
-
export const
|
|
213
|
+
export const colorCompoundBrandForeground1Hover: CSSDesignToken<string>;
|
|
526
214
|
|
|
527
215
|
// @public (undocumented)
|
|
528
|
-
export const
|
|
216
|
+
export const colorCompoundBrandForeground1Pressed: CSSDesignToken<string>;
|
|
529
217
|
|
|
530
218
|
// @public (undocumented)
|
|
531
|
-
export const
|
|
219
|
+
export const colorCompoundBrandStroke: CSSDesignToken<string>;
|
|
532
220
|
|
|
533
221
|
// @public (undocumented)
|
|
534
|
-
export const
|
|
222
|
+
export const colorCompoundBrandStrokeHover: CSSDesignToken<string>;
|
|
535
223
|
|
|
536
224
|
// @public (undocumented)
|
|
537
|
-
export const
|
|
225
|
+
export const colorCompoundBrandStrokePressed: CSSDesignToken<string>;
|
|
538
226
|
|
|
539
227
|
// @public (undocumented)
|
|
540
|
-
export const
|
|
228
|
+
export const colorNeutralBackground1: CSSDesignToken<string>;
|
|
541
229
|
|
|
542
230
|
// @public (undocumented)
|
|
543
|
-
export const
|
|
231
|
+
export const colorNeutralBackground1Hover: CSSDesignToken<string>;
|
|
544
232
|
|
|
545
233
|
// @public (undocumented)
|
|
546
|
-
export const
|
|
234
|
+
export const colorNeutralBackground1Pressed: CSSDesignToken<string>;
|
|
547
235
|
|
|
548
236
|
// @public (undocumented)
|
|
549
|
-
export const
|
|
237
|
+
export const colorNeutralBackground1Selected: CSSDesignToken<string>;
|
|
550
238
|
|
|
551
239
|
// @public (undocumented)
|
|
552
|
-
export const
|
|
240
|
+
export const colorNeutralBackground2: CSSDesignToken<string>;
|
|
553
241
|
|
|
554
|
-
|
|
242
|
+
// @public (undocumented)
|
|
243
|
+
export const colorNeutralBackground2Hover: CSSDesignToken<string>;
|
|
555
244
|
|
|
556
|
-
// @public
|
|
557
|
-
export const
|
|
245
|
+
// @public (undocumented)
|
|
246
|
+
export const colorNeutralBackground2Pressed: CSSDesignToken<string>;
|
|
558
247
|
|
|
559
|
-
// @public
|
|
560
|
-
export const
|
|
248
|
+
// @public (undocumented)
|
|
249
|
+
export const colorNeutralBackground2Selected: CSSDesignToken<string>;
|
|
561
250
|
|
|
562
|
-
// @public
|
|
563
|
-
export const
|
|
251
|
+
// @public (undocumented)
|
|
252
|
+
export const colorNeutralBackground3: CSSDesignToken<string>;
|
|
564
253
|
|
|
565
|
-
//
|
|
566
|
-
|
|
567
|
-
// @public
|
|
568
|
-
export const fluentAnchor: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Anchor>;
|
|
254
|
+
// @public (undocumented)
|
|
255
|
+
export const colorNeutralBackground3Hover: CSSDesignToken<string>;
|
|
569
256
|
|
|
570
|
-
// @
|
|
571
|
-
export const
|
|
257
|
+
// @public (undocumented)
|
|
258
|
+
export const colorNeutralBackground3Pressed: CSSDesignToken<string>;
|
|
572
259
|
|
|
573
|
-
//
|
|
574
|
-
|
|
575
|
-
// @public
|
|
576
|
-
export const fluentBadge: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Badge>;
|
|
260
|
+
// @public (undocumented)
|
|
261
|
+
export const colorNeutralBackground3Selected: CSSDesignToken<string>;
|
|
577
262
|
|
|
578
|
-
// @public
|
|
579
|
-
export const
|
|
263
|
+
// @public (undocumented)
|
|
264
|
+
export const colorNeutralBackground4: CSSDesignToken<string>;
|
|
580
265
|
|
|
581
|
-
// @public
|
|
582
|
-
export const
|
|
266
|
+
// @public (undocumented)
|
|
267
|
+
export const colorNeutralBackground4Hover: CSSDesignToken<string>;
|
|
583
268
|
|
|
584
|
-
//
|
|
585
|
-
|
|
586
|
-
// @public
|
|
587
|
-
export const fluentButton: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Button>;
|
|
269
|
+
// @public (undocumented)
|
|
270
|
+
export const colorNeutralBackground4Pressed: CSSDesignToken<string>;
|
|
588
271
|
|
|
589
|
-
// @public
|
|
590
|
-
export const
|
|
272
|
+
// @public (undocumented)
|
|
273
|
+
export const colorNeutralBackground4Selected: CSSDesignToken<string>;
|
|
591
274
|
|
|
592
|
-
// @public
|
|
593
|
-
export const
|
|
275
|
+
// @public (undocumented)
|
|
276
|
+
export const colorNeutralBackground5: CSSDesignToken<string>;
|
|
594
277
|
|
|
595
|
-
// @public
|
|
596
|
-
export const
|
|
278
|
+
// @public (undocumented)
|
|
279
|
+
export const colorNeutralBackground5Hover: CSSDesignToken<string>;
|
|
597
280
|
|
|
598
|
-
// @public
|
|
599
|
-
export const
|
|
281
|
+
// @public (undocumented)
|
|
282
|
+
export const colorNeutralBackground5Pressed: CSSDesignToken<string>;
|
|
600
283
|
|
|
601
|
-
// @public
|
|
602
|
-
export const
|
|
284
|
+
// @public (undocumented)
|
|
285
|
+
export const colorNeutralBackground5Selected: CSSDesignToken<string>;
|
|
603
286
|
|
|
604
|
-
// @public
|
|
605
|
-
export const
|
|
287
|
+
// @public (undocumented)
|
|
288
|
+
export const colorNeutralBackground6: CSSDesignToken<string>;
|
|
606
289
|
|
|
607
|
-
// @public
|
|
608
|
-
export const
|
|
290
|
+
// @public (undocumented)
|
|
291
|
+
export const colorNeutralBackgroundDisabled: CSSDesignToken<string>;
|
|
609
292
|
|
|
610
|
-
// @public
|
|
611
|
-
export const
|
|
612
|
-
baseName: string;
|
|
613
|
-
template: ViewTemplate<any, any>;
|
|
614
|
-
styles: ElementStyles;
|
|
615
|
-
}> | undefined) => FoundationElementRegistry< {
|
|
616
|
-
baseName: string;
|
|
617
|
-
template: ViewTemplate<any, any>;
|
|
618
|
-
styles: ElementStyles;
|
|
619
|
-
}, typeof DesignSystemProvider>;
|
|
293
|
+
// @public (undocumented)
|
|
294
|
+
export const colorNeutralBackgroundInverted: CSSDesignToken<string>;
|
|
620
295
|
|
|
621
|
-
// @public
|
|
622
|
-
export const
|
|
296
|
+
// @public (undocumented)
|
|
297
|
+
export const colorNeutralBackgroundInvertedDisabled: CSSDesignToken<string>;
|
|
623
298
|
|
|
624
|
-
// @public
|
|
625
|
-
export const
|
|
299
|
+
// @public (undocumented)
|
|
300
|
+
export const colorNeutralBackgroundStatic: CSSDesignToken<string>;
|
|
626
301
|
|
|
627
|
-
// @public
|
|
628
|
-
export const
|
|
302
|
+
// @public (undocumented)
|
|
303
|
+
export const colorNeutralForeground1: CSSDesignToken<string>;
|
|
629
304
|
|
|
630
|
-
// @public
|
|
631
|
-
export const
|
|
305
|
+
// @public (undocumented)
|
|
306
|
+
export const colorNeutralForeground1Hover: CSSDesignToken<string>;
|
|
632
307
|
|
|
633
|
-
// @public
|
|
634
|
-
export const
|
|
308
|
+
// @public (undocumented)
|
|
309
|
+
export const colorNeutralForeground1Pressed: CSSDesignToken<string>;
|
|
635
310
|
|
|
636
|
-
// @public
|
|
637
|
-
export const
|
|
311
|
+
// @public (undocumented)
|
|
312
|
+
export const colorNeutralForeground1Selected: CSSDesignToken<string>;
|
|
638
313
|
|
|
639
|
-
// @public
|
|
640
|
-
export const
|
|
314
|
+
// @public (undocumented)
|
|
315
|
+
export const colorNeutralForeground1Static: CSSDesignToken<string>;
|
|
641
316
|
|
|
642
|
-
// @public
|
|
643
|
-
export const
|
|
317
|
+
// @public (undocumented)
|
|
318
|
+
export const colorNeutralForeground2: CSSDesignToken<string>;
|
|
644
319
|
|
|
645
|
-
// @public
|
|
646
|
-
export const
|
|
320
|
+
// @public (undocumented)
|
|
321
|
+
export const colorNeutralForeground2BrandHover: CSSDesignToken<string>;
|
|
647
322
|
|
|
648
|
-
// @public
|
|
649
|
-
export const
|
|
323
|
+
// @public (undocumented)
|
|
324
|
+
export const colorNeutralForeground2BrandPressed: CSSDesignToken<string>;
|
|
650
325
|
|
|
651
|
-
// @public
|
|
652
|
-
export const
|
|
326
|
+
// @public (undocumented)
|
|
327
|
+
export const colorNeutralForeground2BrandSelected: CSSDesignToken<string>;
|
|
653
328
|
|
|
654
|
-
// @public
|
|
655
|
-
export const
|
|
329
|
+
// @public (undocumented)
|
|
330
|
+
export const colorNeutralForeground2Hover: CSSDesignToken<string>;
|
|
656
331
|
|
|
657
|
-
// @public
|
|
658
|
-
export const
|
|
332
|
+
// @public (undocumented)
|
|
333
|
+
export const colorNeutralForeground2Link: CSSDesignToken<string>;
|
|
659
334
|
|
|
660
|
-
// @public
|
|
661
|
-
export const
|
|
335
|
+
// @public (undocumented)
|
|
336
|
+
export const colorNeutralForeground2LinkHover: CSSDesignToken<string>;
|
|
662
337
|
|
|
663
|
-
// @public
|
|
664
|
-
export const
|
|
338
|
+
// @public (undocumented)
|
|
339
|
+
export const colorNeutralForeground2LinkPressed: CSSDesignToken<string>;
|
|
665
340
|
|
|
666
|
-
// @public
|
|
667
|
-
export const
|
|
341
|
+
// @public (undocumented)
|
|
342
|
+
export const colorNeutralForeground2LinkSelected: CSSDesignToken<string>;
|
|
668
343
|
|
|
669
|
-
// @public
|
|
670
|
-
export const
|
|
344
|
+
// @public (undocumented)
|
|
345
|
+
export const colorNeutralForeground2Pressed: CSSDesignToken<string>;
|
|
671
346
|
|
|
672
|
-
// @public
|
|
673
|
-
export const
|
|
347
|
+
// @public (undocumented)
|
|
348
|
+
export const colorNeutralForeground2Selected: CSSDesignToken<string>;
|
|
674
349
|
|
|
675
|
-
// @public
|
|
676
|
-
export const
|
|
350
|
+
// @public (undocumented)
|
|
351
|
+
export const colorNeutralForeground3: CSSDesignToken<string>;
|
|
677
352
|
|
|
678
|
-
// @public
|
|
679
|
-
export const
|
|
353
|
+
// @public (undocumented)
|
|
354
|
+
export const colorNeutralForeground3BrandHover: CSSDesignToken<string>;
|
|
680
355
|
|
|
681
|
-
// @public
|
|
682
|
-
export const
|
|
356
|
+
// @public (undocumented)
|
|
357
|
+
export const colorNeutralForeground3BrandPressed: CSSDesignToken<string>;
|
|
683
358
|
|
|
684
|
-
// @public
|
|
685
|
-
export const
|
|
359
|
+
// @public (undocumented)
|
|
360
|
+
export const colorNeutralForeground3BrandSelected: CSSDesignToken<string>;
|
|
686
361
|
|
|
687
|
-
//
|
|
688
|
-
|
|
689
|
-
// @public
|
|
690
|
-
export const fluentTextArea: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof TextArea>;
|
|
362
|
+
// @public (undocumented)
|
|
363
|
+
export const colorNeutralForeground3Hover: CSSDesignToken<string>;
|
|
691
364
|
|
|
692
|
-
//
|
|
693
|
-
|
|
694
|
-
// @public
|
|
695
|
-
export const fluentTextField: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof TextField>;
|
|
365
|
+
// @public (undocumented)
|
|
366
|
+
export const colorNeutralForeground3Pressed: CSSDesignToken<string>;
|
|
696
367
|
|
|
697
|
-
//
|
|
698
|
-
|
|
699
|
-
// @public
|
|
700
|
-
export const fluentToolbar: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Toolbar>;
|
|
368
|
+
// @public (undocumented)
|
|
369
|
+
export const colorNeutralForeground3Selected: CSSDesignToken<string>;
|
|
701
370
|
|
|
702
|
-
//
|
|
703
|
-
|
|
704
|
-
// @public
|
|
705
|
-
export const fluentTooltip: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Tooltip>;
|
|
371
|
+
// @public (undocumented)
|
|
372
|
+
export const colorNeutralForeground4: CSSDesignToken<string>;
|
|
706
373
|
|
|
707
|
-
// @public
|
|
708
|
-
export const
|
|
374
|
+
// @public (undocumented)
|
|
375
|
+
export const colorNeutralForegroundDisabled: CSSDesignToken<string>;
|
|
709
376
|
|
|
710
|
-
// @public
|
|
711
|
-
export const
|
|
377
|
+
// @public (undocumented)
|
|
378
|
+
export const colorNeutralForegroundInverted: CSSDesignToken<string>;
|
|
712
379
|
|
|
713
|
-
// @public
|
|
714
|
-
export const
|
|
380
|
+
// @public (undocumented)
|
|
381
|
+
export const colorNeutralForegroundInverted2: CSSDesignToken<string>;
|
|
715
382
|
|
|
716
383
|
// @public (undocumented)
|
|
717
|
-
export const
|
|
384
|
+
export const colorNeutralForegroundInvertedDisabled: CSSDesignToken<string>;
|
|
718
385
|
|
|
719
386
|
// @public (undocumented)
|
|
720
|
-
export const
|
|
387
|
+
export const colorNeutralForegroundInvertedHover: CSSDesignToken<string>;
|
|
721
388
|
|
|
722
389
|
// @public (undocumented)
|
|
723
|
-
export const
|
|
390
|
+
export const colorNeutralForegroundInvertedLink: CSSDesignToken<string>;
|
|
724
391
|
|
|
725
392
|
// @public (undocumented)
|
|
726
|
-
export const
|
|
393
|
+
export const colorNeutralForegroundInvertedLinkHover: CSSDesignToken<string>;
|
|
727
394
|
|
|
728
395
|
// @public (undocumented)
|
|
729
|
-
export const
|
|
396
|
+
export const colorNeutralForegroundInvertedLinkPressed: CSSDesignToken<string>;
|
|
730
397
|
|
|
731
|
-
// @public
|
|
732
|
-
export const
|
|
398
|
+
// @public (undocumented)
|
|
399
|
+
export const colorNeutralForegroundInvertedLinkSelected: CSSDesignToken<string>;
|
|
733
400
|
|
|
734
|
-
// @public
|
|
735
|
-
export const
|
|
401
|
+
// @public (undocumented)
|
|
402
|
+
export const colorNeutralForegroundInvertedPressed: CSSDesignToken<string>;
|
|
736
403
|
|
|
737
404
|
// @public (undocumented)
|
|
738
|
-
export const
|
|
405
|
+
export const colorNeutralForegroundInvertedSelected: CSSDesignToken<string>;
|
|
739
406
|
|
|
740
407
|
// @public (undocumented)
|
|
741
|
-
export const
|
|
408
|
+
export const colorNeutralForegroundOnBrand: CSSDesignToken<string>;
|
|
742
409
|
|
|
743
|
-
// @public
|
|
744
|
-
export const
|
|
410
|
+
// @public (undocumented)
|
|
411
|
+
export const colorNeutralForegroundStaticInverted: CSSDesignToken<string>;
|
|
745
412
|
|
|
746
413
|
// @public (undocumented)
|
|
747
|
-
export const
|
|
414
|
+
export const colorNeutralShadowAmbient: CSSDesignToken<string>;
|
|
748
415
|
|
|
749
|
-
// @public
|
|
750
|
-
export const
|
|
416
|
+
// @public (undocumented)
|
|
417
|
+
export const colorNeutralShadowAmbientDarker: CSSDesignToken<string>;
|
|
751
418
|
|
|
752
419
|
// @public (undocumented)
|
|
753
|
-
export const
|
|
420
|
+
export const colorNeutralShadowAmbientLighter: CSSDesignToken<string>;
|
|
754
421
|
|
|
755
|
-
// @public
|
|
756
|
-
export const
|
|
422
|
+
// @public (undocumented)
|
|
423
|
+
export const colorNeutralShadowKey: CSSDesignToken<string>;
|
|
757
424
|
|
|
758
|
-
// @public
|
|
759
|
-
export const
|
|
425
|
+
// @public (undocumented)
|
|
426
|
+
export const colorNeutralShadowKeyDarker: CSSDesignToken<string>;
|
|
760
427
|
|
|
761
428
|
// @public (undocumented)
|
|
762
|
-
export const
|
|
429
|
+
export const colorNeutralShadowKeyLighter: CSSDesignToken<string>;
|
|
763
430
|
|
|
764
431
|
// @public (undocumented)
|
|
765
|
-
export const
|
|
432
|
+
export const colorNeutralStencil1: CSSDesignToken<string>;
|
|
766
433
|
|
|
767
|
-
// @public
|
|
768
|
-
export const
|
|
434
|
+
// @public (undocumented)
|
|
435
|
+
export const colorNeutralStencil2: CSSDesignToken<string>;
|
|
769
436
|
|
|
770
|
-
// @public
|
|
771
|
-
export const
|
|
437
|
+
// @public (undocumented)
|
|
438
|
+
export const colorNeutralStroke1: CSSDesignToken<string>;
|
|
772
439
|
|
|
773
|
-
//
|
|
774
|
-
|
|
775
|
-
// @internal (undocumented)
|
|
776
|
-
export class HorizontalScroll extends HorizontalScroll_2 {
|
|
777
|
-
// @public (undocumented)
|
|
778
|
-
connectedCallback(): void;
|
|
779
|
-
}
|
|
440
|
+
// @public (undocumented)
|
|
441
|
+
export const colorNeutralStroke1Hover: CSSDesignToken<string>;
|
|
780
442
|
|
|
781
|
-
// @public
|
|
782
|
-
export const
|
|
443
|
+
// @public (undocumented)
|
|
444
|
+
export const colorNeutralStroke1Pressed: CSSDesignToken<string>;
|
|
783
445
|
|
|
784
|
-
//
|
|
785
|
-
|
|
786
|
-
// @internal (undocumented)
|
|
787
|
-
export const HypertextStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, interactivitySelector: string, nonInteractivitySelector?: string) => ElementStyles;
|
|
446
|
+
// @public (undocumented)
|
|
447
|
+
export const colorNeutralStroke1Selected: CSSDesignToken<string>;
|
|
788
448
|
|
|
789
|
-
//
|
|
790
|
-
|
|
791
|
-
// @internal
|
|
792
|
-
export const inputFilledStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, logicalControlSelector: string, interactivitySelector?: string) => ElementStyles;
|
|
449
|
+
// @public (undocumented)
|
|
450
|
+
export const colorNeutralStroke2: CSSDesignToken<string>;
|
|
793
451
|
|
|
794
|
-
//
|
|
795
|
-
|
|
796
|
-
// @internal (undocumented)
|
|
797
|
-
export const inputForcedColorStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, logicalControlSelector: string, interactivitySelector?: string) => ElementStyles;
|
|
452
|
+
// @public (undocumented)
|
|
453
|
+
export const colorNeutralStroke3: CSSDesignToken<string>;
|
|
798
454
|
|
|
799
|
-
//
|
|
800
|
-
|
|
801
|
-
// @internal
|
|
802
|
-
export const inputOutlineStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, logicalControlSelector: string, interactivitySelector?: string) => ElementStyles;
|
|
455
|
+
// @public (undocumented)
|
|
456
|
+
export const colorNeutralStrokeAccessible: CSSDesignToken<string>;
|
|
803
457
|
|
|
804
|
-
//
|
|
805
|
-
|
|
806
|
-
// @internal
|
|
807
|
-
export const inputStateStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, logicalControlSelector: string) => ElementStyles;
|
|
458
|
+
// @public (undocumented)
|
|
459
|
+
export const colorNeutralStrokeAccessibleHover: CSSDesignToken<string>;
|
|
808
460
|
|
|
809
461
|
// @public (undocumented)
|
|
810
|
-
export
|
|
811
|
-
// (undocumented)
|
|
812
|
-
evaluate(element: HTMLElement, reference?: Swatch): InteractiveSwatchSet;
|
|
813
|
-
}
|
|
462
|
+
export const colorNeutralStrokeAccessiblePressed: CSSDesignToken<string>;
|
|
814
463
|
|
|
815
464
|
// @public (undocumented)
|
|
816
|
-
export
|
|
817
|
-
active: Swatch;
|
|
818
|
-
focus: Swatch;
|
|
819
|
-
hover: Swatch;
|
|
820
|
-
rest: Swatch;
|
|
821
|
-
}
|
|
465
|
+
export const colorNeutralStrokeAccessibleSelected: CSSDesignToken<string>;
|
|
822
466
|
|
|
823
|
-
//
|
|
824
|
-
|
|
825
|
-
// @internal
|
|
826
|
-
export function isDark(color: Swatch): boolean;
|
|
467
|
+
// @public (undocumented)
|
|
468
|
+
export const colorNeutralStrokeDisabled: CSSDesignToken<string>;
|
|
827
469
|
|
|
828
470
|
// @public (undocumented)
|
|
829
|
-
export const
|
|
471
|
+
export const colorNeutralStrokeInvertedDisabled: CSSDesignToken<string>;
|
|
830
472
|
|
|
831
|
-
//
|
|
832
|
-
|
|
833
|
-
// @internal (undocumented)
|
|
834
|
-
export const LightweightButtonStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, interactivitySelector: string, nonInteractivitySelector?: string) => ElementStyles;
|
|
473
|
+
// @public (undocumented)
|
|
474
|
+
export const colorNeutralStrokeOnBrand: CSSDesignToken<string>;
|
|
835
475
|
|
|
836
476
|
// @public (undocumented)
|
|
837
|
-
export
|
|
838
|
-
}
|
|
477
|
+
export const colorNeutralStrokeOnBrand2: CSSDesignToken<string>;
|
|
839
478
|
|
|
840
|
-
// @public
|
|
841
|
-
export const
|
|
479
|
+
// @public (undocumented)
|
|
480
|
+
export const colorNeutralStrokeOnBrand2Hover: CSSDesignToken<string>;
|
|
842
481
|
|
|
843
|
-
// @public
|
|
844
|
-
export
|
|
845
|
-
// @internal (undocumented)
|
|
846
|
-
connectedCallback(): void;
|
|
847
|
-
}
|
|
482
|
+
// @public (undocumented)
|
|
483
|
+
export const colorNeutralStrokeOnBrand2Pressed: CSSDesignToken<string>;
|
|
848
484
|
|
|
849
|
-
|
|
485
|
+
// @public (undocumented)
|
|
486
|
+
export const colorNeutralStrokeOnBrand2Selected: CSSDesignToken<string>;
|
|
850
487
|
|
|
851
|
-
// @public
|
|
852
|
-
export const
|
|
488
|
+
// @public (undocumented)
|
|
489
|
+
export const colorPaletteAnchorBackground2: CSSDesignToken<string>;
|
|
853
490
|
|
|
854
|
-
// @public
|
|
855
|
-
export const
|
|
491
|
+
// @public (undocumented)
|
|
492
|
+
export const colorPaletteAnchorBorderActive: CSSDesignToken<string>;
|
|
856
493
|
|
|
857
494
|
// @public (undocumented)
|
|
858
|
-
export const
|
|
495
|
+
export const colorPaletteAnchorForeground2: CSSDesignToken<string>;
|
|
859
496
|
|
|
860
|
-
//
|
|
861
|
-
|
|
862
|
-
// @internal (undocumented)
|
|
863
|
-
export const NeutralButtonStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, interactivitySelector: string, nonInteractivitySelector?: string) => ElementStyles;
|
|
497
|
+
// @public (undocumented)
|
|
498
|
+
export const colorPaletteBeigeBackground2: CSSDesignToken<string>;
|
|
864
499
|
|
|
865
|
-
// @public
|
|
866
|
-
export const
|
|
500
|
+
// @public (undocumented)
|
|
501
|
+
export const colorPaletteBeigeBorderActive: CSSDesignToken<string>;
|
|
867
502
|
|
|
868
|
-
// @public
|
|
869
|
-
export const
|
|
503
|
+
// @public (undocumented)
|
|
504
|
+
export const colorPaletteBeigeForeground2: CSSDesignToken<string>;
|
|
870
505
|
|
|
871
|
-
// @public
|
|
872
|
-
export const
|
|
506
|
+
// @public (undocumented)
|
|
507
|
+
export const colorPaletteBerryBackground1: CSSDesignToken<string>;
|
|
873
508
|
|
|
874
|
-
// @public
|
|
875
|
-
export const
|
|
509
|
+
// @public (undocumented)
|
|
510
|
+
export const colorPaletteBerryBackground2: CSSDesignToken<string>;
|
|
876
511
|
|
|
877
|
-
// @public
|
|
878
|
-
export const
|
|
512
|
+
// @public (undocumented)
|
|
513
|
+
export const colorPaletteBerryBackground3: CSSDesignToken<string>;
|
|
879
514
|
|
|
880
|
-
// @public
|
|
881
|
-
export const
|
|
515
|
+
// @public (undocumented)
|
|
516
|
+
export const colorPaletteBerryBorder1: CSSDesignToken<string>;
|
|
882
517
|
|
|
883
|
-
// @public
|
|
884
|
-
export const
|
|
518
|
+
// @public (undocumented)
|
|
519
|
+
export const colorPaletteBerryBorder2: CSSDesignToken<string>;
|
|
885
520
|
|
|
886
|
-
// @public
|
|
887
|
-
export const
|
|
521
|
+
// @public (undocumented)
|
|
522
|
+
export const colorPaletteBerryBorderActive: CSSDesignToken<string>;
|
|
888
523
|
|
|
889
|
-
// @public
|
|
890
|
-
export const
|
|
524
|
+
// @public (undocumented)
|
|
525
|
+
export const colorPaletteBerryForeground1: CSSDesignToken<string>;
|
|
891
526
|
|
|
892
|
-
// @public
|
|
893
|
-
export const
|
|
527
|
+
// @public (undocumented)
|
|
528
|
+
export const colorPaletteBerryForeground2: CSSDesignToken<string>;
|
|
894
529
|
|
|
895
530
|
// @public (undocumented)
|
|
896
|
-
export const
|
|
531
|
+
export const colorPaletteBerryForeground3: CSSDesignToken<string>;
|
|
897
532
|
|
|
898
533
|
// @public (undocumented)
|
|
899
|
-
export const
|
|
534
|
+
export const colorPaletteBlueBackground2: CSSDesignToken<string>;
|
|
900
535
|
|
|
901
|
-
// @public
|
|
902
|
-
export const
|
|
536
|
+
// @public (undocumented)
|
|
537
|
+
export const colorPaletteBlueBorderActive: CSSDesignToken<string>;
|
|
903
538
|
|
|
904
|
-
// @public
|
|
905
|
-
export const
|
|
539
|
+
// @public (undocumented)
|
|
540
|
+
export const colorPaletteBlueForeground2: CSSDesignToken<string>;
|
|
906
541
|
|
|
907
542
|
// @public (undocumented)
|
|
908
|
-
export const
|
|
543
|
+
export const colorPaletteBrassBackground2: CSSDesignToken<string>;
|
|
909
544
|
|
|
910
545
|
// @public (undocumented)
|
|
911
|
-
export const
|
|
546
|
+
export const colorPaletteBrassBorderActive: CSSDesignToken<string>;
|
|
912
547
|
|
|
913
548
|
// @public (undocumented)
|
|
914
|
-
export const
|
|
549
|
+
export const colorPaletteBrassForeground2: CSSDesignToken<string>;
|
|
915
550
|
|
|
916
551
|
// @public (undocumented)
|
|
917
|
-
export const
|
|
552
|
+
export const colorPaletteBrownBackground2: CSSDesignToken<string>;
|
|
918
553
|
|
|
919
554
|
// @public (undocumented)
|
|
920
|
-
export const
|
|
555
|
+
export const colorPaletteBrownBorderActive: CSSDesignToken<string>;
|
|
921
556
|
|
|
922
557
|
// @public (undocumented)
|
|
923
|
-
export const
|
|
558
|
+
export const colorPaletteBrownForeground2: CSSDesignToken<string>;
|
|
924
559
|
|
|
925
560
|
// @public (undocumented)
|
|
926
|
-
export const
|
|
561
|
+
export const colorPaletteCornflowerBackground2: CSSDesignToken<string>;
|
|
927
562
|
|
|
928
563
|
// @public (undocumented)
|
|
929
|
-
export const
|
|
564
|
+
export const colorPaletteCornflowerBorderActive: CSSDesignToken<string>;
|
|
930
565
|
|
|
931
566
|
// @public (undocumented)
|
|
932
|
-
export const
|
|
567
|
+
export const colorPaletteCornflowerForeground2: CSSDesignToken<string>;
|
|
933
568
|
|
|
934
569
|
// @public (undocumented)
|
|
935
|
-
export const
|
|
570
|
+
export const colorPaletteCranberryBackground2: CSSDesignToken<string>;
|
|
936
571
|
|
|
937
572
|
// @public (undocumented)
|
|
938
|
-
export const
|
|
573
|
+
export const colorPaletteCranberryBorderActive: CSSDesignToken<string>;
|
|
939
574
|
|
|
940
575
|
// @public (undocumented)
|
|
941
|
-
export const
|
|
576
|
+
export const colorPaletteCranberryForeground2: CSSDesignToken<string>;
|
|
942
577
|
|
|
943
578
|
// @public (undocumented)
|
|
944
|
-
export const
|
|
579
|
+
export const colorPaletteDarkGreenBackground2: CSSDesignToken<string>;
|
|
945
580
|
|
|
946
581
|
// @public (undocumented)
|
|
947
|
-
export const
|
|
582
|
+
export const colorPaletteDarkGreenBorderActive: CSSDesignToken<string>;
|
|
948
583
|
|
|
949
584
|
// @public (undocumented)
|
|
950
|
-
export const
|
|
585
|
+
export const colorPaletteDarkGreenForeground2: CSSDesignToken<string>;
|
|
951
586
|
|
|
952
587
|
// @public (undocumented)
|
|
953
|
-
export const
|
|
588
|
+
export const colorPaletteDarkOrangeBackground1: CSSDesignToken<string>;
|
|
954
589
|
|
|
955
590
|
// @public (undocumented)
|
|
956
|
-
export const
|
|
591
|
+
export const colorPaletteDarkOrangeBackground2: CSSDesignToken<string>;
|
|
957
592
|
|
|
958
593
|
// @public (undocumented)
|
|
959
|
-
export const
|
|
594
|
+
export const colorPaletteDarkOrangeBackground3: CSSDesignToken<string>;
|
|
960
595
|
|
|
961
596
|
// @public (undocumented)
|
|
962
|
-
export const
|
|
597
|
+
export const colorPaletteDarkOrangeBorder1: CSSDesignToken<string>;
|
|
963
598
|
|
|
964
599
|
// @public (undocumented)
|
|
965
|
-
export const
|
|
600
|
+
export const colorPaletteDarkOrangeBorder2: CSSDesignToken<string>;
|
|
966
601
|
|
|
967
602
|
// @public (undocumented)
|
|
968
|
-
export const
|
|
603
|
+
export const colorPaletteDarkOrangeBorderActive: CSSDesignToken<string>;
|
|
969
604
|
|
|
970
605
|
// @public (undocumented)
|
|
971
|
-
export const
|
|
606
|
+
export const colorPaletteDarkOrangeForeground1: CSSDesignToken<string>;
|
|
972
607
|
|
|
973
|
-
// @public
|
|
974
|
-
export const
|
|
608
|
+
// @public (undocumented)
|
|
609
|
+
export const colorPaletteDarkOrangeForeground2: CSSDesignToken<string>;
|
|
975
610
|
|
|
976
|
-
// @public
|
|
977
|
-
export const
|
|
611
|
+
// @public (undocumented)
|
|
612
|
+
export const colorPaletteDarkOrangeForeground3: CSSDesignToken<string>;
|
|
978
613
|
|
|
979
|
-
// @public
|
|
980
|
-
export const
|
|
614
|
+
// @public (undocumented)
|
|
615
|
+
export const colorPaletteDarkRedBackground2: CSSDesignToken<string>;
|
|
981
616
|
|
|
982
|
-
// @public
|
|
983
|
-
export const
|
|
617
|
+
// @public (undocumented)
|
|
618
|
+
export const colorPaletteDarkRedBorderActive: CSSDesignToken<string>;
|
|
984
619
|
|
|
985
|
-
// @public
|
|
986
|
-
export const
|
|
620
|
+
// @public (undocumented)
|
|
621
|
+
export const colorPaletteDarkRedForeground2: CSSDesignToken<string>;
|
|
987
622
|
|
|
988
|
-
// @public
|
|
989
|
-
export const
|
|
623
|
+
// @public (undocumented)
|
|
624
|
+
export const colorPaletteForestBackground2: CSSDesignToken<string>;
|
|
990
625
|
|
|
991
|
-
// @public
|
|
992
|
-
export const
|
|
626
|
+
// @public (undocumented)
|
|
627
|
+
export const colorPaletteForestBorderActive: CSSDesignToken<string>;
|
|
993
628
|
|
|
994
|
-
// @public
|
|
995
|
-
export const
|
|
629
|
+
// @public (undocumented)
|
|
630
|
+
export const colorPaletteForestForeground2: CSSDesignToken<string>;
|
|
996
631
|
|
|
997
|
-
// @public
|
|
998
|
-
export const
|
|
632
|
+
// @public (undocumented)
|
|
633
|
+
export const colorPaletteGoldBackground2: CSSDesignToken<string>;
|
|
999
634
|
|
|
1000
635
|
// @public (undocumented)
|
|
1001
|
-
export const
|
|
636
|
+
export const colorPaletteGoldBorderActive: CSSDesignToken<string>;
|
|
1002
637
|
|
|
1003
638
|
// @public (undocumented)
|
|
1004
|
-
export const
|
|
639
|
+
export const colorPaletteGoldForeground2: CSSDesignToken<string>;
|
|
1005
640
|
|
|
1006
641
|
// @public (undocumented)
|
|
1007
|
-
export const
|
|
642
|
+
export const colorPaletteGrapeBackground2: CSSDesignToken<string>;
|
|
1008
643
|
|
|
1009
644
|
// @public (undocumented)
|
|
1010
|
-
export const
|
|
645
|
+
export const colorPaletteGrapeBorderActive: CSSDesignToken<string>;
|
|
1011
646
|
|
|
1012
647
|
// @public (undocumented)
|
|
1013
|
-
export const
|
|
648
|
+
export const colorPaletteGrapeForeground2: CSSDesignToken<string>;
|
|
1014
649
|
|
|
1015
650
|
// @public (undocumented)
|
|
1016
|
-
export const
|
|
651
|
+
export const colorPaletteGreenBackground1: CSSDesignToken<string>;
|
|
1017
652
|
|
|
1018
653
|
// @public (undocumented)
|
|
1019
|
-
export const
|
|
654
|
+
export const colorPaletteGreenBackground2: CSSDesignToken<string>;
|
|
1020
655
|
|
|
1021
656
|
// @public (undocumented)
|
|
1022
|
-
export const
|
|
657
|
+
export const colorPaletteGreenBackground3: CSSDesignToken<string>;
|
|
1023
658
|
|
|
1024
659
|
// @public (undocumented)
|
|
1025
|
-
export const
|
|
660
|
+
export const colorPaletteGreenBorder1: CSSDesignToken<string>;
|
|
1026
661
|
|
|
1027
662
|
// @public (undocumented)
|
|
1028
|
-
export const
|
|
663
|
+
export const colorPaletteGreenBorder2: CSSDesignToken<string>;
|
|
1029
664
|
|
|
1030
665
|
// @public (undocumented)
|
|
1031
|
-
export const
|
|
666
|
+
export const colorPaletteGreenBorderActive: CSSDesignToken<string>;
|
|
1032
667
|
|
|
1033
668
|
// @public (undocumented)
|
|
1034
|
-
export const
|
|
669
|
+
export const colorPaletteGreenForeground1: CSSDesignToken<string>;
|
|
1035
670
|
|
|
1036
671
|
// @public (undocumented)
|
|
1037
|
-
export const
|
|
672
|
+
export const colorPaletteGreenForeground2: CSSDesignToken<string>;
|
|
1038
673
|
|
|
1039
674
|
// @public (undocumented)
|
|
1040
|
-
export const
|
|
675
|
+
export const colorPaletteGreenForeground3: CSSDesignToken<string>;
|
|
1041
676
|
|
|
1042
677
|
// @public (undocumented)
|
|
1043
|
-
export const
|
|
678
|
+
export const colorPaletteLavenderBackground2: CSSDesignToken<string>;
|
|
1044
679
|
|
|
1045
680
|
// @public (undocumented)
|
|
1046
|
-
export const
|
|
681
|
+
export const colorPaletteLavenderBorderActive: CSSDesignToken<string>;
|
|
1047
682
|
|
|
1048
683
|
// @public (undocumented)
|
|
1049
|
-
export const
|
|
684
|
+
export const colorPaletteLavenderForeground2: CSSDesignToken<string>;
|
|
1050
685
|
|
|
1051
686
|
// @public (undocumented)
|
|
1052
|
-
export const
|
|
687
|
+
export const colorPaletteLightGreenBackground1: CSSDesignToken<string>;
|
|
1053
688
|
|
|
1054
689
|
// @public (undocumented)
|
|
1055
|
-
export const
|
|
690
|
+
export const colorPaletteLightGreenBackground2: CSSDesignToken<string>;
|
|
1056
691
|
|
|
1057
692
|
// @public (undocumented)
|
|
1058
|
-
export const
|
|
693
|
+
export const colorPaletteLightGreenBackground3: CSSDesignToken<string>;
|
|
1059
694
|
|
|
1060
695
|
// @public (undocumented)
|
|
1061
|
-
export const
|
|
696
|
+
export const colorPaletteLightGreenBorder1: CSSDesignToken<string>;
|
|
1062
697
|
|
|
1063
698
|
// @public (undocumented)
|
|
1064
|
-
export const
|
|
699
|
+
export const colorPaletteLightGreenBorder2: CSSDesignToken<string>;
|
|
1065
700
|
|
|
1066
701
|
// @public (undocumented)
|
|
1067
|
-
export const
|
|
702
|
+
export const colorPaletteLightGreenBorderActive: CSSDesignToken<string>;
|
|
1068
703
|
|
|
1069
704
|
// @public (undocumented)
|
|
1070
|
-
export const
|
|
705
|
+
export const colorPaletteLightGreenForeground1: CSSDesignToken<string>;
|
|
1071
706
|
|
|
1072
707
|
// @public (undocumented)
|
|
1073
|
-
export const
|
|
708
|
+
export const colorPaletteLightGreenForeground2: CSSDesignToken<string>;
|
|
1074
709
|
|
|
1075
710
|
// @public (undocumented)
|
|
1076
|
-
export const
|
|
711
|
+
export const colorPaletteLightGreenForeground3: CSSDesignToken<string>;
|
|
1077
712
|
|
|
1078
713
|
// @public (undocumented)
|
|
1079
|
-
export const
|
|
714
|
+
export const colorPaletteLightTealBackground2: CSSDesignToken<string>;
|
|
1080
715
|
|
|
1081
716
|
// @public (undocumented)
|
|
1082
|
-
export const
|
|
717
|
+
export const colorPaletteLightTealBorderActive: CSSDesignToken<string>;
|
|
1083
718
|
|
|
1084
719
|
// @public (undocumented)
|
|
1085
|
-
export const
|
|
720
|
+
export const colorPaletteLightTealForeground2: CSSDesignToken<string>;
|
|
1086
721
|
|
|
1087
722
|
// @public (undocumented)
|
|
1088
|
-
export const
|
|
723
|
+
export const colorPaletteLilacBackground2: CSSDesignToken<string>;
|
|
1089
724
|
|
|
1090
725
|
// @public (undocumented)
|
|
1091
|
-
export const
|
|
726
|
+
export const colorPaletteLilacBorderActive: CSSDesignToken<string>;
|
|
1092
727
|
|
|
1093
728
|
// @public (undocumented)
|
|
1094
|
-
export const
|
|
729
|
+
export const colorPaletteLilacForeground2: CSSDesignToken<string>;
|
|
1095
730
|
|
|
1096
731
|
// @public (undocumented)
|
|
1097
|
-
export const
|
|
732
|
+
export const colorPaletteMagentaBackground2: CSSDesignToken<string>;
|
|
1098
733
|
|
|
1099
734
|
// @public (undocumented)
|
|
1100
|
-
export const
|
|
735
|
+
export const colorPaletteMagentaBorderActive: CSSDesignToken<string>;
|
|
1101
736
|
|
|
1102
737
|
// @public (undocumented)
|
|
1103
|
-
export const
|
|
738
|
+
export const colorPaletteMagentaForeground2: CSSDesignToken<string>;
|
|
1104
739
|
|
|
1105
740
|
// @public (undocumented)
|
|
1106
|
-
export const
|
|
741
|
+
export const colorPaletteMarigoldBackground1: CSSDesignToken<string>;
|
|
1107
742
|
|
|
1108
743
|
// @public (undocumented)
|
|
1109
|
-
export const
|
|
744
|
+
export const colorPaletteMarigoldBackground2: CSSDesignToken<string>;
|
|
1110
745
|
|
|
1111
746
|
// @public (undocumented)
|
|
1112
|
-
export const
|
|
747
|
+
export const colorPaletteMarigoldBackground3: CSSDesignToken<string>;
|
|
1113
748
|
|
|
1114
749
|
// @public (undocumented)
|
|
1115
|
-
export const
|
|
750
|
+
export const colorPaletteMarigoldBorder1: CSSDesignToken<string>;
|
|
1116
751
|
|
|
1117
752
|
// @public (undocumented)
|
|
1118
|
-
export const
|
|
753
|
+
export const colorPaletteMarigoldBorder2: CSSDesignToken<string>;
|
|
1119
754
|
|
|
1120
|
-
// @public
|
|
1121
|
-
export const
|
|
755
|
+
// @public (undocumented)
|
|
756
|
+
export const colorPaletteMarigoldBorderActive: CSSDesignToken<string>;
|
|
1122
757
|
|
|
1123
|
-
// @public
|
|
1124
|
-
export const
|
|
758
|
+
// @public (undocumented)
|
|
759
|
+
export const colorPaletteMarigoldForeground1: CSSDesignToken<string>;
|
|
1125
760
|
|
|
1126
|
-
// @public
|
|
1127
|
-
export const
|
|
761
|
+
// @public (undocumented)
|
|
762
|
+
export const colorPaletteMarigoldForeground2: CSSDesignToken<string>;
|
|
1128
763
|
|
|
1129
|
-
// @public
|
|
1130
|
-
export const
|
|
764
|
+
// @public (undocumented)
|
|
765
|
+
export const colorPaletteMarigoldForeground3: CSSDesignToken<string>;
|
|
1131
766
|
|
|
1132
|
-
// @public
|
|
1133
|
-
export const
|
|
767
|
+
// @public (undocumented)
|
|
768
|
+
export const colorPaletteMinkBackground2: CSSDesignToken<string>;
|
|
1134
769
|
|
|
1135
|
-
// @public
|
|
1136
|
-
export const
|
|
770
|
+
// @public (undocumented)
|
|
771
|
+
export const colorPaletteMinkBorderActive: CSSDesignToken<string>;
|
|
1137
772
|
|
|
1138
|
-
// @public
|
|
1139
|
-
export const
|
|
773
|
+
// @public (undocumented)
|
|
774
|
+
export const colorPaletteMinkForeground2: CSSDesignToken<string>;
|
|
1140
775
|
|
|
1141
|
-
// @public
|
|
1142
|
-
export const
|
|
776
|
+
// @public (undocumented)
|
|
777
|
+
export const colorPaletteNavyBackground2: CSSDesignToken<string>;
|
|
1143
778
|
|
|
1144
|
-
// @public
|
|
1145
|
-
export const
|
|
779
|
+
// @public (undocumented)
|
|
780
|
+
export const colorPaletteNavyBorderActive: CSSDesignToken<string>;
|
|
1146
781
|
|
|
1147
|
-
// @public
|
|
1148
|
-
export const
|
|
782
|
+
// @public (undocumented)
|
|
783
|
+
export const colorPaletteNavyForeground2: CSSDesignToken<string>;
|
|
1149
784
|
|
|
1150
785
|
// @public (undocumented)
|
|
1151
|
-
export const
|
|
786
|
+
export const colorPalettePeachBackground2: CSSDesignToken<string>;
|
|
1152
787
|
|
|
1153
788
|
// @public (undocumented)
|
|
1154
|
-
export const
|
|
789
|
+
export const colorPalettePeachBorderActive: CSSDesignToken<string>;
|
|
1155
790
|
|
|
1156
791
|
// @public (undocumented)
|
|
1157
|
-
export const
|
|
792
|
+
export const colorPalettePeachForeground2: CSSDesignToken<string>;
|
|
1158
793
|
|
|
1159
794
|
// @public (undocumented)
|
|
1160
|
-
export const
|
|
795
|
+
export const colorPalettePinkBackground2: CSSDesignToken<string>;
|
|
1161
796
|
|
|
1162
797
|
// @public (undocumented)
|
|
1163
|
-
export const
|
|
798
|
+
export const colorPalettePinkBorderActive: CSSDesignToken<string>;
|
|
1164
799
|
|
|
1165
800
|
// @public (undocumented)
|
|
1166
|
-
export const
|
|
801
|
+
export const colorPalettePinkForeground2: CSSDesignToken<string>;
|
|
1167
802
|
|
|
1168
803
|
// @public (undocumented)
|
|
1169
|
-
export const
|
|
804
|
+
export const colorPalettePlatinumBackground2: CSSDesignToken<string>;
|
|
1170
805
|
|
|
1171
806
|
// @public (undocumented)
|
|
1172
|
-
export const
|
|
807
|
+
export const colorPalettePlatinumBorderActive: CSSDesignToken<string>;
|
|
1173
808
|
|
|
1174
809
|
// @public (undocumented)
|
|
1175
|
-
export const
|
|
810
|
+
export const colorPalettePlatinumForeground2: CSSDesignToken<string>;
|
|
1176
811
|
|
|
1177
812
|
// @public (undocumented)
|
|
1178
|
-
export const
|
|
813
|
+
export const colorPalettePlumBackground2: CSSDesignToken<string>;
|
|
1179
814
|
|
|
1180
815
|
// @public (undocumented)
|
|
1181
|
-
export const
|
|
816
|
+
export const colorPalettePlumBorderActive: CSSDesignToken<string>;
|
|
1182
817
|
|
|
1183
818
|
// @public (undocumented)
|
|
1184
|
-
export const
|
|
819
|
+
export const colorPalettePlumForeground2: CSSDesignToken<string>;
|
|
1185
820
|
|
|
1186
821
|
// @public (undocumented)
|
|
1187
|
-
export const
|
|
822
|
+
export const colorPalettePumpkinBackground2: CSSDesignToken<string>;
|
|
1188
823
|
|
|
1189
824
|
// @public (undocumented)
|
|
1190
|
-
export const
|
|
825
|
+
export const colorPalettePumpkinBorderActive: CSSDesignToken<string>;
|
|
1191
826
|
|
|
1192
827
|
// @public (undocumented)
|
|
1193
|
-
export const
|
|
828
|
+
export const colorPalettePumpkinForeground2: CSSDesignToken<string>;
|
|
1194
829
|
|
|
1195
830
|
// @public (undocumented)
|
|
1196
|
-
export const
|
|
831
|
+
export const colorPalettePurpleBackground2: CSSDesignToken<string>;
|
|
1197
832
|
|
|
1198
833
|
// @public (undocumented)
|
|
1199
|
-
export const
|
|
834
|
+
export const colorPalettePurpleBorderActive: CSSDesignToken<string>;
|
|
1200
835
|
|
|
1201
836
|
// @public (undocumented)
|
|
1202
|
-
export const
|
|
837
|
+
export const colorPalettePurpleForeground2: CSSDesignToken<string>;
|
|
1203
838
|
|
|
1204
839
|
// @public (undocumented)
|
|
1205
|
-
export const
|
|
840
|
+
export const colorPaletteRedBackground1: CSSDesignToken<string>;
|
|
1206
841
|
|
|
1207
|
-
// @public
|
|
1208
|
-
export const
|
|
842
|
+
// @public (undocumented)
|
|
843
|
+
export const colorPaletteRedBackground2: CSSDesignToken<string>;
|
|
1209
844
|
|
|
1210
|
-
// @public
|
|
1211
|
-
export const
|
|
845
|
+
// @public (undocumented)
|
|
846
|
+
export const colorPaletteRedBackground3: CSSDesignToken<string>;
|
|
1212
847
|
|
|
1213
|
-
// @public
|
|
1214
|
-
export const
|
|
848
|
+
// @public (undocumented)
|
|
849
|
+
export const colorPaletteRedBorder1: CSSDesignToken<string>;
|
|
1215
850
|
|
|
1216
|
-
// @public
|
|
1217
|
-
export const
|
|
851
|
+
// @public (undocumented)
|
|
852
|
+
export const colorPaletteRedBorder2: CSSDesignToken<string>;
|
|
1218
853
|
|
|
1219
|
-
// @public
|
|
1220
|
-
export const
|
|
854
|
+
// @public (undocumented)
|
|
855
|
+
export const colorPaletteRedBorderActive: CSSDesignToken<string>;
|
|
1221
856
|
|
|
1222
|
-
// @public
|
|
1223
|
-
export const
|
|
857
|
+
// @public (undocumented)
|
|
858
|
+
export const colorPaletteRedForeground1: CSSDesignToken<string>;
|
|
1224
859
|
|
|
1225
|
-
// @public
|
|
1226
|
-
export const
|
|
860
|
+
// @public (undocumented)
|
|
861
|
+
export const colorPaletteRedForeground2: CSSDesignToken<string>;
|
|
1227
862
|
|
|
1228
|
-
// @public
|
|
1229
|
-
export const
|
|
863
|
+
// @public (undocumented)
|
|
864
|
+
export const colorPaletteRedForeground3: CSSDesignToken<string>;
|
|
1230
865
|
|
|
1231
866
|
// @public (undocumented)
|
|
1232
|
-
export const
|
|
867
|
+
export const colorPaletteRoyalBlueBackground2: CSSDesignToken<string>;
|
|
1233
868
|
|
|
1234
869
|
// @public (undocumented)
|
|
1235
|
-
export const
|
|
870
|
+
export const colorPaletteRoyalBlueBorderActive: CSSDesignToken<string>;
|
|
1236
871
|
|
|
1237
872
|
// @public (undocumented)
|
|
1238
|
-
export const
|
|
873
|
+
export const colorPaletteRoyalBlueForeground2: CSSDesignToken<string>;
|
|
1239
874
|
|
|
1240
875
|
// @public (undocumented)
|
|
1241
|
-
export const
|
|
876
|
+
export const colorPaletteSeafoamBackground2: CSSDesignToken<string>;
|
|
1242
877
|
|
|
1243
878
|
// @public (undocumented)
|
|
1244
|
-
export const
|
|
879
|
+
export const colorPaletteSeafoamBorderActive: CSSDesignToken<string>;
|
|
1245
880
|
|
|
1246
881
|
// @public (undocumented)
|
|
1247
|
-
export const
|
|
882
|
+
export const colorPaletteSeafoamForeground2: CSSDesignToken<string>;
|
|
1248
883
|
|
|
1249
884
|
// @public (undocumented)
|
|
1250
|
-
export const
|
|
885
|
+
export const colorPaletteSteelBackground2: CSSDesignToken<string>;
|
|
1251
886
|
|
|
1252
887
|
// @public (undocumented)
|
|
1253
|
-
export const
|
|
888
|
+
export const colorPaletteSteelBorderActive: CSSDesignToken<string>;
|
|
1254
889
|
|
|
1255
890
|
// @public (undocumented)
|
|
1256
|
-
export const
|
|
891
|
+
export const colorPaletteSteelForeground2: CSSDesignToken<string>;
|
|
1257
892
|
|
|
1258
893
|
// @public (undocumented)
|
|
1259
|
-
export const
|
|
894
|
+
export const colorPaletteTealBackground2: CSSDesignToken<string>;
|
|
1260
895
|
|
|
1261
896
|
// @public (undocumented)
|
|
1262
|
-
export const
|
|
897
|
+
export const colorPaletteTealBorderActive: CSSDesignToken<string>;
|
|
1263
898
|
|
|
1264
899
|
// @public (undocumented)
|
|
1265
|
-
export const
|
|
900
|
+
export const colorPaletteTealForeground2: CSSDesignToken<string>;
|
|
1266
901
|
|
|
1267
902
|
// @public (undocumented)
|
|
1268
|
-
export const
|
|
903
|
+
export const colorPaletteYellowBackground1: CSSDesignToken<string>;
|
|
1269
904
|
|
|
1270
905
|
// @public (undocumented)
|
|
1271
|
-
export const
|
|
906
|
+
export const colorPaletteYellowBackground2: CSSDesignToken<string>;
|
|
1272
907
|
|
|
1273
908
|
// @public (undocumented)
|
|
1274
|
-
export const
|
|
909
|
+
export const colorPaletteYellowBackground3: CSSDesignToken<string>;
|
|
1275
910
|
|
|
1276
911
|
// @public (undocumented)
|
|
1277
|
-
export const
|
|
912
|
+
export const colorPaletteYellowBorder1: CSSDesignToken<string>;
|
|
1278
913
|
|
|
1279
914
|
// @public (undocumented)
|
|
1280
|
-
export const
|
|
915
|
+
export const colorPaletteYellowBorder2: CSSDesignToken<string>;
|
|
1281
916
|
|
|
1282
917
|
// @public (undocumented)
|
|
1283
|
-
export const
|
|
918
|
+
export const colorPaletteYellowBorderActive: CSSDesignToken<string>;
|
|
1284
919
|
|
|
1285
920
|
// @public (undocumented)
|
|
1286
|
-
export const
|
|
921
|
+
export const colorPaletteYellowForeground1: CSSDesignToken<string>;
|
|
1287
922
|
|
|
1288
923
|
// @public (undocumented)
|
|
1289
|
-
export const
|
|
924
|
+
export const colorPaletteYellowForeground2: CSSDesignToken<string>;
|
|
1290
925
|
|
|
1291
926
|
// @public (undocumented)
|
|
1292
|
-
export const
|
|
927
|
+
export const colorPaletteYellowForeground3: CSSDesignToken<string>;
|
|
1293
928
|
|
|
1294
929
|
// @public (undocumented)
|
|
1295
|
-
export const
|
|
930
|
+
export const colorScrollbarOverlay: CSSDesignToken<string>;
|
|
1296
931
|
|
|
1297
932
|
// @public (undocumented)
|
|
1298
|
-
export const
|
|
933
|
+
export const colorStrokeFocus1: CSSDesignToken<string>;
|
|
1299
934
|
|
|
1300
935
|
// @public (undocumented)
|
|
1301
|
-
export const
|
|
936
|
+
export const colorStrokeFocus2: CSSDesignToken<string>;
|
|
1302
937
|
|
|
1303
938
|
// @public (undocumented)
|
|
1304
|
-
export const
|
|
939
|
+
export const colorSubtleBackground: CSSDesignToken<string>;
|
|
1305
940
|
|
|
1306
941
|
// @public (undocumented)
|
|
1307
|
-
export const
|
|
942
|
+
export const colorSubtleBackgroundHover: CSSDesignToken<string>;
|
|
1308
943
|
|
|
1309
944
|
// @public (undocumented)
|
|
1310
|
-
export const
|
|
945
|
+
export const colorSubtleBackgroundInverted: CSSDesignToken<string>;
|
|
1311
946
|
|
|
1312
947
|
// @public (undocumented)
|
|
1313
|
-
export const
|
|
948
|
+
export const colorSubtleBackgroundInvertedHover: CSSDesignToken<string>;
|
|
1314
949
|
|
|
1315
950
|
// @public (undocumented)
|
|
1316
|
-
export const
|
|
951
|
+
export const colorSubtleBackgroundInvertedPressed: CSSDesignToken<string>;
|
|
1317
952
|
|
|
1318
953
|
// @public (undocumented)
|
|
1319
|
-
export const
|
|
954
|
+
export const colorSubtleBackgroundInvertedSelected: CSSDesignToken<string>;
|
|
1320
955
|
|
|
1321
956
|
// @public (undocumented)
|
|
1322
|
-
export const
|
|
957
|
+
export const colorSubtleBackgroundLightAlphaHover: CSSDesignToken<string>;
|
|
1323
958
|
|
|
1324
959
|
// @public (undocumented)
|
|
1325
|
-
export const
|
|
960
|
+
export const colorSubtleBackgroundLightAlphaPressed: CSSDesignToken<string>;
|
|
1326
961
|
|
|
1327
962
|
// @public (undocumented)
|
|
1328
|
-
export const
|
|
963
|
+
export const colorSubtleBackgroundLightAlphaSelected: CSSDesignToken<string>;
|
|
1329
964
|
|
|
1330
965
|
// @public (undocumented)
|
|
1331
|
-
export const
|
|
966
|
+
export const colorSubtleBackgroundPressed: CSSDesignToken<string>;
|
|
1332
967
|
|
|
1333
968
|
// @public (undocumented)
|
|
1334
|
-
export const
|
|
969
|
+
export const colorSubtleBackgroundSelected: CSSDesignToken<string>;
|
|
1335
970
|
|
|
1336
971
|
// @public (undocumented)
|
|
1337
|
-
export const
|
|
972
|
+
export const colorTransparentBackground: CSSDesignToken<string>;
|
|
1338
973
|
|
|
1339
974
|
// @public (undocumented)
|
|
1340
|
-
export const
|
|
975
|
+
export const colorTransparentBackgroundHover: CSSDesignToken<string>;
|
|
1341
976
|
|
|
1342
977
|
// @public (undocumented)
|
|
1343
|
-
export const
|
|
978
|
+
export const colorTransparentBackgroundPressed: CSSDesignToken<string>;
|
|
1344
979
|
|
|
1345
980
|
// @public (undocumented)
|
|
1346
|
-
export const
|
|
981
|
+
export const colorTransparentBackgroundSelected: CSSDesignToken<string>;
|
|
1347
982
|
|
|
1348
983
|
// @public (undocumented)
|
|
1349
|
-
export const
|
|
984
|
+
export const colorTransparentStroke: CSSDesignToken<string>;
|
|
1350
985
|
|
|
1351
986
|
// @public (undocumented)
|
|
1352
|
-
export const
|
|
987
|
+
export const colorTransparentStrokeDisabled: CSSDesignToken<string>;
|
|
1353
988
|
|
|
1354
989
|
// @public (undocumented)
|
|
1355
|
-
export const
|
|
990
|
+
export const colorTransparentStrokeInteractive: CSSDesignToken<string>;
|
|
1356
991
|
|
|
1357
|
-
// Warning: (ae-internal-
|
|
992
|
+
// Warning: (ae-internal-mixed-release-tag) Mixed release tags are not allowed for "CounterBadge" because one of its declarations is marked as @internal
|
|
1358
993
|
//
|
|
1359
|
-
// @
|
|
1360
|
-
export class
|
|
1361
|
-
|
|
1362
|
-
|
|
994
|
+
// @public
|
|
995
|
+
export class CounterBadge extends FASTElement {
|
|
996
|
+
appearance: CounterBadgeAppearance;
|
|
997
|
+
color: CounterBadgeColor;
|
|
998
|
+
count: number;
|
|
1363
999
|
// (undocumented)
|
|
1364
|
-
|
|
1000
|
+
protected countChanged(): void;
|
|
1001
|
+
dot: boolean;
|
|
1002
|
+
overflowCount: number;
|
|
1003
|
+
// (undocumented)
|
|
1004
|
+
protected overflowCountChanged(): void;
|
|
1005
|
+
// @internal
|
|
1006
|
+
setCount(): string | void;
|
|
1007
|
+
shape: CounterBadgeShape;
|
|
1008
|
+
showZero: boolean;
|
|
1009
|
+
size: CounterBadgeSize;
|
|
1365
1010
|
}
|
|
1366
1011
|
|
|
1367
|
-
// @
|
|
1368
|
-
export
|
|
1012
|
+
// @internal
|
|
1013
|
+
export interface CounterBadge extends StartEnd {
|
|
1014
|
+
}
|
|
1369
1015
|
|
|
1370
1016
|
// @public
|
|
1371
|
-
export const
|
|
1017
|
+
export const CounterBadgeAppearance: {
|
|
1018
|
+
readonly filled: "filled";
|
|
1019
|
+
readonly ghost: "ghost";
|
|
1020
|
+
};
|
|
1372
1021
|
|
|
1373
1022
|
// @public
|
|
1374
|
-
export
|
|
1023
|
+
export type CounterBadgeAppearance = ValuesOf<typeof CounterBadgeAppearance>;
|
|
1375
1024
|
|
|
1376
|
-
//
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1025
|
+
// @public
|
|
1026
|
+
export const CounterBadgeColor: {
|
|
1027
|
+
readonly brand: "brand";
|
|
1028
|
+
readonly danger: "danger";
|
|
1029
|
+
readonly important: "important";
|
|
1030
|
+
readonly informative: "informative";
|
|
1031
|
+
readonly severe: "severe";
|
|
1032
|
+
readonly subtle: "subtle";
|
|
1033
|
+
readonly success: "success";
|
|
1034
|
+
readonly warning: "warning";
|
|
1035
|
+
};
|
|
1380
1036
|
|
|
1381
|
-
// @public
|
|
1382
|
-
export
|
|
1037
|
+
// @public
|
|
1038
|
+
export type CounterBadgeColor = ValuesOf<typeof CounterBadgeColor>;
|
|
1383
1039
|
|
|
1384
1040
|
// @public
|
|
1385
|
-
export
|
|
1386
|
-
// Warning: (ae-forgotten-export) The symbol "RelativeLuminance" needs to be exported by the entry point index.d.ts
|
|
1387
|
-
closestIndexOf(reference: RelativeLuminance): number;
|
|
1388
|
-
colorContrast(reference: Swatch, contrast: number, initialIndex?: number, direction?: 1 | -1): T;
|
|
1389
|
-
get(index: number): T;
|
|
1390
|
-
// (undocumented)
|
|
1391
|
-
readonly source: T;
|
|
1392
|
-
// (undocumented)
|
|
1393
|
-
readonly swatches: ReadonlyArray<T>;
|
|
1394
|
-
}
|
|
1041
|
+
export const CounterBadgeDefinition: FASTElementDefinition<typeof CounterBadge>;
|
|
1395
1042
|
|
|
1396
|
-
// @public
|
|
1397
|
-
|
|
1043
|
+
// Warning: (ae-incompatible-release-tags) The symbol "CounterBadgeOptions" is marked as @public, but its signature references "BadgeOptions" which is marked as @internal
|
|
1044
|
+
//
|
|
1045
|
+
// @public
|
|
1046
|
+
export type CounterBadgeOptions = BadgeOptions;
|
|
1398
1047
|
|
|
1399
|
-
// @public
|
|
1400
|
-
export const
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
}
|
|
1048
|
+
// @public
|
|
1049
|
+
export const CounterBadgeShape: {
|
|
1050
|
+
readonly circular: "circular";
|
|
1051
|
+
readonly rounded: "rounded";
|
|
1052
|
+
};
|
|
1404
1053
|
|
|
1405
1054
|
// @public
|
|
1406
|
-
export
|
|
1407
|
-
}
|
|
1055
|
+
export type CounterBadgeShape = ValuesOf<typeof CounterBadgeShape>;
|
|
1408
1056
|
|
|
1409
1057
|
// @public
|
|
1410
|
-
export
|
|
1411
|
-
|
|
1058
|
+
export const CounterBadgeSize: {
|
|
1059
|
+
readonly tiny: "tiny";
|
|
1060
|
+
readonly extraSmall: "extra-small";
|
|
1061
|
+
readonly small: "small";
|
|
1062
|
+
readonly medium: "medium";
|
|
1063
|
+
readonly large: "large";
|
|
1064
|
+
readonly extraLarge: "extra-large";
|
|
1065
|
+
};
|
|
1412
1066
|
|
|
1413
1067
|
// @public
|
|
1414
|
-
export
|
|
1068
|
+
export type CounterBadgeSize = ValuesOf<typeof CounterBadgeSize>;
|
|
1415
1069
|
|
|
1416
1070
|
// @public
|
|
1417
|
-
export const
|
|
1071
|
+
export const CounterBadgeStyles: ElementStyles;
|
|
1418
1072
|
|
|
1419
1073
|
// @public
|
|
1420
|
-
export
|
|
1074
|
+
export const CounterBadgeTemplate: ElementViewTemplate<CounterBadge>;
|
|
1421
1075
|
|
|
1422
|
-
|
|
1076
|
+
// @public (undocumented)
|
|
1077
|
+
export const curveAccelerateMax: CSSDesignToken<string>;
|
|
1423
1078
|
|
|
1424
|
-
|
|
1079
|
+
// @public (undocumented)
|
|
1080
|
+
export const curveAccelerateMid: CSSDesignToken<string>;
|
|
1425
1081
|
|
|
1426
|
-
// @public
|
|
1427
|
-
export const
|
|
1082
|
+
// @public (undocumented)
|
|
1083
|
+
export const curveAccelerateMin: CSSDesignToken<string>;
|
|
1428
1084
|
|
|
1429
|
-
// @public
|
|
1430
|
-
export const
|
|
1085
|
+
// @public (undocumented)
|
|
1086
|
+
export const curveDecelerateMax: CSSDesignToken<string>;
|
|
1431
1087
|
|
|
1432
|
-
// @public
|
|
1433
|
-
export
|
|
1434
|
-
// (undocumented)
|
|
1435
|
-
evaluate(element: HTMLElement, reference?: Swatch): T;
|
|
1436
|
-
}
|
|
1088
|
+
// @public (undocumented)
|
|
1089
|
+
export const curveDecelerateMid: CSSDesignToken<string>;
|
|
1437
1090
|
|
|
1438
|
-
//
|
|
1439
|
-
|
|
1440
|
-
// @internal
|
|
1441
|
-
export class Search extends Search_2 {
|
|
1442
|
-
// @public
|
|
1443
|
-
appearance: SearchAppearance;
|
|
1444
|
-
}
|
|
1091
|
+
// @public (undocumented)
|
|
1092
|
+
export const curveDecelerateMin: CSSDesignToken<string>;
|
|
1445
1093
|
|
|
1446
|
-
// @public
|
|
1447
|
-
export
|
|
1094
|
+
// @public (undocumented)
|
|
1095
|
+
export const curveEasyEase: CSSDesignToken<string>;
|
|
1448
1096
|
|
|
1449
|
-
// @public
|
|
1450
|
-
export const
|
|
1097
|
+
// @public (undocumented)
|
|
1098
|
+
export const curveEasyEaseMax: CSSDesignToken<string>;
|
|
1451
1099
|
|
|
1452
1100
|
// @public (undocumented)
|
|
1453
|
-
export const
|
|
1101
|
+
export const curveLinear: CSSDesignToken<string>;
|
|
1454
1102
|
|
|
1455
|
-
//
|
|
1456
|
-
|
|
1457
|
-
// @internal
|
|
1458
|
-
export class Select extends Select_2 {
|
|
1459
|
-
// @public
|
|
1460
|
-
appearance: SelectAppearance;
|
|
1461
|
-
// (undocumented)
|
|
1462
|
-
appearanceChanged(oldValue: SelectAppearance, newValue: SelectAppearance): void;
|
|
1463
|
-
// (undocumented)
|
|
1464
|
-
connectedCallback(): void;
|
|
1465
|
-
}
|
|
1103
|
+
// @public (undocumented)
|
|
1104
|
+
export const durationFast: CSSDesignToken<string>;
|
|
1466
1105
|
|
|
1467
|
-
// @public
|
|
1468
|
-
export
|
|
1106
|
+
// @public (undocumented)
|
|
1107
|
+
export const durationFaster: CSSDesignToken<string>;
|
|
1469
1108
|
|
|
1470
|
-
// @public
|
|
1471
|
-
export const
|
|
1109
|
+
// @public (undocumented)
|
|
1110
|
+
export const durationNormal: CSSDesignToken<string>;
|
|
1472
1111
|
|
|
1473
|
-
|
|
1112
|
+
// @public (undocumented)
|
|
1113
|
+
export const durationSlow: CSSDesignToken<string>;
|
|
1474
1114
|
|
|
1475
|
-
// @public
|
|
1476
|
-
export const
|
|
1115
|
+
// @public (undocumented)
|
|
1116
|
+
export const durationSlower: CSSDesignToken<string>;
|
|
1477
1117
|
|
|
1478
|
-
|
|
1118
|
+
// @public (undocumented)
|
|
1119
|
+
export const durationUltraFast: CSSDesignToken<string>;
|
|
1479
1120
|
|
|
1480
|
-
|
|
1121
|
+
// @public (undocumented)
|
|
1122
|
+
export const durationUltraSlow: CSSDesignToken<string>;
|
|
1481
1123
|
|
|
1482
|
-
// @public
|
|
1483
|
-
export const
|
|
1124
|
+
// @public (undocumented)
|
|
1125
|
+
export const fontFamilyBase: CSSDesignToken<string>;
|
|
1484
1126
|
|
|
1485
|
-
// @public
|
|
1486
|
-
export const
|
|
1127
|
+
// @public (undocumented)
|
|
1128
|
+
export const fontFamilyMonospace: CSSDesignToken<string>;
|
|
1487
1129
|
|
|
1488
|
-
// @public
|
|
1489
|
-
export
|
|
1490
|
-
// (undocumented)
|
|
1491
|
-
DarkMode = 0.15,
|
|
1492
|
-
// (undocumented)
|
|
1493
|
-
LightMode = 0.98
|
|
1494
|
-
}
|
|
1130
|
+
// @public (undocumented)
|
|
1131
|
+
export const fontFamilyNumeric: CSSDesignToken<string>;
|
|
1495
1132
|
|
|
1496
|
-
//
|
|
1497
|
-
|
|
1498
|
-
// @internal (undocumented)
|
|
1499
|
-
export const StealthButtonStyles: (context: ElementDefinitionContext, definition: FoundationElementDefinition, interactivitySelector: string, nonInteractivitySelector?: string) => ElementStyles;
|
|
1133
|
+
// @public (undocumented)
|
|
1134
|
+
export const fontSizeBase100: CSSDesignToken<string>;
|
|
1500
1135
|
|
|
1501
1136
|
// @public (undocumented)
|
|
1502
|
-
export const
|
|
1137
|
+
export const fontSizeBase200: CSSDesignToken<string>;
|
|
1503
1138
|
|
|
1504
|
-
// @public
|
|
1505
|
-
export
|
|
1506
|
-
// (undocumented)
|
|
1507
|
-
contrast(target: RelativeLuminance): number;
|
|
1508
|
-
// (undocumented)
|
|
1509
|
-
toColorString(): string;
|
|
1510
|
-
}
|
|
1139
|
+
// @public (undocumented)
|
|
1140
|
+
export const fontSizeBase300: CSSDesignToken<string>;
|
|
1511
1141
|
|
|
1512
1142
|
// @public (undocumented)
|
|
1513
|
-
export
|
|
1514
|
-
// (undocumented)
|
|
1515
|
-
b: number;
|
|
1516
|
-
// (undocumented)
|
|
1517
|
-
g: number;
|
|
1518
|
-
// (undocumented)
|
|
1519
|
-
r: number;
|
|
1520
|
-
}
|
|
1143
|
+
export const fontSizeBase400: CSSDesignToken<string>;
|
|
1521
1144
|
|
|
1522
1145
|
// @public (undocumented)
|
|
1523
|
-
export const
|
|
1524
|
-
create(r: number, g: number, b: number): SwatchRGB;
|
|
1525
|
-
from(obj: {
|
|
1526
|
-
r: number;
|
|
1527
|
-
g: number;
|
|
1528
|
-
b: number;
|
|
1529
|
-
}): SwatchRGB;
|
|
1530
|
-
}>;
|
|
1146
|
+
export const fontSizeBase500: CSSDesignToken<string>;
|
|
1531
1147
|
|
|
1532
|
-
|
|
1148
|
+
// @public (undocumented)
|
|
1149
|
+
export const fontSizeBase600: CSSDesignToken<string>;
|
|
1533
1150
|
|
|
1534
|
-
// @public
|
|
1535
|
-
export const
|
|
1151
|
+
// @public (undocumented)
|
|
1152
|
+
export const fontSizeHero1000: CSSDesignToken<string>;
|
|
1536
1153
|
|
|
1537
|
-
|
|
1154
|
+
// @public (undocumented)
|
|
1155
|
+
export const fontSizeHero700: CSSDesignToken<string>;
|
|
1538
1156
|
|
|
1539
|
-
|
|
1157
|
+
// @public (undocumented)
|
|
1158
|
+
export const fontSizeHero800: CSSDesignToken<string>;
|
|
1540
1159
|
|
|
1541
|
-
// @public
|
|
1542
|
-
export const
|
|
1160
|
+
// @public (undocumented)
|
|
1161
|
+
export const fontSizeHero900: CSSDesignToken<string>;
|
|
1543
1162
|
|
|
1544
|
-
|
|
1163
|
+
// @public (undocumented)
|
|
1164
|
+
export const fontWeightBold: CSSDesignToken<string>;
|
|
1545
1165
|
|
|
1546
|
-
// @public
|
|
1547
|
-
export const
|
|
1166
|
+
// @public (undocumented)
|
|
1167
|
+
export const fontWeightMedium: CSSDesignToken<string>;
|
|
1548
1168
|
|
|
1549
|
-
// @public
|
|
1550
|
-
export const
|
|
1169
|
+
// @public (undocumented)
|
|
1170
|
+
export const fontWeightRegular: CSSDesignToken<string>;
|
|
1551
1171
|
|
|
1552
|
-
//
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1172
|
+
// @public (undocumented)
|
|
1173
|
+
export const fontWeightSemibold: CSSDesignToken<string>;
|
|
1174
|
+
|
|
1175
|
+
// @public (undocumented)
|
|
1176
|
+
export const lineHeightBase100: CSSDesignToken<string>;
|
|
1177
|
+
|
|
1178
|
+
// @public (undocumented)
|
|
1179
|
+
export const lineHeightBase200: CSSDesignToken<string>;
|
|
1180
|
+
|
|
1181
|
+
// @public (undocumented)
|
|
1182
|
+
export const lineHeightBase300: CSSDesignToken<string>;
|
|
1183
|
+
|
|
1184
|
+
// @public (undocumented)
|
|
1185
|
+
export const lineHeightBase400: CSSDesignToken<string>;
|
|
1186
|
+
|
|
1187
|
+
// @public (undocumented)
|
|
1188
|
+
export const lineHeightBase500: CSSDesignToken<string>;
|
|
1189
|
+
|
|
1190
|
+
// @public (undocumented)
|
|
1191
|
+
export const lineHeightBase600: CSSDesignToken<string>;
|
|
1192
|
+
|
|
1193
|
+
// @public (undocumented)
|
|
1194
|
+
export const lineHeightHero1000: CSSDesignToken<string>;
|
|
1195
|
+
|
|
1196
|
+
// @public (undocumented)
|
|
1197
|
+
export const lineHeightHero700: CSSDesignToken<string>;
|
|
1198
|
+
|
|
1199
|
+
// @public (undocumented)
|
|
1200
|
+
export const lineHeightHero800: CSSDesignToken<string>;
|
|
1201
|
+
|
|
1202
|
+
// @public (undocumented)
|
|
1203
|
+
export const lineHeightHero900: CSSDesignToken<string>;
|
|
1563
1204
|
|
|
1564
1205
|
// @public
|
|
1565
|
-
export
|
|
1206
|
+
export class ProgressBar extends FASTProgress {
|
|
1207
|
+
shape: ProgressBarShape;
|
|
1208
|
+
thickness: ProgressBarThickness;
|
|
1209
|
+
validationState: ProgressBarValidationState | null;
|
|
1210
|
+
}
|
|
1566
1211
|
|
|
1567
1212
|
// @public
|
|
1568
|
-
export const
|
|
1213
|
+
export const ProgressBarDefinition: FASTElementDefinition<typeof ProgressBar>;
|
|
1569
1214
|
|
|
1570
|
-
//
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
appearance: TextFieldAppearance;
|
|
1576
|
-
// (undocumented)
|
|
1577
|
-
appearanceChanged(oldValue: TextFieldAppearance, newValue: TextFieldAppearance): void;
|
|
1578
|
-
// (undocumented)
|
|
1579
|
-
connectedCallback(): void;
|
|
1580
|
-
}
|
|
1215
|
+
// @public
|
|
1216
|
+
export const ProgressBarShape: {
|
|
1217
|
+
readonly rounded: "rounded";
|
|
1218
|
+
readonly square: "square";
|
|
1219
|
+
};
|
|
1581
1220
|
|
|
1582
1221
|
// @public
|
|
1583
|
-
export type
|
|
1222
|
+
export type ProgressBarShape = ValuesOf<typeof ProgressBarShape>;
|
|
1584
1223
|
|
|
1585
1224
|
// @public
|
|
1586
|
-
export const
|
|
1225
|
+
export const ProgressBarStyles: ElementStyles;
|
|
1587
1226
|
|
|
1588
|
-
//
|
|
1589
|
-
|
|
1590
|
-
// @internal
|
|
1591
|
-
export class Toolbar extends Toolbar_2 {
|
|
1592
|
-
}
|
|
1227
|
+
// @public (undocumented)
|
|
1228
|
+
export const ProgressBarTemplate: ElementViewTemplate<ProgressBar>;
|
|
1593
1229
|
|
|
1594
|
-
//
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
connectedCallback(): void;
|
|
1600
|
-
}
|
|
1230
|
+
// @public
|
|
1231
|
+
export const ProgressBarThickness: {
|
|
1232
|
+
readonly medium: "medium";
|
|
1233
|
+
readonly large: "large";
|
|
1234
|
+
};
|
|
1601
1235
|
|
|
1602
|
-
|
|
1236
|
+
// @public
|
|
1237
|
+
export type ProgressBarThickness = ValuesOf<typeof ProgressBarThickness>;
|
|
1603
1238
|
|
|
1604
1239
|
// @public
|
|
1605
|
-
export const
|
|
1240
|
+
export const ProgressBarValidationState: {
|
|
1241
|
+
readonly success: "success";
|
|
1242
|
+
readonly warning: "warning";
|
|
1243
|
+
readonly error: "error";
|
|
1244
|
+
};
|
|
1606
1245
|
|
|
1607
|
-
|
|
1246
|
+
// @public
|
|
1247
|
+
export type ProgressBarValidationState = ValuesOf<typeof ProgressBarValidationState>;
|
|
1608
1248
|
|
|
1609
1249
|
// @public
|
|
1610
|
-
export const
|
|
1250
|
+
export const setTheme: (theme: Theme) => void;
|
|
1251
|
+
|
|
1252
|
+
// @public (undocumented)
|
|
1253
|
+
export const shadow16: CSSDesignToken<string>;
|
|
1254
|
+
|
|
1255
|
+
// @public (undocumented)
|
|
1256
|
+
export const shadow16Brand: CSSDesignToken<string>;
|
|
1611
1257
|
|
|
1612
1258
|
// @public (undocumented)
|
|
1613
|
-
export const
|
|
1259
|
+
export const shadow2: CSSDesignToken<string>;
|
|
1614
1260
|
|
|
1615
1261
|
// @public (undocumented)
|
|
1616
|
-
export const
|
|
1262
|
+
export const shadow28: CSSDesignToken<string>;
|
|
1617
1263
|
|
|
1618
1264
|
// @public (undocumented)
|
|
1619
|
-
export const
|
|
1265
|
+
export const shadow28Brand: CSSDesignToken<string>;
|
|
1620
1266
|
|
|
1621
1267
|
// @public (undocumented)
|
|
1622
|
-
export const
|
|
1268
|
+
export const shadow2Brand: CSSDesignToken<string>;
|
|
1623
1269
|
|
|
1624
1270
|
// @public (undocumented)
|
|
1625
|
-
export const
|
|
1271
|
+
export const shadow4: CSSDesignToken<string>;
|
|
1626
1272
|
|
|
1627
1273
|
// @public (undocumented)
|
|
1628
|
-
export const
|
|
1274
|
+
export const shadow4Brand: CSSDesignToken<string>;
|
|
1629
1275
|
|
|
1630
1276
|
// @public (undocumented)
|
|
1631
|
-
export const
|
|
1277
|
+
export const shadow64: CSSDesignToken<string>;
|
|
1632
1278
|
|
|
1633
1279
|
// @public (undocumented)
|
|
1634
|
-
export const
|
|
1280
|
+
export const shadow64Brand: CSSDesignToken<string>;
|
|
1635
1281
|
|
|
1636
1282
|
// @public (undocumented)
|
|
1637
|
-
export const
|
|
1283
|
+
export const shadow8: CSSDesignToken<string>;
|
|
1638
1284
|
|
|
1639
1285
|
// @public (undocumented)
|
|
1640
|
-
export const
|
|
1286
|
+
export const shadow8Brand: CSSDesignToken<string>;
|
|
1641
1287
|
|
|
1642
1288
|
// @public (undocumented)
|
|
1643
|
-
export const
|
|
1289
|
+
export const spacingHorizontalL: CSSDesignToken<string>;
|
|
1644
1290
|
|
|
1645
1291
|
// @public (undocumented)
|
|
1646
|
-
export const
|
|
1292
|
+
export const spacingHorizontalM: CSSDesignToken<string>;
|
|
1647
1293
|
|
|
1648
1294
|
// @public (undocumented)
|
|
1649
|
-
export const
|
|
1295
|
+
export const spacingHorizontalMNudge: CSSDesignToken<string>;
|
|
1650
1296
|
|
|
1651
1297
|
// @public (undocumented)
|
|
1652
|
-
export const
|
|
1298
|
+
export const spacingHorizontalNone: CSSDesignToken<string>;
|
|
1653
1299
|
|
|
1654
1300
|
// @public (undocumented)
|
|
1655
|
-
export const
|
|
1301
|
+
export const spacingHorizontalS: CSSDesignToken<string>;
|
|
1656
1302
|
|
|
1657
1303
|
// @public (undocumented)
|
|
1658
|
-
export const
|
|
1304
|
+
export const spacingHorizontalSNudge: CSSDesignToken<string>;
|
|
1659
1305
|
|
|
1660
1306
|
// @public (undocumented)
|
|
1661
|
-
export const
|
|
1307
|
+
export const spacingHorizontalXL: CSSDesignToken<string>;
|
|
1662
1308
|
|
|
1663
1309
|
// @public (undocumented)
|
|
1664
|
-
export const
|
|
1310
|
+
export const spacingHorizontalXS: CSSDesignToken<string>;
|
|
1665
1311
|
|
|
1666
1312
|
// @public (undocumented)
|
|
1667
|
-
export const
|
|
1313
|
+
export const spacingHorizontalXXL: CSSDesignToken<string>;
|
|
1668
1314
|
|
|
1669
1315
|
// @public (undocumented)
|
|
1670
|
-
export const
|
|
1316
|
+
export const spacingHorizontalXXS: CSSDesignToken<string>;
|
|
1671
1317
|
|
|
1672
1318
|
// @public (undocumented)
|
|
1673
|
-
export const
|
|
1319
|
+
export const spacingHorizontalXXXL: CSSDesignToken<string>;
|
|
1674
1320
|
|
|
1675
1321
|
// @public (undocumented)
|
|
1676
|
-
export const
|
|
1322
|
+
export const spacingVerticalL: CSSDesignToken<string>;
|
|
1677
1323
|
|
|
1678
1324
|
// @public (undocumented)
|
|
1679
|
-
export const
|
|
1325
|
+
export const spacingVerticalM: CSSDesignToken<string>;
|
|
1680
1326
|
|
|
1681
1327
|
// @public (undocumented)
|
|
1682
|
-
export const
|
|
1328
|
+
export const spacingVerticalMNudge: CSSDesignToken<string>;
|
|
1683
1329
|
|
|
1684
1330
|
// @public (undocumented)
|
|
1685
|
-
export const
|
|
1331
|
+
export const spacingVerticalNone: CSSDesignToken<string>;
|
|
1686
1332
|
|
|
1687
1333
|
// @public (undocumented)
|
|
1688
|
-
export const
|
|
1334
|
+
export const spacingVerticalS: CSSDesignToken<string>;
|
|
1689
1335
|
|
|
1690
1336
|
// @public (undocumented)
|
|
1691
|
-
export const
|
|
1337
|
+
export const spacingVerticalSNudge: CSSDesignToken<string>;
|
|
1692
1338
|
|
|
1693
1339
|
// @public (undocumented)
|
|
1694
|
-
export const
|
|
1340
|
+
export const spacingVerticalXL: CSSDesignToken<string>;
|
|
1695
1341
|
|
|
1696
1342
|
// @public (undocumented)
|
|
1697
|
-
export const
|
|
1343
|
+
export const spacingVerticalXS: CSSDesignToken<string>;
|
|
1698
1344
|
|
|
1699
1345
|
// @public (undocumented)
|
|
1700
|
-
export const
|
|
1346
|
+
export const spacingVerticalXXL: CSSDesignToken<string>;
|
|
1701
1347
|
|
|
1702
1348
|
// @public (undocumented)
|
|
1703
|
-
export const
|
|
1349
|
+
export const spacingVerticalXXS: CSSDesignToken<string>;
|
|
1704
1350
|
|
|
1705
1351
|
// @public (undocumented)
|
|
1706
|
-
export const
|
|
1352
|
+
export const spacingVerticalXXXL: CSSDesignToken<string>;
|
|
1707
1353
|
|
|
1708
1354
|
// @public (undocumented)
|
|
1709
|
-
export const
|
|
1355
|
+
export const strokeWidthThick: CSSDesignToken<string>;
|
|
1710
1356
|
|
|
1711
1357
|
// @public (undocumented)
|
|
1712
|
-
export const
|
|
1358
|
+
export const strokeWidthThicker: CSSDesignToken<string>;
|
|
1713
1359
|
|
|
1714
1360
|
// @public (undocumented)
|
|
1715
|
-
export const
|
|
1361
|
+
export const strokeWidthThickest: CSSDesignToken<string>;
|
|
1716
1362
|
|
|
1717
1363
|
// @public (undocumented)
|
|
1718
|
-
export const
|
|
1364
|
+
export const strokeWidthThin: CSSDesignToken<string>;
|
|
1365
|
+
|
|
1366
|
+
// @public
|
|
1367
|
+
class Text_2 extends FASTElement {
|
|
1368
|
+
align: TextAlign;
|
|
1369
|
+
block: boolean;
|
|
1370
|
+
font: TextFont;
|
|
1371
|
+
italic: boolean;
|
|
1372
|
+
nowrap: boolean;
|
|
1373
|
+
size: TextSize;
|
|
1374
|
+
strikethrough: boolean;
|
|
1375
|
+
truncate: boolean;
|
|
1376
|
+
underline: boolean;
|
|
1377
|
+
weight: TextWeight;
|
|
1378
|
+
}
|
|
1379
|
+
export { Text_2 as Text }
|
|
1380
|
+
|
|
1381
|
+
// @public
|
|
1382
|
+
export const TextAlign: {
|
|
1383
|
+
readonly start: "start";
|
|
1384
|
+
readonly end: "end";
|
|
1385
|
+
readonly center: "center";
|
|
1386
|
+
readonly justify: "justify";
|
|
1387
|
+
};
|
|
1388
|
+
|
|
1389
|
+
// @public
|
|
1390
|
+
export type TextAlign = ValuesOf<typeof TextAlign>;
|
|
1391
|
+
|
|
1392
|
+
// @public
|
|
1393
|
+
export const TextDefinition: FASTElementDefinition<typeof Text_2>;
|
|
1394
|
+
|
|
1395
|
+
// @public
|
|
1396
|
+
export const TextFont: {
|
|
1397
|
+
readonly base: "base";
|
|
1398
|
+
readonly numeric: "numeric";
|
|
1399
|
+
readonly monospace: "monospace";
|
|
1400
|
+
};
|
|
1719
1401
|
|
|
1720
|
-
//
|
|
1402
|
+
// @public
|
|
1403
|
+
export type TextFont = ValuesOf<typeof TextFont>;
|
|
1404
|
+
|
|
1405
|
+
// @public
|
|
1406
|
+
export const TextSize: {
|
|
1407
|
+
readonly _100: "100";
|
|
1408
|
+
readonly _200: "200";
|
|
1409
|
+
readonly _300: "300";
|
|
1410
|
+
readonly _400: "400";
|
|
1411
|
+
readonly _500: "500";
|
|
1412
|
+
readonly _600: "600";
|
|
1413
|
+
readonly _700: "700";
|
|
1414
|
+
readonly _800: "800";
|
|
1415
|
+
readonly _900: "900";
|
|
1416
|
+
readonly _1000: "1000";
|
|
1417
|
+
};
|
|
1418
|
+
|
|
1419
|
+
// @public
|
|
1420
|
+
export type TextSize = ValuesOf<typeof TextSize>;
|
|
1421
|
+
|
|
1422
|
+
// @public
|
|
1423
|
+
export const TextStyles: ElementStyles;
|
|
1424
|
+
|
|
1425
|
+
// Warning: (ae-internal-missing-underscore) The name "TextTemplate" should be prefixed with an underscore because the declaration is marked as @internal
|
|
1721
1426
|
//
|
|
1722
|
-
//
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
//
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1427
|
+
// @internal (undocumented)
|
|
1428
|
+
export const TextTemplate: ElementViewTemplate<Text_2>;
|
|
1429
|
+
|
|
1430
|
+
// @public
|
|
1431
|
+
export const TextWeight: {
|
|
1432
|
+
readonly medium: "medium";
|
|
1433
|
+
readonly regular: "regular";
|
|
1434
|
+
readonly semibold: "semibold";
|
|
1435
|
+
readonly bold: "bold";
|
|
1436
|
+
};
|
|
1437
|
+
|
|
1438
|
+
// @public
|
|
1439
|
+
export type TextWeight = ValuesOf<typeof TextWeight>;
|
|
1731
1440
|
|
|
1732
1441
|
// (No @packageDocumentation comment for this package)
|
|
1733
1442
|
|