@fluentui/web-components 3.0.0-beta.6 → 3.0.0-beta.7
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/CHANGELOG.md +11 -2
- package/dist/dts/theme/design-tokens.d.ts +384 -384
- package/dist/dts/theme/set-theme.d.ts +1 -2
- package/dist/esm/accordion-item/accordion-item.styles.js +25 -25
- package/dist/esm/accordion-item/accordion-item.styles.js.map +1 -1
- package/dist/esm/avatar/avatar.styles.js +100 -100
- package/dist/esm/avatar/avatar.styles.js.map +1 -1
- package/dist/esm/badge/badge.styles.js +3 -3
- package/dist/esm/badge/badge.styles.js.map +1 -1
- package/dist/esm/button/button.styles.js +63 -63
- package/dist/esm/button/button.styles.js.map +1 -1
- package/dist/esm/checkbox/checkbox.styles.js +37 -37
- package/dist/esm/checkbox/checkbox.styles.js.map +1 -1
- package/dist/esm/compound-button/compound-button.styles.js +18 -18
- package/dist/esm/compound-button/compound-button.styles.js.map +1 -1
- package/dist/esm/counter-badge/counter-badge.styles.js +2 -2
- package/dist/esm/counter-badge/counter-badge.styles.js.map +1 -1
- package/dist/esm/dialog/dialog.styles.js +21 -21
- package/dist/esm/dialog/dialog.styles.js.map +1 -1
- package/dist/esm/divider/divider.styles.js +13 -13
- package/dist/esm/divider/divider.styles.js.map +1 -1
- package/dist/esm/image/image.styles.js +4 -4
- package/dist/esm/image/image.styles.js.map +1 -1
- package/dist/esm/label/label.styles.js +14 -14
- package/dist/esm/label/label.styles.js.map +1 -1
- package/dist/esm/menu-item/menu-item.styles.js +16 -16
- package/dist/esm/menu-item/menu-item.styles.js.map +1 -1
- package/dist/esm/menu-list/menu-list.styles.js +4 -4
- package/dist/esm/menu-list/menu-list.styles.js.map +1 -1
- package/dist/esm/progress-bar/progress-bar.styles.js +25 -25
- package/dist/esm/progress-bar/progress-bar.styles.js.map +1 -1
- package/dist/esm/radio/radio.styles.js +32 -32
- package/dist/esm/radio/radio.styles.js.map +1 -1
- package/dist/esm/radio-group/radio-group.styles.js +9 -9
- package/dist/esm/radio-group/radio-group.styles.js.map +1 -1
- package/dist/esm/slider/slider.styles.js +23 -22
- package/dist/esm/slider/slider.styles.js.map +1 -1
- package/dist/esm/spinner/spinner.styles.js +5 -5
- package/dist/esm/spinner/spinner.styles.js.map +1 -1
- package/dist/esm/styles/partials/badge.partials.js +75 -75
- package/dist/esm/styles/partials/badge.partials.js.map +1 -1
- package/dist/esm/switch/switch.styles.js +34 -34
- package/dist/esm/switch/switch.styles.js.map +1 -1
- package/dist/esm/tab/tab.styles.js +20 -20
- package/dist/esm/tab/tab.styles.js.map +1 -1
- package/dist/esm/tab-panel/tab-panel.styles.js +1 -1
- package/dist/esm/tab-panel/tab-panel.styles.js.map +1 -1
- package/dist/esm/tabs/tabs.styles.js +49 -49
- package/dist/esm/tabs/tabs.styles.js.map +1 -1
- package/dist/esm/text/text.styles.js +27 -27
- package/dist/esm/text/text.styles.js.map +1 -1
- package/dist/esm/text-input/text-input.styles.js +67 -67
- package/dist/esm/text-input/text-input.styles.js.map +1 -1
- package/dist/esm/theme/design-tokens.js +385 -386
- package/dist/esm/theme/design-tokens.js.map +1 -1
- package/dist/esm/theme/set-theme.js +2 -2
- package/dist/esm/theme/set-theme.js.map +1 -1
- package/dist/esm/toggle-button/toggle-button.styles.js +24 -24
- package/dist/esm/toggle-button/toggle-button.styles.js.map +1 -1
- package/dist/fluent-web-components.api.json +3077 -1541
- package/dist/storybook/iframe.html +1 -1
- package/dist/storybook/main.b095c2e8.iframe.bundle.js +2 -0
- package/dist/storybook/project.json +1 -1
- package/dist/web-components.d.ts +385 -386
- package/dist/web-components.js +683 -1705
- package/dist/web-components.min.js +191 -191
- package/docs/api-report.md +385 -386
- package/package.json +1 -1
- package/dist/storybook/main.c651bad5.iframe.bundle.js +0 -2
- /package/dist/storybook/{main.c651bad5.iframe.bundle.js.LICENSE.txt → main.b095c2e8.iframe.bundle.js.LICENSE.txt} +0 -0
package/dist/web-components.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { AnchorOptions as AnchorButtonOptions } from '@microsoft/fast-foundation/anchor.js';
|
|
2
2
|
import type { ButtonOptions } from '@microsoft/fast-foundation/button.js';
|
|
3
|
-
import { CSSDesignToken } from '@microsoft/fast-foundation/design-token.js';
|
|
4
3
|
import { DividerOrientation } from '@microsoft/fast-foundation/divider.js';
|
|
5
4
|
import { DividerRole } from '@microsoft/fast-foundation/divider.js';
|
|
6
5
|
import { ElementStyles } from '@microsoft/fast-element';
|
|
@@ -681,17 +680,17 @@ export declare const BadgeStyles: ElementStyles;
|
|
|
681
680
|
|
|
682
681
|
export declare const BadgeTemplate: ElementViewTemplate<Badge>;
|
|
683
682
|
|
|
684
|
-
export declare const borderRadiusCircular
|
|
683
|
+
export declare const borderRadiusCircular = "--borderRadiusCircular";
|
|
685
684
|
|
|
686
|
-
export declare const borderRadiusLarge
|
|
685
|
+
export declare const borderRadiusLarge = "--borderRadiusLarge";
|
|
687
686
|
|
|
688
|
-
export declare const borderRadiusMedium
|
|
687
|
+
export declare const borderRadiusMedium = "--borderRadiusMedium";
|
|
689
688
|
|
|
690
|
-
export declare const borderRadiusNone
|
|
689
|
+
export declare const borderRadiusNone = "--borderRadiusNone";
|
|
691
690
|
|
|
692
|
-
export declare const borderRadiusSmall
|
|
691
|
+
export declare const borderRadiusSmall = "--borderRadiusSmall";
|
|
693
692
|
|
|
694
|
-
export declare const borderRadiusXLarge
|
|
693
|
+
export declare const borderRadiusXLarge = "--borderRadiusXLarge";
|
|
695
694
|
|
|
696
695
|
/**
|
|
697
696
|
* The base class used for constructing a fluent-button custom element
|
|
@@ -906,599 +905,599 @@ export declare const CheckboxStyles: ElementStyles;
|
|
|
906
905
|
*/
|
|
907
906
|
export declare const CheckboxTemplate: ElementViewTemplate<Checkbox>;
|
|
908
907
|
|
|
909
|
-
export declare const colorBackgroundOverlay
|
|
908
|
+
export declare const colorBackgroundOverlay = "--colorBackgroundOverlay";
|
|
910
909
|
|
|
911
|
-
export declare const colorBrandBackground
|
|
910
|
+
export declare const colorBrandBackground = "--colorBrandBackground";
|
|
912
911
|
|
|
913
|
-
export declare const colorBrandBackground2
|
|
912
|
+
export declare const colorBrandBackground2 = "--colorBrandBackground2";
|
|
914
913
|
|
|
915
|
-
export declare const colorBrandBackgroundHover
|
|
914
|
+
export declare const colorBrandBackgroundHover = "--colorBrandBackgroundHover";
|
|
916
915
|
|
|
917
|
-
export declare const colorBrandBackgroundInverted
|
|
916
|
+
export declare const colorBrandBackgroundInverted = "--colorBrandBackgroundInverted";
|
|
918
917
|
|
|
919
|
-
export declare const colorBrandBackgroundInvertedHover
|
|
918
|
+
export declare const colorBrandBackgroundInvertedHover = "--colorBrandBackgroundInvertedHover";
|
|
920
919
|
|
|
921
|
-
export declare const colorBrandBackgroundInvertedPressed
|
|
920
|
+
export declare const colorBrandBackgroundInvertedPressed = "--colorBrandBackgroundInvertedPressed";
|
|
922
921
|
|
|
923
|
-
export declare const colorBrandBackgroundInvertedSelected
|
|
922
|
+
export declare const colorBrandBackgroundInvertedSelected = "--colorBrandBackgroundInvertedSelected";
|
|
924
923
|
|
|
925
|
-
export declare const colorBrandBackgroundPressed
|
|
924
|
+
export declare const colorBrandBackgroundPressed = "--colorBrandBackgroundPressed";
|
|
926
925
|
|
|
927
|
-
export declare const colorBrandBackgroundSelected
|
|
926
|
+
export declare const colorBrandBackgroundSelected = "--colorBrandBackgroundSelected";
|
|
928
927
|
|
|
929
|
-
export declare const colorBrandBackgroundStatic
|
|
928
|
+
export declare const colorBrandBackgroundStatic = "--colorBrandBackgroundStatic";
|
|
930
929
|
|
|
931
|
-
export declare const colorBrandForeground1
|
|
930
|
+
export declare const colorBrandForeground1 = "--colorBrandForeground1";
|
|
932
931
|
|
|
933
|
-
export declare const colorBrandForeground2
|
|
932
|
+
export declare const colorBrandForeground2 = "--colorBrandForeground2";
|
|
934
933
|
|
|
935
|
-
export declare const colorBrandForegroundInverted
|
|
934
|
+
export declare const colorBrandForegroundInverted = "--colorBrandForegroundInverted";
|
|
936
935
|
|
|
937
|
-
export declare const colorBrandForegroundInvertedHover
|
|
936
|
+
export declare const colorBrandForegroundInvertedHover = "--colorBrandForegroundInvertedHover";
|
|
938
937
|
|
|
939
|
-
export declare const colorBrandForegroundInvertedPressed
|
|
938
|
+
export declare const colorBrandForegroundInvertedPressed = "--colorBrandForegroundInvertedPressed";
|
|
940
939
|
|
|
941
|
-
export declare const colorBrandForegroundLink
|
|
940
|
+
export declare const colorBrandForegroundLink = "--colorBrandForegroundLink";
|
|
942
941
|
|
|
943
|
-
export declare const colorBrandForegroundLinkHover
|
|
942
|
+
export declare const colorBrandForegroundLinkHover = "--colorBrandForegroundLinkHover";
|
|
944
943
|
|
|
945
|
-
export declare const colorBrandForegroundLinkPressed
|
|
944
|
+
export declare const colorBrandForegroundLinkPressed = "--colorBrandForegroundLinkPressed";
|
|
946
945
|
|
|
947
|
-
export declare const colorBrandForegroundLinkSelected
|
|
946
|
+
export declare const colorBrandForegroundLinkSelected = "--colorBrandForegroundLinkSelected";
|
|
948
947
|
|
|
949
|
-
export declare const colorBrandForegroundOnLight
|
|
948
|
+
export declare const colorBrandForegroundOnLight = "--colorBrandForegroundOnLight";
|
|
950
949
|
|
|
951
|
-
export declare const colorBrandForegroundOnLightHover
|
|
950
|
+
export declare const colorBrandForegroundOnLightHover = "--colorBrandForegroundOnLightHover";
|
|
952
951
|
|
|
953
|
-
export declare const colorBrandForegroundOnLightPressed
|
|
952
|
+
export declare const colorBrandForegroundOnLightPressed = "--colorBrandForegroundOnLightPressed";
|
|
954
953
|
|
|
955
|
-
export declare const colorBrandForegroundOnLightSelected
|
|
954
|
+
export declare const colorBrandForegroundOnLightSelected = "--colorBrandForegroundOnLightSelected";
|
|
956
955
|
|
|
957
|
-
export declare const colorBrandShadowAmbient
|
|
956
|
+
export declare const colorBrandShadowAmbient = "--colorBrandShadowAmbient";
|
|
958
957
|
|
|
959
|
-
export declare const colorBrandShadowKey
|
|
958
|
+
export declare const colorBrandShadowKey = "--colorBrandShadowKey";
|
|
960
959
|
|
|
961
|
-
export declare const colorBrandStroke1
|
|
960
|
+
export declare const colorBrandStroke1 = "--colorBrandStroke1";
|
|
962
961
|
|
|
963
|
-
export declare const colorBrandStroke2
|
|
962
|
+
export declare const colorBrandStroke2 = "--colorBrandStroke2";
|
|
964
963
|
|
|
965
|
-
export declare const colorCompoundBrandBackground
|
|
964
|
+
export declare const colorCompoundBrandBackground = "--colorCompoundBrandBackground";
|
|
966
965
|
|
|
967
|
-
export declare const colorCompoundBrandBackgroundHover
|
|
966
|
+
export declare const colorCompoundBrandBackgroundHover = "--colorCompoundBrandBackgroundHover";
|
|
968
967
|
|
|
969
|
-
export declare const colorCompoundBrandBackgroundPressed
|
|
968
|
+
export declare const colorCompoundBrandBackgroundPressed = "--colorCompoundBrandBackgroundPressed";
|
|
970
969
|
|
|
971
|
-
export declare const colorCompoundBrandForeground1
|
|
970
|
+
export declare const colorCompoundBrandForeground1 = "--colorCompoundBrandForeground1";
|
|
972
971
|
|
|
973
|
-
export declare const colorCompoundBrandForeground1Hover
|
|
972
|
+
export declare const colorCompoundBrandForeground1Hover = "--colorCompoundBrandForeground1Hover";
|
|
974
973
|
|
|
975
|
-
export declare const colorCompoundBrandForeground1Pressed
|
|
974
|
+
export declare const colorCompoundBrandForeground1Pressed = "--colorCompoundBrandForeground1Pressed";
|
|
976
975
|
|
|
977
|
-
export declare const colorCompoundBrandStroke
|
|
976
|
+
export declare const colorCompoundBrandStroke = "--colorCompoundBrandStroke";
|
|
978
977
|
|
|
979
|
-
export declare const colorCompoundBrandStrokeHover
|
|
978
|
+
export declare const colorCompoundBrandStrokeHover = "--colorCompoundBrandStrokeHover";
|
|
980
979
|
|
|
981
|
-
export declare const colorCompoundBrandStrokePressed
|
|
980
|
+
export declare const colorCompoundBrandStrokePressed = "--colorCompoundBrandStrokePressed";
|
|
982
981
|
|
|
983
|
-
export declare const colorNeutralBackground1
|
|
982
|
+
export declare const colorNeutralBackground1 = "--colorNeutralBackground1";
|
|
984
983
|
|
|
985
|
-
export declare const colorNeutralBackground1Hover
|
|
984
|
+
export declare const colorNeutralBackground1Hover = "--colorNeutralBackground1Hover";
|
|
986
985
|
|
|
987
|
-
export declare const colorNeutralBackground1Pressed
|
|
986
|
+
export declare const colorNeutralBackground1Pressed = "--colorNeutralBackground1Pressed";
|
|
988
987
|
|
|
989
|
-
export declare const colorNeutralBackground1Selected
|
|
988
|
+
export declare const colorNeutralBackground1Selected = "--colorNeutralBackground1Selected";
|
|
990
989
|
|
|
991
|
-
export declare const colorNeutralBackground2
|
|
990
|
+
export declare const colorNeutralBackground2 = "--colorNeutralBackground2";
|
|
992
991
|
|
|
993
|
-
export declare const colorNeutralBackground2Hover
|
|
992
|
+
export declare const colorNeutralBackground2Hover = "--colorNeutralBackground2Hover";
|
|
994
993
|
|
|
995
|
-
export declare const colorNeutralBackground2Pressed
|
|
994
|
+
export declare const colorNeutralBackground2Pressed = "--colorNeutralBackground2Pressed";
|
|
996
995
|
|
|
997
|
-
export declare const colorNeutralBackground2Selected
|
|
996
|
+
export declare const colorNeutralBackground2Selected = "--colorNeutralBackground2Selected";
|
|
998
997
|
|
|
999
|
-
export declare const colorNeutralBackground3
|
|
998
|
+
export declare const colorNeutralBackground3 = "--colorNeutralBackground3";
|
|
1000
999
|
|
|
1001
|
-
export declare const colorNeutralBackground3Hover
|
|
1000
|
+
export declare const colorNeutralBackground3Hover = "--colorNeutralBackground3Hover";
|
|
1002
1001
|
|
|
1003
|
-
export declare const colorNeutralBackground3Pressed
|
|
1002
|
+
export declare const colorNeutralBackground3Pressed = "--colorNeutralBackground3Pressed";
|
|
1004
1003
|
|
|
1005
|
-
export declare const colorNeutralBackground3Selected
|
|
1004
|
+
export declare const colorNeutralBackground3Selected = "--colorNeutralBackground3Selected";
|
|
1006
1005
|
|
|
1007
|
-
export declare const colorNeutralBackground4
|
|
1006
|
+
export declare const colorNeutralBackground4 = "--colorNeutralBackground4";
|
|
1008
1007
|
|
|
1009
|
-
export declare const colorNeutralBackground4Hover
|
|
1008
|
+
export declare const colorNeutralBackground4Hover = "--colorNeutralBackground4Hover";
|
|
1010
1009
|
|
|
1011
|
-
export declare const colorNeutralBackground4Pressed
|
|
1010
|
+
export declare const colorNeutralBackground4Pressed = "--colorNeutralBackground4Pressed";
|
|
1012
1011
|
|
|
1013
|
-
export declare const colorNeutralBackground4Selected
|
|
1012
|
+
export declare const colorNeutralBackground4Selected = "--colorNeutralBackground4Selected";
|
|
1014
1013
|
|
|
1015
|
-
export declare const colorNeutralBackground5
|
|
1014
|
+
export declare const colorNeutralBackground5 = "--colorNeutralBackground5";
|
|
1016
1015
|
|
|
1017
|
-
export declare const colorNeutralBackground5Hover
|
|
1016
|
+
export declare const colorNeutralBackground5Hover = "--colorNeutralBackground5Hover";
|
|
1018
1017
|
|
|
1019
|
-
export declare const colorNeutralBackground5Pressed
|
|
1018
|
+
export declare const colorNeutralBackground5Pressed = "--colorNeutralBackground5Pressed";
|
|
1020
1019
|
|
|
1021
|
-
export declare const colorNeutralBackground5Selected
|
|
1020
|
+
export declare const colorNeutralBackground5Selected = "--colorNeutralBackground5Selected";
|
|
1022
1021
|
|
|
1023
|
-
export declare const colorNeutralBackground6
|
|
1022
|
+
export declare const colorNeutralBackground6 = "--colorNeutralBackground6";
|
|
1024
1023
|
|
|
1025
|
-
export declare const colorNeutralBackgroundDisabled
|
|
1024
|
+
export declare const colorNeutralBackgroundDisabled = "--colorNeutralBackgroundDisabled";
|
|
1026
1025
|
|
|
1027
|
-
export declare const colorNeutralBackgroundInverted
|
|
1026
|
+
export declare const colorNeutralBackgroundInverted = "--colorNeutralBackgroundInverted";
|
|
1028
1027
|
|
|
1029
|
-
export declare const colorNeutralBackgroundInvertedDisabled
|
|
1028
|
+
export declare const colorNeutralBackgroundInvertedDisabled = "--colorNeutralBackgroundInvertedDisabled";
|
|
1030
1029
|
|
|
1031
|
-
export declare const colorNeutralBackgroundStatic
|
|
1030
|
+
export declare const colorNeutralBackgroundStatic = "--colorNeutralBackgroundStatic";
|
|
1032
1031
|
|
|
1033
|
-
export declare const colorNeutralForeground1
|
|
1032
|
+
export declare const colorNeutralForeground1 = "--colorNeutralForeground1";
|
|
1034
1033
|
|
|
1035
|
-
export declare const colorNeutralForeground1Hover
|
|
1034
|
+
export declare const colorNeutralForeground1Hover = "--colorNeutralForeground1Hover";
|
|
1036
1035
|
|
|
1037
|
-
export declare const colorNeutralForeground1Pressed
|
|
1036
|
+
export declare const colorNeutralForeground1Pressed = "--colorNeutralForeground1Pressed";
|
|
1038
1037
|
|
|
1039
|
-
export declare const colorNeutralForeground1Selected
|
|
1038
|
+
export declare const colorNeutralForeground1Selected = "--colorNeutralForeground1Selected";
|
|
1040
1039
|
|
|
1041
|
-
export declare const colorNeutralForeground1Static
|
|
1040
|
+
export declare const colorNeutralForeground1Static = "--colorNeutralForeground1Static";
|
|
1042
1041
|
|
|
1043
|
-
export declare const colorNeutralForeground2
|
|
1042
|
+
export declare const colorNeutralForeground2 = "--colorNeutralForeground2";
|
|
1044
1043
|
|
|
1045
|
-
export declare const colorNeutralForeground2BrandHover
|
|
1044
|
+
export declare const colorNeutralForeground2BrandHover = "--colorNeutralForeground2BrandHover";
|
|
1046
1045
|
|
|
1047
|
-
export declare const colorNeutralForeground2BrandPressed
|
|
1046
|
+
export declare const colorNeutralForeground2BrandPressed = "--colorNeutralForeground2BrandPressed";
|
|
1048
1047
|
|
|
1049
|
-
export declare const colorNeutralForeground2BrandSelected
|
|
1048
|
+
export declare const colorNeutralForeground2BrandSelected = "--colorNeutralForeground2BrandSelected";
|
|
1050
1049
|
|
|
1051
|
-
export declare const colorNeutralForeground2Hover
|
|
1050
|
+
export declare const colorNeutralForeground2Hover = "--colorNeutralForeground2Hover";
|
|
1052
1051
|
|
|
1053
|
-
export declare const colorNeutralForeground2Link
|
|
1052
|
+
export declare const colorNeutralForeground2Link = "--colorNeutralForeground2Link";
|
|
1054
1053
|
|
|
1055
|
-
export declare const colorNeutralForeground2LinkHover
|
|
1054
|
+
export declare const colorNeutralForeground2LinkHover = "--colorNeutralForeground2LinkHover";
|
|
1056
1055
|
|
|
1057
|
-
export declare const colorNeutralForeground2LinkPressed
|
|
1056
|
+
export declare const colorNeutralForeground2LinkPressed = "--colorNeutralForeground2LinkPressed";
|
|
1058
1057
|
|
|
1059
|
-
export declare const colorNeutralForeground2LinkSelected
|
|
1058
|
+
export declare const colorNeutralForeground2LinkSelected = "--colorNeutralForeground2LinkSelected";
|
|
1060
1059
|
|
|
1061
|
-
export declare const colorNeutralForeground2Pressed
|
|
1060
|
+
export declare const colorNeutralForeground2Pressed = "--colorNeutralForeground2Pressed";
|
|
1062
1061
|
|
|
1063
|
-
export declare const colorNeutralForeground2Selected
|
|
1062
|
+
export declare const colorNeutralForeground2Selected = "--colorNeutralForeground2Selected";
|
|
1064
1063
|
|
|
1065
|
-
export declare const colorNeutralForeground3
|
|
1064
|
+
export declare const colorNeutralForeground3 = "--colorNeutralForeground3";
|
|
1066
1065
|
|
|
1067
|
-
export declare const colorNeutralForeground3BrandHover
|
|
1066
|
+
export declare const colorNeutralForeground3BrandHover = "--colorNeutralForeground3BrandHover";
|
|
1068
1067
|
|
|
1069
|
-
export declare const colorNeutralForeground3BrandPressed
|
|
1068
|
+
export declare const colorNeutralForeground3BrandPressed = "--colorNeutralForeground3BrandPressed";
|
|
1070
1069
|
|
|
1071
|
-
export declare const colorNeutralForeground3BrandSelected
|
|
1070
|
+
export declare const colorNeutralForeground3BrandSelected = "--colorNeutralForeground3BrandSelected";
|
|
1072
1071
|
|
|
1073
|
-
export declare const colorNeutralForeground3Hover
|
|
1072
|
+
export declare const colorNeutralForeground3Hover = "--colorNeutralForeground3Hover";
|
|
1074
1073
|
|
|
1075
|
-
export declare const colorNeutralForeground3Pressed
|
|
1074
|
+
export declare const colorNeutralForeground3Pressed = "--colorNeutralForeground3Pressed";
|
|
1076
1075
|
|
|
1077
|
-
export declare const colorNeutralForeground3Selected
|
|
1076
|
+
export declare const colorNeutralForeground3Selected = "--colorNeutralForeground3Selected";
|
|
1078
1077
|
|
|
1079
|
-
export declare const colorNeutralForeground4
|
|
1078
|
+
export declare const colorNeutralForeground4 = "--colorNeutralForeground4";
|
|
1080
1079
|
|
|
1081
|
-
export declare const colorNeutralForegroundDisabled
|
|
1080
|
+
export declare const colorNeutralForegroundDisabled = "--colorNeutralForegroundDisabled";
|
|
1082
1081
|
|
|
1083
|
-
export declare const colorNeutralForegroundInverted
|
|
1082
|
+
export declare const colorNeutralForegroundInverted = "--colorNeutralForegroundInverted";
|
|
1084
1083
|
|
|
1085
|
-
export declare const colorNeutralForegroundInverted2
|
|
1084
|
+
export declare const colorNeutralForegroundInverted2 = "--colorNeutralForegroundInverted2";
|
|
1086
1085
|
|
|
1087
|
-
export declare const colorNeutralForegroundInvertedDisabled
|
|
1086
|
+
export declare const colorNeutralForegroundInvertedDisabled = "--colorNeutralForegroundInvertedDisabled";
|
|
1088
1087
|
|
|
1089
|
-
export declare const colorNeutralForegroundInvertedHover
|
|
1088
|
+
export declare const colorNeutralForegroundInvertedHover = "--colorNeutralForegroundInvertedHover";
|
|
1090
1089
|
|
|
1091
|
-
export declare const colorNeutralForegroundInvertedLink
|
|
1090
|
+
export declare const colorNeutralForegroundInvertedLink = "--colorNeutralForegroundInvertedLink";
|
|
1092
1091
|
|
|
1093
|
-
export declare const colorNeutralForegroundInvertedLinkHover
|
|
1092
|
+
export declare const colorNeutralForegroundInvertedLinkHover = "--colorNeutralForegroundInvertedLinkHover";
|
|
1094
1093
|
|
|
1095
|
-
export declare const colorNeutralForegroundInvertedLinkPressed
|
|
1094
|
+
export declare const colorNeutralForegroundInvertedLinkPressed = "--colorNeutralForegroundInvertedLinkPressed";
|
|
1096
1095
|
|
|
1097
|
-
export declare const colorNeutralForegroundInvertedLinkSelected
|
|
1096
|
+
export declare const colorNeutralForegroundInvertedLinkSelected = "--colorNeutralForegroundInvertedLinkSelected";
|
|
1098
1097
|
|
|
1099
|
-
export declare const colorNeutralForegroundInvertedPressed
|
|
1098
|
+
export declare const colorNeutralForegroundInvertedPressed = "--colorNeutralForegroundInvertedPressed";
|
|
1100
1099
|
|
|
1101
|
-
export declare const colorNeutralForegroundInvertedSelected
|
|
1100
|
+
export declare const colorNeutralForegroundInvertedSelected = "--colorNeutralForegroundInvertedSelected";
|
|
1102
1101
|
|
|
1103
|
-
export declare const colorNeutralForegroundOnBrand
|
|
1102
|
+
export declare const colorNeutralForegroundOnBrand = "--colorNeutralForegroundOnBrand";
|
|
1104
1103
|
|
|
1105
|
-
export declare const colorNeutralForegroundStaticInverted
|
|
1104
|
+
export declare const colorNeutralForegroundStaticInverted = "--colorNeutralForegroundStaticInverted";
|
|
1106
1105
|
|
|
1107
|
-
export declare const colorNeutralShadowAmbient
|
|
1106
|
+
export declare const colorNeutralShadowAmbient = "--colorNeutralShadowAmbient";
|
|
1108
1107
|
|
|
1109
|
-
export declare const colorNeutralShadowAmbientDarker
|
|
1108
|
+
export declare const colorNeutralShadowAmbientDarker = "--colorNeutralShadowAmbientDarker";
|
|
1110
1109
|
|
|
1111
|
-
export declare const colorNeutralShadowAmbientLighter
|
|
1110
|
+
export declare const colorNeutralShadowAmbientLighter = "--colorNeutralShadowAmbientLighter";
|
|
1112
1111
|
|
|
1113
|
-
export declare const colorNeutralShadowKey
|
|
1112
|
+
export declare const colorNeutralShadowKey = "--colorNeutralShadowKey";
|
|
1114
1113
|
|
|
1115
|
-
export declare const colorNeutralShadowKeyDarker
|
|
1114
|
+
export declare const colorNeutralShadowKeyDarker = "--colorNeutralShadowKeyDarker";
|
|
1116
1115
|
|
|
1117
|
-
export declare const colorNeutralShadowKeyLighter
|
|
1116
|
+
export declare const colorNeutralShadowKeyLighter = "--colorNeutralShadowKeyLighter";
|
|
1118
1117
|
|
|
1119
|
-
export declare const colorNeutralStencil1
|
|
1118
|
+
export declare const colorNeutralStencil1 = "--colorNeutralStencil1";
|
|
1120
1119
|
|
|
1121
|
-
export declare const colorNeutralStencil1Alpha
|
|
1120
|
+
export declare const colorNeutralStencil1Alpha = "--colorNeutralStencil1Alpha";
|
|
1122
1121
|
|
|
1123
|
-
export declare const colorNeutralStencil2
|
|
1122
|
+
export declare const colorNeutralStencil2 = "--colorNeutralStencil2";
|
|
1124
1123
|
|
|
1125
|
-
export declare const colorNeutralStencil2Alpha
|
|
1124
|
+
export declare const colorNeutralStencil2Alpha = "--colorNeutralStencil2Alpha";
|
|
1126
1125
|
|
|
1127
|
-
export declare const colorNeutralStroke1
|
|
1126
|
+
export declare const colorNeutralStroke1 = "--colorNeutralStroke1";
|
|
1128
1127
|
|
|
1129
|
-
export declare const colorNeutralStroke1Hover
|
|
1128
|
+
export declare const colorNeutralStroke1Hover = "--colorNeutralStroke1Hover";
|
|
1130
1129
|
|
|
1131
|
-
export declare const colorNeutralStroke1Pressed
|
|
1130
|
+
export declare const colorNeutralStroke1Pressed = "--colorNeutralStroke1Pressed";
|
|
1132
1131
|
|
|
1133
|
-
export declare const colorNeutralStroke1Selected
|
|
1132
|
+
export declare const colorNeutralStroke1Selected = "--colorNeutralStroke1Selected";
|
|
1134
1133
|
|
|
1135
|
-
export declare const colorNeutralStroke2
|
|
1134
|
+
export declare const colorNeutralStroke2 = "--colorNeutralStroke2";
|
|
1136
1135
|
|
|
1137
|
-
export declare const colorNeutralStroke3
|
|
1136
|
+
export declare const colorNeutralStroke3 = "--colorNeutralStroke3";
|
|
1138
1137
|
|
|
1139
|
-
export declare const colorNeutralStrokeAccessible
|
|
1138
|
+
export declare const colorNeutralStrokeAccessible = "--colorNeutralStrokeAccessible";
|
|
1140
1139
|
|
|
1141
|
-
export declare const colorNeutralStrokeAccessibleHover
|
|
1140
|
+
export declare const colorNeutralStrokeAccessibleHover = "--colorNeutralStrokeAccessibleHover";
|
|
1142
1141
|
|
|
1143
|
-
export declare const colorNeutralStrokeAccessiblePressed
|
|
1142
|
+
export declare const colorNeutralStrokeAccessiblePressed = "--colorNeutralStrokeAccessiblePressed";
|
|
1144
1143
|
|
|
1145
|
-
export declare const colorNeutralStrokeAccessibleSelected
|
|
1144
|
+
export declare const colorNeutralStrokeAccessibleSelected = "--colorNeutralStrokeAccessibleSelected";
|
|
1146
1145
|
|
|
1147
|
-
export declare const colorNeutralStrokeDisabled
|
|
1146
|
+
export declare const colorNeutralStrokeDisabled = "--colorNeutralStrokeDisabled";
|
|
1148
1147
|
|
|
1149
|
-
export declare const colorNeutralStrokeInvertedDisabled
|
|
1148
|
+
export declare const colorNeutralStrokeInvertedDisabled = "--colorNeutralStrokeInvertedDisabled";
|
|
1150
1149
|
|
|
1151
|
-
export declare const colorNeutralStrokeOnBrand
|
|
1150
|
+
export declare const colorNeutralStrokeOnBrand = "--colorNeutralStrokeOnBrand";
|
|
1152
1151
|
|
|
1153
|
-
export declare const colorNeutralStrokeOnBrand2
|
|
1152
|
+
export declare const colorNeutralStrokeOnBrand2 = "--colorNeutralStrokeOnBrand2";
|
|
1154
1153
|
|
|
1155
|
-
export declare const colorNeutralStrokeOnBrand2Hover
|
|
1154
|
+
export declare const colorNeutralStrokeOnBrand2Hover = "--colorNeutralStrokeOnBrand2Hover";
|
|
1156
1155
|
|
|
1157
|
-
export declare const colorNeutralStrokeOnBrand2Pressed
|
|
1156
|
+
export declare const colorNeutralStrokeOnBrand2Pressed = "--colorNeutralStrokeOnBrand2Pressed";
|
|
1158
1157
|
|
|
1159
|
-
export declare const colorNeutralStrokeOnBrand2Selected
|
|
1158
|
+
export declare const colorNeutralStrokeOnBrand2Selected = "--colorNeutralStrokeOnBrand2Selected";
|
|
1160
1159
|
|
|
1161
|
-
export declare const colorPaletteAnchorBackground2
|
|
1160
|
+
export declare const colorPaletteAnchorBackground2 = "--colorPaletteAnchorBackground2";
|
|
1162
1161
|
|
|
1163
|
-
export declare const colorPaletteAnchorBorderActive
|
|
1162
|
+
export declare const colorPaletteAnchorBorderActive = "--colorPaletteAnchorBorderActive";
|
|
1164
1163
|
|
|
1165
|
-
export declare const colorPaletteAnchorForeground2
|
|
1164
|
+
export declare const colorPaletteAnchorForeground2 = "--colorPaletteAnchorForeground2";
|
|
1166
1165
|
|
|
1167
|
-
export declare const colorPaletteBeigeBackground2
|
|
1166
|
+
export declare const colorPaletteBeigeBackground2 = "--colorPaletteBeigeBackground2";
|
|
1168
1167
|
|
|
1169
|
-
export declare const colorPaletteBeigeBorderActive
|
|
1168
|
+
export declare const colorPaletteBeigeBorderActive = "--colorPaletteBeigeBorderActive";
|
|
1170
1169
|
|
|
1171
|
-
export declare const colorPaletteBeigeForeground2
|
|
1170
|
+
export declare const colorPaletteBeigeForeground2 = "--colorPaletteBeigeForeground2";
|
|
1172
1171
|
|
|
1173
|
-
export declare const colorPaletteBerryBackground1
|
|
1172
|
+
export declare const colorPaletteBerryBackground1 = "--colorPaletteBerryBackground1";
|
|
1174
1173
|
|
|
1175
|
-
export declare const colorPaletteBerryBackground2
|
|
1174
|
+
export declare const colorPaletteBerryBackground2 = "--colorPaletteBerryBackground2";
|
|
1176
1175
|
|
|
1177
|
-
export declare const colorPaletteBerryBackground3
|
|
1176
|
+
export declare const colorPaletteBerryBackground3 = "--colorPaletteBerryBackground3";
|
|
1178
1177
|
|
|
1179
|
-
export declare const colorPaletteBerryBorder1
|
|
1178
|
+
export declare const colorPaletteBerryBorder1 = "--colorPaletteBerryBorder1";
|
|
1180
1179
|
|
|
1181
|
-
export declare const colorPaletteBerryBorder2
|
|
1180
|
+
export declare const colorPaletteBerryBorder2 = "--colorPaletteBerryBorder2";
|
|
1182
1181
|
|
|
1183
|
-
export declare const colorPaletteBerryBorderActive
|
|
1182
|
+
export declare const colorPaletteBerryBorderActive = "--colorPaletteBerryBorderActive";
|
|
1184
1183
|
|
|
1185
|
-
export declare const colorPaletteBerryForeground1
|
|
1184
|
+
export declare const colorPaletteBerryForeground1 = "--colorPaletteBerryForeground1";
|
|
1186
1185
|
|
|
1187
|
-
export declare const colorPaletteBerryForeground2
|
|
1186
|
+
export declare const colorPaletteBerryForeground2 = "--colorPaletteBerryForeground2";
|
|
1188
1187
|
|
|
1189
|
-
export declare const colorPaletteBerryForeground3
|
|
1188
|
+
export declare const colorPaletteBerryForeground3 = "--colorPaletteBerryForeground3";
|
|
1190
1189
|
|
|
1191
|
-
export declare const colorPaletteBlueBackground2
|
|
1190
|
+
export declare const colorPaletteBlueBackground2 = "--colorPaletteBlueBackground2";
|
|
1192
1191
|
|
|
1193
|
-
export declare const colorPaletteBlueBorderActive
|
|
1192
|
+
export declare const colorPaletteBlueBorderActive = "--colorPaletteBlueBorderActive";
|
|
1194
1193
|
|
|
1195
|
-
export declare const colorPaletteBlueForeground2
|
|
1194
|
+
export declare const colorPaletteBlueForeground2 = "--colorPaletteBlueForeground2";
|
|
1196
1195
|
|
|
1197
|
-
export declare const colorPaletteBrassBackground2
|
|
1196
|
+
export declare const colorPaletteBrassBackground2 = "--colorPaletteBrassBackground2";
|
|
1198
1197
|
|
|
1199
|
-
export declare const colorPaletteBrassBorderActive
|
|
1198
|
+
export declare const colorPaletteBrassBorderActive = "--colorPaletteBrassBorderActive";
|
|
1200
1199
|
|
|
1201
|
-
export declare const colorPaletteBrassForeground2
|
|
1200
|
+
export declare const colorPaletteBrassForeground2 = "--colorPaletteBrassForeground2";
|
|
1202
1201
|
|
|
1203
|
-
export declare const colorPaletteBrownBackground2
|
|
1202
|
+
export declare const colorPaletteBrownBackground2 = "--colorPaletteBrownBackground2";
|
|
1204
1203
|
|
|
1205
|
-
export declare const colorPaletteBrownBorderActive
|
|
1204
|
+
export declare const colorPaletteBrownBorderActive = "--colorPaletteBrownBorderActive";
|
|
1206
1205
|
|
|
1207
|
-
export declare const colorPaletteBrownForeground2
|
|
1206
|
+
export declare const colorPaletteBrownForeground2 = "--colorPaletteBrownForeground2";
|
|
1208
1207
|
|
|
1209
|
-
export declare const colorPaletteCornflowerBackground2
|
|
1208
|
+
export declare const colorPaletteCornflowerBackground2 = "--colorPaletteCornflowerBackground2";
|
|
1210
1209
|
|
|
1211
|
-
export declare const colorPaletteCornflowerBorderActive
|
|
1210
|
+
export declare const colorPaletteCornflowerBorderActive = "--colorPaletteCornflowerBorderActive";
|
|
1212
1211
|
|
|
1213
|
-
export declare const colorPaletteCornflowerForeground2
|
|
1212
|
+
export declare const colorPaletteCornflowerForeground2 = "--colorPaletteCornflowerForeground2";
|
|
1214
1213
|
|
|
1215
|
-
export declare const colorPaletteCranberryBackground2
|
|
1214
|
+
export declare const colorPaletteCranberryBackground2 = "--colorPaletteCranberryBackground2";
|
|
1216
1215
|
|
|
1217
|
-
export declare const colorPaletteCranberryBorderActive
|
|
1216
|
+
export declare const colorPaletteCranberryBorderActive = "--colorPaletteCranberryBorderActive";
|
|
1218
1217
|
|
|
1219
|
-
export declare const colorPaletteCranberryForeground2
|
|
1218
|
+
export declare const colorPaletteCranberryForeground2 = "--colorPaletteCranberryForeground2";
|
|
1220
1219
|
|
|
1221
|
-
export declare const colorPaletteDarkGreenBackground2
|
|
1220
|
+
export declare const colorPaletteDarkGreenBackground2 = "--colorPaletteDarkGreenBackground2";
|
|
1222
1221
|
|
|
1223
|
-
export declare const colorPaletteDarkGreenBorderActive
|
|
1222
|
+
export declare const colorPaletteDarkGreenBorderActive = "--colorPaletteDarkGreenBorderActive";
|
|
1224
1223
|
|
|
1225
|
-
export declare const colorPaletteDarkGreenForeground2
|
|
1224
|
+
export declare const colorPaletteDarkGreenForeground2 = "--colorPaletteDarkGreenForeground2";
|
|
1226
1225
|
|
|
1227
|
-
export declare const colorPaletteDarkOrangeBackground1
|
|
1226
|
+
export declare const colorPaletteDarkOrangeBackground1 = "--colorPaletteDarkOrangeBackground1";
|
|
1228
1227
|
|
|
1229
|
-
export declare const colorPaletteDarkOrangeBackground2
|
|
1228
|
+
export declare const colorPaletteDarkOrangeBackground2 = "--colorPaletteDarkOrangeBackground2";
|
|
1230
1229
|
|
|
1231
|
-
export declare const colorPaletteDarkOrangeBackground3
|
|
1230
|
+
export declare const colorPaletteDarkOrangeBackground3 = "--colorPaletteDarkOrangeBackground3";
|
|
1232
1231
|
|
|
1233
|
-
export declare const colorPaletteDarkOrangeBorder1
|
|
1232
|
+
export declare const colorPaletteDarkOrangeBorder1 = "--colorPaletteDarkOrangeBorder1";
|
|
1234
1233
|
|
|
1235
|
-
export declare const colorPaletteDarkOrangeBorder2
|
|
1234
|
+
export declare const colorPaletteDarkOrangeBorder2 = "--colorPaletteDarkOrangeBorder2";
|
|
1236
1235
|
|
|
1237
|
-
export declare const colorPaletteDarkOrangeBorderActive
|
|
1236
|
+
export declare const colorPaletteDarkOrangeBorderActive = "--colorPaletteDarkOrangeBorderActive";
|
|
1238
1237
|
|
|
1239
|
-
export declare const colorPaletteDarkOrangeForeground1
|
|
1238
|
+
export declare const colorPaletteDarkOrangeForeground1 = "--colorPaletteDarkOrangeForeground1";
|
|
1240
1239
|
|
|
1241
|
-
export declare const colorPaletteDarkOrangeForeground2
|
|
1240
|
+
export declare const colorPaletteDarkOrangeForeground2 = "--colorPaletteDarkOrangeForeground2";
|
|
1242
1241
|
|
|
1243
|
-
export declare const colorPaletteDarkOrangeForeground3
|
|
1242
|
+
export declare const colorPaletteDarkOrangeForeground3 = "--colorPaletteDarkOrangeForeground3";
|
|
1244
1243
|
|
|
1245
|
-
export declare const colorPaletteDarkRedBackground2
|
|
1244
|
+
export declare const colorPaletteDarkRedBackground2 = "--colorPaletteDarkRedBackground2";
|
|
1246
1245
|
|
|
1247
|
-
export declare const colorPaletteDarkRedBorderActive
|
|
1246
|
+
export declare const colorPaletteDarkRedBorderActive = "--colorPaletteDarkRedBorderActive";
|
|
1248
1247
|
|
|
1249
|
-
export declare const colorPaletteDarkRedForeground2
|
|
1248
|
+
export declare const colorPaletteDarkRedForeground2 = "--colorPaletteDarkRedForeground2";
|
|
1250
1249
|
|
|
1251
|
-
export declare const colorPaletteForestBackground2
|
|
1250
|
+
export declare const colorPaletteForestBackground2 = "--colorPaletteForestBackground2";
|
|
1252
1251
|
|
|
1253
|
-
export declare const colorPaletteForestBorderActive
|
|
1252
|
+
export declare const colorPaletteForestBorderActive = "--colorPaletteForestBorderActive";
|
|
1254
1253
|
|
|
1255
|
-
export declare const colorPaletteForestForeground2
|
|
1254
|
+
export declare const colorPaletteForestForeground2 = "--colorPaletteForestForeground2";
|
|
1256
1255
|
|
|
1257
|
-
export declare const colorPaletteGoldBackground2
|
|
1256
|
+
export declare const colorPaletteGoldBackground2 = "--colorPaletteGoldBackground2";
|
|
1258
1257
|
|
|
1259
|
-
export declare const colorPaletteGoldBorderActive
|
|
1258
|
+
export declare const colorPaletteGoldBorderActive = "--colorPaletteGoldBorderActive";
|
|
1260
1259
|
|
|
1261
|
-
export declare const colorPaletteGoldForeground2
|
|
1260
|
+
export declare const colorPaletteGoldForeground2 = "--colorPaletteGoldForeground2";
|
|
1262
1261
|
|
|
1263
|
-
export declare const colorPaletteGrapeBackground2
|
|
1262
|
+
export declare const colorPaletteGrapeBackground2 = "--colorPaletteGrapeBackground2";
|
|
1264
1263
|
|
|
1265
|
-
export declare const colorPaletteGrapeBorderActive
|
|
1264
|
+
export declare const colorPaletteGrapeBorderActive = "--colorPaletteGrapeBorderActive";
|
|
1266
1265
|
|
|
1267
|
-
export declare const colorPaletteGrapeForeground2
|
|
1266
|
+
export declare const colorPaletteGrapeForeground2 = "--colorPaletteGrapeForeground2";
|
|
1268
1267
|
|
|
1269
|
-
export declare const colorPaletteGreenBackground1
|
|
1268
|
+
export declare const colorPaletteGreenBackground1 = "--colorPaletteGreenBackground1";
|
|
1270
1269
|
|
|
1271
|
-
export declare const colorPaletteGreenBackground2
|
|
1270
|
+
export declare const colorPaletteGreenBackground2 = "--colorPaletteGreenBackground2";
|
|
1272
1271
|
|
|
1273
|
-
export declare const colorPaletteGreenBackground3
|
|
1272
|
+
export declare const colorPaletteGreenBackground3 = "--colorPaletteGreenBackground3";
|
|
1274
1273
|
|
|
1275
|
-
export declare const colorPaletteGreenBorder1
|
|
1274
|
+
export declare const colorPaletteGreenBorder1 = "--colorPaletteGreenBorder1";
|
|
1276
1275
|
|
|
1277
|
-
export declare const colorPaletteGreenBorder2
|
|
1276
|
+
export declare const colorPaletteGreenBorder2 = "--colorPaletteGreenBorder2";
|
|
1278
1277
|
|
|
1279
|
-
export declare const colorPaletteGreenBorderActive
|
|
1278
|
+
export declare const colorPaletteGreenBorderActive = "--colorPaletteGreenBorderActive";
|
|
1280
1279
|
|
|
1281
|
-
export declare const colorPaletteGreenForeground1
|
|
1280
|
+
export declare const colorPaletteGreenForeground1 = "--colorPaletteGreenForeground1";
|
|
1282
1281
|
|
|
1283
|
-
export declare const colorPaletteGreenForeground2
|
|
1282
|
+
export declare const colorPaletteGreenForeground2 = "--colorPaletteGreenForeground2";
|
|
1284
1283
|
|
|
1285
|
-
export declare const colorPaletteGreenForeground3
|
|
1284
|
+
export declare const colorPaletteGreenForeground3 = "--colorPaletteGreenForeground3";
|
|
1286
1285
|
|
|
1287
|
-
export declare const colorPaletteGreenForegroundInverted
|
|
1286
|
+
export declare const colorPaletteGreenForegroundInverted = "--colorPaletteGreenForegroundInverted";
|
|
1288
1287
|
|
|
1289
|
-
export declare const colorPaletteLavenderBackground2
|
|
1288
|
+
export declare const colorPaletteLavenderBackground2 = "--colorPaletteLavenderBackground2";
|
|
1290
1289
|
|
|
1291
|
-
export declare const colorPaletteLavenderBorderActive
|
|
1290
|
+
export declare const colorPaletteLavenderBorderActive = "--colorPaletteLavenderBorderActive";
|
|
1292
1291
|
|
|
1293
|
-
export declare const colorPaletteLavenderForeground2
|
|
1292
|
+
export declare const colorPaletteLavenderForeground2 = "--colorPaletteLavenderForeground2";
|
|
1294
1293
|
|
|
1295
|
-
export declare const colorPaletteLightGreenBackground1
|
|
1294
|
+
export declare const colorPaletteLightGreenBackground1 = "--colorPaletteLightGreenBackground1";
|
|
1296
1295
|
|
|
1297
|
-
export declare const colorPaletteLightGreenBackground2
|
|
1296
|
+
export declare const colorPaletteLightGreenBackground2 = "--colorPaletteLightGreenBackground2";
|
|
1298
1297
|
|
|
1299
|
-
export declare const colorPaletteLightGreenBackground3
|
|
1298
|
+
export declare const colorPaletteLightGreenBackground3 = "--colorPaletteLightGreenBackground3";
|
|
1300
1299
|
|
|
1301
|
-
export declare const colorPaletteLightGreenBorder1
|
|
1300
|
+
export declare const colorPaletteLightGreenBorder1 = "--colorPaletteLightGreenBorder1";
|
|
1302
1301
|
|
|
1303
|
-
export declare const colorPaletteLightGreenBorder2
|
|
1302
|
+
export declare const colorPaletteLightGreenBorder2 = "--colorPaletteLightGreenBorder2";
|
|
1304
1303
|
|
|
1305
|
-
export declare const colorPaletteLightGreenBorderActive
|
|
1304
|
+
export declare const colorPaletteLightGreenBorderActive = "--colorPaletteLightGreenBorderActive";
|
|
1306
1305
|
|
|
1307
|
-
export declare const colorPaletteLightGreenForeground1
|
|
1306
|
+
export declare const colorPaletteLightGreenForeground1 = "--colorPaletteLightGreenForeground1";
|
|
1308
1307
|
|
|
1309
|
-
export declare const colorPaletteLightGreenForeground2
|
|
1308
|
+
export declare const colorPaletteLightGreenForeground2 = "--colorPaletteLightGreenForeground2";
|
|
1310
1309
|
|
|
1311
|
-
export declare const colorPaletteLightGreenForeground3
|
|
1310
|
+
export declare const colorPaletteLightGreenForeground3 = "--colorPaletteLightGreenForeground3";
|
|
1312
1311
|
|
|
1313
|
-
export declare const colorPaletteLightTealBackground2
|
|
1312
|
+
export declare const colorPaletteLightTealBackground2 = "--colorPaletteLightTealBackground2";
|
|
1314
1313
|
|
|
1315
|
-
export declare const colorPaletteLightTealBorderActive
|
|
1314
|
+
export declare const colorPaletteLightTealBorderActive = "--colorPaletteLightTealBorderActive";
|
|
1316
1315
|
|
|
1317
|
-
export declare const colorPaletteLightTealForeground2
|
|
1316
|
+
export declare const colorPaletteLightTealForeground2 = "--colorPaletteLightTealForeground2";
|
|
1318
1317
|
|
|
1319
|
-
export declare const colorPaletteLilacBackground2
|
|
1318
|
+
export declare const colorPaletteLilacBackground2 = "--colorPaletteLilacBackground2";
|
|
1320
1319
|
|
|
1321
|
-
export declare const colorPaletteLilacBorderActive
|
|
1320
|
+
export declare const colorPaletteLilacBorderActive = "--colorPaletteLilacBorderActive";
|
|
1322
1321
|
|
|
1323
|
-
export declare const colorPaletteLilacForeground2
|
|
1322
|
+
export declare const colorPaletteLilacForeground2 = "--colorPaletteLilacForeground2";
|
|
1324
1323
|
|
|
1325
|
-
export declare const colorPaletteMagentaBackground2
|
|
1324
|
+
export declare const colorPaletteMagentaBackground2 = "--colorPaletteMagentaBackground2";
|
|
1326
1325
|
|
|
1327
|
-
export declare const colorPaletteMagentaBorderActive
|
|
1326
|
+
export declare const colorPaletteMagentaBorderActive = "--colorPaletteMagentaBorderActive";
|
|
1328
1327
|
|
|
1329
|
-
export declare const colorPaletteMagentaForeground2
|
|
1328
|
+
export declare const colorPaletteMagentaForeground2 = "--colorPaletteMagentaForeground2";
|
|
1330
1329
|
|
|
1331
|
-
export declare const colorPaletteMarigoldBackground1
|
|
1330
|
+
export declare const colorPaletteMarigoldBackground1 = "--colorPaletteMarigoldBackground1";
|
|
1332
1331
|
|
|
1333
|
-
export declare const colorPaletteMarigoldBackground2
|
|
1332
|
+
export declare const colorPaletteMarigoldBackground2 = "--colorPaletteMarigoldBackground2";
|
|
1334
1333
|
|
|
1335
|
-
export declare const colorPaletteMarigoldBackground3
|
|
1334
|
+
export declare const colorPaletteMarigoldBackground3 = "--colorPaletteMarigoldBackground3";
|
|
1336
1335
|
|
|
1337
|
-
export declare const colorPaletteMarigoldBorder1
|
|
1336
|
+
export declare const colorPaletteMarigoldBorder1 = "--colorPaletteMarigoldBorder1";
|
|
1338
1337
|
|
|
1339
|
-
export declare const colorPaletteMarigoldBorder2
|
|
1338
|
+
export declare const colorPaletteMarigoldBorder2 = "--colorPaletteMarigoldBorder2";
|
|
1340
1339
|
|
|
1341
|
-
export declare const colorPaletteMarigoldBorderActive
|
|
1340
|
+
export declare const colorPaletteMarigoldBorderActive = "--colorPaletteMarigoldBorderActive";
|
|
1342
1341
|
|
|
1343
|
-
export declare const colorPaletteMarigoldForeground1
|
|
1342
|
+
export declare const colorPaletteMarigoldForeground1 = "--colorPaletteMarigoldForeground1";
|
|
1344
1343
|
|
|
1345
|
-
export declare const colorPaletteMarigoldForeground2
|
|
1344
|
+
export declare const colorPaletteMarigoldForeground2 = "--colorPaletteMarigoldForeground2";
|
|
1346
1345
|
|
|
1347
|
-
export declare const colorPaletteMarigoldForeground3
|
|
1346
|
+
export declare const colorPaletteMarigoldForeground3 = "--colorPaletteMarigoldForeground3";
|
|
1348
1347
|
|
|
1349
|
-
export declare const colorPaletteMinkBackground2
|
|
1348
|
+
export declare const colorPaletteMinkBackground2 = "--colorPaletteMinkBackground2";
|
|
1350
1349
|
|
|
1351
|
-
export declare const colorPaletteMinkBorderActive
|
|
1350
|
+
export declare const colorPaletteMinkBorderActive = "--colorPaletteMinkBorderActive";
|
|
1352
1351
|
|
|
1353
|
-
export declare const colorPaletteMinkForeground2
|
|
1352
|
+
export declare const colorPaletteMinkForeground2 = "--colorPaletteMinkForeground2";
|
|
1354
1353
|
|
|
1355
|
-
export declare const colorPaletteNavyBackground2
|
|
1354
|
+
export declare const colorPaletteNavyBackground2 = "--colorPaletteNavyBackground2";
|
|
1356
1355
|
|
|
1357
|
-
export declare const colorPaletteNavyBorderActive
|
|
1356
|
+
export declare const colorPaletteNavyBorderActive = "--colorPaletteNavyBorderActive";
|
|
1358
1357
|
|
|
1359
|
-
export declare const colorPaletteNavyForeground2
|
|
1358
|
+
export declare const colorPaletteNavyForeground2 = "--colorPaletteNavyForeground2";
|
|
1360
1359
|
|
|
1361
|
-
export declare const colorPalettePeachBackground2
|
|
1360
|
+
export declare const colorPalettePeachBackground2 = "--colorPalettePeachBackground2";
|
|
1362
1361
|
|
|
1363
|
-
export declare const colorPalettePeachBorderActive
|
|
1362
|
+
export declare const colorPalettePeachBorderActive = "--colorPalettePeachBorderActive";
|
|
1364
1363
|
|
|
1365
|
-
export declare const colorPalettePeachForeground2
|
|
1364
|
+
export declare const colorPalettePeachForeground2 = "--colorPalettePeachForeground2";
|
|
1366
1365
|
|
|
1367
|
-
export declare const colorPalettePinkBackground2
|
|
1366
|
+
export declare const colorPalettePinkBackground2 = "--colorPalettePinkBackground2";
|
|
1368
1367
|
|
|
1369
|
-
export declare const colorPalettePinkBorderActive
|
|
1368
|
+
export declare const colorPalettePinkBorderActive = "--colorPalettePinkBorderActive";
|
|
1370
1369
|
|
|
1371
|
-
export declare const colorPalettePinkForeground2
|
|
1370
|
+
export declare const colorPalettePinkForeground2 = "--colorPalettePinkForeground2";
|
|
1372
1371
|
|
|
1373
|
-
export declare const colorPalettePlatinumBackground2
|
|
1372
|
+
export declare const colorPalettePlatinumBackground2 = "--colorPalettePlatinumBackground2";
|
|
1374
1373
|
|
|
1375
|
-
export declare const colorPalettePlatinumBorderActive
|
|
1374
|
+
export declare const colorPalettePlatinumBorderActive = "--colorPalettePlatinumBorderActive";
|
|
1376
1375
|
|
|
1377
|
-
export declare const colorPalettePlatinumForeground2
|
|
1376
|
+
export declare const colorPalettePlatinumForeground2 = "--colorPalettePlatinumForeground2";
|
|
1378
1377
|
|
|
1379
|
-
export declare const colorPalettePlumBackground2
|
|
1378
|
+
export declare const colorPalettePlumBackground2 = "--colorPalettePlumBackground2";
|
|
1380
1379
|
|
|
1381
|
-
export declare const colorPalettePlumBorderActive
|
|
1380
|
+
export declare const colorPalettePlumBorderActive = "--colorPalettePlumBorderActive";
|
|
1382
1381
|
|
|
1383
|
-
export declare const colorPalettePlumForeground2
|
|
1382
|
+
export declare const colorPalettePlumForeground2 = "--colorPalettePlumForeground2";
|
|
1384
1383
|
|
|
1385
|
-
export declare const colorPalettePumpkinBackground2
|
|
1384
|
+
export declare const colorPalettePumpkinBackground2 = "--colorPalettePumpkinBackground2";
|
|
1386
1385
|
|
|
1387
|
-
export declare const colorPalettePumpkinBorderActive
|
|
1386
|
+
export declare const colorPalettePumpkinBorderActive = "--colorPalettePumpkinBorderActive";
|
|
1388
1387
|
|
|
1389
|
-
export declare const colorPalettePumpkinForeground2
|
|
1388
|
+
export declare const colorPalettePumpkinForeground2 = "--colorPalettePumpkinForeground2";
|
|
1390
1389
|
|
|
1391
|
-
export declare const colorPalettePurpleBackground2
|
|
1390
|
+
export declare const colorPalettePurpleBackground2 = "--colorPalettePurpleBackground2";
|
|
1392
1391
|
|
|
1393
|
-
export declare const colorPalettePurpleBorderActive
|
|
1392
|
+
export declare const colorPalettePurpleBorderActive = "--colorPalettePurpleBorderActive";
|
|
1394
1393
|
|
|
1395
|
-
export declare const colorPalettePurpleForeground2
|
|
1394
|
+
export declare const colorPalettePurpleForeground2 = "--colorPalettePurpleForeground2";
|
|
1396
1395
|
|
|
1397
|
-
export declare const colorPaletteRedBackground1
|
|
1396
|
+
export declare const colorPaletteRedBackground1 = "--colorPaletteRedBackground1";
|
|
1398
1397
|
|
|
1399
|
-
export declare const colorPaletteRedBackground2
|
|
1398
|
+
export declare const colorPaletteRedBackground2 = "--colorPaletteRedBackground2";
|
|
1400
1399
|
|
|
1401
|
-
export declare const colorPaletteRedBackground3
|
|
1400
|
+
export declare const colorPaletteRedBackground3 = "--colorPaletteRedBackground3";
|
|
1402
1401
|
|
|
1403
|
-
export declare const colorPaletteRedBorder1
|
|
1402
|
+
export declare const colorPaletteRedBorder1 = "--colorPaletteRedBorder1";
|
|
1404
1403
|
|
|
1405
|
-
export declare const colorPaletteRedBorder2
|
|
1404
|
+
export declare const colorPaletteRedBorder2 = "--colorPaletteRedBorder2";
|
|
1406
1405
|
|
|
1407
|
-
export declare const colorPaletteRedBorderActive
|
|
1406
|
+
export declare const colorPaletteRedBorderActive = "--colorPaletteRedBorderActive";
|
|
1408
1407
|
|
|
1409
|
-
export declare const colorPaletteRedForeground1
|
|
1408
|
+
export declare const colorPaletteRedForeground1 = "--colorPaletteRedForeground1";
|
|
1410
1409
|
|
|
1411
|
-
export declare const colorPaletteRedForeground2
|
|
1410
|
+
export declare const colorPaletteRedForeground2 = "--colorPaletteRedForeground2";
|
|
1412
1411
|
|
|
1413
|
-
export declare const colorPaletteRedForeground3
|
|
1412
|
+
export declare const colorPaletteRedForeground3 = "--colorPaletteRedForeground3";
|
|
1414
1413
|
|
|
1415
|
-
export declare const colorPaletteRedForegroundInverted
|
|
1414
|
+
export declare const colorPaletteRedForegroundInverted = "--colorPaletteRedForegroundInverted";
|
|
1416
1415
|
|
|
1417
|
-
export declare const colorPaletteRoyalBlueBackground2
|
|
1416
|
+
export declare const colorPaletteRoyalBlueBackground2 = "--colorPaletteRoyalBlueBackground2";
|
|
1418
1417
|
|
|
1419
|
-
export declare const colorPaletteRoyalBlueBorderActive
|
|
1418
|
+
export declare const colorPaletteRoyalBlueBorderActive = "--colorPaletteRoyalBlueBorderActive";
|
|
1420
1419
|
|
|
1421
|
-
export declare const colorPaletteRoyalBlueForeground2
|
|
1420
|
+
export declare const colorPaletteRoyalBlueForeground2 = "--colorPaletteRoyalBlueForeground2";
|
|
1422
1421
|
|
|
1423
|
-
export declare const colorPaletteSeafoamBackground2
|
|
1422
|
+
export declare const colorPaletteSeafoamBackground2 = "--colorPaletteSeafoamBackground2";
|
|
1424
1423
|
|
|
1425
|
-
export declare const colorPaletteSeafoamBorderActive
|
|
1424
|
+
export declare const colorPaletteSeafoamBorderActive = "--colorPaletteSeafoamBorderActive";
|
|
1426
1425
|
|
|
1427
|
-
export declare const colorPaletteSeafoamForeground2
|
|
1426
|
+
export declare const colorPaletteSeafoamForeground2 = "--colorPaletteSeafoamForeground2";
|
|
1428
1427
|
|
|
1429
|
-
export declare const colorPaletteSteelBackground2
|
|
1428
|
+
export declare const colorPaletteSteelBackground2 = "--colorPaletteSteelBackground2";
|
|
1430
1429
|
|
|
1431
|
-
export declare const colorPaletteSteelBorderActive
|
|
1430
|
+
export declare const colorPaletteSteelBorderActive = "--colorPaletteSteelBorderActive";
|
|
1432
1431
|
|
|
1433
|
-
export declare const colorPaletteSteelForeground2
|
|
1432
|
+
export declare const colorPaletteSteelForeground2 = "--colorPaletteSteelForeground2";
|
|
1434
1433
|
|
|
1435
|
-
export declare const colorPaletteTealBackground2
|
|
1434
|
+
export declare const colorPaletteTealBackground2 = "--colorPaletteTealBackground2";
|
|
1436
1435
|
|
|
1437
|
-
export declare const colorPaletteTealBorderActive
|
|
1436
|
+
export declare const colorPaletteTealBorderActive = "--colorPaletteTealBorderActive";
|
|
1438
1437
|
|
|
1439
|
-
export declare const colorPaletteTealForeground2
|
|
1438
|
+
export declare const colorPaletteTealForeground2 = "--colorPaletteTealForeground2";
|
|
1440
1439
|
|
|
1441
|
-
export declare const colorPaletteYellowBackground1
|
|
1440
|
+
export declare const colorPaletteYellowBackground1 = "--colorPaletteYellowBackground1";
|
|
1442
1441
|
|
|
1443
|
-
export declare const colorPaletteYellowBackground2
|
|
1442
|
+
export declare const colorPaletteYellowBackground2 = "--colorPaletteYellowBackground2";
|
|
1444
1443
|
|
|
1445
|
-
export declare const colorPaletteYellowBackground3
|
|
1444
|
+
export declare const colorPaletteYellowBackground3 = "--colorPaletteYellowBackground3";
|
|
1446
1445
|
|
|
1447
|
-
export declare const colorPaletteYellowBorder1
|
|
1446
|
+
export declare const colorPaletteYellowBorder1 = "--colorPaletteYellowBorder1";
|
|
1448
1447
|
|
|
1449
|
-
export declare const colorPaletteYellowBorder2
|
|
1448
|
+
export declare const colorPaletteYellowBorder2 = "--colorPaletteYellowBorder2";
|
|
1450
1449
|
|
|
1451
|
-
export declare const colorPaletteYellowBorderActive
|
|
1450
|
+
export declare const colorPaletteYellowBorderActive = "--colorPaletteYellowBorderActive";
|
|
1452
1451
|
|
|
1453
|
-
export declare const colorPaletteYellowForeground1
|
|
1452
|
+
export declare const colorPaletteYellowForeground1 = "--colorPaletteYellowForeground1";
|
|
1454
1453
|
|
|
1455
|
-
export declare const colorPaletteYellowForeground2
|
|
1454
|
+
export declare const colorPaletteYellowForeground2 = "--colorPaletteYellowForeground2";
|
|
1456
1455
|
|
|
1457
|
-
export declare const colorPaletteYellowForeground3
|
|
1456
|
+
export declare const colorPaletteYellowForeground3 = "--colorPaletteYellowForeground3";
|
|
1458
1457
|
|
|
1459
|
-
export declare const colorPaletteYellowForegroundInverted
|
|
1458
|
+
export declare const colorPaletteYellowForegroundInverted = "--colorPaletteYellowForegroundInverted";
|
|
1460
1459
|
|
|
1461
|
-
export declare const colorScrollbarOverlay
|
|
1460
|
+
export declare const colorScrollbarOverlay = "--colorScrollbarOverlay";
|
|
1462
1461
|
|
|
1463
|
-
export declare const colorStrokeFocus1
|
|
1462
|
+
export declare const colorStrokeFocus1 = "--colorStrokeFocus1";
|
|
1464
1463
|
|
|
1465
|
-
export declare const colorStrokeFocus2
|
|
1464
|
+
export declare const colorStrokeFocus2 = "--colorStrokeFocus2";
|
|
1466
1465
|
|
|
1467
|
-
export declare const colorSubtleBackground
|
|
1466
|
+
export declare const colorSubtleBackground = "--colorSubtleBackground";
|
|
1468
1467
|
|
|
1469
|
-
export declare const colorSubtleBackgroundHover
|
|
1468
|
+
export declare const colorSubtleBackgroundHover = "--colorSubtleBackgroundHover";
|
|
1470
1469
|
|
|
1471
|
-
export declare const colorSubtleBackgroundInverted
|
|
1470
|
+
export declare const colorSubtleBackgroundInverted = "--colorSubtleBackgroundInverted";
|
|
1472
1471
|
|
|
1473
|
-
export declare const colorSubtleBackgroundInvertedHover
|
|
1472
|
+
export declare const colorSubtleBackgroundInvertedHover = "--colorSubtleBackgroundInvertedHover";
|
|
1474
1473
|
|
|
1475
|
-
export declare const colorSubtleBackgroundInvertedPressed
|
|
1474
|
+
export declare const colorSubtleBackgroundInvertedPressed = "--colorSubtleBackgroundInvertedPressed";
|
|
1476
1475
|
|
|
1477
|
-
export declare const colorSubtleBackgroundInvertedSelected
|
|
1476
|
+
export declare const colorSubtleBackgroundInvertedSelected = "--colorSubtleBackgroundInvertedSelected";
|
|
1478
1477
|
|
|
1479
|
-
export declare const colorSubtleBackgroundLightAlphaHover
|
|
1478
|
+
export declare const colorSubtleBackgroundLightAlphaHover = "--colorSubtleBackgroundLightAlphaHover";
|
|
1480
1479
|
|
|
1481
|
-
export declare const colorSubtleBackgroundLightAlphaPressed
|
|
1480
|
+
export declare const colorSubtleBackgroundLightAlphaPressed = "--colorSubtleBackgroundLightAlphaPressed";
|
|
1482
1481
|
|
|
1483
|
-
export declare const colorSubtleBackgroundLightAlphaSelected
|
|
1482
|
+
export declare const colorSubtleBackgroundLightAlphaSelected = "--colorSubtleBackgroundLightAlphaSelected";
|
|
1484
1483
|
|
|
1485
|
-
export declare const colorSubtleBackgroundPressed
|
|
1484
|
+
export declare const colorSubtleBackgroundPressed = "--colorSubtleBackgroundPressed";
|
|
1486
1485
|
|
|
1487
|
-
export declare const colorSubtleBackgroundSelected
|
|
1486
|
+
export declare const colorSubtleBackgroundSelected = "--colorSubtleBackgroundSelected";
|
|
1488
1487
|
|
|
1489
|
-
export declare const colorTransparentBackground
|
|
1488
|
+
export declare const colorTransparentBackground = "--colorTransparentBackground";
|
|
1490
1489
|
|
|
1491
|
-
export declare const colorTransparentBackgroundHover
|
|
1490
|
+
export declare const colorTransparentBackgroundHover = "--colorTransparentBackgroundHover";
|
|
1492
1491
|
|
|
1493
|
-
export declare const colorTransparentBackgroundPressed
|
|
1492
|
+
export declare const colorTransparentBackgroundPressed = "--colorTransparentBackgroundPressed";
|
|
1494
1493
|
|
|
1495
|
-
export declare const colorTransparentBackgroundSelected
|
|
1494
|
+
export declare const colorTransparentBackgroundSelected = "--colorTransparentBackgroundSelected";
|
|
1496
1495
|
|
|
1497
|
-
export declare const colorTransparentStroke
|
|
1496
|
+
export declare const colorTransparentStroke = "--colorTransparentStroke";
|
|
1498
1497
|
|
|
1499
|
-
export declare const colorTransparentStrokeDisabled
|
|
1498
|
+
export declare const colorTransparentStrokeDisabled = "--colorTransparentStrokeDisabled";
|
|
1500
1499
|
|
|
1501
|
-
export declare const colorTransparentStrokeInteractive
|
|
1500
|
+
export declare const colorTransparentStrokeInteractive = "--colorTransparentStrokeInteractive";
|
|
1502
1501
|
|
|
1503
1502
|
/**
|
|
1504
1503
|
* The base class used for constructing a fluent-compound-button custom element
|
|
@@ -1766,23 +1765,23 @@ export declare const CounterBadgeStyles: ElementStyles;
|
|
|
1766
1765
|
*/
|
|
1767
1766
|
export declare const CounterBadgeTemplate: ElementViewTemplate<CounterBadge>;
|
|
1768
1767
|
|
|
1769
|
-
export declare const curveAccelerateMax
|
|
1768
|
+
export declare const curveAccelerateMax = "--curveAccelerateMax";
|
|
1770
1769
|
|
|
1771
|
-
export declare const curveAccelerateMid
|
|
1770
|
+
export declare const curveAccelerateMid = "--curveAccelerateMid";
|
|
1772
1771
|
|
|
1773
|
-
export declare const curveAccelerateMin
|
|
1772
|
+
export declare const curveAccelerateMin = "--curveAccelerateMin";
|
|
1774
1773
|
|
|
1775
|
-
export declare const curveDecelerateMax
|
|
1774
|
+
export declare const curveDecelerateMax = "--curveDecelerateMax";
|
|
1776
1775
|
|
|
1777
|
-
export declare const curveDecelerateMid
|
|
1776
|
+
export declare const curveDecelerateMid = "--curveDecelerateMid";
|
|
1778
1777
|
|
|
1779
|
-
export declare const curveDecelerateMin
|
|
1778
|
+
export declare const curveDecelerateMin = "--curveDecelerateMin";
|
|
1780
1779
|
|
|
1781
|
-
export declare const curveEasyEase
|
|
1780
|
+
export declare const curveEasyEase = "--curveEasyEase";
|
|
1782
1781
|
|
|
1783
|
-
export declare const curveEasyEaseMax
|
|
1782
|
+
export declare const curveEasyEaseMax = "--curveEasyEaseMax";
|
|
1784
1783
|
|
|
1785
|
-
export declare const curveLinear
|
|
1784
|
+
export declare const curveLinear = "--curveLinear";
|
|
1786
1785
|
|
|
1787
1786
|
/**
|
|
1788
1787
|
* Dialog component that extends the FASTElement class.
|
|
@@ -2093,19 +2092,19 @@ export declare const DividerStyles: ElementStyles;
|
|
|
2093
2092
|
*/
|
|
2094
2093
|
export declare const DividerTemplate: ElementViewTemplate<Divider>;
|
|
2095
2094
|
|
|
2096
|
-
export declare const durationFast
|
|
2095
|
+
export declare const durationFast = "--durationFast";
|
|
2097
2096
|
|
|
2098
|
-
export declare const durationFaster
|
|
2097
|
+
export declare const durationFaster = "--durationFaster";
|
|
2099
2098
|
|
|
2100
|
-
export declare const durationNormal
|
|
2099
|
+
export declare const durationNormal = "--durationNormal";
|
|
2101
2100
|
|
|
2102
|
-
export declare const durationSlow
|
|
2101
|
+
export declare const durationSlow = "--durationSlow";
|
|
2103
2102
|
|
|
2104
|
-
export declare const durationSlower
|
|
2103
|
+
export declare const durationSlower = "--durationSlower";
|
|
2105
2104
|
|
|
2106
|
-
export declare const durationUltraFast
|
|
2105
|
+
export declare const durationUltraFast = "--durationUltraFast";
|
|
2107
2106
|
|
|
2108
|
-
export declare const durationUltraSlow
|
|
2107
|
+
export declare const durationUltraSlow = "--durationUltraSlow";
|
|
2109
2108
|
|
|
2110
2109
|
export declare const FluentDesignSystem: Readonly<{
|
|
2111
2110
|
prefix: "fluent";
|
|
@@ -2113,39 +2112,39 @@ export declare const FluentDesignSystem: Readonly<{
|
|
|
2113
2112
|
registry: CustomElementRegistry;
|
|
2114
2113
|
}>;
|
|
2115
2114
|
|
|
2116
|
-
export declare const fontFamilyBase
|
|
2115
|
+
export declare const fontFamilyBase = "--fontFamilyBase";
|
|
2117
2116
|
|
|
2118
|
-
export declare const fontFamilyMonospace
|
|
2117
|
+
export declare const fontFamilyMonospace = "--fontFamilyMonospace";
|
|
2119
2118
|
|
|
2120
|
-
export declare const fontFamilyNumeric
|
|
2119
|
+
export declare const fontFamilyNumeric = "--fontFamilyNumeric";
|
|
2121
2120
|
|
|
2122
|
-
export declare const fontSizeBase100
|
|
2121
|
+
export declare const fontSizeBase100 = "--fontSizeBase100";
|
|
2123
2122
|
|
|
2124
|
-
export declare const fontSizeBase200
|
|
2123
|
+
export declare const fontSizeBase200 = "--fontSizeBase200";
|
|
2125
2124
|
|
|
2126
|
-
export declare const fontSizeBase300
|
|
2125
|
+
export declare const fontSizeBase300 = "--fontSizeBase300";
|
|
2127
2126
|
|
|
2128
|
-
export declare const fontSizeBase400
|
|
2127
|
+
export declare const fontSizeBase400 = "--fontSizeBase400";
|
|
2129
2128
|
|
|
2130
|
-
export declare const fontSizeBase500
|
|
2129
|
+
export declare const fontSizeBase500 = "--fontSizeBase500";
|
|
2131
2130
|
|
|
2132
|
-
export declare const fontSizeBase600
|
|
2131
|
+
export declare const fontSizeBase600 = "--fontSizeBase600";
|
|
2133
2132
|
|
|
2134
|
-
export declare const fontSizeHero1000
|
|
2133
|
+
export declare const fontSizeHero1000 = "--fontSizeHero1000";
|
|
2135
2134
|
|
|
2136
|
-
export declare const fontSizeHero700
|
|
2135
|
+
export declare const fontSizeHero700 = "--fontSizeHero700";
|
|
2137
2136
|
|
|
2138
|
-
export declare const fontSizeHero800
|
|
2137
|
+
export declare const fontSizeHero800 = "--fontSizeHero800";
|
|
2139
2138
|
|
|
2140
|
-
export declare const fontSizeHero900
|
|
2139
|
+
export declare const fontSizeHero900 = "--fontSizeHero900";
|
|
2141
2140
|
|
|
2142
|
-
export declare const fontWeightBold
|
|
2141
|
+
export declare const fontWeightBold = "--fontWeightBold";
|
|
2143
2142
|
|
|
2144
|
-
export declare const fontWeightMedium
|
|
2143
|
+
export declare const fontWeightMedium = "--fontWeightMedium";
|
|
2145
2144
|
|
|
2146
|
-
export declare const fontWeightRegular
|
|
2145
|
+
export declare const fontWeightRegular = "--fontWeightRegular";
|
|
2147
2146
|
|
|
2148
|
-
export declare const fontWeightSemibold
|
|
2147
|
+
export declare const fontWeightSemibold = "--fontWeightSemibold";
|
|
2149
2148
|
|
|
2150
2149
|
/**
|
|
2151
2150
|
* The base class used for constucting a fluent image custom element
|
|
@@ -2333,25 +2332,25 @@ declare const LabelWeight: {
|
|
|
2333
2332
|
*/
|
|
2334
2333
|
declare type LabelWeight = ValuesOf<typeof LabelWeight>;
|
|
2335
2334
|
|
|
2336
|
-
export declare const lineHeightBase100
|
|
2335
|
+
export declare const lineHeightBase100 = "--lineHeightBase100";
|
|
2337
2336
|
|
|
2338
|
-
export declare const lineHeightBase200
|
|
2337
|
+
export declare const lineHeightBase200 = "--lineHeightBase200";
|
|
2339
2338
|
|
|
2340
|
-
export declare const lineHeightBase300
|
|
2339
|
+
export declare const lineHeightBase300 = "--lineHeightBase300";
|
|
2341
2340
|
|
|
2342
|
-
export declare const lineHeightBase400
|
|
2341
|
+
export declare const lineHeightBase400 = "--lineHeightBase400";
|
|
2343
2342
|
|
|
2344
|
-
export declare const lineHeightBase500
|
|
2343
|
+
export declare const lineHeightBase500 = "--lineHeightBase500";
|
|
2345
2344
|
|
|
2346
|
-
export declare const lineHeightBase600
|
|
2345
|
+
export declare const lineHeightBase600 = "--lineHeightBase600";
|
|
2347
2346
|
|
|
2348
|
-
export declare const lineHeightHero1000
|
|
2347
|
+
export declare const lineHeightHero1000 = "--lineHeightHero1000";
|
|
2349
2348
|
|
|
2350
|
-
export declare const lineHeightHero700
|
|
2349
|
+
export declare const lineHeightHero700 = "--lineHeightHero700";
|
|
2351
2350
|
|
|
2352
|
-
export declare const lineHeightHero800
|
|
2351
|
+
export declare const lineHeightHero800 = "--lineHeightHero800";
|
|
2353
2352
|
|
|
2354
|
-
export declare const lineHeightHero900
|
|
2353
|
+
export declare const lineHeightHero900 = "--lineHeightHero900";
|
|
2355
2354
|
|
|
2356
2355
|
/**
|
|
2357
2356
|
* The Menu class represents a menu component.
|
|
@@ -2848,31 +2847,31 @@ export declare const RadioTemplate: ElementViewTemplate<Radio>;
|
|
|
2848
2847
|
*/
|
|
2849
2848
|
export declare const setTheme: (theme: Theme) => void;
|
|
2850
2849
|
|
|
2851
|
-
export declare const setThemeFor: (element:
|
|
2850
|
+
export declare const setThemeFor: (element: HTMLElement, theme: Theme) => void;
|
|
2852
2851
|
|
|
2853
|
-
export declare const shadow16
|
|
2852
|
+
export declare const shadow16 = "--shadow16";
|
|
2854
2853
|
|
|
2855
|
-
export declare const shadow16Brand
|
|
2854
|
+
export declare const shadow16Brand = "--shadow16Brand";
|
|
2856
2855
|
|
|
2857
|
-
export declare const shadow2
|
|
2856
|
+
export declare const shadow2 = "--shadow2";
|
|
2858
2857
|
|
|
2859
|
-
export declare const shadow28
|
|
2858
|
+
export declare const shadow28 = "--shadow28";
|
|
2860
2859
|
|
|
2861
|
-
export declare const shadow28Brand
|
|
2860
|
+
export declare const shadow28Brand = "--shadow28Brand";
|
|
2862
2861
|
|
|
2863
|
-
export declare const shadow2Brand
|
|
2862
|
+
export declare const shadow2Brand = "--shadow2Brand";
|
|
2864
2863
|
|
|
2865
|
-
export declare const shadow4
|
|
2864
|
+
export declare const shadow4 = "--shadow4";
|
|
2866
2865
|
|
|
2867
|
-
export declare const shadow4Brand
|
|
2866
|
+
export declare const shadow4Brand = "--shadow4Brand";
|
|
2868
2867
|
|
|
2869
|
-
export declare const shadow64
|
|
2868
|
+
export declare const shadow64 = "--shadow64";
|
|
2870
2869
|
|
|
2871
|
-
export declare const shadow64Brand
|
|
2870
|
+
export declare const shadow64Brand = "--shadow64Brand";
|
|
2872
2871
|
|
|
2873
|
-
export declare const shadow8
|
|
2872
|
+
export declare const shadow8 = "--shadow8";
|
|
2874
2873
|
|
|
2875
|
-
export declare const shadow8Brand
|
|
2874
|
+
export declare const shadow8Brand = "--shadow8Brand";
|
|
2876
2875
|
|
|
2877
2876
|
/**
|
|
2878
2877
|
* The base class used for constructing a fluent-slider custom element
|
|
@@ -2931,49 +2930,49 @@ export declare const SliderStyles: ElementStyles;
|
|
|
2931
2930
|
|
|
2932
2931
|
export declare const SliderTemplate: ElementViewTemplate<FASTSlider>;
|
|
2933
2932
|
|
|
2934
|
-
export declare const spacingHorizontalL
|
|
2933
|
+
export declare const spacingHorizontalL = "--spacingHorizontalL";
|
|
2935
2934
|
|
|
2936
|
-
export declare const spacingHorizontalM
|
|
2935
|
+
export declare const spacingHorizontalM = "--spacingHorizontalM";
|
|
2937
2936
|
|
|
2938
|
-
export declare const spacingHorizontalMNudge
|
|
2937
|
+
export declare const spacingHorizontalMNudge = "--spacingHorizontalMNudge";
|
|
2939
2938
|
|
|
2940
|
-
export declare const spacingHorizontalNone
|
|
2939
|
+
export declare const spacingHorizontalNone = "--spacingHorizontalNone";
|
|
2941
2940
|
|
|
2942
|
-
export declare const spacingHorizontalS
|
|
2941
|
+
export declare const spacingHorizontalS = "--spacingHorizontalS";
|
|
2943
2942
|
|
|
2944
|
-
export declare const spacingHorizontalSNudge
|
|
2943
|
+
export declare const spacingHorizontalSNudge = "--spacingHorizontalSNudge";
|
|
2945
2944
|
|
|
2946
|
-
export declare const spacingHorizontalXL
|
|
2945
|
+
export declare const spacingHorizontalXL = "--spacingHorizontalXL";
|
|
2947
2946
|
|
|
2948
|
-
export declare const spacingHorizontalXS
|
|
2947
|
+
export declare const spacingHorizontalXS = "--spacingHorizontalXS";
|
|
2949
2948
|
|
|
2950
|
-
export declare const spacingHorizontalXXL
|
|
2949
|
+
export declare const spacingHorizontalXXL = "--spacingHorizontalXXL";
|
|
2951
2950
|
|
|
2952
|
-
export declare const spacingHorizontalXXS
|
|
2951
|
+
export declare const spacingHorizontalXXS = "--spacingHorizontalXXS";
|
|
2953
2952
|
|
|
2954
|
-
export declare const spacingHorizontalXXXL
|
|
2953
|
+
export declare const spacingHorizontalXXXL = "--spacingHorizontalXXXL";
|
|
2955
2954
|
|
|
2956
|
-
export declare const spacingVerticalL
|
|
2955
|
+
export declare const spacingVerticalL = "--spacingVerticalL";
|
|
2957
2956
|
|
|
2958
|
-
export declare const spacingVerticalM
|
|
2957
|
+
export declare const spacingVerticalM = "--spacingVerticalM";
|
|
2959
2958
|
|
|
2960
|
-
export declare const spacingVerticalMNudge
|
|
2959
|
+
export declare const spacingVerticalMNudge = "--spacingVerticalMNudge";
|
|
2961
2960
|
|
|
2962
|
-
export declare const spacingVerticalNone
|
|
2961
|
+
export declare const spacingVerticalNone = "--spacingVerticalNone";
|
|
2963
2962
|
|
|
2964
|
-
export declare const spacingVerticalS
|
|
2963
|
+
export declare const spacingVerticalS = "--spacingVerticalS";
|
|
2965
2964
|
|
|
2966
|
-
export declare const spacingVerticalSNudge
|
|
2965
|
+
export declare const spacingVerticalSNudge = "--spacingVerticalSNudge";
|
|
2967
2966
|
|
|
2968
|
-
export declare const spacingVerticalXL
|
|
2967
|
+
export declare const spacingVerticalXL = "--spacingVerticalXL";
|
|
2969
2968
|
|
|
2970
|
-
export declare const spacingVerticalXS
|
|
2969
|
+
export declare const spacingVerticalXS = "--spacingVerticalXS";
|
|
2971
2970
|
|
|
2972
|
-
export declare const spacingVerticalXXL
|
|
2971
|
+
export declare const spacingVerticalXXL = "--spacingVerticalXXL";
|
|
2973
2972
|
|
|
2974
|
-
export declare const spacingVerticalXXS
|
|
2973
|
+
export declare const spacingVerticalXXS = "--spacingVerticalXXS";
|
|
2975
2974
|
|
|
2976
|
-
export declare const spacingVerticalXXXL
|
|
2975
|
+
export declare const spacingVerticalXXXL = "--spacingVerticalXXXL";
|
|
2977
2976
|
|
|
2978
2977
|
/**
|
|
2979
2978
|
* The base class used for constructing a fluent-spinner custom element
|
|
@@ -3049,13 +3048,13 @@ export declare const SpinnerStyles: ElementStyles;
|
|
|
3049
3048
|
|
|
3050
3049
|
export declare const SpinnerTemplate: ElementViewTemplate<Spinner>;
|
|
3051
3050
|
|
|
3052
|
-
export declare const strokeWidthThick
|
|
3051
|
+
export declare const strokeWidthThick = "--strokeWidthThick";
|
|
3053
3052
|
|
|
3054
|
-
export declare const strokeWidthThicker
|
|
3053
|
+
export declare const strokeWidthThicker = "--strokeWidthThicker";
|
|
3055
3054
|
|
|
3056
|
-
export declare const strokeWidthThickest
|
|
3055
|
+
export declare const strokeWidthThickest = "--strokeWidthThickest";
|
|
3057
3056
|
|
|
3058
|
-
export declare const strokeWidthThin
|
|
3057
|
+
export declare const strokeWidthThin = "--strokeWidthThin";
|
|
3059
3058
|
|
|
3060
3059
|
declare const styles: ElementStyles;
|
|
3061
3060
|
export { styles as ButtonStyles }
|