@nulogy/components 14.1.2 → 14.1.4
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/dist/main.js +928 -517
- package/dist/main.module.js +928 -517
- package/dist/src/BottomSheet/stories/BottomSheet.features.story.d.ts +6 -0
- package/dist/src/DatePickers/shared/types.d.ts +1 -1
- package/dist/src/DatePickers/stories/MonthPicker.story.d.ts +1 -0
- package/dist/src/DatePickers/stories/WeekPicker.story.d.ts +1 -0
- package/dist/src/Type/Typography.story.d.ts +1 -0
- package/package.json +2 -3
- package/dist/src/scripts/generateTheme.d.ts +0 -1
package/dist/main.js
CHANGED
|
@@ -28661,7 +28661,8 @@
|
|
|
28661
28661
|
display: "flex",
|
|
28662
28662
|
alignItems: "flex-end",
|
|
28663
28663
|
justifyContent: "center",
|
|
28664
|
-
backgroundColor: curriedTransparentize(0.5, theme.colors.blackBlue)
|
|
28664
|
+
backgroundColor: curriedTransparentize(0.5, theme.colors.blackBlue),
|
|
28665
|
+
zIndex: theme.zIndices.overlay
|
|
28665
28666
|
};
|
|
28666
28667
|
});
|
|
28667
28668
|
var styleFns = [width, maxWidth, height, maxHeight, space, layout];
|
|
@@ -54712,75 +54713,485 @@
|
|
|
54712
54713
|
}, theme);
|
|
54713
54714
|
};
|
|
54714
54715
|
|
|
54716
|
+
/*
|
|
54717
|
+
Nulogy Design System Tokens
|
|
54718
|
+
THIS FILE IS AUTO-GENERATED. DO NOT EDIT MANUALLY.
|
|
54719
|
+
*/
|
|
54720
|
+
|
|
54721
|
+
/*
|
|
54722
|
+
|-----------------------------------------------------------------------------
|
|
54723
|
+
| Border radius
|
|
54724
|
+
|-----------------------------------------------------------------------------
|
|
54725
|
+
*/
|
|
54726
|
+
const DESKTOP_BORDER_RADIUS_SMALL = '2px';
|
|
54727
|
+
const DESKTOP_BORDER_RADIUS_MEDIUM = '4px';
|
|
54728
|
+
const DESKTOP_BORDER_RADIUS_LARGE = '8px';
|
|
54729
|
+
const DESKTOP_BORDER_RADIUS_CIRCLE = '50%';
|
|
54730
|
+
const DESKTOP_BORDER_RADIUS_ROUNDED = '9999px';
|
|
54731
|
+
const TABLET_BORDER_RADIUS_SMALL = '2.8px';
|
|
54732
|
+
const TABLET_BORDER_RADIUS_MEDIUM = '5.6px';
|
|
54733
|
+
const TABLET_BORDER_RADIUS_LARGE = '11.2px';
|
|
54734
|
+
const TABLET_BORDER_RADIUS_CIRCLE = '50%';
|
|
54735
|
+
const TABLET_BORDER_RADIUS_ROUNDED = '9999px';
|
|
54736
|
+
const PHONE_BORDER_RADIUS_SMALL = '1.8px';
|
|
54737
|
+
const PHONE_BORDER_RADIUS_MEDIUM = '3.6px';
|
|
54738
|
+
const PHONE_BORDER_RADIUS_LARGE = '7.2px';
|
|
54739
|
+
const PHONE_BORDER_RADIUS_CIRCLE = '50%';
|
|
54740
|
+
const PHONE_BORDER_RADIUS_ROUNDED = '9999px';
|
|
54741
|
+
|
|
54742
|
+
/*
|
|
54743
|
+
|-----------------------------------------------------------------------------
|
|
54744
|
+
| Font size
|
|
54745
|
+
|-----------------------------------------------------------------------------
|
|
54746
|
+
*/
|
|
54747
|
+
const DESKTOP_FONT_SIZE_STANDARD_SMALLER = '12px';
|
|
54748
|
+
const DESKTOP_FONT_SIZE_STANDARD_SMALL = '15px';
|
|
54749
|
+
const DESKTOP_FONT_SIZE_STANDARD_MEDIUM = '15px';
|
|
54750
|
+
const DESKTOP_FONT_SIZE_STANDARD_LARGE = '21px';
|
|
54751
|
+
const DESKTOP_FONT_SIZE_STANDARD_LARGER = '24px';
|
|
54752
|
+
const DESKTOP_FONT_SIZE_STANDARD_LARGEST = '30px';
|
|
54753
|
+
const DESKTOP_FONT_SIZE_EXPERIMENTAL_XXS = '9px';
|
|
54754
|
+
const DESKTOP_FONT_SIZE_EXPERIMENTAL_XS = '12px';
|
|
54755
|
+
const DESKTOP_FONT_SIZE_EXPERIMENTAL_SM = '15px';
|
|
54756
|
+
const DESKTOP_FONT_SIZE_EXPERIMENTAL_MD = '18px';
|
|
54757
|
+
const DESKTOP_FONT_SIZE_EXPERIMENTAL_LG = '21px';
|
|
54758
|
+
const DESKTOP_FONT_SIZE_EXPERIMENTAL_XL = '24px';
|
|
54759
|
+
const DESKTOP_FONT_SIZE_EXPERIMENTAL_XXL = '30px';
|
|
54760
|
+
const DESKTOP_FONT_SIZE_SEMANTIC_HEADING_1 = '24px';
|
|
54761
|
+
const DESKTOP_FONT_SIZE_SEMANTIC_HEADING_2 = '21px';
|
|
54762
|
+
const DESKTOP_FONT_SIZE_SEMANTIC_HEADING_3 = '15px';
|
|
54763
|
+
const DESKTOP_FONT_SIZE_SEMANTIC_HEADING_4 = '15px';
|
|
54764
|
+
const DESKTOP_FONT_SIZE_SEMANTIC_BASE = '15px';
|
|
54765
|
+
const TABLET_FONT_SIZE_STANDARD_SMALLER = '16.8px';
|
|
54766
|
+
const TABLET_FONT_SIZE_STANDARD_SMALL = '21px';
|
|
54767
|
+
const TABLET_FONT_SIZE_STANDARD_MEDIUM = '21px';
|
|
54768
|
+
const TABLET_FONT_SIZE_STANDARD_LARGE = '29.4px';
|
|
54769
|
+
const TABLET_FONT_SIZE_STANDARD_LARGER = '33.6px';
|
|
54770
|
+
const TABLET_FONT_SIZE_STANDARD_LARGEST = '42px';
|
|
54771
|
+
const TABLET_FONT_SIZE_EXPERIMENTAL_XXS = '12.6px';
|
|
54772
|
+
const TABLET_FONT_SIZE_EXPERIMENTAL_XS = '16.8px';
|
|
54773
|
+
const TABLET_FONT_SIZE_EXPERIMENTAL_SM = '21px';
|
|
54774
|
+
const TABLET_FONT_SIZE_EXPERIMENTAL_MD = '25.2px';
|
|
54775
|
+
const TABLET_FONT_SIZE_EXPERIMENTAL_LG = '29.4px';
|
|
54776
|
+
const TABLET_FONT_SIZE_EXPERIMENTAL_XL = '33.6px';
|
|
54777
|
+
const TABLET_FONT_SIZE_EXPERIMENTAL_XXL = '42px';
|
|
54778
|
+
const TABLET_FONT_SIZE_SEMANTIC_HEADING_1 = '33.6px';
|
|
54779
|
+
const TABLET_FONT_SIZE_SEMANTIC_HEADING_2 = '29.4px';
|
|
54780
|
+
const TABLET_FONT_SIZE_SEMANTIC_HEADING_3 = '21px';
|
|
54781
|
+
const TABLET_FONT_SIZE_SEMANTIC_HEADING_4 = '21px';
|
|
54782
|
+
const TABLET_FONT_SIZE_SEMANTIC_BASE = '21px';
|
|
54783
|
+
const PHONE_FONT_SIZE_STANDARD_SMALLER = '10.8px';
|
|
54784
|
+
const PHONE_FONT_SIZE_STANDARD_SMALL = '13.5px';
|
|
54785
|
+
const PHONE_FONT_SIZE_STANDARD_MEDIUM = '13.5px';
|
|
54786
|
+
const PHONE_FONT_SIZE_STANDARD_LARGE = '18.9px';
|
|
54787
|
+
const PHONE_FONT_SIZE_STANDARD_LARGER = '21.6px';
|
|
54788
|
+
const PHONE_FONT_SIZE_STANDARD_LARGEST = '27px';
|
|
54789
|
+
const PHONE_FONT_SIZE_EXPERIMENTAL_XXS = '8.1px';
|
|
54790
|
+
const PHONE_FONT_SIZE_EXPERIMENTAL_XS = '10.8px';
|
|
54791
|
+
const PHONE_FONT_SIZE_EXPERIMENTAL_SM = '13.5px';
|
|
54792
|
+
const PHONE_FONT_SIZE_EXPERIMENTAL_MD = '16.2px';
|
|
54793
|
+
const PHONE_FONT_SIZE_EXPERIMENTAL_LG = '18.9px';
|
|
54794
|
+
const PHONE_FONT_SIZE_EXPERIMENTAL_XL = '21.6px';
|
|
54795
|
+
const PHONE_FONT_SIZE_EXPERIMENTAL_XXL = '27px';
|
|
54796
|
+
const PHONE_FONT_SIZE_SEMANTIC_HEADING_1 = '21.6px';
|
|
54797
|
+
const PHONE_FONT_SIZE_SEMANTIC_HEADING_2 = '18.9px';
|
|
54798
|
+
const PHONE_FONT_SIZE_SEMANTIC_HEADING_3 = '13.5px';
|
|
54799
|
+
const PHONE_FONT_SIZE_SEMANTIC_HEADING_4 = '13.5px';
|
|
54800
|
+
const PHONE_FONT_SIZE_SEMANTIC_BASE = '13.5px';
|
|
54801
|
+
|
|
54802
|
+
/*
|
|
54803
|
+
|-----------------------------------------------------------------------------
|
|
54804
|
+
| Breakpoints
|
|
54805
|
+
|-----------------------------------------------------------------------------
|
|
54806
|
+
*/
|
|
54807
|
+
const DESKTOP_BREAKPOINTS_BASE_EXTRA_SMALL = '0px';
|
|
54808
|
+
const DESKTOP_BREAKPOINTS_BASE_SMALL = '768px';
|
|
54809
|
+
const DESKTOP_BREAKPOINTS_BASE_MEDIUM = '1024px';
|
|
54810
|
+
const DESKTOP_BREAKPOINTS_BASE_LARGE = '1360px';
|
|
54811
|
+
const DESKTOP_BREAKPOINTS_BASE_EXTRA_LARGE = '1920px';
|
|
54812
|
+
const DESKTOP_BREAKPOINTS_SEMANTIC_PHONE_PORTRAIT = '320px';
|
|
54813
|
+
const DESKTOP_BREAKPOINTS_SEMANTIC_PHONE_LANDSCAPE = '640px';
|
|
54814
|
+
const DESKTOP_BREAKPOINTS_SEMANTIC_TABLET_PORTRAIT = '768px';
|
|
54815
|
+
const DESKTOP_BREAKPOINTS_SEMANTIC_TABLET_LANDSCAPE = '1024px';
|
|
54816
|
+
const DESKTOP_BREAKPOINTS_SEMANTIC_LAPTOP = '1280px';
|
|
54817
|
+
const DESKTOP_BREAKPOINTS_SEMANTIC_DESKTOP = '1440px';
|
|
54818
|
+
const TABLET_BREAKPOINTS_BASE_EXTRA_SMALL = '0px';
|
|
54819
|
+
const TABLET_BREAKPOINTS_BASE_SMALL = '768px';
|
|
54820
|
+
const TABLET_BREAKPOINTS_BASE_MEDIUM = '1024px';
|
|
54821
|
+
const TABLET_BREAKPOINTS_BASE_LARGE = '1360px';
|
|
54822
|
+
const TABLET_BREAKPOINTS_BASE_EXTRA_LARGE = '1920px';
|
|
54823
|
+
const TABLET_BREAKPOINTS_SEMANTIC_PHONE_PORTRAIT = '320px';
|
|
54824
|
+
const TABLET_BREAKPOINTS_SEMANTIC_PHONE_LANDSCAPE = '640px';
|
|
54825
|
+
const TABLET_BREAKPOINTS_SEMANTIC_TABLET_PORTRAIT = '768px';
|
|
54826
|
+
const TABLET_BREAKPOINTS_SEMANTIC_TABLET_LANDSCAPE = '1024px';
|
|
54827
|
+
const TABLET_BREAKPOINTS_SEMANTIC_LAPTOP = '1280px';
|
|
54828
|
+
const TABLET_BREAKPOINTS_SEMANTIC_DESKTOP = '1440px';
|
|
54829
|
+
const PHONE_BREAKPOINTS_BASE_EXTRA_SMALL = '0px';
|
|
54830
|
+
const PHONE_BREAKPOINTS_BASE_SMALL = '768px';
|
|
54831
|
+
const PHONE_BREAKPOINTS_BASE_MEDIUM = '1024px';
|
|
54832
|
+
const PHONE_BREAKPOINTS_BASE_LARGE = '1360px';
|
|
54833
|
+
const PHONE_BREAKPOINTS_BASE_EXTRA_LARGE = '1920px';
|
|
54834
|
+
const PHONE_BREAKPOINTS_SEMANTIC_PHONE_PORTRAIT = '320px';
|
|
54835
|
+
const PHONE_BREAKPOINTS_SEMANTIC_PHONE_LANDSCAPE = '640px';
|
|
54836
|
+
const PHONE_BREAKPOINTS_SEMANTIC_TABLET_PORTRAIT = '768px';
|
|
54837
|
+
const PHONE_BREAKPOINTS_SEMANTIC_TABLET_LANDSCAPE = '1024px';
|
|
54838
|
+
const PHONE_BREAKPOINTS_SEMANTIC_LAPTOP = '1280px';
|
|
54839
|
+
const PHONE_BREAKPOINTS_SEMANTIC_DESKTOP = '1440px';
|
|
54840
|
+
|
|
54841
|
+
/*
|
|
54842
|
+
|-----------------------------------------------------------------------------
|
|
54843
|
+
| Color
|
|
54844
|
+
|-----------------------------------------------------------------------------
|
|
54845
|
+
*/
|
|
54846
|
+
const DESKTOP_COLOR_BASE_BLACK = '#011E38';
|
|
54847
|
+
const DESKTOP_COLOR_BASE_BLACK_BLUE = '#122B47';
|
|
54848
|
+
const DESKTOP_COLOR_BASE_DARK_BLUE = '#00438F';
|
|
54849
|
+
const DESKTOP_COLOR_BASE_BLUE = '#216BEB';
|
|
54850
|
+
const DESKTOP_COLOR_BASE_LIGHT_BLUE = '#E1EBFA';
|
|
54851
|
+
const DESKTOP_COLOR_BASE_DARK_GREY = '#434D59';
|
|
54852
|
+
const DESKTOP_COLOR_BASE_MID_GREY = '#6C7784';
|
|
54853
|
+
const DESKTOP_COLOR_BASE_GREY = '#C0C8D1';
|
|
54854
|
+
const DESKTOP_COLOR_BASE_LIGHT_GREY = '#E4E7EB';
|
|
54855
|
+
const DESKTOP_COLOR_BASE_WHITE_GREY = '#F0F2F5';
|
|
54856
|
+
const DESKTOP_COLOR_BASE_WHITE = '#FFFFFF';
|
|
54857
|
+
const DESKTOP_COLOR_BASE_GREEN = '#008059';
|
|
54858
|
+
const DESKTOP_COLOR_BASE_LIGHT_GREEN = '#E9F7F2';
|
|
54859
|
+
const DESKTOP_COLOR_BASE_RED = '#CC1439';
|
|
54860
|
+
const DESKTOP_COLOR_BASE_LIGHT_RED = '#FAE6EA';
|
|
54861
|
+
const DESKTOP_COLOR_BASE_YELLOW = '#FFBB00';
|
|
54862
|
+
const DESKTOP_COLOR_BASE_LIGHT_YELLOW = '#FCF5E3';
|
|
54863
|
+
const DESKTOP_COLOR_CATEGORICAL_1 = '#19C4E6';
|
|
54864
|
+
const DESKTOP_COLOR_CATEGORICAL_2 = '#8033CC';
|
|
54865
|
+
const DESKTOP_COLOR_CATEGORICAL_3 = '#E372D0';
|
|
54866
|
+
const DESKTOP_COLOR_CATEGORICAL_4 = '#55DDB0';
|
|
54867
|
+
const DESKTOP_COLOR_CATEGORICAL_5 = '#EE5513';
|
|
54868
|
+
const DESKTOP_COLOR_CATEGORICAL_6 = '#D3D322';
|
|
54869
|
+
const TABLET_COLOR_BASE_BLACK = '#011E38';
|
|
54870
|
+
const TABLET_COLOR_BASE_BLACK_BLUE = '#122B47';
|
|
54871
|
+
const TABLET_COLOR_BASE_DARK_BLUE = '#00438F';
|
|
54872
|
+
const TABLET_COLOR_BASE_BLUE = '#216BEB';
|
|
54873
|
+
const TABLET_COLOR_BASE_LIGHT_BLUE = '#E1EBFA';
|
|
54874
|
+
const TABLET_COLOR_BASE_DARK_GREY = '#434D59';
|
|
54875
|
+
const TABLET_COLOR_BASE_MID_GREY = '#6C7784';
|
|
54876
|
+
const TABLET_COLOR_BASE_GREY = '#C0C8D1';
|
|
54877
|
+
const TABLET_COLOR_BASE_LIGHT_GREY = '#E4E7EB';
|
|
54878
|
+
const TABLET_COLOR_BASE_WHITE_GREY = '#F0F2F5';
|
|
54879
|
+
const TABLET_COLOR_BASE_WHITE = '#FFFFFF';
|
|
54880
|
+
const TABLET_COLOR_BASE_GREEN = '#008059';
|
|
54881
|
+
const TABLET_COLOR_BASE_LIGHT_GREEN = '#E9F7F2';
|
|
54882
|
+
const TABLET_COLOR_BASE_RED = '#CC1439';
|
|
54883
|
+
const TABLET_COLOR_BASE_LIGHT_RED = '#FAE6EA';
|
|
54884
|
+
const TABLET_COLOR_BASE_YELLOW = '#FFBB00';
|
|
54885
|
+
const TABLET_COLOR_BASE_LIGHT_YELLOW = '#FCF5E3';
|
|
54886
|
+
const TABLET_COLOR_CATEGORICAL_1 = '#19C4E6';
|
|
54887
|
+
const TABLET_COLOR_CATEGORICAL_2 = '#8033CC';
|
|
54888
|
+
const TABLET_COLOR_CATEGORICAL_3 = '#E372D0';
|
|
54889
|
+
const TABLET_COLOR_CATEGORICAL_4 = '#55DDB0';
|
|
54890
|
+
const TABLET_COLOR_CATEGORICAL_5 = '#EE5513';
|
|
54891
|
+
const TABLET_COLOR_CATEGORICAL_6 = '#D3D322';
|
|
54892
|
+
const PHONE_COLOR_BASE_BLACK = '#011E38';
|
|
54893
|
+
const PHONE_COLOR_BASE_BLACK_BLUE = '#122B47';
|
|
54894
|
+
const PHONE_COLOR_BASE_DARK_BLUE = '#00438F';
|
|
54895
|
+
const PHONE_COLOR_BASE_BLUE = '#216BEB';
|
|
54896
|
+
const PHONE_COLOR_BASE_LIGHT_BLUE = '#E1EBFA';
|
|
54897
|
+
const PHONE_COLOR_BASE_DARK_GREY = '#434D59';
|
|
54898
|
+
const PHONE_COLOR_BASE_MID_GREY = '#6C7784';
|
|
54899
|
+
const PHONE_COLOR_BASE_GREY = '#C0C8D1';
|
|
54900
|
+
const PHONE_COLOR_BASE_LIGHT_GREY = '#E4E7EB';
|
|
54901
|
+
const PHONE_COLOR_BASE_WHITE_GREY = '#F0F2F5';
|
|
54902
|
+
const PHONE_COLOR_BASE_WHITE = '#FFFFFF';
|
|
54903
|
+
const PHONE_COLOR_BASE_GREEN = '#008059';
|
|
54904
|
+
const PHONE_COLOR_BASE_LIGHT_GREEN = '#E9F7F2';
|
|
54905
|
+
const PHONE_COLOR_BASE_RED = '#CC1439';
|
|
54906
|
+
const PHONE_COLOR_BASE_LIGHT_RED = '#FAE6EA';
|
|
54907
|
+
const PHONE_COLOR_BASE_YELLOW = '#FFBB00';
|
|
54908
|
+
const PHONE_COLOR_BASE_LIGHT_YELLOW = '#FCF5E3';
|
|
54909
|
+
const PHONE_COLOR_CATEGORICAL_1 = '#19C4E6';
|
|
54910
|
+
const PHONE_COLOR_CATEGORICAL_2 = '#8033CC';
|
|
54911
|
+
const PHONE_COLOR_CATEGORICAL_3 = '#E372D0';
|
|
54912
|
+
const PHONE_COLOR_CATEGORICAL_4 = '#55DDB0';
|
|
54913
|
+
const PHONE_COLOR_CATEGORICAL_5 = '#EE5513';
|
|
54914
|
+
const PHONE_COLOR_CATEGORICAL_6 = '#D3D322';
|
|
54915
|
+
|
|
54916
|
+
/*
|
|
54917
|
+
|-----------------------------------------------------------------------------
|
|
54918
|
+
| Font family
|
|
54919
|
+
|-----------------------------------------------------------------------------
|
|
54920
|
+
*/
|
|
54921
|
+
const DESKTOP_FONT_FAMILY_BASE = "'IBM Plex Sans', sans-serif";
|
|
54922
|
+
const DESKTOP_FONT_FAMILY_MONO = "'IBM Plex Mono', monospace";
|
|
54923
|
+
const DESKTOP_FONT_FAMILY_SC = "'Noto Sans SC', sans-serif";
|
|
54924
|
+
const TABLET_FONT_FAMILY_BASE = "'IBM Plex Sans', sans-serif";
|
|
54925
|
+
const TABLET_FONT_FAMILY_MONO = "'IBM Plex Mono', monospace";
|
|
54926
|
+
const TABLET_FONT_FAMILY_SC = "'Noto Sans SC', sans-serif";
|
|
54927
|
+
const PHONE_FONT_FAMILY_BASE = "'IBM Plex Sans', sans-serif";
|
|
54928
|
+
const PHONE_FONT_FAMILY_MONO = "'IBM Plex Mono', monospace";
|
|
54929
|
+
const PHONE_FONT_FAMILY_SC = "'Noto Sans SC', sans-serif";
|
|
54930
|
+
|
|
54931
|
+
/*
|
|
54932
|
+
|-----------------------------------------------------------------------------
|
|
54933
|
+
| Font weight
|
|
54934
|
+
|-----------------------------------------------------------------------------
|
|
54935
|
+
*/
|
|
54936
|
+
const DESKTOP_FONT_WEIGHT_LIGHT = 300;
|
|
54937
|
+
const DESKTOP_FONT_WEIGHT_NORMAL = 400;
|
|
54938
|
+
const DESKTOP_FONT_WEIGHT_MEDIUM = 500;
|
|
54939
|
+
const DESKTOP_FONT_WEIGHT_BOLD = 600;
|
|
54940
|
+
const TABLET_FONT_WEIGHT_LIGHT = 300;
|
|
54941
|
+
const TABLET_FONT_WEIGHT_NORMAL = 400;
|
|
54942
|
+
const TABLET_FONT_WEIGHT_MEDIUM = 500;
|
|
54943
|
+
const TABLET_FONT_WEIGHT_BOLD = 600;
|
|
54944
|
+
const PHONE_FONT_WEIGHT_LIGHT = 300;
|
|
54945
|
+
const PHONE_FONT_WEIGHT_NORMAL = 400;
|
|
54946
|
+
const PHONE_FONT_WEIGHT_MEDIUM = 500;
|
|
54947
|
+
const PHONE_FONT_WEIGHT_BOLD = 600;
|
|
54948
|
+
|
|
54949
|
+
/*
|
|
54950
|
+
|-----------------------------------------------------------------------------
|
|
54951
|
+
| Line height
|
|
54952
|
+
|-----------------------------------------------------------------------------
|
|
54953
|
+
*/
|
|
54954
|
+
const DESKTOP_LINE_HEIGHT_BASE = '1.3333';
|
|
54955
|
+
const DESKTOP_LINE_HEIGHT_BASE_RELAXED = '1.6';
|
|
54956
|
+
const DESKTOP_LINE_HEIGHT_SMALL_TEXT_BASE = '1.3333';
|
|
54957
|
+
const DESKTOP_LINE_HEIGHT_SMALL_TEXT_COMPRESSED = '1.3333';
|
|
54958
|
+
const DESKTOP_LINE_HEIGHT_SMALL_RELAXED = '1.6';
|
|
54959
|
+
const DESKTOP_LINE_HEIGHT_SMALLER_TEXT = '1.3333';
|
|
54960
|
+
const DESKTOP_LINE_HEIGHT_SMALLER_RELAXED = '1.6667';
|
|
54961
|
+
const DESKTOP_LINE_HEIGHT_HEADING_1 = '1.3333';
|
|
54962
|
+
const DESKTOP_LINE_HEIGHT_HEADING_2 = '1.3333';
|
|
54963
|
+
const DESKTOP_LINE_HEIGHT_HEADING_3 = '1.6';
|
|
54964
|
+
const DESKTOP_LINE_HEIGHT_HEADING_4 = '1.3333';
|
|
54965
|
+
const DESKTOP_LINE_HEIGHT_TITLE = '1.3333';
|
|
54966
|
+
const DESKTOP_LINE_HEIGHT_SECTION_TITLE = '1.3333';
|
|
54967
|
+
const DESKTOP_LINE_HEIGHT_SUBSECTION_TITLE = '1.6';
|
|
54968
|
+
const TABLET_LINE_HEIGHT_BASE = '1.3333';
|
|
54969
|
+
const TABLET_LINE_HEIGHT_BASE_RELAXED = '1.6';
|
|
54970
|
+
const TABLET_LINE_HEIGHT_SMALL_TEXT_BASE = '1.3333';
|
|
54971
|
+
const TABLET_LINE_HEIGHT_SMALL_TEXT_COMPRESSED = '1.3333';
|
|
54972
|
+
const TABLET_LINE_HEIGHT_SMALL_RELAXED = '1.6';
|
|
54973
|
+
const TABLET_LINE_HEIGHT_SMALLER_TEXT = '1.3333';
|
|
54974
|
+
const TABLET_LINE_HEIGHT_SMALLER_RELAXED = '1.6667';
|
|
54975
|
+
const TABLET_LINE_HEIGHT_HEADING_1 = '1.3333';
|
|
54976
|
+
const TABLET_LINE_HEIGHT_HEADING_2 = '1.3333';
|
|
54977
|
+
const TABLET_LINE_HEIGHT_HEADING_3 = '1.6';
|
|
54978
|
+
const TABLET_LINE_HEIGHT_HEADING_4 = '1.3333';
|
|
54979
|
+
const TABLET_LINE_HEIGHT_TITLE = '1.3333';
|
|
54980
|
+
const TABLET_LINE_HEIGHT_SECTION_TITLE = '1.3333';
|
|
54981
|
+
const TABLET_LINE_HEIGHT_SUBSECTION_TITLE = '1.6';
|
|
54982
|
+
const PHONE_LINE_HEIGHT_BASE = '1.3333';
|
|
54983
|
+
const PHONE_LINE_HEIGHT_BASE_RELAXED = '1.6';
|
|
54984
|
+
const PHONE_LINE_HEIGHT_SMALL_TEXT_BASE = '1.3333';
|
|
54985
|
+
const PHONE_LINE_HEIGHT_SMALL_TEXT_COMPRESSED = '1.3333';
|
|
54986
|
+
const PHONE_LINE_HEIGHT_SMALL_RELAXED = '1.6';
|
|
54987
|
+
const PHONE_LINE_HEIGHT_SMALLER_TEXT = '1.3333';
|
|
54988
|
+
const PHONE_LINE_HEIGHT_SMALLER_RELAXED = '1.6667';
|
|
54989
|
+
const PHONE_LINE_HEIGHT_HEADING_1 = '1.3333';
|
|
54990
|
+
const PHONE_LINE_HEIGHT_HEADING_2 = '1.3333';
|
|
54991
|
+
const PHONE_LINE_HEIGHT_HEADING_3 = '1.6';
|
|
54992
|
+
const PHONE_LINE_HEIGHT_HEADING_4 = '1.3333';
|
|
54993
|
+
const PHONE_LINE_HEIGHT_TITLE = '1.3333';
|
|
54994
|
+
const PHONE_LINE_HEIGHT_SECTION_TITLE = '1.3333';
|
|
54995
|
+
const PHONE_LINE_HEIGHT_SUBSECTION_TITLE = '1.6';
|
|
54996
|
+
|
|
54997
|
+
/*
|
|
54998
|
+
|-----------------------------------------------------------------------------
|
|
54999
|
+
| Shadow
|
|
55000
|
+
|-----------------------------------------------------------------------------
|
|
55001
|
+
*/
|
|
55002
|
+
const DESKTOP_SHADOW_SMALL = '0px 1px 2px 0px rgba(1, 30, 56, 0.25)';
|
|
55003
|
+
const DESKTOP_SHADOW_MEDIUM = '0px 3px 8px 0px rgba(1, 30, 56, 0.18)';
|
|
55004
|
+
const DESKTOP_SHADOW_LARGE = '0px 6px 12px 2px rgba(1, 30, 56, 0.15)';
|
|
55005
|
+
const DESKTOP_SHADOW_FOCUS = '0px 0px 5px 0px rgba(33, 107, 235, .9)';
|
|
55006
|
+
const DESKTOP_SHADOW_ERROR = '0px 0px 5px 0px rgba(204, 20, 57, .9)';
|
|
55007
|
+
const TABLET_SHADOW_SMALL = '0px 1px 2px 0px rgba(1, 30, 56, 0.25)';
|
|
55008
|
+
const TABLET_SHADOW_MEDIUM = '0px 3px 8px 0px rgba(1, 30, 56, 0.18)';
|
|
55009
|
+
const TABLET_SHADOW_LARGE = '0px 6px 12px 2px rgba(1, 30, 56, 0.15)';
|
|
55010
|
+
const TABLET_SHADOW_FOCUS = '0px 0px 5px 0px rgba(33, 107, 235, .9)';
|
|
55011
|
+
const TABLET_SHADOW_ERROR = '0px 0px 5px 0px rgba(204, 20, 57, .9)';
|
|
55012
|
+
const PHONE_SHADOW_SMALL = '0px 1px 2px 0px rgba(1, 30, 56, 0.25)';
|
|
55013
|
+
const PHONE_SHADOW_MEDIUM = '0px 3px 8px 0px rgba(1, 30, 56, 0.18)';
|
|
55014
|
+
const PHONE_SHADOW_LARGE = '0px 6px 12px 2px rgba(1, 30, 56, 0.15)';
|
|
55015
|
+
const PHONE_SHADOW_FOCUS = '0px 0px 5px 0px rgba(33, 107, 235, .9)';
|
|
55016
|
+
const PHONE_SHADOW_ERROR = '0px 0px 5px 0px rgba(204, 20, 57, .9)';
|
|
55017
|
+
|
|
55018
|
+
/*
|
|
55019
|
+
|-----------------------------------------------------------------------------
|
|
55020
|
+
| Space
|
|
55021
|
+
|-----------------------------------------------------------------------------
|
|
55022
|
+
*/
|
|
55023
|
+
const DESKTOP_SPACE_NONE = '0px';
|
|
55024
|
+
const DESKTOP_SPACE_X_0 = '0px';
|
|
55025
|
+
const DESKTOP_SPACE_X_0_25 = '2px';
|
|
55026
|
+
const DESKTOP_SPACE_HALF = '4px';
|
|
55027
|
+
const DESKTOP_SPACE_X_0_5 = '4px';
|
|
55028
|
+
const DESKTOP_SPACE_X_0_75 = '6px';
|
|
55029
|
+
const DESKTOP_SPACE_X_1 = '8px';
|
|
55030
|
+
const DESKTOP_SPACE_X_1_25 = '10px';
|
|
55031
|
+
const DESKTOP_SPACE_X_1_5 = '12px';
|
|
55032
|
+
const DESKTOP_SPACE_X_1_75 = '14px';
|
|
55033
|
+
const DESKTOP_SPACE_X_2 = '16px';
|
|
55034
|
+
const DESKTOP_SPACE_X_2_5 = '20px';
|
|
55035
|
+
const DESKTOP_SPACE_X_3 = '24px';
|
|
55036
|
+
const DESKTOP_SPACE_X_4 = '32px';
|
|
55037
|
+
const DESKTOP_SPACE_X_5 = '40px';
|
|
55038
|
+
const DESKTOP_SPACE_X_6 = '48px';
|
|
55039
|
+
const DESKTOP_SPACE_X_7 = '56px';
|
|
55040
|
+
const DESKTOP_SPACE_X_8 = '64px';
|
|
55041
|
+
const DESKTOP_SPACE_X_9 = '72px';
|
|
55042
|
+
const DESKTOP_SPACE_X_10 = '80px';
|
|
55043
|
+
const DESKTOP_SPACE_X_11 = '88px';
|
|
55044
|
+
const DESKTOP_SPACE_X_12 = '96px';
|
|
55045
|
+
const TABLET_SPACE_NONE = '0px';
|
|
55046
|
+
const TABLET_SPACE_X_0 = '0px';
|
|
55047
|
+
const TABLET_SPACE_X_0_25 = '2.8px';
|
|
55048
|
+
const TABLET_SPACE_HALF = '5.6px';
|
|
55049
|
+
const TABLET_SPACE_X_0_5 = '5.6px';
|
|
55050
|
+
const TABLET_SPACE_X_0_75 = '8.4px';
|
|
55051
|
+
const TABLET_SPACE_X_1 = '11.2px';
|
|
55052
|
+
const TABLET_SPACE_X_1_25 = '14px';
|
|
55053
|
+
const TABLET_SPACE_X_1_5 = '16.8px';
|
|
55054
|
+
const TABLET_SPACE_X_1_75 = '19.6px';
|
|
55055
|
+
const TABLET_SPACE_X_2 = '22.4px';
|
|
55056
|
+
const TABLET_SPACE_X_2_5 = '28px';
|
|
55057
|
+
const TABLET_SPACE_X_3 = '33.6px';
|
|
55058
|
+
const TABLET_SPACE_X_4 = '44.8px';
|
|
55059
|
+
const TABLET_SPACE_X_5 = '56px';
|
|
55060
|
+
const TABLET_SPACE_X_6 = '67.2px';
|
|
55061
|
+
const TABLET_SPACE_X_7 = '78.4px';
|
|
55062
|
+
const TABLET_SPACE_X_8 = '89.6px';
|
|
55063
|
+
const TABLET_SPACE_X_9 = '100.8px';
|
|
55064
|
+
const TABLET_SPACE_X_10 = '112px';
|
|
55065
|
+
const TABLET_SPACE_X_11 = '123.2px';
|
|
55066
|
+
const TABLET_SPACE_X_12 = '134.4px';
|
|
55067
|
+
const PHONE_SPACE_NONE = '0px';
|
|
55068
|
+
const PHONE_SPACE_X_0 = '0px';
|
|
55069
|
+
const PHONE_SPACE_X_0_25 = '1.8px';
|
|
55070
|
+
const PHONE_SPACE_HALF = '3.6px';
|
|
55071
|
+
const PHONE_SPACE_X_0_5 = '3.6px';
|
|
55072
|
+
const PHONE_SPACE_X_0_75 = '5.4px';
|
|
55073
|
+
const PHONE_SPACE_X_1 = '7.2px';
|
|
55074
|
+
const PHONE_SPACE_X_1_25 = '9px';
|
|
55075
|
+
const PHONE_SPACE_X_1_5 = '10.8px';
|
|
55076
|
+
const PHONE_SPACE_X_1_75 = '12.6px';
|
|
55077
|
+
const PHONE_SPACE_X_2 = '14.4px';
|
|
55078
|
+
const PHONE_SPACE_X_2_5 = '18px';
|
|
55079
|
+
const PHONE_SPACE_X_3 = '21.6px';
|
|
55080
|
+
const PHONE_SPACE_X_4 = '28.8px';
|
|
55081
|
+
const PHONE_SPACE_X_5 = '36px';
|
|
55082
|
+
const PHONE_SPACE_X_6 = '43.2px';
|
|
55083
|
+
const PHONE_SPACE_X_7 = '50.4px';
|
|
55084
|
+
const PHONE_SPACE_X_8 = '57.6px';
|
|
55085
|
+
const PHONE_SPACE_X_9 = '64.8px';
|
|
55086
|
+
const PHONE_SPACE_X_10 = '72px';
|
|
55087
|
+
const PHONE_SPACE_X_11 = '79.2px';
|
|
55088
|
+
const PHONE_SPACE_X_12 = '86.4px';
|
|
55089
|
+
|
|
55090
|
+
/*
|
|
55091
|
+
|-----------------------------------------------------------------------------
|
|
55092
|
+
| Z index
|
|
55093
|
+
|-----------------------------------------------------------------------------
|
|
55094
|
+
*/
|
|
55095
|
+
const DESKTOP_Z_INDEX_CONTENT = 100;
|
|
55096
|
+
const DESKTOP_Z_INDEX_TABS_SCROLL_INDICATOR = 200;
|
|
55097
|
+
const DESKTOP_Z_INDEX_TABS_BAR = 210;
|
|
55098
|
+
const DESKTOP_Z_INDEX_OVERLAY = 1000;
|
|
55099
|
+
const DESKTOP_Z_INDEX_ABOVE_OVERLAY = 1010;
|
|
55100
|
+
const DESKTOP_Z_INDEX_TABLE_HEADER = 10;
|
|
55101
|
+
const DESKTOP_Z_INDEX_MODAL_HEADER_AND_FOOTER = 2;
|
|
55102
|
+
const DESKTOP_Z_INDEX_OPEN_CONTROL = 1000;
|
|
55103
|
+
const DESKTOP_Z_INDEX_NAV_BAR = 900;
|
|
55104
|
+
const DESKTOP_Z_INDEX_SIDEBAR = 800;
|
|
55105
|
+
const TABLET_Z_INDEX_CONTENT = 100;
|
|
55106
|
+
const TABLET_Z_INDEX_TABS_SCROLL_INDICATOR = 200;
|
|
55107
|
+
const TABLET_Z_INDEX_TABS_BAR = 210;
|
|
55108
|
+
const TABLET_Z_INDEX_OVERLAY = 1000;
|
|
55109
|
+
const TABLET_Z_INDEX_ABOVE_OVERLAY = 1010;
|
|
55110
|
+
const TABLET_Z_INDEX_TABLE_HEADER = 10;
|
|
55111
|
+
const TABLET_Z_INDEX_MODAL_HEADER_AND_FOOTER = 2;
|
|
55112
|
+
const TABLET_Z_INDEX_OPEN_CONTROL = 1000;
|
|
55113
|
+
const TABLET_Z_INDEX_NAV_BAR = 900;
|
|
55114
|
+
const TABLET_Z_INDEX_SIDEBAR = 800;
|
|
55115
|
+
const PHONE_Z_INDEX_CONTENT = 100;
|
|
55116
|
+
const PHONE_Z_INDEX_TABS_SCROLL_INDICATOR = 200;
|
|
55117
|
+
const PHONE_Z_INDEX_TABS_BAR = 210;
|
|
55118
|
+
const PHONE_Z_INDEX_OVERLAY = 1000;
|
|
55119
|
+
const PHONE_Z_INDEX_ABOVE_OVERLAY = 1010;
|
|
55120
|
+
const PHONE_Z_INDEX_TABLE_HEADER = 10;
|
|
55121
|
+
const PHONE_Z_INDEX_MODAL_HEADER_AND_FOOTER = 2;
|
|
55122
|
+
const PHONE_Z_INDEX_OPEN_CONTROL = 1000;
|
|
55123
|
+
const PHONE_Z_INDEX_NAV_BAR = 900;
|
|
55124
|
+
const PHONE_Z_INDEX_SIDEBAR = 800;
|
|
55125
|
+
|
|
54715
55126
|
var themes = {
|
|
54716
55127
|
legacy: {
|
|
54717
55128
|
colors: {
|
|
54718
|
-
black:
|
|
54719
|
-
blackBlue:
|
|
54720
|
-
darkBlue:
|
|
54721
|
-
blue:
|
|
54722
|
-
lightBlue:
|
|
54723
|
-
darkGrey:
|
|
54724
|
-
midGrey:
|
|
54725
|
-
grey:
|
|
54726
|
-
lightGrey:
|
|
54727
|
-
whiteGrey:
|
|
54728
|
-
white:
|
|
54729
|
-
yellow:
|
|
54730
|
-
lightYellow:
|
|
54731
|
-
green:
|
|
54732
|
-
lightGreen:
|
|
54733
|
-
red:
|
|
54734
|
-
lightRed:
|
|
54735
|
-
categorical1:
|
|
54736
|
-
categorical2:
|
|
54737
|
-
categorical3:
|
|
54738
|
-
categorical4:
|
|
54739
|
-
categorical5:
|
|
54740
|
-
categorical6:
|
|
55129
|
+
black: DESKTOP_COLOR_BASE_BLACK,
|
|
55130
|
+
blackBlue: DESKTOP_COLOR_BASE_BLACK_BLUE,
|
|
55131
|
+
darkBlue: DESKTOP_COLOR_BASE_DARK_BLUE,
|
|
55132
|
+
blue: DESKTOP_COLOR_BASE_BLUE,
|
|
55133
|
+
lightBlue: DESKTOP_COLOR_BASE_LIGHT_BLUE,
|
|
55134
|
+
darkGrey: DESKTOP_COLOR_BASE_DARK_GREY,
|
|
55135
|
+
midGrey: DESKTOP_COLOR_BASE_MID_GREY,
|
|
55136
|
+
grey: DESKTOP_COLOR_BASE_GREY,
|
|
55137
|
+
lightGrey: DESKTOP_COLOR_BASE_LIGHT_GREY,
|
|
55138
|
+
whiteGrey: DESKTOP_COLOR_BASE_WHITE_GREY,
|
|
55139
|
+
white: DESKTOP_COLOR_BASE_WHITE,
|
|
55140
|
+
yellow: DESKTOP_COLOR_BASE_YELLOW,
|
|
55141
|
+
lightYellow: DESKTOP_COLOR_BASE_LIGHT_YELLOW,
|
|
55142
|
+
green: DESKTOP_COLOR_BASE_GREEN,
|
|
55143
|
+
lightGreen: DESKTOP_COLOR_BASE_LIGHT_GREEN,
|
|
55144
|
+
red: DESKTOP_COLOR_BASE_RED,
|
|
55145
|
+
lightRed: DESKTOP_COLOR_BASE_LIGHT_RED,
|
|
55146
|
+
categorical1: DESKTOP_COLOR_CATEGORICAL_1,
|
|
55147
|
+
categorical2: DESKTOP_COLOR_CATEGORICAL_2,
|
|
55148
|
+
categorical3: DESKTOP_COLOR_CATEGORICAL_3,
|
|
55149
|
+
categorical4: DESKTOP_COLOR_CATEGORICAL_4,
|
|
55150
|
+
categorical5: DESKTOP_COLOR_CATEGORICAL_5,
|
|
55151
|
+
categorical6: DESKTOP_COLOR_CATEGORICAL_6
|
|
54741
55152
|
},
|
|
54742
55153
|
fontWeights: {
|
|
54743
|
-
light:
|
|
54744
|
-
normal:
|
|
54745
|
-
medium:
|
|
54746
|
-
bold:
|
|
55154
|
+
light: DESKTOP_FONT_WEIGHT_LIGHT,
|
|
55155
|
+
normal: DESKTOP_FONT_WEIGHT_NORMAL,
|
|
55156
|
+
medium: DESKTOP_FONT_WEIGHT_MEDIUM,
|
|
55157
|
+
bold: DESKTOP_FONT_WEIGHT_BOLD
|
|
54747
55158
|
},
|
|
54748
55159
|
fonts: {
|
|
54749
|
-
base:
|
|
54750
|
-
mono:
|
|
54751
|
-
sc:
|
|
55160
|
+
base: DESKTOP_FONT_FAMILY_BASE,
|
|
55161
|
+
mono: DESKTOP_FONT_FAMILY_MONO,
|
|
55162
|
+
sc: DESKTOP_FONT_FAMILY_SC
|
|
54752
55163
|
},
|
|
54753
55164
|
shadows: {
|
|
54754
|
-
small:
|
|
54755
|
-
medium:
|
|
54756
|
-
large:
|
|
54757
|
-
focus:
|
|
54758
|
-
error:
|
|
55165
|
+
small: DESKTOP_SHADOW_SMALL,
|
|
55166
|
+
medium: DESKTOP_SHADOW_MEDIUM,
|
|
55167
|
+
large: DESKTOP_SHADOW_LARGE,
|
|
55168
|
+
focus: DESKTOP_SHADOW_FOCUS,
|
|
55169
|
+
error: DESKTOP_SHADOW_ERROR
|
|
54759
55170
|
},
|
|
54760
55171
|
breakpoints: {
|
|
54761
|
-
extraSmall:
|
|
54762
|
-
small:
|
|
54763
|
-
medium:
|
|
54764
|
-
large:
|
|
54765
|
-
extraLarge:
|
|
54766
|
-
phonePortrait:
|
|
54767
|
-
phoneLandscape:
|
|
54768
|
-
tabletPortrait:
|
|
54769
|
-
tabletLandscape:
|
|
54770
|
-
laptop:
|
|
54771
|
-
desktop:
|
|
55172
|
+
extraSmall: DESKTOP_BREAKPOINTS_BASE_EXTRA_SMALL,
|
|
55173
|
+
small: DESKTOP_BREAKPOINTS_BASE_SMALL,
|
|
55174
|
+
medium: DESKTOP_BREAKPOINTS_BASE_MEDIUM,
|
|
55175
|
+
large: DESKTOP_BREAKPOINTS_BASE_LARGE,
|
|
55176
|
+
extraLarge: DESKTOP_BREAKPOINTS_BASE_EXTRA_LARGE,
|
|
55177
|
+
phonePortrait: DESKTOP_BREAKPOINTS_SEMANTIC_PHONE_PORTRAIT,
|
|
55178
|
+
phoneLandscape: DESKTOP_BREAKPOINTS_SEMANTIC_PHONE_LANDSCAPE,
|
|
55179
|
+
tabletPortrait: DESKTOP_BREAKPOINTS_SEMANTIC_TABLET_PORTRAIT,
|
|
55180
|
+
tabletLandscape: DESKTOP_BREAKPOINTS_SEMANTIC_TABLET_LANDSCAPE,
|
|
55181
|
+
laptop: DESKTOP_BREAKPOINTS_SEMANTIC_LAPTOP,
|
|
55182
|
+
desktop: DESKTOP_BREAKPOINTS_SEMANTIC_DESKTOP
|
|
54772
55183
|
},
|
|
54773
55184
|
zIndices: {
|
|
54774
|
-
content:
|
|
54775
|
-
tabsScollIndicator:
|
|
54776
|
-
tabsBar:
|
|
54777
|
-
overlay:
|
|
54778
|
-
aboveOverlay:
|
|
54779
|
-
tableHeader:
|
|
54780
|
-
modalHeaderAndFooter:
|
|
54781
|
-
openControl:
|
|
54782
|
-
navBar:
|
|
54783
|
-
sidebar:
|
|
55185
|
+
content: DESKTOP_Z_INDEX_CONTENT,
|
|
55186
|
+
tabsScollIndicator: DESKTOP_Z_INDEX_TABS_SCROLL_INDICATOR,
|
|
55187
|
+
tabsBar: DESKTOP_Z_INDEX_TABS_BAR,
|
|
55188
|
+
overlay: DESKTOP_Z_INDEX_OVERLAY,
|
|
55189
|
+
aboveOverlay: DESKTOP_Z_INDEX_ABOVE_OVERLAY,
|
|
55190
|
+
tableHeader: DESKTOP_Z_INDEX_TABLE_HEADER,
|
|
55191
|
+
modalHeaderAndFooter: DESKTOP_Z_INDEX_MODAL_HEADER_AND_FOOTER,
|
|
55192
|
+
openControl: DESKTOP_Z_INDEX_OPEN_CONTROL,
|
|
55193
|
+
navBar: DESKTOP_Z_INDEX_NAV_BAR,
|
|
55194
|
+
sidebar: DESKTOP_Z_INDEX_SIDEBAR
|
|
54784
55195
|
},
|
|
54785
55196
|
fontSizes: {
|
|
54786
55197
|
smaller: "12px",
|
|
@@ -54819,545 +55230,545 @@
|
|
|
54819
55230
|
subsectionTitle: "1.33"
|
|
54820
55231
|
},
|
|
54821
55232
|
space: {
|
|
54822
|
-
none:
|
|
54823
|
-
half:
|
|
54824
|
-
x0:
|
|
54825
|
-
x0_25:
|
|
54826
|
-
x0_5:
|
|
54827
|
-
x0_75:
|
|
54828
|
-
x1:
|
|
54829
|
-
x1_25:
|
|
54830
|
-
x1_5:
|
|
54831
|
-
x1_75:
|
|
54832
|
-
x2:
|
|
54833
|
-
x2_5:
|
|
54834
|
-
x3:
|
|
54835
|
-
x4:
|
|
54836
|
-
x5:
|
|
54837
|
-
x6:
|
|
54838
|
-
x7:
|
|
54839
|
-
x8:
|
|
54840
|
-
x9:
|
|
54841
|
-
x10:
|
|
54842
|
-
x11:
|
|
54843
|
-
x12:
|
|
55233
|
+
none: DESKTOP_SPACE_NONE,
|
|
55234
|
+
half: DESKTOP_SPACE_HALF,
|
|
55235
|
+
x0: DESKTOP_SPACE_X_0,
|
|
55236
|
+
x0_25: DESKTOP_SPACE_X_0_25,
|
|
55237
|
+
x0_5: DESKTOP_SPACE_X_0_5,
|
|
55238
|
+
x0_75: DESKTOP_SPACE_X_0_75,
|
|
55239
|
+
x1: DESKTOP_SPACE_X_1,
|
|
55240
|
+
x1_25: DESKTOP_SPACE_X_1_25,
|
|
55241
|
+
x1_5: DESKTOP_SPACE_X_1_5,
|
|
55242
|
+
x1_75: DESKTOP_SPACE_X_1_75,
|
|
55243
|
+
x2: DESKTOP_SPACE_X_2,
|
|
55244
|
+
x2_5: DESKTOP_SPACE_X_2_5,
|
|
55245
|
+
x3: DESKTOP_SPACE_X_3,
|
|
55246
|
+
x4: DESKTOP_SPACE_X_4,
|
|
55247
|
+
x5: DESKTOP_SPACE_X_5,
|
|
55248
|
+
x6: DESKTOP_SPACE_X_6,
|
|
55249
|
+
x7: DESKTOP_SPACE_X_7,
|
|
55250
|
+
x8: DESKTOP_SPACE_X_8,
|
|
55251
|
+
x9: DESKTOP_SPACE_X_9,
|
|
55252
|
+
x10: DESKTOP_SPACE_X_10,
|
|
55253
|
+
x11: DESKTOP_SPACE_X_11,
|
|
55254
|
+
x12: DESKTOP_SPACE_X_12
|
|
54844
55255
|
},
|
|
54845
55256
|
sizes: {
|
|
54846
|
-
none:
|
|
54847
|
-
half:
|
|
54848
|
-
x0:
|
|
54849
|
-
x0_25:
|
|
54850
|
-
x0_5:
|
|
54851
|
-
x0_75:
|
|
54852
|
-
x1:
|
|
54853
|
-
x1_25:
|
|
54854
|
-
x1_5:
|
|
54855
|
-
x1_75:
|
|
54856
|
-
x2:
|
|
54857
|
-
x2_5:
|
|
54858
|
-
x3:
|
|
54859
|
-
x4:
|
|
54860
|
-
x5:
|
|
54861
|
-
x6:
|
|
54862
|
-
x7:
|
|
54863
|
-
x8:
|
|
54864
|
-
x9:
|
|
54865
|
-
x10:
|
|
54866
|
-
x11:
|
|
54867
|
-
x12:
|
|
55257
|
+
none: DESKTOP_SPACE_NONE,
|
|
55258
|
+
half: DESKTOP_SPACE_HALF,
|
|
55259
|
+
x0: DESKTOP_SPACE_X_0,
|
|
55260
|
+
x0_25: DESKTOP_SPACE_X_0_25,
|
|
55261
|
+
x0_5: DESKTOP_SPACE_X_0_5,
|
|
55262
|
+
x0_75: DESKTOP_SPACE_X_0_75,
|
|
55263
|
+
x1: DESKTOP_SPACE_X_1,
|
|
55264
|
+
x1_25: DESKTOP_SPACE_X_1_25,
|
|
55265
|
+
x1_5: DESKTOP_SPACE_X_1_5,
|
|
55266
|
+
x1_75: DESKTOP_SPACE_X_1_75,
|
|
55267
|
+
x2: DESKTOP_SPACE_X_2,
|
|
55268
|
+
x2_5: DESKTOP_SPACE_X_2_5,
|
|
55269
|
+
x3: DESKTOP_SPACE_X_3,
|
|
55270
|
+
x4: DESKTOP_SPACE_X_4,
|
|
55271
|
+
x5: DESKTOP_SPACE_X_5,
|
|
55272
|
+
x6: DESKTOP_SPACE_X_6,
|
|
55273
|
+
x7: DESKTOP_SPACE_X_7,
|
|
55274
|
+
x8: DESKTOP_SPACE_X_8,
|
|
55275
|
+
x9: DESKTOP_SPACE_X_9,
|
|
55276
|
+
x10: DESKTOP_SPACE_X_10,
|
|
55277
|
+
x11: DESKTOP_SPACE_X_11,
|
|
55278
|
+
x12: DESKTOP_SPACE_X_12
|
|
54868
55279
|
},
|
|
54869
55280
|
radii: {
|
|
54870
|
-
small:
|
|
54871
|
-
medium:
|
|
54872
|
-
large:
|
|
54873
|
-
circle:
|
|
54874
|
-
rounded:
|
|
55281
|
+
small: DESKTOP_BORDER_RADIUS_SMALL,
|
|
55282
|
+
medium: DESKTOP_BORDER_RADIUS_MEDIUM,
|
|
55283
|
+
large: DESKTOP_BORDER_RADIUS_LARGE,
|
|
55284
|
+
circle: DESKTOP_BORDER_RADIUS_CIRCLE,
|
|
55285
|
+
rounded: DESKTOP_BORDER_RADIUS_ROUNDED
|
|
54875
55286
|
},
|
|
54876
55287
|
borders: []
|
|
54877
55288
|
},
|
|
54878
55289
|
experimental: {
|
|
54879
55290
|
colors: {
|
|
54880
|
-
black:
|
|
54881
|
-
blackBlue:
|
|
54882
|
-
darkBlue:
|
|
54883
|
-
blue:
|
|
54884
|
-
lightBlue:
|
|
54885
|
-
darkGrey:
|
|
54886
|
-
midGrey:
|
|
54887
|
-
grey:
|
|
54888
|
-
lightGrey:
|
|
54889
|
-
whiteGrey:
|
|
54890
|
-
white:
|
|
54891
|
-
yellow:
|
|
54892
|
-
lightYellow:
|
|
54893
|
-
green:
|
|
54894
|
-
lightGreen:
|
|
54895
|
-
red:
|
|
54896
|
-
lightRed:
|
|
54897
|
-
categorical1:
|
|
54898
|
-
categorical2:
|
|
54899
|
-
categorical3:
|
|
54900
|
-
categorical4:
|
|
54901
|
-
categorical5:
|
|
54902
|
-
categorical6:
|
|
55291
|
+
black: DESKTOP_COLOR_BASE_BLACK,
|
|
55292
|
+
blackBlue: DESKTOP_COLOR_BASE_BLACK_BLUE,
|
|
55293
|
+
darkBlue: DESKTOP_COLOR_BASE_DARK_BLUE,
|
|
55294
|
+
blue: DESKTOP_COLOR_BASE_BLUE,
|
|
55295
|
+
lightBlue: DESKTOP_COLOR_BASE_LIGHT_BLUE,
|
|
55296
|
+
darkGrey: DESKTOP_COLOR_BASE_DARK_GREY,
|
|
55297
|
+
midGrey: DESKTOP_COLOR_BASE_MID_GREY,
|
|
55298
|
+
grey: DESKTOP_COLOR_BASE_GREY,
|
|
55299
|
+
lightGrey: DESKTOP_COLOR_BASE_LIGHT_GREY,
|
|
55300
|
+
whiteGrey: DESKTOP_COLOR_BASE_WHITE_GREY,
|
|
55301
|
+
white: DESKTOP_COLOR_BASE_WHITE,
|
|
55302
|
+
yellow: DESKTOP_COLOR_BASE_YELLOW,
|
|
55303
|
+
lightYellow: DESKTOP_COLOR_BASE_LIGHT_YELLOW,
|
|
55304
|
+
green: DESKTOP_COLOR_BASE_GREEN,
|
|
55305
|
+
lightGreen: DESKTOP_COLOR_BASE_LIGHT_GREEN,
|
|
55306
|
+
red: DESKTOP_COLOR_BASE_RED,
|
|
55307
|
+
lightRed: DESKTOP_COLOR_BASE_LIGHT_RED,
|
|
55308
|
+
categorical1: DESKTOP_COLOR_CATEGORICAL_1,
|
|
55309
|
+
categorical2: DESKTOP_COLOR_CATEGORICAL_2,
|
|
55310
|
+
categorical3: DESKTOP_COLOR_CATEGORICAL_3,
|
|
55311
|
+
categorical4: DESKTOP_COLOR_CATEGORICAL_4,
|
|
55312
|
+
categorical5: DESKTOP_COLOR_CATEGORICAL_5,
|
|
55313
|
+
categorical6: DESKTOP_COLOR_CATEGORICAL_6
|
|
54903
55314
|
},
|
|
54904
55315
|
fontWeights: {
|
|
54905
|
-
light:
|
|
54906
|
-
normal:
|
|
54907
|
-
medium:
|
|
54908
|
-
bold:
|
|
55316
|
+
light: DESKTOP_FONT_WEIGHT_LIGHT,
|
|
55317
|
+
normal: DESKTOP_FONT_WEIGHT_NORMAL,
|
|
55318
|
+
medium: DESKTOP_FONT_WEIGHT_MEDIUM,
|
|
55319
|
+
bold: DESKTOP_FONT_WEIGHT_BOLD
|
|
54909
55320
|
},
|
|
54910
55321
|
fonts: {
|
|
54911
|
-
base:
|
|
54912
|
-
mono:
|
|
54913
|
-
sc:
|
|
55322
|
+
base: DESKTOP_FONT_FAMILY_BASE,
|
|
55323
|
+
mono: DESKTOP_FONT_FAMILY_MONO,
|
|
55324
|
+
sc: DESKTOP_FONT_FAMILY_SC
|
|
54914
55325
|
},
|
|
54915
55326
|
shadows: {
|
|
54916
|
-
small:
|
|
54917
|
-
medium:
|
|
54918
|
-
large:
|
|
54919
|
-
focus:
|
|
54920
|
-
error:
|
|
55327
|
+
small: DESKTOP_SHADOW_SMALL,
|
|
55328
|
+
medium: DESKTOP_SHADOW_MEDIUM,
|
|
55329
|
+
large: DESKTOP_SHADOW_LARGE,
|
|
55330
|
+
focus: DESKTOP_SHADOW_FOCUS,
|
|
55331
|
+
error: DESKTOP_SHADOW_ERROR
|
|
54921
55332
|
},
|
|
54922
55333
|
breakpoints: {
|
|
54923
|
-
extraSmall:
|
|
54924
|
-
small:
|
|
54925
|
-
medium:
|
|
54926
|
-
large:
|
|
54927
|
-
extraLarge:
|
|
54928
|
-
phonePortrait:
|
|
54929
|
-
phoneLandscape:
|
|
54930
|
-
tabletPortrait:
|
|
54931
|
-
tabletLandscape:
|
|
54932
|
-
laptop:
|
|
54933
|
-
desktop:
|
|
55334
|
+
extraSmall: DESKTOP_BREAKPOINTS_BASE_EXTRA_SMALL,
|
|
55335
|
+
small: DESKTOP_BREAKPOINTS_BASE_SMALL,
|
|
55336
|
+
medium: DESKTOP_BREAKPOINTS_BASE_MEDIUM,
|
|
55337
|
+
large: DESKTOP_BREAKPOINTS_BASE_LARGE,
|
|
55338
|
+
extraLarge: DESKTOP_BREAKPOINTS_BASE_EXTRA_LARGE,
|
|
55339
|
+
phonePortrait: DESKTOP_BREAKPOINTS_SEMANTIC_PHONE_PORTRAIT,
|
|
55340
|
+
phoneLandscape: DESKTOP_BREAKPOINTS_SEMANTIC_PHONE_LANDSCAPE,
|
|
55341
|
+
tabletPortrait: DESKTOP_BREAKPOINTS_SEMANTIC_TABLET_PORTRAIT,
|
|
55342
|
+
tabletLandscape: DESKTOP_BREAKPOINTS_SEMANTIC_TABLET_LANDSCAPE,
|
|
55343
|
+
laptop: DESKTOP_BREAKPOINTS_SEMANTIC_LAPTOP,
|
|
55344
|
+
desktop: DESKTOP_BREAKPOINTS_SEMANTIC_DESKTOP
|
|
54934
55345
|
},
|
|
54935
55346
|
zIndices: {
|
|
54936
|
-
content:
|
|
54937
|
-
tabsScollIndicator:
|
|
54938
|
-
tabsBar:
|
|
54939
|
-
overlay:
|
|
54940
|
-
aboveOverlay:
|
|
54941
|
-
tableHeader:
|
|
54942
|
-
modalHeaderAndFooter:
|
|
54943
|
-
openControl:
|
|
54944
|
-
navBar:
|
|
54945
|
-
sidebar:
|
|
55347
|
+
content: DESKTOP_Z_INDEX_CONTENT,
|
|
55348
|
+
tabsScollIndicator: DESKTOP_Z_INDEX_TABS_SCROLL_INDICATOR,
|
|
55349
|
+
tabsBar: DESKTOP_Z_INDEX_TABS_BAR,
|
|
55350
|
+
overlay: DESKTOP_Z_INDEX_OVERLAY,
|
|
55351
|
+
aboveOverlay: DESKTOP_Z_INDEX_ABOVE_OVERLAY,
|
|
55352
|
+
tableHeader: DESKTOP_Z_INDEX_TABLE_HEADER,
|
|
55353
|
+
modalHeaderAndFooter: DESKTOP_Z_INDEX_MODAL_HEADER_AND_FOOTER,
|
|
55354
|
+
openControl: DESKTOP_Z_INDEX_OPEN_CONTROL,
|
|
55355
|
+
navBar: DESKTOP_Z_INDEX_NAV_BAR,
|
|
55356
|
+
sidebar: DESKTOP_Z_INDEX_SIDEBAR
|
|
54946
55357
|
},
|
|
54947
55358
|
fontSizes: {
|
|
54948
|
-
smaller:
|
|
54949
|
-
small:
|
|
54950
|
-
medium:
|
|
54951
|
-
large:
|
|
54952
|
-
larger:
|
|
54953
|
-
largest:
|
|
54954
|
-
|
|
54955
|
-
|
|
54956
|
-
|
|
54957
|
-
|
|
54958
|
-
|
|
54959
|
-
|
|
54960
|
-
|
|
54961
|
-
|
|
54962
|
-
|
|
54963
|
-
|
|
54964
|
-
|
|
54965
|
-
|
|
55359
|
+
smaller: DESKTOP_FONT_SIZE_STANDARD_SMALLER,
|
|
55360
|
+
small: DESKTOP_FONT_SIZE_STANDARD_SMALL,
|
|
55361
|
+
medium: DESKTOP_FONT_SIZE_STANDARD_MEDIUM,
|
|
55362
|
+
large: DESKTOP_FONT_SIZE_STANDARD_LARGE,
|
|
55363
|
+
larger: DESKTOP_FONT_SIZE_STANDARD_LARGER,
|
|
55364
|
+
largest: DESKTOP_FONT_SIZE_STANDARD_LARGEST,
|
|
55365
|
+
base: DESKTOP_FONT_SIZE_SEMANTIC_BASE,
|
|
55366
|
+
xxs: DESKTOP_FONT_SIZE_EXPERIMENTAL_XXS,
|
|
55367
|
+
xs: DESKTOP_FONT_SIZE_EXPERIMENTAL_XS,
|
|
55368
|
+
sm: DESKTOP_FONT_SIZE_EXPERIMENTAL_SM,
|
|
55369
|
+
md: DESKTOP_FONT_SIZE_EXPERIMENTAL_MD,
|
|
55370
|
+
lg: DESKTOP_FONT_SIZE_EXPERIMENTAL_LG,
|
|
55371
|
+
xl: DESKTOP_FONT_SIZE_EXPERIMENTAL_XL,
|
|
55372
|
+
xxl: DESKTOP_FONT_SIZE_EXPERIMENTAL_XXL,
|
|
55373
|
+
heading1: DESKTOP_FONT_SIZE_SEMANTIC_HEADING_1,
|
|
55374
|
+
heading2: DESKTOP_FONT_SIZE_SEMANTIC_HEADING_2,
|
|
55375
|
+
heading3: DESKTOP_FONT_SIZE_SEMANTIC_HEADING_3,
|
|
55376
|
+
heading4: DESKTOP_FONT_SIZE_SEMANTIC_HEADING_4
|
|
54966
55377
|
},
|
|
54967
55378
|
lineHeights: {
|
|
54968
|
-
base:
|
|
54969
|
-
baseRelaxed:
|
|
54970
|
-
smallTextBase:
|
|
54971
|
-
smallTextCompressed:
|
|
54972
|
-
smallRelaxed:
|
|
54973
|
-
smallerText:
|
|
54974
|
-
smallerRelaxed:
|
|
54975
|
-
heading1:
|
|
54976
|
-
heading2:
|
|
54977
|
-
heading3:
|
|
54978
|
-
heading4:
|
|
54979
|
-
title:
|
|
54980
|
-
sectionTitle:
|
|
54981
|
-
subsectionTitle:
|
|
55379
|
+
base: DESKTOP_LINE_HEIGHT_BASE,
|
|
55380
|
+
baseRelaxed: DESKTOP_LINE_HEIGHT_BASE_RELAXED,
|
|
55381
|
+
smallTextBase: DESKTOP_LINE_HEIGHT_SMALL_TEXT_BASE,
|
|
55382
|
+
smallTextCompressed: DESKTOP_LINE_HEIGHT_SMALL_TEXT_COMPRESSED,
|
|
55383
|
+
smallRelaxed: DESKTOP_LINE_HEIGHT_SMALL_RELAXED,
|
|
55384
|
+
smallerText: DESKTOP_LINE_HEIGHT_SMALLER_TEXT,
|
|
55385
|
+
smallerRelaxed: DESKTOP_LINE_HEIGHT_SMALLER_RELAXED,
|
|
55386
|
+
heading1: DESKTOP_LINE_HEIGHT_HEADING_1,
|
|
55387
|
+
heading2: DESKTOP_LINE_HEIGHT_HEADING_2,
|
|
55388
|
+
heading3: DESKTOP_LINE_HEIGHT_HEADING_3,
|
|
55389
|
+
heading4: DESKTOP_LINE_HEIGHT_HEADING_4,
|
|
55390
|
+
title: DESKTOP_LINE_HEIGHT_TITLE,
|
|
55391
|
+
sectionTitle: DESKTOP_LINE_HEIGHT_SECTION_TITLE,
|
|
55392
|
+
subsectionTitle: DESKTOP_LINE_HEIGHT_SUBSECTION_TITLE
|
|
54982
55393
|
},
|
|
54983
55394
|
space: {
|
|
54984
|
-
none:
|
|
54985
|
-
x0:
|
|
54986
|
-
x0_25:
|
|
54987
|
-
half:
|
|
54988
|
-
x0_5:
|
|
54989
|
-
x0_75:
|
|
54990
|
-
x1:
|
|
54991
|
-
x1_25:
|
|
54992
|
-
x1_5:
|
|
54993
|
-
x1_75:
|
|
54994
|
-
x2:
|
|
54995
|
-
x2_5:
|
|
54996
|
-
x3:
|
|
54997
|
-
x4:
|
|
54998
|
-
x5:
|
|
54999
|
-
x6:
|
|
55000
|
-
x7:
|
|
55001
|
-
x8:
|
|
55002
|
-
x9:
|
|
55003
|
-
x10:
|
|
55004
|
-
x11:
|
|
55005
|
-
x12:
|
|
55395
|
+
none: DESKTOP_SPACE_NONE,
|
|
55396
|
+
x0: DESKTOP_SPACE_X_0,
|
|
55397
|
+
x0_25: DESKTOP_SPACE_X_0_25,
|
|
55398
|
+
half: DESKTOP_SPACE_HALF,
|
|
55399
|
+
x0_5: DESKTOP_SPACE_X_0_5,
|
|
55400
|
+
x0_75: DESKTOP_SPACE_X_0_75,
|
|
55401
|
+
x1: DESKTOP_SPACE_X_1,
|
|
55402
|
+
x1_25: DESKTOP_SPACE_X_1_25,
|
|
55403
|
+
x1_5: DESKTOP_SPACE_X_1_5,
|
|
55404
|
+
x1_75: DESKTOP_SPACE_X_1_75,
|
|
55405
|
+
x2: DESKTOP_SPACE_X_2,
|
|
55406
|
+
x2_5: DESKTOP_SPACE_X_2_5,
|
|
55407
|
+
x3: DESKTOP_SPACE_X_3,
|
|
55408
|
+
x4: DESKTOP_SPACE_X_4,
|
|
55409
|
+
x5: DESKTOP_SPACE_X_5,
|
|
55410
|
+
x6: DESKTOP_SPACE_X_6,
|
|
55411
|
+
x7: DESKTOP_SPACE_X_7,
|
|
55412
|
+
x8: DESKTOP_SPACE_X_8,
|
|
55413
|
+
x9: DESKTOP_SPACE_X_9,
|
|
55414
|
+
x10: DESKTOP_SPACE_X_10,
|
|
55415
|
+
x11: DESKTOP_SPACE_X_11,
|
|
55416
|
+
x12: DESKTOP_SPACE_X_12
|
|
55006
55417
|
},
|
|
55007
55418
|
sizes: {
|
|
55008
|
-
none:
|
|
55009
|
-
x0:
|
|
55010
|
-
x0_25:
|
|
55011
|
-
half:
|
|
55012
|
-
x0_5:
|
|
55013
|
-
x0_75:
|
|
55014
|
-
x1:
|
|
55015
|
-
x1_25:
|
|
55016
|
-
x1_5:
|
|
55017
|
-
x1_75:
|
|
55018
|
-
x2:
|
|
55019
|
-
x2_5:
|
|
55020
|
-
x3:
|
|
55021
|
-
x4:
|
|
55022
|
-
x5:
|
|
55023
|
-
x6:
|
|
55024
|
-
x7:
|
|
55025
|
-
x8:
|
|
55026
|
-
x9:
|
|
55027
|
-
x10:
|
|
55028
|
-
x11:
|
|
55029
|
-
x12:
|
|
55419
|
+
none: DESKTOP_SPACE_NONE,
|
|
55420
|
+
x0: DESKTOP_SPACE_X_0,
|
|
55421
|
+
x0_25: DESKTOP_SPACE_X_0_25,
|
|
55422
|
+
half: DESKTOP_SPACE_HALF,
|
|
55423
|
+
x0_5: DESKTOP_SPACE_X_0_5,
|
|
55424
|
+
x0_75: DESKTOP_SPACE_X_0_75,
|
|
55425
|
+
x1: DESKTOP_SPACE_X_1,
|
|
55426
|
+
x1_25: DESKTOP_SPACE_X_1_25,
|
|
55427
|
+
x1_5: DESKTOP_SPACE_X_1_5,
|
|
55428
|
+
x1_75: DESKTOP_SPACE_X_1_75,
|
|
55429
|
+
x2: DESKTOP_SPACE_X_2,
|
|
55430
|
+
x2_5: DESKTOP_SPACE_X_2_5,
|
|
55431
|
+
x3: DESKTOP_SPACE_X_3,
|
|
55432
|
+
x4: DESKTOP_SPACE_X_4,
|
|
55433
|
+
x5: DESKTOP_SPACE_X_5,
|
|
55434
|
+
x6: DESKTOP_SPACE_X_6,
|
|
55435
|
+
x7: DESKTOP_SPACE_X_7,
|
|
55436
|
+
x8: DESKTOP_SPACE_X_8,
|
|
55437
|
+
x9: DESKTOP_SPACE_X_9,
|
|
55438
|
+
x10: DESKTOP_SPACE_X_10,
|
|
55439
|
+
x11: DESKTOP_SPACE_X_11,
|
|
55440
|
+
x12: DESKTOP_SPACE_X_12
|
|
55030
55441
|
},
|
|
55031
55442
|
radii: {
|
|
55032
|
-
small:
|
|
55033
|
-
medium:
|
|
55034
|
-
large:
|
|
55035
|
-
circle:
|
|
55036
|
-
rounded:
|
|
55443
|
+
small: DESKTOP_BORDER_RADIUS_SMALL,
|
|
55444
|
+
medium: DESKTOP_BORDER_RADIUS_MEDIUM,
|
|
55445
|
+
large: DESKTOP_BORDER_RADIUS_LARGE,
|
|
55446
|
+
circle: DESKTOP_BORDER_RADIUS_CIRCLE,
|
|
55447
|
+
rounded: DESKTOP_BORDER_RADIUS_ROUNDED
|
|
55037
55448
|
},
|
|
55038
55449
|
borders: []
|
|
55039
55450
|
},
|
|
55040
55451
|
tablet: {
|
|
55041
55452
|
colors: {
|
|
55042
|
-
black:
|
|
55043
|
-
blackBlue:
|
|
55044
|
-
darkBlue:
|
|
55045
|
-
blue:
|
|
55046
|
-
lightBlue:
|
|
55047
|
-
darkGrey:
|
|
55048
|
-
midGrey:
|
|
55049
|
-
grey:
|
|
55050
|
-
lightGrey:
|
|
55051
|
-
whiteGrey:
|
|
55052
|
-
white:
|
|
55053
|
-
yellow:
|
|
55054
|
-
lightYellow:
|
|
55055
|
-
green:
|
|
55056
|
-
lightGreen:
|
|
55057
|
-
red:
|
|
55058
|
-
lightRed:
|
|
55059
|
-
categorical1:
|
|
55060
|
-
categorical2:
|
|
55061
|
-
categorical3:
|
|
55062
|
-
categorical4:
|
|
55063
|
-
categorical5:
|
|
55064
|
-
categorical6:
|
|
55453
|
+
black: TABLET_COLOR_BASE_BLACK,
|
|
55454
|
+
blackBlue: TABLET_COLOR_BASE_BLACK_BLUE,
|
|
55455
|
+
darkBlue: TABLET_COLOR_BASE_DARK_BLUE,
|
|
55456
|
+
blue: TABLET_COLOR_BASE_BLUE,
|
|
55457
|
+
lightBlue: TABLET_COLOR_BASE_LIGHT_BLUE,
|
|
55458
|
+
darkGrey: TABLET_COLOR_BASE_DARK_GREY,
|
|
55459
|
+
midGrey: TABLET_COLOR_BASE_MID_GREY,
|
|
55460
|
+
grey: TABLET_COLOR_BASE_GREY,
|
|
55461
|
+
lightGrey: TABLET_COLOR_BASE_LIGHT_GREY,
|
|
55462
|
+
whiteGrey: TABLET_COLOR_BASE_WHITE_GREY,
|
|
55463
|
+
white: TABLET_COLOR_BASE_WHITE,
|
|
55464
|
+
yellow: TABLET_COLOR_BASE_YELLOW,
|
|
55465
|
+
lightYellow: TABLET_COLOR_BASE_LIGHT_YELLOW,
|
|
55466
|
+
green: TABLET_COLOR_BASE_GREEN,
|
|
55467
|
+
lightGreen: TABLET_COLOR_BASE_LIGHT_GREEN,
|
|
55468
|
+
red: TABLET_COLOR_BASE_RED,
|
|
55469
|
+
lightRed: TABLET_COLOR_BASE_LIGHT_RED,
|
|
55470
|
+
categorical1: TABLET_COLOR_CATEGORICAL_1,
|
|
55471
|
+
categorical2: TABLET_COLOR_CATEGORICAL_2,
|
|
55472
|
+
categorical3: TABLET_COLOR_CATEGORICAL_3,
|
|
55473
|
+
categorical4: TABLET_COLOR_CATEGORICAL_4,
|
|
55474
|
+
categorical5: TABLET_COLOR_CATEGORICAL_5,
|
|
55475
|
+
categorical6: TABLET_COLOR_CATEGORICAL_6
|
|
55065
55476
|
},
|
|
55066
55477
|
fontWeights: {
|
|
55067
|
-
light:
|
|
55068
|
-
normal:
|
|
55069
|
-
medium:
|
|
55070
|
-
bold:
|
|
55478
|
+
light: TABLET_FONT_WEIGHT_LIGHT,
|
|
55479
|
+
normal: TABLET_FONT_WEIGHT_NORMAL,
|
|
55480
|
+
medium: TABLET_FONT_WEIGHT_MEDIUM,
|
|
55481
|
+
bold: TABLET_FONT_WEIGHT_BOLD
|
|
55071
55482
|
},
|
|
55072
55483
|
fonts: {
|
|
55073
|
-
base:
|
|
55074
|
-
mono:
|
|
55075
|
-
sc:
|
|
55484
|
+
base: TABLET_FONT_FAMILY_BASE,
|
|
55485
|
+
mono: TABLET_FONT_FAMILY_MONO,
|
|
55486
|
+
sc: TABLET_FONT_FAMILY_SC
|
|
55076
55487
|
},
|
|
55077
55488
|
shadows: {
|
|
55078
|
-
small:
|
|
55079
|
-
medium:
|
|
55080
|
-
large:
|
|
55081
|
-
focus:
|
|
55082
|
-
error:
|
|
55489
|
+
small: TABLET_SHADOW_SMALL,
|
|
55490
|
+
medium: TABLET_SHADOW_MEDIUM,
|
|
55491
|
+
large: TABLET_SHADOW_LARGE,
|
|
55492
|
+
focus: TABLET_SHADOW_FOCUS,
|
|
55493
|
+
error: TABLET_SHADOW_ERROR
|
|
55083
55494
|
},
|
|
55084
55495
|
breakpoints: {
|
|
55085
|
-
extraSmall:
|
|
55086
|
-
small:
|
|
55087
|
-
medium:
|
|
55088
|
-
large:
|
|
55089
|
-
extraLarge:
|
|
55090
|
-
phonePortrait:
|
|
55091
|
-
phoneLandscape:
|
|
55092
|
-
tabletPortrait:
|
|
55093
|
-
tabletLandscape:
|
|
55094
|
-
laptop:
|
|
55095
|
-
desktop:
|
|
55496
|
+
extraSmall: TABLET_BREAKPOINTS_BASE_EXTRA_SMALL,
|
|
55497
|
+
small: TABLET_BREAKPOINTS_BASE_SMALL,
|
|
55498
|
+
medium: TABLET_BREAKPOINTS_BASE_MEDIUM,
|
|
55499
|
+
large: TABLET_BREAKPOINTS_BASE_LARGE,
|
|
55500
|
+
extraLarge: TABLET_BREAKPOINTS_BASE_EXTRA_LARGE,
|
|
55501
|
+
phonePortrait: TABLET_BREAKPOINTS_SEMANTIC_PHONE_PORTRAIT,
|
|
55502
|
+
phoneLandscape: TABLET_BREAKPOINTS_SEMANTIC_PHONE_LANDSCAPE,
|
|
55503
|
+
tabletPortrait: TABLET_BREAKPOINTS_SEMANTIC_TABLET_PORTRAIT,
|
|
55504
|
+
tabletLandscape: TABLET_BREAKPOINTS_SEMANTIC_TABLET_LANDSCAPE,
|
|
55505
|
+
laptop: TABLET_BREAKPOINTS_SEMANTIC_LAPTOP,
|
|
55506
|
+
desktop: TABLET_BREAKPOINTS_SEMANTIC_DESKTOP
|
|
55096
55507
|
},
|
|
55097
55508
|
zIndices: {
|
|
55098
|
-
content:
|
|
55099
|
-
tabsScollIndicator:
|
|
55100
|
-
tabsBar:
|
|
55101
|
-
overlay:
|
|
55102
|
-
aboveOverlay:
|
|
55103
|
-
tableHeader:
|
|
55104
|
-
modalHeaderAndFooter:
|
|
55105
|
-
openControl:
|
|
55106
|
-
navBar:
|
|
55107
|
-
sidebar:
|
|
55509
|
+
content: TABLET_Z_INDEX_CONTENT,
|
|
55510
|
+
tabsScollIndicator: TABLET_Z_INDEX_TABS_SCROLL_INDICATOR,
|
|
55511
|
+
tabsBar: TABLET_Z_INDEX_TABS_BAR,
|
|
55512
|
+
overlay: TABLET_Z_INDEX_OVERLAY,
|
|
55513
|
+
aboveOverlay: TABLET_Z_INDEX_ABOVE_OVERLAY,
|
|
55514
|
+
tableHeader: TABLET_Z_INDEX_TABLE_HEADER,
|
|
55515
|
+
modalHeaderAndFooter: TABLET_Z_INDEX_MODAL_HEADER_AND_FOOTER,
|
|
55516
|
+
openControl: TABLET_Z_INDEX_OPEN_CONTROL,
|
|
55517
|
+
navBar: TABLET_Z_INDEX_NAV_BAR,
|
|
55518
|
+
sidebar: TABLET_Z_INDEX_SIDEBAR
|
|
55108
55519
|
},
|
|
55109
55520
|
fontSizes: {
|
|
55110
|
-
smaller:
|
|
55111
|
-
small:
|
|
55112
|
-
medium:
|
|
55113
|
-
large:
|
|
55114
|
-
larger:
|
|
55115
|
-
largest:
|
|
55116
|
-
xxs:
|
|
55117
|
-
xs:
|
|
55118
|
-
sm:
|
|
55119
|
-
md:
|
|
55120
|
-
lg:
|
|
55121
|
-
xl:
|
|
55122
|
-
xxl:
|
|
55123
|
-
heading1:
|
|
55124
|
-
heading2:
|
|
55125
|
-
heading3:
|
|
55126
|
-
heading4:
|
|
55127
|
-
base:
|
|
55521
|
+
smaller: TABLET_FONT_SIZE_STANDARD_SMALLER,
|
|
55522
|
+
small: TABLET_FONT_SIZE_STANDARD_SMALL,
|
|
55523
|
+
medium: TABLET_FONT_SIZE_STANDARD_MEDIUM,
|
|
55524
|
+
large: TABLET_FONT_SIZE_STANDARD_LARGE,
|
|
55525
|
+
larger: TABLET_FONT_SIZE_STANDARD_LARGER,
|
|
55526
|
+
largest: TABLET_FONT_SIZE_STANDARD_LARGEST,
|
|
55527
|
+
xxs: TABLET_FONT_SIZE_EXPERIMENTAL_XXS,
|
|
55528
|
+
xs: TABLET_FONT_SIZE_EXPERIMENTAL_XS,
|
|
55529
|
+
sm: TABLET_FONT_SIZE_EXPERIMENTAL_SM,
|
|
55530
|
+
md: TABLET_FONT_SIZE_EXPERIMENTAL_MD,
|
|
55531
|
+
lg: TABLET_FONT_SIZE_EXPERIMENTAL_LG,
|
|
55532
|
+
xl: TABLET_FONT_SIZE_EXPERIMENTAL_XL,
|
|
55533
|
+
xxl: TABLET_FONT_SIZE_EXPERIMENTAL_XXL,
|
|
55534
|
+
heading1: TABLET_FONT_SIZE_SEMANTIC_HEADING_1,
|
|
55535
|
+
heading2: TABLET_FONT_SIZE_SEMANTIC_HEADING_2,
|
|
55536
|
+
heading3: TABLET_FONT_SIZE_SEMANTIC_HEADING_3,
|
|
55537
|
+
heading4: TABLET_FONT_SIZE_SEMANTIC_HEADING_4,
|
|
55538
|
+
base: TABLET_FONT_SIZE_SEMANTIC_BASE
|
|
55128
55539
|
},
|
|
55129
55540
|
lineHeights: {
|
|
55130
|
-
base:
|
|
55131
|
-
baseRelaxed:
|
|
55132
|
-
smallTextBase:
|
|
55133
|
-
smallTextCompressed:
|
|
55134
|
-
smallRelaxed:
|
|
55135
|
-
smallerText:
|
|
55136
|
-
smallerRelaxed:
|
|
55137
|
-
heading1:
|
|
55138
|
-
heading2:
|
|
55139
|
-
heading3:
|
|
55140
|
-
heading4:
|
|
55141
|
-
title:
|
|
55142
|
-
sectionTitle:
|
|
55143
|
-
subsectionTitle:
|
|
55541
|
+
base: TABLET_LINE_HEIGHT_BASE,
|
|
55542
|
+
baseRelaxed: TABLET_LINE_HEIGHT_BASE_RELAXED,
|
|
55543
|
+
smallTextBase: TABLET_LINE_HEIGHT_SMALL_TEXT_BASE,
|
|
55544
|
+
smallTextCompressed: TABLET_LINE_HEIGHT_SMALL_TEXT_COMPRESSED,
|
|
55545
|
+
smallRelaxed: TABLET_LINE_HEIGHT_SMALL_RELAXED,
|
|
55546
|
+
smallerText: TABLET_LINE_HEIGHT_SMALLER_TEXT,
|
|
55547
|
+
smallerRelaxed: TABLET_LINE_HEIGHT_SMALLER_RELAXED,
|
|
55548
|
+
heading1: TABLET_LINE_HEIGHT_HEADING_1,
|
|
55549
|
+
heading2: TABLET_LINE_HEIGHT_HEADING_2,
|
|
55550
|
+
heading3: TABLET_LINE_HEIGHT_HEADING_3,
|
|
55551
|
+
heading4: TABLET_LINE_HEIGHT_HEADING_4,
|
|
55552
|
+
title: TABLET_LINE_HEIGHT_TITLE,
|
|
55553
|
+
sectionTitle: TABLET_LINE_HEIGHT_SECTION_TITLE,
|
|
55554
|
+
subsectionTitle: TABLET_LINE_HEIGHT_SUBSECTION_TITLE
|
|
55144
55555
|
},
|
|
55145
55556
|
space: {
|
|
55146
|
-
none:
|
|
55147
|
-
x0:
|
|
55148
|
-
x0_25:
|
|
55149
|
-
half:
|
|
55150
|
-
x0_5:
|
|
55151
|
-
x0_75:
|
|
55152
|
-
x1:
|
|
55153
|
-
x1_25:
|
|
55154
|
-
x1_5:
|
|
55155
|
-
x1_75:
|
|
55156
|
-
x2:
|
|
55157
|
-
x2_5:
|
|
55158
|
-
x3:
|
|
55159
|
-
x4:
|
|
55160
|
-
x5:
|
|
55161
|
-
x6:
|
|
55162
|
-
x7:
|
|
55163
|
-
x8:
|
|
55164
|
-
x9:
|
|
55165
|
-
x10:
|
|
55166
|
-
x11:
|
|
55167
|
-
x12:
|
|
55557
|
+
none: TABLET_SPACE_NONE,
|
|
55558
|
+
x0: TABLET_SPACE_X_0,
|
|
55559
|
+
x0_25: TABLET_SPACE_X_0_25,
|
|
55560
|
+
half: TABLET_SPACE_HALF,
|
|
55561
|
+
x0_5: TABLET_SPACE_X_0_5,
|
|
55562
|
+
x0_75: TABLET_SPACE_X_0_75,
|
|
55563
|
+
x1: TABLET_SPACE_X_1,
|
|
55564
|
+
x1_25: TABLET_SPACE_X_1_25,
|
|
55565
|
+
x1_5: TABLET_SPACE_X_1_5,
|
|
55566
|
+
x1_75: TABLET_SPACE_X_1_75,
|
|
55567
|
+
x2: TABLET_SPACE_X_2,
|
|
55568
|
+
x2_5: TABLET_SPACE_X_2_5,
|
|
55569
|
+
x3: TABLET_SPACE_X_3,
|
|
55570
|
+
x4: TABLET_SPACE_X_4,
|
|
55571
|
+
x5: TABLET_SPACE_X_5,
|
|
55572
|
+
x6: TABLET_SPACE_X_6,
|
|
55573
|
+
x7: TABLET_SPACE_X_7,
|
|
55574
|
+
x8: TABLET_SPACE_X_8,
|
|
55575
|
+
x9: TABLET_SPACE_X_9,
|
|
55576
|
+
x10: TABLET_SPACE_X_10,
|
|
55577
|
+
x11: TABLET_SPACE_X_11,
|
|
55578
|
+
x12: TABLET_SPACE_X_12
|
|
55168
55579
|
},
|
|
55169
55580
|
sizes: {
|
|
55170
|
-
none:
|
|
55171
|
-
x0:
|
|
55172
|
-
x0_25:
|
|
55173
|
-
half:
|
|
55174
|
-
x0_5:
|
|
55175
|
-
x0_75:
|
|
55176
|
-
x1:
|
|
55177
|
-
x1_25:
|
|
55178
|
-
x1_5:
|
|
55179
|
-
x1_75:
|
|
55180
|
-
x2:
|
|
55181
|
-
x2_5:
|
|
55182
|
-
x3:
|
|
55183
|
-
x4:
|
|
55184
|
-
x5:
|
|
55185
|
-
x6:
|
|
55186
|
-
x7:
|
|
55187
|
-
x8:
|
|
55188
|
-
x9:
|
|
55189
|
-
x10:
|
|
55190
|
-
x11:
|
|
55191
|
-
x12:
|
|
55581
|
+
none: TABLET_SPACE_NONE,
|
|
55582
|
+
x0: TABLET_SPACE_X_0,
|
|
55583
|
+
x0_25: TABLET_SPACE_X_0_25,
|
|
55584
|
+
half: TABLET_SPACE_HALF,
|
|
55585
|
+
x0_5: TABLET_SPACE_X_0_5,
|
|
55586
|
+
x0_75: TABLET_SPACE_X_0_75,
|
|
55587
|
+
x1: TABLET_SPACE_X_1,
|
|
55588
|
+
x1_25: TABLET_SPACE_X_1_25,
|
|
55589
|
+
x1_5: TABLET_SPACE_X_1_5,
|
|
55590
|
+
x1_75: TABLET_SPACE_X_1_75,
|
|
55591
|
+
x2: TABLET_SPACE_X_2,
|
|
55592
|
+
x2_5: TABLET_SPACE_X_2_5,
|
|
55593
|
+
x3: TABLET_SPACE_X_3,
|
|
55594
|
+
x4: TABLET_SPACE_X_4,
|
|
55595
|
+
x5: TABLET_SPACE_X_5,
|
|
55596
|
+
x6: TABLET_SPACE_X_6,
|
|
55597
|
+
x7: TABLET_SPACE_X_7,
|
|
55598
|
+
x8: TABLET_SPACE_X_8,
|
|
55599
|
+
x9: TABLET_SPACE_X_9,
|
|
55600
|
+
x10: TABLET_SPACE_X_10,
|
|
55601
|
+
x11: TABLET_SPACE_X_11,
|
|
55602
|
+
x12: TABLET_SPACE_X_12
|
|
55192
55603
|
},
|
|
55193
55604
|
radii: {
|
|
55194
|
-
small:
|
|
55195
|
-
medium:
|
|
55196
|
-
large:
|
|
55197
|
-
circle:
|
|
55198
|
-
rounded:
|
|
55605
|
+
small: TABLET_BORDER_RADIUS_SMALL,
|
|
55606
|
+
medium: TABLET_BORDER_RADIUS_MEDIUM,
|
|
55607
|
+
large: TABLET_BORDER_RADIUS_LARGE,
|
|
55608
|
+
circle: TABLET_BORDER_RADIUS_CIRCLE,
|
|
55609
|
+
rounded: TABLET_BORDER_RADIUS_ROUNDED
|
|
55199
55610
|
},
|
|
55200
55611
|
borders: []
|
|
55201
55612
|
},
|
|
55202
55613
|
phone: {
|
|
55203
55614
|
colors: {
|
|
55204
|
-
black:
|
|
55205
|
-
blackBlue:
|
|
55206
|
-
darkBlue:
|
|
55207
|
-
blue:
|
|
55208
|
-
lightBlue:
|
|
55209
|
-
darkGrey:
|
|
55210
|
-
midGrey:
|
|
55211
|
-
grey:
|
|
55212
|
-
lightGrey:
|
|
55213
|
-
whiteGrey:
|
|
55214
|
-
white:
|
|
55215
|
-
yellow:
|
|
55216
|
-
lightYellow:
|
|
55217
|
-
green:
|
|
55218
|
-
lightGreen:
|
|
55219
|
-
red:
|
|
55220
|
-
lightRed:
|
|
55221
|
-
categorical1:
|
|
55222
|
-
categorical2:
|
|
55223
|
-
categorical3:
|
|
55224
|
-
categorical4:
|
|
55225
|
-
categorical5:
|
|
55226
|
-
categorical6:
|
|
55615
|
+
black: PHONE_COLOR_BASE_BLACK,
|
|
55616
|
+
blackBlue: PHONE_COLOR_BASE_BLACK_BLUE,
|
|
55617
|
+
darkBlue: PHONE_COLOR_BASE_DARK_BLUE,
|
|
55618
|
+
blue: PHONE_COLOR_BASE_BLUE,
|
|
55619
|
+
lightBlue: PHONE_COLOR_BASE_LIGHT_BLUE,
|
|
55620
|
+
darkGrey: PHONE_COLOR_BASE_DARK_GREY,
|
|
55621
|
+
midGrey: PHONE_COLOR_BASE_MID_GREY,
|
|
55622
|
+
grey: PHONE_COLOR_BASE_GREY,
|
|
55623
|
+
lightGrey: PHONE_COLOR_BASE_LIGHT_GREY,
|
|
55624
|
+
whiteGrey: PHONE_COLOR_BASE_WHITE_GREY,
|
|
55625
|
+
white: PHONE_COLOR_BASE_WHITE,
|
|
55626
|
+
yellow: PHONE_COLOR_BASE_YELLOW,
|
|
55627
|
+
lightYellow: PHONE_COLOR_BASE_LIGHT_YELLOW,
|
|
55628
|
+
green: PHONE_COLOR_BASE_GREEN,
|
|
55629
|
+
lightGreen: PHONE_COLOR_BASE_LIGHT_GREEN,
|
|
55630
|
+
red: PHONE_COLOR_BASE_RED,
|
|
55631
|
+
lightRed: PHONE_COLOR_BASE_LIGHT_RED,
|
|
55632
|
+
categorical1: PHONE_COLOR_CATEGORICAL_1,
|
|
55633
|
+
categorical2: PHONE_COLOR_CATEGORICAL_2,
|
|
55634
|
+
categorical3: PHONE_COLOR_CATEGORICAL_3,
|
|
55635
|
+
categorical4: PHONE_COLOR_CATEGORICAL_4,
|
|
55636
|
+
categorical5: PHONE_COLOR_CATEGORICAL_5,
|
|
55637
|
+
categorical6: PHONE_COLOR_CATEGORICAL_6
|
|
55227
55638
|
},
|
|
55228
55639
|
fontWeights: {
|
|
55229
|
-
light:
|
|
55230
|
-
normal:
|
|
55231
|
-
medium:
|
|
55232
|
-
bold:
|
|
55640
|
+
light: PHONE_FONT_WEIGHT_LIGHT,
|
|
55641
|
+
normal: PHONE_FONT_WEIGHT_NORMAL,
|
|
55642
|
+
medium: PHONE_FONT_WEIGHT_MEDIUM,
|
|
55643
|
+
bold: PHONE_FONT_WEIGHT_BOLD
|
|
55233
55644
|
},
|
|
55234
55645
|
fonts: {
|
|
55235
|
-
base:
|
|
55236
|
-
mono:
|
|
55237
|
-
sc:
|
|
55646
|
+
base: PHONE_FONT_FAMILY_BASE,
|
|
55647
|
+
mono: PHONE_FONT_FAMILY_MONO,
|
|
55648
|
+
sc: PHONE_FONT_FAMILY_SC
|
|
55238
55649
|
},
|
|
55239
55650
|
shadows: {
|
|
55240
|
-
small:
|
|
55241
|
-
medium:
|
|
55242
|
-
large:
|
|
55243
|
-
focus:
|
|
55244
|
-
error:
|
|
55651
|
+
small: PHONE_SHADOW_SMALL,
|
|
55652
|
+
medium: PHONE_SHADOW_MEDIUM,
|
|
55653
|
+
large: PHONE_SHADOW_LARGE,
|
|
55654
|
+
focus: PHONE_SHADOW_FOCUS,
|
|
55655
|
+
error: PHONE_SHADOW_ERROR
|
|
55245
55656
|
},
|
|
55246
55657
|
breakpoints: {
|
|
55247
|
-
extraSmall:
|
|
55248
|
-
small:
|
|
55249
|
-
medium:
|
|
55250
|
-
large:
|
|
55251
|
-
extraLarge:
|
|
55252
|
-
phonePortrait:
|
|
55253
|
-
phoneLandscape:
|
|
55254
|
-
tabletPortrait:
|
|
55255
|
-
tabletLandscape:
|
|
55256
|
-
laptop:
|
|
55257
|
-
desktop:
|
|
55658
|
+
extraSmall: PHONE_BREAKPOINTS_BASE_EXTRA_SMALL,
|
|
55659
|
+
small: PHONE_BREAKPOINTS_BASE_SMALL,
|
|
55660
|
+
medium: PHONE_BREAKPOINTS_BASE_MEDIUM,
|
|
55661
|
+
large: PHONE_BREAKPOINTS_BASE_LARGE,
|
|
55662
|
+
extraLarge: PHONE_BREAKPOINTS_BASE_EXTRA_LARGE,
|
|
55663
|
+
phonePortrait: PHONE_BREAKPOINTS_SEMANTIC_PHONE_PORTRAIT,
|
|
55664
|
+
phoneLandscape: PHONE_BREAKPOINTS_SEMANTIC_PHONE_LANDSCAPE,
|
|
55665
|
+
tabletPortrait: PHONE_BREAKPOINTS_SEMANTIC_TABLET_PORTRAIT,
|
|
55666
|
+
tabletLandscape: PHONE_BREAKPOINTS_SEMANTIC_TABLET_LANDSCAPE,
|
|
55667
|
+
laptop: PHONE_BREAKPOINTS_SEMANTIC_LAPTOP,
|
|
55668
|
+
desktop: PHONE_BREAKPOINTS_SEMANTIC_DESKTOP
|
|
55258
55669
|
},
|
|
55259
55670
|
zIndices: {
|
|
55260
|
-
content:
|
|
55261
|
-
tabsScollIndicator:
|
|
55262
|
-
tabsBar:
|
|
55263
|
-
overlay:
|
|
55264
|
-
aboveOverlay:
|
|
55265
|
-
tableHeader:
|
|
55266
|
-
modalHeaderAndFooter:
|
|
55267
|
-
openControl:
|
|
55268
|
-
navBar:
|
|
55269
|
-
sidebar:
|
|
55671
|
+
content: PHONE_Z_INDEX_CONTENT,
|
|
55672
|
+
tabsScollIndicator: PHONE_Z_INDEX_TABS_SCROLL_INDICATOR,
|
|
55673
|
+
tabsBar: PHONE_Z_INDEX_TABS_BAR,
|
|
55674
|
+
overlay: PHONE_Z_INDEX_OVERLAY,
|
|
55675
|
+
aboveOverlay: PHONE_Z_INDEX_ABOVE_OVERLAY,
|
|
55676
|
+
tableHeader: PHONE_Z_INDEX_TABLE_HEADER,
|
|
55677
|
+
modalHeaderAndFooter: PHONE_Z_INDEX_MODAL_HEADER_AND_FOOTER,
|
|
55678
|
+
openControl: PHONE_Z_INDEX_OPEN_CONTROL,
|
|
55679
|
+
navBar: PHONE_Z_INDEX_NAV_BAR,
|
|
55680
|
+
sidebar: PHONE_Z_INDEX_SIDEBAR
|
|
55270
55681
|
},
|
|
55271
55682
|
fontSizes: {
|
|
55272
|
-
smaller:
|
|
55273
|
-
small:
|
|
55274
|
-
medium:
|
|
55275
|
-
large:
|
|
55276
|
-
larger:
|
|
55277
|
-
largest:
|
|
55278
|
-
xxs:
|
|
55279
|
-
xs:
|
|
55280
|
-
sm:
|
|
55281
|
-
md:
|
|
55282
|
-
lg:
|
|
55283
|
-
xl:
|
|
55284
|
-
xxl:
|
|
55285
|
-
heading1:
|
|
55286
|
-
heading2:
|
|
55287
|
-
heading3:
|
|
55288
|
-
heading4:
|
|
55289
|
-
base:
|
|
55683
|
+
smaller: PHONE_FONT_SIZE_STANDARD_SMALLER,
|
|
55684
|
+
small: PHONE_FONT_SIZE_STANDARD_SMALL,
|
|
55685
|
+
medium: PHONE_FONT_SIZE_STANDARD_MEDIUM,
|
|
55686
|
+
large: PHONE_FONT_SIZE_STANDARD_LARGE,
|
|
55687
|
+
larger: PHONE_FONT_SIZE_STANDARD_LARGER,
|
|
55688
|
+
largest: PHONE_FONT_SIZE_STANDARD_LARGEST,
|
|
55689
|
+
xxs: PHONE_FONT_SIZE_EXPERIMENTAL_XXS,
|
|
55690
|
+
xs: PHONE_FONT_SIZE_EXPERIMENTAL_XS,
|
|
55691
|
+
sm: PHONE_FONT_SIZE_EXPERIMENTAL_SM,
|
|
55692
|
+
md: PHONE_FONT_SIZE_EXPERIMENTAL_MD,
|
|
55693
|
+
lg: PHONE_FONT_SIZE_EXPERIMENTAL_LG,
|
|
55694
|
+
xl: PHONE_FONT_SIZE_EXPERIMENTAL_XL,
|
|
55695
|
+
xxl: PHONE_FONT_SIZE_EXPERIMENTAL_XXL,
|
|
55696
|
+
heading1: PHONE_FONT_SIZE_SEMANTIC_HEADING_1,
|
|
55697
|
+
heading2: PHONE_FONT_SIZE_SEMANTIC_HEADING_2,
|
|
55698
|
+
heading3: PHONE_FONT_SIZE_SEMANTIC_HEADING_3,
|
|
55699
|
+
heading4: PHONE_FONT_SIZE_SEMANTIC_HEADING_4,
|
|
55700
|
+
base: PHONE_FONT_SIZE_SEMANTIC_BASE
|
|
55290
55701
|
},
|
|
55291
55702
|
lineHeights: {
|
|
55292
|
-
base:
|
|
55293
|
-
baseRelaxed:
|
|
55294
|
-
smallTextBase:
|
|
55295
|
-
smallTextCompressed:
|
|
55296
|
-
smallRelaxed:
|
|
55297
|
-
smallerText:
|
|
55298
|
-
smallerRelaxed:
|
|
55299
|
-
heading1:
|
|
55300
|
-
heading2:
|
|
55301
|
-
heading3:
|
|
55302
|
-
heading4:
|
|
55303
|
-
title:
|
|
55304
|
-
sectionTitle:
|
|
55305
|
-
subsectionTitle:
|
|
55703
|
+
base: PHONE_LINE_HEIGHT_BASE,
|
|
55704
|
+
baseRelaxed: PHONE_LINE_HEIGHT_BASE_RELAXED,
|
|
55705
|
+
smallTextBase: PHONE_LINE_HEIGHT_SMALL_TEXT_BASE,
|
|
55706
|
+
smallTextCompressed: PHONE_LINE_HEIGHT_SMALL_TEXT_COMPRESSED,
|
|
55707
|
+
smallRelaxed: PHONE_LINE_HEIGHT_SMALL_RELAXED,
|
|
55708
|
+
smallerText: PHONE_LINE_HEIGHT_SMALLER_TEXT,
|
|
55709
|
+
smallerRelaxed: PHONE_LINE_HEIGHT_SMALLER_RELAXED,
|
|
55710
|
+
heading1: PHONE_LINE_HEIGHT_HEADING_1,
|
|
55711
|
+
heading2: PHONE_LINE_HEIGHT_HEADING_2,
|
|
55712
|
+
heading3: PHONE_LINE_HEIGHT_HEADING_3,
|
|
55713
|
+
heading4: PHONE_LINE_HEIGHT_HEADING_4,
|
|
55714
|
+
title: PHONE_LINE_HEIGHT_TITLE,
|
|
55715
|
+
sectionTitle: PHONE_LINE_HEIGHT_SECTION_TITLE,
|
|
55716
|
+
subsectionTitle: PHONE_LINE_HEIGHT_SUBSECTION_TITLE
|
|
55306
55717
|
},
|
|
55307
55718
|
space: {
|
|
55308
|
-
none:
|
|
55309
|
-
x0:
|
|
55310
|
-
x0_25:
|
|
55311
|
-
half:
|
|
55312
|
-
x0_5:
|
|
55313
|
-
x0_75:
|
|
55314
|
-
x1:
|
|
55315
|
-
x1_25:
|
|
55316
|
-
x1_5:
|
|
55317
|
-
x1_75:
|
|
55318
|
-
x2:
|
|
55319
|
-
x2_5:
|
|
55320
|
-
x3:
|
|
55321
|
-
x4:
|
|
55322
|
-
x5:
|
|
55323
|
-
x6:
|
|
55324
|
-
x7:
|
|
55325
|
-
x8:
|
|
55326
|
-
x9:
|
|
55327
|
-
x10:
|
|
55328
|
-
x11:
|
|
55329
|
-
x12:
|
|
55719
|
+
none: PHONE_SPACE_NONE,
|
|
55720
|
+
x0: PHONE_SPACE_X_0,
|
|
55721
|
+
x0_25: PHONE_SPACE_X_0_25,
|
|
55722
|
+
half: PHONE_SPACE_HALF,
|
|
55723
|
+
x0_5: PHONE_SPACE_X_0_5,
|
|
55724
|
+
x0_75: PHONE_SPACE_X_0_75,
|
|
55725
|
+
x1: PHONE_SPACE_X_1,
|
|
55726
|
+
x1_25: PHONE_SPACE_X_1_25,
|
|
55727
|
+
x1_5: PHONE_SPACE_X_1_5,
|
|
55728
|
+
x1_75: PHONE_SPACE_X_1_75,
|
|
55729
|
+
x2: PHONE_SPACE_X_2,
|
|
55730
|
+
x2_5: PHONE_SPACE_X_2_5,
|
|
55731
|
+
x3: PHONE_SPACE_X_3,
|
|
55732
|
+
x4: PHONE_SPACE_X_4,
|
|
55733
|
+
x5: PHONE_SPACE_X_5,
|
|
55734
|
+
x6: PHONE_SPACE_X_6,
|
|
55735
|
+
x7: PHONE_SPACE_X_7,
|
|
55736
|
+
x8: PHONE_SPACE_X_8,
|
|
55737
|
+
x9: PHONE_SPACE_X_9,
|
|
55738
|
+
x10: PHONE_SPACE_X_10,
|
|
55739
|
+
x11: PHONE_SPACE_X_11,
|
|
55740
|
+
x12: PHONE_SPACE_X_12
|
|
55330
55741
|
},
|
|
55331
55742
|
sizes: {
|
|
55332
|
-
none:
|
|
55333
|
-
x0:
|
|
55334
|
-
x0_25:
|
|
55335
|
-
half:
|
|
55336
|
-
x0_5:
|
|
55337
|
-
x0_75:
|
|
55338
|
-
x1:
|
|
55339
|
-
x1_25:
|
|
55340
|
-
x1_5:
|
|
55341
|
-
x1_75:
|
|
55342
|
-
x2:
|
|
55343
|
-
x2_5:
|
|
55344
|
-
x3:
|
|
55345
|
-
x4:
|
|
55346
|
-
x5:
|
|
55347
|
-
x6:
|
|
55348
|
-
x7:
|
|
55349
|
-
x8:
|
|
55350
|
-
x9:
|
|
55351
|
-
x10:
|
|
55352
|
-
x11:
|
|
55353
|
-
x12:
|
|
55743
|
+
none: PHONE_SPACE_NONE,
|
|
55744
|
+
x0: PHONE_SPACE_X_0,
|
|
55745
|
+
x0_25: PHONE_SPACE_X_0_25,
|
|
55746
|
+
half: PHONE_SPACE_HALF,
|
|
55747
|
+
x0_5: PHONE_SPACE_X_0_5,
|
|
55748
|
+
x0_75: PHONE_SPACE_X_0_75,
|
|
55749
|
+
x1: PHONE_SPACE_X_1,
|
|
55750
|
+
x1_25: PHONE_SPACE_X_1_25,
|
|
55751
|
+
x1_5: PHONE_SPACE_X_1_5,
|
|
55752
|
+
x1_75: PHONE_SPACE_X_1_75,
|
|
55753
|
+
x2: PHONE_SPACE_X_2,
|
|
55754
|
+
x2_5: PHONE_SPACE_X_2_5,
|
|
55755
|
+
x3: PHONE_SPACE_X_3,
|
|
55756
|
+
x4: PHONE_SPACE_X_4,
|
|
55757
|
+
x5: PHONE_SPACE_X_5,
|
|
55758
|
+
x6: PHONE_SPACE_X_6,
|
|
55759
|
+
x7: PHONE_SPACE_X_7,
|
|
55760
|
+
x8: PHONE_SPACE_X_8,
|
|
55761
|
+
x9: PHONE_SPACE_X_9,
|
|
55762
|
+
x10: PHONE_SPACE_X_10,
|
|
55763
|
+
x11: PHONE_SPACE_X_11,
|
|
55764
|
+
x12: PHONE_SPACE_X_12
|
|
55354
55765
|
},
|
|
55355
55766
|
radii: {
|
|
55356
|
-
small:
|
|
55357
|
-
medium:
|
|
55358
|
-
large:
|
|
55359
|
-
circle:
|
|
55360
|
-
rounded:
|
|
55767
|
+
small: PHONE_BORDER_RADIUS_SMALL,
|
|
55768
|
+
medium: PHONE_BORDER_RADIUS_MEDIUM,
|
|
55769
|
+
large: PHONE_BORDER_RADIUS_LARGE,
|
|
55770
|
+
circle: PHONE_BORDER_RADIUS_CIRCLE,
|
|
55771
|
+
rounded: PHONE_BORDER_RADIUS_ROUNDED
|
|
55361
55772
|
},
|
|
55362
55773
|
borders: []
|
|
55363
55774
|
}
|