@ptsecurity/mosaic 13.9.1 → 13.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_theming.scss +50 -28
- package/_visual.scss +45 -28
- package/core/formatters/date/formatter.d.ts +6 -2
- package/design-tokens/legacy-2017/tokens/components/form-field.json5 +2 -2
- package/design-tokens/legacy-2017/tokens/components/popover.json5 +1 -0
- package/design-tokens/legacy-2017/tokens/components/radio.json5 +1 -0
- package/design-tokens/legacy-2017/tokens/properties/typography.json5 +42 -33
- package/design-tokens/legacy-2017/tokens.d.ts +44 -35
- package/design-tokens/pt-2022/tokens/components/form-field.json5 +2 -2
- package/design-tokens/pt-2022/tokens/components/link.json5 +2 -2
- package/design-tokens/pt-2022/tokens/components/popover.json5 +7 -6
- package/design-tokens/pt-2022/tokens/properties/typography.json5 +33 -24
- package/design-tokens/pt-2022/tokens.d.ts +36 -28
- package/esm2020/button/button.component.mjs +2 -2
- package/esm2020/core/formatters/date/formatter.mjs +7 -3
- package/esm2020/design-tokens/legacy-2017/tokens.mjs +45 -36
- package/esm2020/design-tokens/pt-2022/tokens.mjs +37 -29
- package/esm2020/list/list-selection.component.mjs +227 -217
- package/esm2020/popover/popover-confirm.component.mjs +3 -3
- package/esm2020/popover/popover.component.mjs +3 -3
- package/esm2020/toast/toast.component.mjs +13 -10
- package/esm2020/tree/tree-option.component.mjs +5 -1
- package/esm2020/tree/tree-selection.component.mjs +7 -1
- package/fesm2015/ptsecurity-mosaic-button.mjs +2 -2
- package/fesm2015/ptsecurity-mosaic-button.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-core.mjs +6 -2
- package/fesm2015/ptsecurity-mosaic-core.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-design-tokens.mjs +90 -64
- package/fesm2015/ptsecurity-mosaic-design-tokens.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-list.mjs +235 -225
- package/fesm2015/ptsecurity-mosaic-list.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-popover.mjs +4 -4
- package/fesm2015/ptsecurity-mosaic-popover.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-toast.mjs +13 -8
- package/fesm2015/ptsecurity-mosaic-toast.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-tree.mjs +10 -0
- package/fesm2015/ptsecurity-mosaic-tree.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-button.mjs +2 -2
- package/fesm2020/ptsecurity-mosaic-button.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-core.mjs +6 -2
- package/fesm2020/ptsecurity-mosaic-core.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-design-tokens.mjs +90 -64
- package/fesm2020/ptsecurity-mosaic-design-tokens.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-list.mjs +230 -220
- package/fesm2020/ptsecurity-mosaic-list.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-popover.mjs +4 -4
- package/fesm2020/ptsecurity-mosaic-popover.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-toast.mjs +11 -8
- package/fesm2020/ptsecurity-mosaic-toast.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-tree.mjs +10 -0
- package/fesm2020/ptsecurity-mosaic-tree.mjs.map +1 -1
- package/list/list-selection.component.d.ts +53 -52
- package/package.json +4 -4
- package/prebuilt-themes/dark-theme.css +1 -1
- package/prebuilt-themes/default-theme.css +1 -1
- package/tree/tree-option.component.d.ts +1 -0
package/_theming.scss
CHANGED
@@ -706,12 +706,12 @@ $form-field-light-color-scheme-border: #bdc7d1;
|
|
706
706
|
$form-field-light-color-scheme-background: white;
|
707
707
|
$form-field-light-color-scheme-states-hover-border: #8c99a5;
|
708
708
|
$form-field-light-color-scheme-states-invalid-border: #db3c55;
|
709
|
-
$form-field-light-color-scheme-states-invalid-background:
|
709
|
+
$form-field-light-color-scheme-states-invalid-background: #fff3f3;
|
710
710
|
$form-field-dark-color-scheme-border: #515e69;
|
711
711
|
$form-field-dark-color-scheme-background: transparent;
|
712
712
|
$form-field-dark-color-scheme-states-hover-border: #515e69;
|
713
713
|
$form-field-dark-color-scheme-states-invalid-border: #b9023a;
|
714
|
-
$form-field-dark-color-scheme-states-invalid-background: transparent;
|
714
|
+
$form-field-dark-color-scheme-states-invalid-background: mix(#41000b, transparent, 30%);
|
715
715
|
$form-field-size-height: 32px;
|
716
716
|
$form-field-size-border-width: 1px;
|
717
717
|
$form-field-size-border-radius: 4px;
|
@@ -805,7 +805,7 @@ $input-size-width: 100%;
|
|
805
805
|
$input-font-default: body;
|
806
806
|
$input-font-monospace: body-mono;
|
807
807
|
$link-light-color-scheme-text: #0374eb;
|
808
|
-
$link-light-color-scheme-border-bottom: rgba(#
|
808
|
+
$link-light-color-scheme-border-bottom: rgba(#0374eb, 0.32);
|
809
809
|
$link-light-color-scheme-state-visited-text: #864775;
|
810
810
|
$link-light-color-scheme-state-visited-border-bottom: rgba(#864775, 0.32);
|
811
811
|
$link-light-color-scheme-state-hover-text: #0059b8;
|
@@ -813,7 +813,7 @@ $link-light-color-scheme-state-hover-border-bottom: rgba(#0059b8, 0.32);
|
|
813
813
|
$link-light-color-scheme-state-active: #014b9d;
|
814
814
|
$link-light-color-scheme-state-focused-outline: #0374eb;
|
815
815
|
$link-dark-color-scheme-text: #5697ff;
|
816
|
-
$link-dark-color-scheme-border-bottom: rgba(#
|
816
|
+
$link-dark-color-scheme-border-bottom: rgba(#5697ff, 0.32);;
|
817
817
|
$link-dark-color-scheme-state-visited-text: #bb78a7;
|
818
818
|
$link-dark-color-scheme-state-visited-border-bottom: rgba(#bb78a7, 0.32);
|
819
819
|
$link-dark-color-scheme-state-hover-text: #4187ff;
|
@@ -916,6 +916,7 @@ $popover-dark-color-scheme-border: #333f4a;
|
|
916
916
|
$popover-size-max-height: 480px;
|
917
917
|
$popover-size-padding: 16px;
|
918
918
|
$popover-size-border-radius: 4px;
|
919
|
+
$popover-size-border-width: 1px;
|
919
920
|
$popover-size-arrow-size: 12px;
|
920
921
|
$popover-size-trigger-margin: 9px;
|
921
922
|
$popover-size-small-width: 200px;
|
@@ -1853,63 +1854,63 @@ $typography-display-1-line-height: 76px;
|
|
1853
1854
|
$typography-display-1-letter-spacing: normal;
|
1854
1855
|
$typography-display-1-font-weight: normal;
|
1855
1856
|
$typography-display-1-font-family: 'TT Positive', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1856
|
-
$typography-display-1-text-transform:
|
1857
|
-
$typography-display-1-font-feature-settings:
|
1857
|
+
$typography-display-1-text-transform: initial;
|
1858
|
+
$typography-display-1-font-feature-settings: initial;
|
1858
1859
|
$typography-display-2-font-size: 45px;
|
1859
1860
|
$typography-display-2-line-height: 56px;
|
1860
1861
|
$typography-display-2-letter-spacing: normal;
|
1861
1862
|
$typography-display-2-font-weight: normal;
|
1862
1863
|
$typography-display-2-font-family: 'TT Positive', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1863
|
-
$typography-display-2-text-transform:
|
1864
|
-
$typography-display-2-font-feature-settings:
|
1864
|
+
$typography-display-2-text-transform: initial;
|
1865
|
+
$typography-display-2-font-feature-settings: initial;
|
1865
1866
|
$typography-display-3-font-size: 34px;
|
1866
1867
|
$typography-display-3-line-height: 44px;
|
1867
1868
|
$typography-display-3-letter-spacing: normal;
|
1868
1869
|
$typography-display-3-font-weight: normal;
|
1869
1870
|
$typography-display-3-font-family: 'TT Positive', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1870
|
-
$typography-display-3-text-transform:
|
1871
|
-
$typography-display-3-font-feature-settings:
|
1871
|
+
$typography-display-3-text-transform: initial;
|
1872
|
+
$typography-display-3-font-feature-settings: initial;
|
1872
1873
|
$typography-headline-font-size: 24px;
|
1873
1874
|
$typography-headline-line-height: 32px;
|
1874
1875
|
$typography-headline-letter-spacing: normal;
|
1875
1876
|
$typography-headline-font-weight: normal;
|
1876
1877
|
$typography-headline-font-family: 'TT Positive', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1877
|
-
$typography-headline-text-transform:
|
1878
|
-
$typography-headline-font-feature-settings:
|
1878
|
+
$typography-headline-text-transform: initial;
|
1879
|
+
$typography-headline-font-feature-settings: initial;
|
1879
1880
|
$typography-title-font-size: 20px;
|
1880
1881
|
$typography-title-line-height: 28px;
|
1881
1882
|
$typography-title-letter-spacing: normal;
|
1882
1883
|
$typography-title-font-weight: 600;
|
1883
1884
|
$typography-title-font-family: 'TT Positive', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1884
|
-
$typography-title-text-transform:
|
1885
|
-
$typography-title-font-feature-settings:
|
1885
|
+
$typography-title-text-transform: initial;
|
1886
|
+
$typography-title-font-feature-settings: initial;
|
1886
1887
|
$typography-subheading-font-size: 15px;
|
1887
1888
|
$typography-subheading-line-height: 20px;
|
1888
1889
|
$typography-subheading-letter-spacing: -0.009em;
|
1889
1890
|
$typography-subheading-font-weight: 600;
|
1890
1891
|
$typography-subheading-font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1891
|
-
$typography-subheading-text-transform:
|
1892
|
+
$typography-subheading-text-transform: initial;
|
1892
1893
|
$typography-subheading-font-feature-settings: "ss01" on, "ss04" on;
|
1893
1894
|
$typography-body-font-size: 15px;
|
1894
1895
|
$typography-body-line-height: 20px;
|
1895
1896
|
$typography-body-letter-spacing: -0.009em;
|
1896
1897
|
$typography-body-font-weight: normal;
|
1897
1898
|
$typography-body-font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1898
|
-
$typography-body-text-transform:
|
1899
|
+
$typography-body-text-transform: initial;
|
1899
1900
|
$typography-body-font-feature-settings: "ss01" on, "ss04" on;
|
1900
1901
|
$typography-body-tabular-font-size: 15px;
|
1901
1902
|
$typography-body-tabular-line-height: 20px;
|
1902
1903
|
$typography-body-tabular-letter-spacing: -0.009em;
|
1903
1904
|
$typography-body-tabular-font-weight: normal;
|
1904
1905
|
$typography-body-tabular-font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1905
|
-
$typography-body-tabular-text-transform:
|
1906
|
+
$typography-body-tabular-text-transform: initial;
|
1906
1907
|
$typography-body-tabular-font-feature-settings: "tnum" on, "ss01" on, "ss04" on;
|
1907
1908
|
$typography-body-strong-font-size: 15px;
|
1908
1909
|
$typography-body-strong-line-height: 20px;
|
1909
1910
|
$typography-body-strong-letter-spacing: -0.009em;
|
1910
1911
|
$typography-body-strong-font-weight: 500;
|
1911
1912
|
$typography-body-strong-font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1912
|
-
$typography-body-strong-text-transform:
|
1913
|
+
$typography-body-strong-text-transform: initial;
|
1913
1914
|
$typography-body-strong-font-feature-settings: "ss01" on, "ss04" on;
|
1914
1915
|
$typography-body-caps-font-size: 15px;
|
1915
1916
|
$typography-body-caps-line-height: 20px;
|
@@ -1923,22 +1924,29 @@ $typography-body-mono-line-height: 20px;
|
|
1923
1924
|
$typography-body-mono-letter-spacing: normal;
|
1924
1925
|
$typography-body-mono-font-weight: normal;
|
1925
1926
|
$typography-body-mono-font-family: 'Roboto Mono', 'Consolas', 'Menlo', 'Monaco', monospace;
|
1926
|
-
$typography-body-mono-text-transform:
|
1927
|
-
$typography-body-mono-font-feature-settings:
|
1927
|
+
$typography-body-mono-text-transform: initial;
|
1928
|
+
$typography-body-mono-font-feature-settings: initial;
|
1928
1929
|
$typography-caption-font-size: 13px;
|
1929
1930
|
$typography-caption-line-height: 16px;
|
1930
1931
|
$typography-caption-letter-spacing: -0.0025em;
|
1931
1932
|
$typography-caption-font-weight: normal;
|
1932
1933
|
$typography-caption-font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1933
|
-
$typography-caption-text-transform:
|
1934
|
+
$typography-caption-text-transform: initial;
|
1934
1935
|
$typography-caption-font-feature-settings: "ss01" on, "ss04" on;
|
1935
1936
|
$typography-caption-tabular-font-size: 13px;
|
1936
1937
|
$typography-caption-tabular-line-height: 16px;
|
1937
1938
|
$typography-caption-tabular-letter-spacing: -0.0025em;
|
1938
1939
|
$typography-caption-tabular-font-weight: normal;
|
1939
1940
|
$typography-caption-tabular-font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1940
|
-
$typography-caption-tabular-text-transform:
|
1941
|
+
$typography-caption-tabular-text-transform: initial;
|
1941
1942
|
$typography-caption-tabular-font-feature-settings: "tnum" on, "ss01" on, "ss04" on;
|
1943
|
+
$typography-caption-strong-font-size: 13px;
|
1944
|
+
$typography-caption-strong-line-height: 16px;
|
1945
|
+
$typography-caption-strong-letter-spacing: -0.0025em;
|
1946
|
+
$typography-caption-strong-font-weight: 500;
|
1947
|
+
$typography-caption-strong-font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1948
|
+
$typography-caption-strong-text-transform: initial;
|
1949
|
+
$typography-caption-strong-font-feature-settings: "tnum" on, "ss01" on, "ss04" on;
|
1942
1950
|
$typography-caption-caps-font-size: 13px;
|
1943
1951
|
$typography-caption-caps-line-height: 16px;
|
1944
1952
|
$typography-caption-caps-letter-spacing: 1.5px;
|
@@ -1951,21 +1959,21 @@ $typography-caption-mono-line-height: 16px;
|
|
1951
1959
|
$typography-caption-mono-letter-spacing: normal;
|
1952
1960
|
$typography-caption-mono-font-weight: normal;
|
1953
1961
|
$typography-caption-mono-font-family: 'Roboto Mono', 'Consolas', 'Menlo', 'Monaco', monospace;
|
1954
|
-
$typography-caption-mono-text-transform:
|
1955
|
-
$typography-caption-mono-font-feature-settings:
|
1962
|
+
$typography-caption-mono-text-transform: initial;
|
1963
|
+
$typography-caption-mono-font-feature-settings: initial;
|
1956
1964
|
$typography-small-text-font-size: 13px;
|
1957
1965
|
$typography-small-text-line-height: 16px;
|
1958
1966
|
$typography-small-text-letter-spacing: -0.0025em;
|
1959
1967
|
$typography-small-text-font-weight: normal;
|
1960
1968
|
$typography-small-text-font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1961
|
-
$typography-small-text-text-transform:
|
1969
|
+
$typography-small-text-text-transform: initial;
|
1962
1970
|
$typography-small-text-font-feature-settings: "ss01" on, "ss04" on;
|
1963
1971
|
$typography-extra-small-text-font-size: 11px;
|
1964
1972
|
$typography-extra-small-text-line-height: 16px;
|
1965
1973
|
$typography-extra-small-text-letter-spacing: 0.005em;
|
1966
1974
|
$typography-extra-small-text-font-weight: normal;
|
1967
1975
|
$typography-extra-small-text-font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1968
|
-
$typography-extra-small-text-text-transform:
|
1976
|
+
$typography-extra-small-text-text-transform: initial;
|
1969
1977
|
$typography-extra-small-text-font-feature-settings: "ss01" on, "ss04" on;
|
1970
1978
|
$typography-extra-small-text-caps-font-size: 11px;
|
1971
1979
|
$typography-extra-small-text-caps-line-height: 16px;
|
@@ -1979,8 +1987,8 @@ $typography-extra-small-text-mono-line-height: 16px;
|
|
1979
1987
|
$typography-extra-small-text-mono-letter-spacing: 0px;
|
1980
1988
|
$typography-extra-small-text-mono-font-weight: normal;
|
1981
1989
|
$typography-extra-small-text-mono-font-family: 'Roboto Mono', 'Consolas', 'Menlo', 'Monaco', monospace;
|
1982
|
-
$typography-extra-small-text-mono-text-transform:
|
1983
|
-
$typography-extra-small-text-mono-font-feature-settings:
|
1990
|
+
$typography-extra-small-text-mono-text-transform: initial;
|
1991
|
+
$typography-extra-small-text-mono-font-feature-settings: initial;
|
1984
1992
|
|
1985
1993
|
$mosaic: (
|
1986
1994
|
'typography': (
|
@@ -2101,6 +2109,15 @@ $mosaic: (
|
|
2101
2109
|
'text-transform': $typography-caption-tabular-text-transform,
|
2102
2110
|
'font-feature-settings': $typography-caption-tabular-font-feature-settings
|
2103
2111
|
),
|
2112
|
+
'caption-strong': (
|
2113
|
+
'font-size': $typography-caption-strong-font-size,
|
2114
|
+
'line-height': $typography-caption-strong-line-height,
|
2115
|
+
'letter-spacing': $typography-caption-strong-letter-spacing,
|
2116
|
+
'font-weight': $typography-caption-strong-font-weight,
|
2117
|
+
'font-family': $typography-caption-strong-font-family,
|
2118
|
+
'text-transform': $typography-caption-strong-text-transform,
|
2119
|
+
'font-feature-settings': $typography-caption-strong-font-feature-settings
|
2120
|
+
),
|
2104
2121
|
'caption-caps': (
|
2105
2122
|
'font-size': $typography-caption-caps-font-size,
|
2106
2123
|
'line-height': $typography-caption-caps-line-height,
|
@@ -4050,6 +4067,10 @@ $fonts: (
|
|
4050
4067
|
@include mc-typography-level-to-styles($config, small-text);
|
4051
4068
|
}
|
4052
4069
|
|
4070
|
+
.mc-caption_strong {
|
4071
|
+
@include mc-typography-level-to-styles($config, caption-strong);
|
4072
|
+
}
|
4073
|
+
|
4053
4074
|
.mc-extra-small-text {
|
4054
4075
|
@include mc-typography-level-to-styles($config, extra-small-text);
|
4055
4076
|
}
|
@@ -4080,6 +4101,7 @@ $fonts: (
|
|
4080
4101
|
|
4081
4102
|
caption: map-get($typography, caption),
|
4082
4103
|
caption-caps: map-get($typography, caption-caps),
|
4104
|
+
caption-strong: map-get($typography, caption-strong),
|
4083
4105
|
caption-mono: map-get($typography, caption-mono),
|
4084
4106
|
caption-tabular: map-get($typography, caption-tabular),
|
4085
4107
|
|
package/_visual.scss
CHANGED
@@ -608,12 +608,12 @@ $form-field-light-color-scheme-border: #bdc7d1;
|
|
608
608
|
$form-field-light-color-scheme-background: white;
|
609
609
|
$form-field-light-color-scheme-states-hover-border: #8c99a5;
|
610
610
|
$form-field-light-color-scheme-states-invalid-border: #db3c55;
|
611
|
-
$form-field-light-color-scheme-states-invalid-background:
|
611
|
+
$form-field-light-color-scheme-states-invalid-background: #fff3f3;
|
612
612
|
$form-field-dark-color-scheme-border: #515e69;
|
613
613
|
$form-field-dark-color-scheme-background: transparent;
|
614
614
|
$form-field-dark-color-scheme-states-hover-border: #515e69;
|
615
615
|
$form-field-dark-color-scheme-states-invalid-border: #b9023a;
|
616
|
-
$form-field-dark-color-scheme-states-invalid-background: transparent;
|
616
|
+
$form-field-dark-color-scheme-states-invalid-background: mix(#41000b, transparent, 30%);
|
617
617
|
$form-field-size-height: 32px;
|
618
618
|
$form-field-size-border-width: 1px;
|
619
619
|
$form-field-size-border-radius: 4px;
|
@@ -707,7 +707,7 @@ $input-size-width: 100%;
|
|
707
707
|
$input-font-default: body;
|
708
708
|
$input-font-monospace: body-mono;
|
709
709
|
$link-light-color-scheme-text: #0374eb;
|
710
|
-
$link-light-color-scheme-border-bottom: rgba(#
|
710
|
+
$link-light-color-scheme-border-bottom: rgba(#0374eb, 0.32);
|
711
711
|
$link-light-color-scheme-state-visited-text: #864775;
|
712
712
|
$link-light-color-scheme-state-visited-border-bottom: rgba(#864775, 0.32);
|
713
713
|
$link-light-color-scheme-state-hover-text: #0059b8;
|
@@ -715,7 +715,7 @@ $link-light-color-scheme-state-hover-border-bottom: rgba(#0059b8, 0.32);
|
|
715
715
|
$link-light-color-scheme-state-active: #014b9d;
|
716
716
|
$link-light-color-scheme-state-focused-outline: #0374eb;
|
717
717
|
$link-dark-color-scheme-text: #5697ff;
|
718
|
-
$link-dark-color-scheme-border-bottom: rgba(#
|
718
|
+
$link-dark-color-scheme-border-bottom: rgba(#5697ff, 0.32);;
|
719
719
|
$link-dark-color-scheme-state-visited-text: #bb78a7;
|
720
720
|
$link-dark-color-scheme-state-visited-border-bottom: rgba(#bb78a7, 0.32);
|
721
721
|
$link-dark-color-scheme-state-hover-text: #4187ff;
|
@@ -818,6 +818,7 @@ $popover-dark-color-scheme-border: #333f4a;
|
|
818
818
|
$popover-size-max-height: 480px;
|
819
819
|
$popover-size-padding: 16px;
|
820
820
|
$popover-size-border-radius: 4px;
|
821
|
+
$popover-size-border-width: 1px;
|
821
822
|
$popover-size-arrow-size: 12px;
|
822
823
|
$popover-size-trigger-margin: 9px;
|
823
824
|
$popover-size-small-width: 200px;
|
@@ -1755,63 +1756,63 @@ $typography-display-1-line-height: 76px;
|
|
1755
1756
|
$typography-display-1-letter-spacing: normal;
|
1756
1757
|
$typography-display-1-font-weight: normal;
|
1757
1758
|
$typography-display-1-font-family: 'TT Positive', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1758
|
-
$typography-display-1-text-transform:
|
1759
|
-
$typography-display-1-font-feature-settings:
|
1759
|
+
$typography-display-1-text-transform: initial;
|
1760
|
+
$typography-display-1-font-feature-settings: initial;
|
1760
1761
|
$typography-display-2-font-size: 45px;
|
1761
1762
|
$typography-display-2-line-height: 56px;
|
1762
1763
|
$typography-display-2-letter-spacing: normal;
|
1763
1764
|
$typography-display-2-font-weight: normal;
|
1764
1765
|
$typography-display-2-font-family: 'TT Positive', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1765
|
-
$typography-display-2-text-transform:
|
1766
|
-
$typography-display-2-font-feature-settings:
|
1766
|
+
$typography-display-2-text-transform: initial;
|
1767
|
+
$typography-display-2-font-feature-settings: initial;
|
1767
1768
|
$typography-display-3-font-size: 34px;
|
1768
1769
|
$typography-display-3-line-height: 44px;
|
1769
1770
|
$typography-display-3-letter-spacing: normal;
|
1770
1771
|
$typography-display-3-font-weight: normal;
|
1771
1772
|
$typography-display-3-font-family: 'TT Positive', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1772
|
-
$typography-display-3-text-transform:
|
1773
|
-
$typography-display-3-font-feature-settings:
|
1773
|
+
$typography-display-3-text-transform: initial;
|
1774
|
+
$typography-display-3-font-feature-settings: initial;
|
1774
1775
|
$typography-headline-font-size: 24px;
|
1775
1776
|
$typography-headline-line-height: 32px;
|
1776
1777
|
$typography-headline-letter-spacing: normal;
|
1777
1778
|
$typography-headline-font-weight: normal;
|
1778
1779
|
$typography-headline-font-family: 'TT Positive', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1779
|
-
$typography-headline-text-transform:
|
1780
|
-
$typography-headline-font-feature-settings:
|
1780
|
+
$typography-headline-text-transform: initial;
|
1781
|
+
$typography-headline-font-feature-settings: initial;
|
1781
1782
|
$typography-title-font-size: 20px;
|
1782
1783
|
$typography-title-line-height: 28px;
|
1783
1784
|
$typography-title-letter-spacing: normal;
|
1784
1785
|
$typography-title-font-weight: 600;
|
1785
1786
|
$typography-title-font-family: 'TT Positive', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1786
|
-
$typography-title-text-transform:
|
1787
|
-
$typography-title-font-feature-settings:
|
1787
|
+
$typography-title-text-transform: initial;
|
1788
|
+
$typography-title-font-feature-settings: initial;
|
1788
1789
|
$typography-subheading-font-size: 15px;
|
1789
1790
|
$typography-subheading-line-height: 20px;
|
1790
1791
|
$typography-subheading-letter-spacing: -0.009em;
|
1791
1792
|
$typography-subheading-font-weight: 600;
|
1792
1793
|
$typography-subheading-font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1793
|
-
$typography-subheading-text-transform:
|
1794
|
+
$typography-subheading-text-transform: initial;
|
1794
1795
|
$typography-subheading-font-feature-settings: "ss01" on, "ss04" on;
|
1795
1796
|
$typography-body-font-size: 15px;
|
1796
1797
|
$typography-body-line-height: 20px;
|
1797
1798
|
$typography-body-letter-spacing: -0.009em;
|
1798
1799
|
$typography-body-font-weight: normal;
|
1799
1800
|
$typography-body-font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1800
|
-
$typography-body-text-transform:
|
1801
|
+
$typography-body-text-transform: initial;
|
1801
1802
|
$typography-body-font-feature-settings: "ss01" on, "ss04" on;
|
1802
1803
|
$typography-body-tabular-font-size: 15px;
|
1803
1804
|
$typography-body-tabular-line-height: 20px;
|
1804
1805
|
$typography-body-tabular-letter-spacing: -0.009em;
|
1805
1806
|
$typography-body-tabular-font-weight: normal;
|
1806
1807
|
$typography-body-tabular-font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1807
|
-
$typography-body-tabular-text-transform:
|
1808
|
+
$typography-body-tabular-text-transform: initial;
|
1808
1809
|
$typography-body-tabular-font-feature-settings: "tnum" on, "ss01" on, "ss04" on;
|
1809
1810
|
$typography-body-strong-font-size: 15px;
|
1810
1811
|
$typography-body-strong-line-height: 20px;
|
1811
1812
|
$typography-body-strong-letter-spacing: -0.009em;
|
1812
1813
|
$typography-body-strong-font-weight: 500;
|
1813
1814
|
$typography-body-strong-font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1814
|
-
$typography-body-strong-text-transform:
|
1815
|
+
$typography-body-strong-text-transform: initial;
|
1815
1816
|
$typography-body-strong-font-feature-settings: "ss01" on, "ss04" on;
|
1816
1817
|
$typography-body-caps-font-size: 15px;
|
1817
1818
|
$typography-body-caps-line-height: 20px;
|
@@ -1825,22 +1826,29 @@ $typography-body-mono-line-height: 20px;
|
|
1825
1826
|
$typography-body-mono-letter-spacing: normal;
|
1826
1827
|
$typography-body-mono-font-weight: normal;
|
1827
1828
|
$typography-body-mono-font-family: 'Roboto Mono', 'Consolas', 'Menlo', 'Monaco', monospace;
|
1828
|
-
$typography-body-mono-text-transform:
|
1829
|
-
$typography-body-mono-font-feature-settings:
|
1829
|
+
$typography-body-mono-text-transform: initial;
|
1830
|
+
$typography-body-mono-font-feature-settings: initial;
|
1830
1831
|
$typography-caption-font-size: 13px;
|
1831
1832
|
$typography-caption-line-height: 16px;
|
1832
1833
|
$typography-caption-letter-spacing: -0.0025em;
|
1833
1834
|
$typography-caption-font-weight: normal;
|
1834
1835
|
$typography-caption-font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1835
|
-
$typography-caption-text-transform:
|
1836
|
+
$typography-caption-text-transform: initial;
|
1836
1837
|
$typography-caption-font-feature-settings: "ss01" on, "ss04" on;
|
1837
1838
|
$typography-caption-tabular-font-size: 13px;
|
1838
1839
|
$typography-caption-tabular-line-height: 16px;
|
1839
1840
|
$typography-caption-tabular-letter-spacing: -0.0025em;
|
1840
1841
|
$typography-caption-tabular-font-weight: normal;
|
1841
1842
|
$typography-caption-tabular-font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1842
|
-
$typography-caption-tabular-text-transform:
|
1843
|
+
$typography-caption-tabular-text-transform: initial;
|
1843
1844
|
$typography-caption-tabular-font-feature-settings: "tnum" on, "ss01" on, "ss04" on;
|
1845
|
+
$typography-caption-strong-font-size: 13px;
|
1846
|
+
$typography-caption-strong-line-height: 16px;
|
1847
|
+
$typography-caption-strong-letter-spacing: -0.0025em;
|
1848
|
+
$typography-caption-strong-font-weight: 500;
|
1849
|
+
$typography-caption-strong-font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1850
|
+
$typography-caption-strong-text-transform: initial;
|
1851
|
+
$typography-caption-strong-font-feature-settings: "tnum" on, "ss01" on, "ss04" on;
|
1844
1852
|
$typography-caption-caps-font-size: 13px;
|
1845
1853
|
$typography-caption-caps-line-height: 16px;
|
1846
1854
|
$typography-caption-caps-letter-spacing: 1.5px;
|
@@ -1853,21 +1861,21 @@ $typography-caption-mono-line-height: 16px;
|
|
1853
1861
|
$typography-caption-mono-letter-spacing: normal;
|
1854
1862
|
$typography-caption-mono-font-weight: normal;
|
1855
1863
|
$typography-caption-mono-font-family: 'Roboto Mono', 'Consolas', 'Menlo', 'Monaco', monospace;
|
1856
|
-
$typography-caption-mono-text-transform:
|
1857
|
-
$typography-caption-mono-font-feature-settings:
|
1864
|
+
$typography-caption-mono-text-transform: initial;
|
1865
|
+
$typography-caption-mono-font-feature-settings: initial;
|
1858
1866
|
$typography-small-text-font-size: 13px;
|
1859
1867
|
$typography-small-text-line-height: 16px;
|
1860
1868
|
$typography-small-text-letter-spacing: -0.0025em;
|
1861
1869
|
$typography-small-text-font-weight: normal;
|
1862
1870
|
$typography-small-text-font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1863
|
-
$typography-small-text-text-transform:
|
1871
|
+
$typography-small-text-text-transform: initial;
|
1864
1872
|
$typography-small-text-font-feature-settings: "ss01" on, "ss04" on;
|
1865
1873
|
$typography-extra-small-text-font-size: 11px;
|
1866
1874
|
$typography-extra-small-text-line-height: 16px;
|
1867
1875
|
$typography-extra-small-text-letter-spacing: 0.005em;
|
1868
1876
|
$typography-extra-small-text-font-weight: normal;
|
1869
1877
|
$typography-extra-small-text-font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
1870
|
-
$typography-extra-small-text-text-transform:
|
1878
|
+
$typography-extra-small-text-text-transform: initial;
|
1871
1879
|
$typography-extra-small-text-font-feature-settings: "ss01" on, "ss04" on;
|
1872
1880
|
$typography-extra-small-text-caps-font-size: 11px;
|
1873
1881
|
$typography-extra-small-text-caps-line-height: 16px;
|
@@ -1881,8 +1889,8 @@ $typography-extra-small-text-mono-line-height: 16px;
|
|
1881
1889
|
$typography-extra-small-text-mono-letter-spacing: 0px;
|
1882
1890
|
$typography-extra-small-text-mono-font-weight: normal;
|
1883
1891
|
$typography-extra-small-text-mono-font-family: 'Roboto Mono', 'Consolas', 'Menlo', 'Monaco', monospace;
|
1884
|
-
$typography-extra-small-text-mono-text-transform:
|
1885
|
-
$typography-extra-small-text-mono-font-feature-settings:
|
1892
|
+
$typography-extra-small-text-mono-text-transform: initial;
|
1893
|
+
$typography-extra-small-text-mono-font-feature-settings: initial;
|
1886
1894
|
|
1887
1895
|
$mosaic: (
|
1888
1896
|
'typography': (
|
@@ -2003,6 +2011,15 @@ $mosaic: (
|
|
2003
2011
|
'text-transform': $typography-caption-tabular-text-transform,
|
2004
2012
|
'font-feature-settings': $typography-caption-tabular-font-feature-settings
|
2005
2013
|
),
|
2014
|
+
'caption-strong': (
|
2015
|
+
'font-size': $typography-caption-strong-font-size,
|
2016
|
+
'line-height': $typography-caption-strong-line-height,
|
2017
|
+
'letter-spacing': $typography-caption-strong-letter-spacing,
|
2018
|
+
'font-weight': $typography-caption-strong-font-weight,
|
2019
|
+
'font-family': $typography-caption-strong-font-family,
|
2020
|
+
'text-transform': $typography-caption-strong-text-transform,
|
2021
|
+
'font-feature-settings': $typography-caption-strong-font-feature-settings
|
2022
|
+
),
|
2006
2023
|
'caption-caps': (
|
2007
2024
|
'font-size': $typography-caption-caps-font-size,
|
2008
2025
|
'line-height': $typography-caption-caps-line-height,
|
@@ -73,6 +73,8 @@ export declare class DateFormatter<D> {
|
|
73
73
|
/**
|
74
74
|
* @param date - date
|
75
75
|
* @param template - template
|
76
|
+
* @param seconds - use seconds
|
77
|
+
* @param milliseconds - use milliseconds
|
76
78
|
* @returns relative date by template
|
77
79
|
*/
|
78
80
|
relativeDate(date: D, template: FormatterRelativeTemplate, seconds?: boolean, milliseconds?: boolean): string;
|
@@ -158,6 +160,8 @@ export declare class DateFormatter<D> {
|
|
158
160
|
* @param startDate - start date
|
159
161
|
* @param endDate - end date
|
160
162
|
* @param template - template
|
163
|
+
* @param seconds - use seconds
|
164
|
+
* @param milliseconds - use milliseconds
|
161
165
|
* @returns range date in template format with time
|
162
166
|
*/
|
163
167
|
rangeDateTime(startDate: D, endDate: D, template: FormatterRangeTemplate, seconds?: boolean, milliseconds?: boolean): string;
|
@@ -195,10 +199,10 @@ export declare class DateFormatter<D> {
|
|
195
199
|
*/
|
196
200
|
rangeMiddleDateTime(startDate: D, endDate: D, options?: DateTimeOptions): string;
|
197
201
|
/**
|
198
|
-
* @param date
|
202
|
+
* @param date - date for compile
|
199
203
|
* @param variables - date template variables
|
200
204
|
* @param currYearForced - param for absolute days formatting
|
201
|
-
* @
|
205
|
+
* @returns compiledVariables
|
202
206
|
*/
|
203
207
|
private compileVariables;
|
204
208
|
private isBeforeYesterday;
|
@@ -10,7 +10,7 @@
|
|
10
10
|
},
|
11
11
|
invalid: {
|
12
12
|
border: { value: '{light-color-scheme.error.default}' },
|
13
|
-
background: { value: '
|
13
|
+
background: { value: '{light-color-scheme.error.palette.value.40}' }
|
14
14
|
}
|
15
15
|
}
|
16
16
|
},
|
@@ -24,7 +24,7 @@
|
|
24
24
|
},
|
25
25
|
invalid: {
|
26
26
|
border: { value: '{dark-color-scheme.error.default}' },
|
27
|
-
background: { value: 'transparent' }
|
27
|
+
background: { value: 'mix({dark-color-scheme.error.palette.value.800}, transparent, 30%)' }
|
28
28
|
}
|
29
29
|
}
|
30
30
|
},
|