@ni/nimble-components 2.1.3 → 3.2.0
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/esm/breadcrumb/index.d.ts +12 -0
- package/dist/esm/breadcrumb/index.js +16 -0
- package/dist/esm/breadcrumb/index.js.map +1 -0
- package/dist/esm/breadcrumb/styles.d.ts +1 -0
- package/dist/esm/breadcrumb/styles.js +25 -0
- package/dist/esm/breadcrumb/styles.js.map +1 -0
- package/dist/esm/breadcrumb-item/index.d.ts +12 -0
- package/dist/esm/breadcrumb-item/index.js +20 -0
- package/dist/esm/breadcrumb-item/index.js.map +1 -0
- package/dist/esm/breadcrumb-item/styles.d.ts +1 -0
- package/dist/esm/breadcrumb-item/styles.js +65 -0
- package/dist/esm/breadcrumb-item/styles.js.map +1 -0
- package/dist/esm/button/index.js +1 -1
- package/dist/esm/button/index.js.map +1 -1
- package/dist/esm/button/styles.d.ts +1 -0
- package/dist/esm/button/styles.js +82 -0
- package/dist/esm/button/styles.js.map +1 -0
- package/dist/esm/checkbox/styles.js +11 -13
- package/dist/esm/checkbox/styles.js.map +1 -1
- package/dist/esm/drawer/index.js +2 -2
- package/dist/esm/drawer/index.js.map +1 -1
- package/dist/esm/drawer/styles.js +4 -6
- package/dist/esm/drawer/styles.js.map +1 -1
- package/dist/esm/icon-base/styles.js +1 -2
- package/dist/esm/icon-base/styles.js.map +1 -1
- package/dist/esm/listbox-option/styles.js +7 -8
- package/dist/esm/listbox-option/styles.js.map +1 -1
- package/dist/esm/menu/styles.js +4 -7
- package/dist/esm/menu/styles.js.map +1 -1
- package/dist/esm/menu-item/styles.js +6 -7
- package/dist/esm/menu-item/styles.js.map +1 -1
- package/dist/esm/nimble-components/src/breadcrumb/index.d.ts +12 -0
- package/dist/esm/nimble-components/src/breadcrumb/styles.d.ts +1 -0
- package/dist/esm/nimble-components/src/breadcrumb-item/index.d.ts +12 -0
- package/dist/esm/nimble-components/src/breadcrumb-item/styles.d.ts +1 -0
- package/dist/esm/nimble-components/src/button/styles.d.ts +1 -0
- package/dist/esm/nimble-components/src/theme-provider/design-token-names.d.ts +4 -0
- package/dist/esm/nimble-components/src/theme-provider/design-tokens.d.ts +56 -25
- package/dist/esm/number-field/styles.js +13 -19
- package/dist/esm/number-field/styles.js.map +1 -1
- package/dist/esm/patterns/button/styles.js +20 -21
- package/dist/esm/patterns/button/styles.js.map +1 -1
- package/dist/esm/select/styles.js +10 -12
- package/dist/esm/select/styles.js.map +1 -1
- package/dist/esm/tab/styles.js +6 -7
- package/dist/esm/tab/styles.js.map +1 -1
- package/dist/esm/tab-panel/styles.js +3 -4
- package/dist/esm/tab-panel/styles.js.map +1 -1
- package/dist/esm/tabs/styles.js +2 -2
- package/dist/esm/tabs-toolbar/styles.js +4 -5
- package/dist/esm/tabs-toolbar/styles.js.map +1 -1
- package/dist/esm/text-area/styles.js +18 -23
- package/dist/esm/text-area/styles.js.map +1 -1
- package/dist/esm/text-field/styles.js +27 -32
- package/dist/esm/text-field/styles.js.map +1 -1
- package/dist/esm/theme-provider/design-token-comments.js +73 -42
- package/dist/esm/theme-provider/design-token-comments.js.map +1 -1
- package/dist/esm/theme-provider/design-token-names.d.ts +4 -0
- package/dist/esm/theme-provider/design-token-names.js +60 -25
- package/dist/esm/theme-provider/design-token-names.js.map +1 -1
- package/dist/esm/theme-provider/design-tokens.d.ts +56 -25
- package/dist/esm/theme-provider/design-tokens.js +60 -30
- package/dist/esm/theme-provider/design-tokens.js.map +1 -1
- package/dist/esm/tree-item/styles.js +8 -9
- package/dist/esm/tree-item/styles.js.map +1 -1
- package/dist/tokens-internal.scss +267 -81
- package/dist/tokens.scss +138 -45
- package/package.json +2 -2
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Design token names should follow the token naming convention:
|
|
3
|
+
* See: https://github.com/ni/nimble/blob/main/packages/nimble-components/CONTRIBUTING.md#token-naming
|
|
4
|
+
*/
|
|
1
5
|
import type * as TokensNamespace from './design-tokens';
|
|
2
6
|
declare type TokenName = keyof typeof TokensNamespace;
|
|
3
7
|
export declare const tokenNames: {
|
|
@@ -1,42 +1,73 @@
|
|
|
1
|
-
export declare const
|
|
1
|
+
export declare const actionRgbPartialColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
2
2
|
export declare const applicationBackgroundColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
3
|
+
export declare const headerBackgroundColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
4
|
+
export declare const sectionBackgroundColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
3
5
|
export declare const fillColorSelected: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
6
|
+
export declare const fillSelectedRgbPartialColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
7
|
+
export declare const fillHoverSelectedColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
8
|
+
export declare const fillHoverColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
7
9
|
export declare const borderColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
8
|
-
export declare const
|
|
10
|
+
export declare const borderRgbPartialColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
9
11
|
export declare const failColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
10
12
|
export declare const warningColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
11
13
|
export declare const passColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
12
|
-
export declare const
|
|
14
|
+
export declare const borderHoverColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
13
15
|
export declare const iconColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
14
16
|
export declare const popupBoxShadowColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
15
17
|
export declare const popupBorderColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
16
18
|
export declare const controlHeight: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
19
|
+
export declare const smallPadding: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
17
20
|
export declare const standardPadding: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
18
21
|
export declare const labelHeight: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
19
22
|
export declare const borderWidth: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
20
23
|
export declare const iconSize: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
21
24
|
export declare const drawerWidth: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
22
|
-
export declare const
|
|
23
|
-
export declare const
|
|
24
|
-
export declare const
|
|
25
|
-
export declare const
|
|
26
|
-
export declare const
|
|
27
|
-
export declare const
|
|
28
|
-
export declare const
|
|
29
|
-
export declare const
|
|
30
|
-
export declare const
|
|
31
|
-
export declare const
|
|
32
|
-
export declare const
|
|
33
|
-
export declare const
|
|
34
|
-
export declare const
|
|
35
|
-
export declare const
|
|
36
|
-
export declare const
|
|
37
|
-
export declare const
|
|
38
|
-
export declare const
|
|
39
|
-
export declare const
|
|
25
|
+
export declare const headlinePlus1Font: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
26
|
+
export declare const headlineFont: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
27
|
+
export declare const titlePlus2Font: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
28
|
+
export declare const titlePlus1Font: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
29
|
+
export declare const titleFont: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
30
|
+
export declare const subtitlePlus1Font: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
31
|
+
export declare const subtitleFont: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
32
|
+
export declare const linkStandardFont: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
33
|
+
export declare const placeholderFont: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
34
|
+
export declare const bodyEmphasizedFont: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
35
|
+
export declare const bodyFont: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
36
|
+
export declare const groupHeaderFont: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
37
|
+
export declare const controlLabelFont: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
38
|
+
export declare const buttonLabelFont: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
39
|
+
export declare const tooltipCaptionFont: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
40
|
+
export declare const headlinePlus1FontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
41
|
+
export declare const headlineFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
42
|
+
export declare const titlePlus2FontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
43
|
+
export declare const titlePlus1FontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
44
|
+
export declare const titleFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
45
|
+
export declare const subtitlePlus1FontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
46
|
+
export declare const subtitleFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
47
|
+
export declare const linkStandardFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
48
|
+
export declare const placeholderFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
49
|
+
export declare const bodyEmphasizedFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
50
|
+
export declare const bodyFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
51
|
+
export declare const groupHeaderFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
52
|
+
export declare const controlLabelFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
53
|
+
export declare const buttonLabelFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
54
|
+
export declare const tooltipCaptionFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
55
|
+
export declare const headlinePlus1DisabledFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
56
|
+
export declare const headlineDisabledFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
57
|
+
export declare const titlePlus2DisabledFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
58
|
+
export declare const titlePlus1DisabledFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
59
|
+
export declare const titleDisabledFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
60
|
+
export declare const subtitlePlus1DisabledFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
61
|
+
export declare const subtitleDisabledFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
62
|
+
export declare const linkStandardDisabledFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
63
|
+
export declare const placeholderDisabledFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
64
|
+
export declare const bodyEmphasizedDisabledFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
65
|
+
export declare const bodyDisabledFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
66
|
+
export declare const groupHeaderDisabledFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
67
|
+
export declare const controlLabelDisabledFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
68
|
+
export declare const buttonLabelDisabledFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
69
|
+
export declare const tooltipCaptionDisabledFontColor: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
70
|
+
export declare const groupHeaderTextTransform: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
40
71
|
export declare const smallDelay: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
41
72
|
export declare const mediumDelay: import("@microsoft/fast-foundation").CSSDesignToken<string>;
|
|
42
|
-
export declare const
|
|
73
|
+
export declare const largeDelay: import("@microsoft/fast-foundation").CSSDesignToken<number>;
|
|
@@ -1,20 +1,19 @@
|
|
|
1
1
|
import { css } from '@microsoft/fast-element';
|
|
2
2
|
import { display } from '@microsoft/fast-foundation';
|
|
3
|
-
import { borderColor,
|
|
3
|
+
import { borderColor, borderRgbPartialColor, borderHoverColor, borderWidth, bodyFontColor, bodyDisabledFontColor, controlHeight, fillSelectedRgbPartialColor, iconSize, controlLabelFont, controlLabelFontColor, labelHeight, smallDelay, bodyFont } from '../theme-provider/design-tokens';
|
|
4
4
|
export const styles = css `
|
|
5
5
|
${display('inline-block')}
|
|
6
6
|
|
|
7
7
|
:host {
|
|
8
|
-
font
|
|
9
|
-
font-size: ${contentFontSize};
|
|
8
|
+
font: ${bodyFont};
|
|
10
9
|
outline: none;
|
|
11
10
|
user-select: none;
|
|
12
|
-
color: ${
|
|
11
|
+
color: ${bodyFontColor};
|
|
13
12
|
height: calc(${labelHeight} + ${controlHeight});
|
|
14
13
|
}
|
|
15
14
|
|
|
16
15
|
:host([disabled]) {
|
|
17
|
-
color: ${
|
|
16
|
+
color: ${bodyDisabledFontColor};
|
|
18
17
|
cursor: default;
|
|
19
18
|
}
|
|
20
19
|
|
|
@@ -24,8 +23,7 @@ export const styles = css `
|
|
|
24
23
|
display: flex;
|
|
25
24
|
flex-direction: row;
|
|
26
25
|
border-radius: 0px;
|
|
27
|
-
|
|
28
|
-
border-bottom: ${borderWidth} solid rgba(${borderColorRgbPartial}, 0.3);
|
|
26
|
+
border-bottom: ${borderWidth} solid rgba(${borderRgbPartialColor}, 0.3);
|
|
29
27
|
padding-bottom: 1px;
|
|
30
28
|
transition: border-bottom ${smallDelay}, padding-bottom ${smallDelay};
|
|
31
29
|
}
|
|
@@ -37,13 +35,13 @@ export const styles = css `
|
|
|
37
35
|
}
|
|
38
36
|
|
|
39
37
|
.root:hover {
|
|
40
|
-
border-bottom: 2px solid ${
|
|
38
|
+
border-bottom: 2px solid ${borderHoverColor};
|
|
41
39
|
padding-bottom: 0px;
|
|
42
40
|
}
|
|
43
41
|
|
|
44
42
|
:host([disabled]) .root,
|
|
45
43
|
:host([disabled]) .root:hover {
|
|
46
|
-
border-bottom: ${borderWidth} solid ${
|
|
44
|
+
border-bottom: ${borderWidth} solid ${bodyDisabledFontColor};
|
|
47
45
|
padding-bottom: 1px;
|
|
48
46
|
}
|
|
49
47
|
|
|
@@ -67,12 +65,12 @@ export const styles = css `
|
|
|
67
65
|
}
|
|
68
66
|
|
|
69
67
|
.control::selection {
|
|
70
|
-
color: ${
|
|
71
|
-
background: rgba(${
|
|
68
|
+
color: ${controlLabelFontColor};
|
|
69
|
+
background: rgba(${fillSelectedRgbPartialColor}, 0.3);
|
|
72
70
|
}
|
|
73
71
|
|
|
74
72
|
.control::placeholder {
|
|
75
|
-
color: ${
|
|
73
|
+
color: ${controlLabelFontColor};
|
|
76
74
|
}
|
|
77
75
|
|
|
78
76
|
.control:focus-within::placeholder {
|
|
@@ -80,17 +78,13 @@ export const styles = css `
|
|
|
80
78
|
}
|
|
81
79
|
|
|
82
80
|
.control[disabled]::placeholder {
|
|
83
|
-
color: ${
|
|
81
|
+
color: ${bodyDisabledFontColor};
|
|
84
82
|
}
|
|
85
83
|
|
|
86
84
|
.label {
|
|
87
85
|
display: flex;
|
|
88
|
-
color: ${
|
|
89
|
-
font
|
|
90
|
-
font-size: ${labelFontSize};
|
|
91
|
-
font-weight: ${labelFontWeight};
|
|
92
|
-
line-height: ${labelHeight};
|
|
93
|
-
text-transform: ${labelTextTransform};
|
|
86
|
+
color: ${controlLabelFontColor};
|
|
87
|
+
font: ${controlLabelFont};
|
|
94
88
|
}
|
|
95
89
|
|
|
96
90
|
.controls {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/number-field/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AACrD,OAAO,EACH,WAAW,EACX,qBAAqB,EACrB,gBAAgB,EAChB,WAAW,EACX,
|
|
1
|
+
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/number-field/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AACrD,OAAO,EACH,WAAW,EACX,qBAAqB,EACrB,gBAAgB,EAChB,WAAW,EACX,aAAa,EACb,qBAAqB,EACrB,aAAa,EACb,2BAA2B,EAC3B,QAAQ,EACR,gBAAgB,EAChB,qBAAqB,EACrB,WAAW,EACX,UAAU,EACV,QAAQ,EACX,MAAM,iCAAiC,CAAC;AAEzC,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CAAA;MACnB,OAAO,CAAC,cAAc,CAAC;;;gBAGb,QAAQ;;;iBAGP,aAAa;uBACP,WAAW,MAAM,aAAa;;;;iBAIpC,qBAAqB;;;;;;;;;;yBAUb,WAAW,eAAe,qBAAqB;;oCAEpC,UAAU,oBAAoB,UAAU;;;;;;;;;;mCAUzC,gBAAgB;;;;;;yBAM1B,WAAW,UAAU,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;iBAwBlD,qBAAqB;2BACX,2BAA2B;;;;iBAIrC,qBAAqB;;;;;;;;iBAQrB,qBAAqB;;;;;iBAKrB,qBAAqB;gBACtB,gBAAgB;;;;;;;;;;;;;;;;;;;;kBAoBd,QAAQ;iBACT,QAAQ;gBACT,WAAW;;CAE1B,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { css } from '@microsoft/fast-element';
|
|
2
2
|
import { display } from '@microsoft/fast-foundation';
|
|
3
3
|
import { focusVisible } from '../../utilities/style/focus';
|
|
4
|
-
import {
|
|
4
|
+
import { actionRgbPartialColor, borderHoverColor, borderRgbPartialColor, borderWidth, buttonLabelFont, buttonLabelFontColor, buttonLabelDisabledFontColor, controlHeight, fillColorSelected, iconColor, smallDelay, standardPadding } from '../../theme-provider/design-tokens';
|
|
5
5
|
import { appearanceBehavior } from '../../utilities/style/appearance';
|
|
6
6
|
import { ButtonAppearance } from './types';
|
|
7
7
|
export const styles = css `
|
|
@@ -10,9 +10,8 @@ export const styles = css `
|
|
|
10
10
|
:host {
|
|
11
11
|
background-color: transparent;
|
|
12
12
|
height: ${controlHeight};
|
|
13
|
-
color: ${
|
|
14
|
-
font
|
|
15
|
-
font-size: ${contentFontSize};
|
|
13
|
+
color: ${buttonLabelFontColor};
|
|
14
|
+
font: ${buttonLabelFont};
|
|
16
15
|
cursor: pointer;
|
|
17
16
|
outline: none;
|
|
18
17
|
border: none;
|
|
@@ -27,7 +26,7 @@ export const styles = css `
|
|
|
27
26
|
}
|
|
28
27
|
|
|
29
28
|
:host([disabled]) {
|
|
30
|
-
color: ${
|
|
29
|
+
color: ${buttonLabelDisabledFontColor};
|
|
31
30
|
cursor: default;
|
|
32
31
|
}
|
|
33
32
|
|
|
@@ -65,13 +64,13 @@ export const styles = css `
|
|
|
65
64
|
}
|
|
66
65
|
|
|
67
66
|
.control:hover {
|
|
68
|
-
box-shadow: 0px 0px 0px ${borderWidth} ${
|
|
67
|
+
box-shadow: 0px 0px 0px ${borderWidth} ${borderHoverColor} inset;
|
|
69
68
|
outline: none;
|
|
70
69
|
}
|
|
71
70
|
|
|
72
71
|
.control${focusVisible} {
|
|
73
|
-
box-shadow: 0px 0px 0px ${borderWidth} ${
|
|
74
|
-
outline: ${borderWidth} solid ${
|
|
72
|
+
box-shadow: 0px 0px 0px ${borderWidth} ${borderHoverColor} inset;
|
|
73
|
+
outline: ${borderWidth} solid ${borderHoverColor};
|
|
75
74
|
outline-offset: -4px;
|
|
76
75
|
}
|
|
77
76
|
|
|
@@ -98,7 +97,7 @@ export const styles = css `
|
|
|
98
97
|
}
|
|
99
98
|
|
|
100
99
|
slot[name='start']::slotted(*) {
|
|
101
|
-
${iconColor.cssCustomProperty}: ${
|
|
100
|
+
${iconColor.cssCustomProperty}: ${buttonLabelFontColor};
|
|
102
101
|
}
|
|
103
102
|
|
|
104
103
|
:host([disabled]) slot[name='start']::slotted(*) {
|
|
@@ -113,17 +112,17 @@ export const styles = css `
|
|
|
113
112
|
.withBehaviors(appearanceBehavior(ButtonAppearance.Outline, css `
|
|
114
113
|
.control {
|
|
115
114
|
background-color: transparent;
|
|
116
|
-
border-color: rgba(${
|
|
115
|
+
border-color: rgba(${actionRgbPartialColor}, 0.3);
|
|
117
116
|
}
|
|
118
117
|
|
|
119
118
|
.control:hover {
|
|
120
119
|
background-color: transparent;
|
|
121
|
-
border-color: ${
|
|
120
|
+
border-color: ${borderHoverColor};
|
|
122
121
|
}
|
|
123
122
|
|
|
124
123
|
.control${focusVisible} {
|
|
125
124
|
background-color: transparent;
|
|
126
|
-
border-color: ${
|
|
125
|
+
border-color: ${borderHoverColor};
|
|
127
126
|
}
|
|
128
127
|
|
|
129
128
|
.control:active {
|
|
@@ -133,7 +132,7 @@ export const styles = css `
|
|
|
133
132
|
|
|
134
133
|
.control[disabled] {
|
|
135
134
|
background-color: transparent;
|
|
136
|
-
border-color: rgba(${
|
|
135
|
+
border-color: rgba(${borderRgbPartialColor}, 0.2);
|
|
137
136
|
}
|
|
138
137
|
`), appearanceBehavior(ButtonAppearance.Ghost, css `
|
|
139
138
|
.control {
|
|
@@ -143,12 +142,12 @@ export const styles = css `
|
|
|
143
142
|
|
|
144
143
|
.control:hover {
|
|
145
144
|
background-color: transparent;
|
|
146
|
-
border-color: ${
|
|
145
|
+
border-color: ${borderHoverColor};
|
|
147
146
|
}
|
|
148
147
|
|
|
149
148
|
.control${focusVisible} {
|
|
150
149
|
background-color: transparent;
|
|
151
|
-
border-color: ${
|
|
150
|
+
border-color: ${borderHoverColor};
|
|
152
151
|
}
|
|
153
152
|
|
|
154
153
|
.control:active {
|
|
@@ -162,18 +161,18 @@ export const styles = css `
|
|
|
162
161
|
}
|
|
163
162
|
`), appearanceBehavior(ButtonAppearance.Block, css `
|
|
164
163
|
.control {
|
|
165
|
-
background-color: rgba(${
|
|
164
|
+
background-color: rgba(${borderRgbPartialColor}, 0.1);
|
|
166
165
|
border-color: transparent;
|
|
167
166
|
}
|
|
168
167
|
|
|
169
168
|
.control:hover {
|
|
170
|
-
background-color: rgba(${
|
|
171
|
-
border-color: ${
|
|
169
|
+
background-color: rgba(${borderRgbPartialColor}, 0.1);
|
|
170
|
+
border-color: ${borderHoverColor};
|
|
172
171
|
}
|
|
173
172
|
|
|
174
173
|
.control${focusVisible} {
|
|
175
|
-
background-color: rgba(${
|
|
176
|
-
border-color: ${
|
|
174
|
+
background-color: rgba(${borderRgbPartialColor}, 0.1);
|
|
175
|
+
border-color: ${borderHoverColor};
|
|
177
176
|
}
|
|
178
177
|
|
|
179
178
|
.control:active {
|
|
@@ -182,7 +181,7 @@ export const styles = css `
|
|
|
182
181
|
}
|
|
183
182
|
|
|
184
183
|
.control[disabled] {
|
|
185
|
-
background-color: rgba(${
|
|
184
|
+
background-color: rgba(${borderRgbPartialColor}, 0.1);
|
|
186
185
|
border-color: transparent;
|
|
187
186
|
}
|
|
188
187
|
`));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../../src/patterns/button/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAC3D,OAAO,EACH,qBAAqB,EACrB,gBAAgB,EAChB,qBAAqB,EACrB,WAAW,EACX,
|
|
1
|
+
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../../src/patterns/button/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAC3D,OAAO,EACH,qBAAqB,EACrB,gBAAgB,EAChB,qBAAqB,EACrB,WAAW,EACX,eAAe,EACf,oBAAoB,EACpB,4BAA4B,EAC5B,aAAa,EACb,iBAAiB,EACjB,SAAS,EACT,UAAU,EACV,eAAe,EAClB,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAAE,kBAAkB,EAAE,MAAM,kCAAkC,CAAC;AACtE,OAAO,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAE3C,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CAAA;MACnB,OAAO,CAAC,aAAa,CAAC;;;;kBAIV,aAAa;iBACd,oBAAoB;gBACrB,eAAe;;;;;UAKrB;AACE;;;;EAIE,CAAC,EACP;;;;;iBAKS,4BAA4B;;;;;;;;kBAQ3B,WAAW;;;;;;;;;;;;;;qBAcR,eAAe;iCACH,UAAU;;;;iBAI1B,aAAa;;;;;;;;;;;kCAWI,WAAW,IAAI,gBAAgB;;;;cAInD,YAAY;kCACQ,WAAW,IAAI,gBAAgB;mBAC9C,WAAW,UAAU,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;UA2B9C,SAAS,CAAC,iBAAiB,KAAK,oBAAoB;;;;;;;;;;CAU7D;IACG,kBAAkB;KACjB,aAAa,CACV,kBAAkB,CACd,gBAAgB,CAAC,OAAO,EACxB,GAAG,CAAA;;;yCAG0B,qBAAqB;;;;;oCAK1B,gBAAgB;;;0BAG1B,YAAY;;oCAEF,gBAAgB;;;;wCAIZ,iBAAiB;oCACrB,iBAAiB;;;;;yCAKZ,qBAAqB;;aAEjD,CACJ,EACD,kBAAkB,CACd,gBAAgB,CAAC,KAAK,EACtB,GAAG,CAAA;;;;;;;;oCAQqB,gBAAgB;;;0BAG1B,YAAY;;oCAEF,gBAAgB;;;;wCAIZ,iBAAiB;oCACrB,iBAAiB;;;;;;;aAOxC,CACJ,EACD,kBAAkB,CACd,gBAAgB,CAAC,KAAK,EACtB,GAAG,CAAA;;6CAE8B,qBAAqB;;;;;6CAKrB,qBAAqB;oCAC9B,gBAAgB;;;0BAG1B,YAAY;6CACO,qBAAqB;oCAC9B,gBAAgB;;;;wCAIZ,iBAAiB;oCACrB,iBAAiB;;;;6CAIR,qBAAqB;;;aAGrD,CACJ,CACJ,CAAC"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { css } from '@microsoft/fast-element';
|
|
2
2
|
import { display } from '@microsoft/fast-foundation';
|
|
3
|
-
import { applicationBackgroundColor,
|
|
3
|
+
import { applicationBackgroundColor, bodyFont, bodyFontColor, bodyDisabledFontColor, borderHoverColor, borderWidth, controlHeight, iconSize, popupBorderColor, popupBoxShadowColor, smallDelay } from '../theme-provider/design-tokens';
|
|
4
4
|
export const styles = css `
|
|
5
5
|
${display('inline-flex')}
|
|
6
6
|
|
|
7
7
|
:host {
|
|
8
8
|
box-sizing: border-box;
|
|
9
|
-
color: ${
|
|
10
|
-
font
|
|
9
|
+
color: ${bodyFontColor};
|
|
10
|
+
font: ${bodyFont};
|
|
11
11
|
height: ${controlHeight};
|
|
12
12
|
position: relative;
|
|
13
13
|
user-select: none;
|
|
@@ -47,11 +47,9 @@ export const styles = css `
|
|
|
47
47
|
box-sizing: border-box;
|
|
48
48
|
cursor: pointer;
|
|
49
49
|
display: flex;
|
|
50
|
-
font-size: ${contentFontSize};
|
|
51
|
-
font-family: inherit;
|
|
52
50
|
min-height: 100%;
|
|
53
51
|
width: 100%;
|
|
54
|
-
border-bottom: ${borderWidth} solid ${
|
|
52
|
+
border-bottom: ${borderWidth} solid ${bodyDisabledFontColor};
|
|
55
53
|
background-color: transparent;
|
|
56
54
|
padding-left: 8px;
|
|
57
55
|
padding-bottom: 1px;
|
|
@@ -62,21 +60,21 @@ export const styles = css `
|
|
|
62
60
|
}
|
|
63
61
|
|
|
64
62
|
:host(.open:not(:hover)) .control {
|
|
65
|
-
border-bottom: ${borderWidth} solid ${
|
|
63
|
+
border-bottom: ${borderWidth} solid ${borderHoverColor};
|
|
66
64
|
transition: border-bottom ${smallDelay}, padding-bottom ${smallDelay};
|
|
67
65
|
}
|
|
68
66
|
|
|
69
67
|
:host(:hover) .control {
|
|
70
|
-
border-bottom: 2px solid ${
|
|
68
|
+
border-bottom: 2px solid ${borderHoverColor};
|
|
71
69
|
padding-bottom: 0px;
|
|
72
70
|
transition: border-bottom ${smallDelay}, padding-bottom ${smallDelay};
|
|
73
71
|
}
|
|
74
72
|
|
|
75
73
|
:host([disabled]) .control,
|
|
76
74
|
:host([disabled]) .control:hover {
|
|
77
|
-
border-bottom: ${borderWidth} solid ${
|
|
75
|
+
border-bottom: ${borderWidth} solid ${bodyDisabledFontColor};
|
|
78
76
|
padding-bottom: 1px;
|
|
79
|
-
color: ${
|
|
77
|
+
color: ${bodyDisabledFontColor};
|
|
80
78
|
}
|
|
81
79
|
|
|
82
80
|
:host([open][position='above']) .listbox {
|
|
@@ -118,11 +116,11 @@ export const styles = css `
|
|
|
118
116
|
.indicator slot[name='indicator'] svg {
|
|
119
117
|
width: ${iconSize};
|
|
120
118
|
height: ${iconSize};
|
|
121
|
-
fill: ${
|
|
119
|
+
fill: ${bodyFontColor};
|
|
122
120
|
}
|
|
123
121
|
|
|
124
122
|
:host([disabled]) .indicator slot[name='indicator'] svg {
|
|
125
|
-
fill: ${
|
|
123
|
+
fill: ${bodyDisabledFontColor};
|
|
126
124
|
}
|
|
127
125
|
|
|
128
126
|
slot[name='listbox'] {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/select/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AACrD,OAAO,EACH,0BAA0B,EAC1B,
|
|
1
|
+
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/select/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AACrD,OAAO,EACH,0BAA0B,EAC1B,QAAQ,EACR,aAAa,EACb,qBAAqB,EACrB,gBAAgB,EAChB,WAAW,EACX,aAAa,EACb,QAAQ,EACR,gBAAgB,EAChB,mBAAmB,EACnB,UAAU,EACb,MAAM,iCAAiC,CAAC;AAEzC,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CAAA;MACnB,OAAO,CAAC,aAAa,CAAC;;;;iBAIX,aAAa;gBACd,QAAQ;kBACN,aAAa;;;;;;;;;;;;;;;;UAgBrB;AACE;;;GAGG,CAAC,EACR;+CACuC,aAAa;;;kCAG1B,mBAAmB;4BACzB,gBAAgB;4BAChB,0BAA0B;;;;;;;;;;;;;;;yBAe7B,WAAW,UAAU,qBAAqB;;;;;;;;;;;yBAW1C,WAAW,UAAU,gBAAgB;oCAC1B,UAAU,oBAAoB,UAAU;;;;mCAIzC,gBAAgB;;oCAEf,UAAU,oBAAoB,UAAU;;;;;yBAKnD,WAAW,UAAU,qBAAqB;;iBAElD,qBAAqB;;;;;;;;;;;;;;kBAcpB,aAAa;;;;oBAIX,aAAa;;;;;;;;;;;;;;;;;;;;;;iBAsBhB,QAAQ;kBACP,QAAQ;gBACV,aAAa;;;;gBAIb,qBAAqB;;;;;;;;;;;;;;;;;;;;;CAqBpC,CAAC"}
|
package/dist/esm/tab/styles.js
CHANGED
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
import { css } from '@microsoft/fast-element';
|
|
2
2
|
import { display } from '@microsoft/fast-foundation';
|
|
3
|
-
import {
|
|
3
|
+
import { bodyFont, borderHoverColor, borderWidth, bodyFontColor, bodyDisabledFontColor, controlHeight, fillHoverColor, mediumDelay, standardPadding } from '../theme-provider/design-tokens';
|
|
4
4
|
import { focusVisible } from '../utilities/style/focus';
|
|
5
5
|
export const styles = css `
|
|
6
6
|
${display('inline-flex')}
|
|
7
7
|
|
|
8
8
|
:host {
|
|
9
9
|
box-sizing: border-box;
|
|
10
|
-
font
|
|
11
|
-
font-size: ${contentFontSize};
|
|
10
|
+
font: ${bodyFont};
|
|
12
11
|
height: ${controlHeight};
|
|
13
12
|
padding: calc(${standardPadding} / 2) ${standardPadding}
|
|
14
13
|
calc(${standardPadding} / 2 - ${borderWidth});
|
|
15
|
-
color: ${
|
|
14
|
+
color: ${bodyFontColor};
|
|
16
15
|
align-items: center;
|
|
17
16
|
justify-content: center;
|
|
18
17
|
cursor: pointer;
|
|
@@ -21,7 +20,7 @@ export const styles = css `
|
|
|
21
20
|
}
|
|
22
21
|
|
|
23
22
|
:host(:hover) {
|
|
24
|
-
background-color: ${
|
|
23
|
+
background-color: ${fillHoverColor};
|
|
25
24
|
}
|
|
26
25
|
|
|
27
26
|
:host(:focus) {
|
|
@@ -30,7 +29,7 @@ export const styles = css `
|
|
|
30
29
|
|
|
31
30
|
:host(${focusVisible}) {
|
|
32
31
|
outline: none;
|
|
33
|
-
box-shadow: 0 calc(${borderWidth} * -1) ${
|
|
32
|
+
box-shadow: 0 calc(${borderWidth} * -1) ${borderHoverColor} inset;
|
|
34
33
|
transition: box-shadow ${mediumDelay} ease-in-out;
|
|
35
34
|
}
|
|
36
35
|
|
|
@@ -46,7 +45,7 @@ export const styles = css `
|
|
|
46
45
|
|
|
47
46
|
:host([disabled]) {
|
|
48
47
|
cursor: default;
|
|
49
|
-
color: ${
|
|
48
|
+
color: ${bodyDisabledFontColor};
|
|
50
49
|
background: none;
|
|
51
50
|
}
|
|
52
51
|
`;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/tab/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AACrD,OAAO,EACH,gBAAgB,EAChB,WAAW,EACX,
|
|
1
|
+
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/tab/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AACrD,OAAO,EACH,QAAQ,EACR,gBAAgB,EAChB,WAAW,EACX,aAAa,EACb,qBAAqB,EACrB,aAAa,EACb,cAAc,EACd,WAAW,EACX,eAAe,EAClB,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAExD,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CAAA;MACnB,OAAO,CAAC,aAAa,CAAC;;;;gBAIZ,QAAQ;kBACN,aAAa;wBACP,eAAe,SAAS,eAAe;mBAC5C,eAAe,UAAU,WAAW;iBACtC,aAAa;;;;UAIpB,CAAA,oDAAqD,EAAE;qCAC5B,WAAW;;;;4BAIpB,cAAc;;;;;;;YAO9B,YAAY;;6BAEK,WAAW,UAAU,gBAAgB;iCACjC,WAAW;;;;gBAI5B,YAAY;;;;;;;;;;;iBAWX,qBAAqB;;;CAGrC,CAAC"}
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { css } from '@microsoft/fast-element';
|
|
2
2
|
import { display } from '@microsoft/fast-foundation';
|
|
3
|
-
import {
|
|
3
|
+
import { bodyFont, bodyFontColor, standardPadding } from '../theme-provider/design-tokens';
|
|
4
4
|
export const styles = css `
|
|
5
5
|
${display('block')}
|
|
6
6
|
|
|
7
7
|
:host {
|
|
8
8
|
box-sizing: border-box;
|
|
9
|
-
font
|
|
10
|
-
|
|
11
|
-
color: ${contentFontColor};
|
|
9
|
+
font: ${bodyFont};
|
|
10
|
+
color: ${bodyFontColor};
|
|
12
11
|
padding-top: ${standardPadding};
|
|
13
12
|
}
|
|
14
13
|
`;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/tab-panel/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AACrD,OAAO,EACH,
|
|
1
|
+
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/tab-panel/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AACrD,OAAO,EACH,QAAQ,EACR,aAAa,EACb,eAAe,EAClB,MAAM,iCAAiC,CAAC;AAEzC,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CAAA;MACnB,OAAO,CAAC,OAAO,CAAC;;;;gBAIN,QAAQ;iBACP,aAAa;uBACP,eAAe;;CAErC,CAAC"}
|
package/dist/esm/tabs/styles.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { css } from '@microsoft/fast-element';
|
|
2
2
|
import { display } from '@microsoft/fast-foundation';
|
|
3
|
-
import {
|
|
3
|
+
import { borderHoverColor, borderWidth, smallDelay } from '../theme-provider/design-tokens';
|
|
4
4
|
export const styles = css `
|
|
5
5
|
${display('grid')}
|
|
6
6
|
|
|
@@ -21,7 +21,7 @@ export const styles = css `
|
|
|
21
21
|
.activeIndicator {
|
|
22
22
|
grid-row: 2;
|
|
23
23
|
height: calc(${borderWidth} * 2);
|
|
24
|
-
background-color: ${
|
|
24
|
+
background-color: ${borderHoverColor};
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
.activeIndicatorTransition {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { css } from '@microsoft/fast-element';
|
|
2
2
|
import { display } from '@microsoft/fast-foundation';
|
|
3
|
-
import {
|
|
3
|
+
import { bodyFont, bodyFontColor, borderRgbPartialColor, borderWidth, controlHeight, standardPadding } from '../theme-provider/design-tokens';
|
|
4
4
|
export const styles = css `
|
|
5
5
|
${display('flex')}
|
|
6
6
|
|
|
@@ -8,16 +8,15 @@ export const styles = css `
|
|
|
8
8
|
align-items: center;
|
|
9
9
|
height: ${controlHeight};
|
|
10
10
|
box-sizing: border-box;
|
|
11
|
-
font
|
|
12
|
-
|
|
13
|
-
color: ${contentFontColor};
|
|
11
|
+
font: ${bodyFont};
|
|
12
|
+
color: ${bodyFontColor};
|
|
14
13
|
}
|
|
15
14
|
|
|
16
15
|
.separator {
|
|
17
16
|
display: inline-block;
|
|
18
17
|
height: 24px;
|
|
19
18
|
border-left: calc(${borderWidth} * 2) solid
|
|
20
|
-
rgba(${
|
|
19
|
+
rgba(${borderRgbPartialColor}, 0.3);
|
|
21
20
|
margin: calc(${standardPadding} / 4) calc(${standardPadding} / 2);
|
|
22
21
|
}
|
|
23
22
|
`;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/tabs-toolbar/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AACrD,OAAO,EACH,qBAAqB,EACrB,WAAW,EACX,
|
|
1
|
+
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/tabs-toolbar/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AACrD,OAAO,EACH,QAAQ,EACR,aAAa,EACb,qBAAqB,EACrB,WAAW,EACX,aAAa,EACb,eAAe,EAClB,MAAM,iCAAiC,CAAC;AAEzC,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CAAA;MACnB,OAAO,CAAC,MAAM,CAAC;;;;kBAIH,aAAa;;gBAEf,QAAQ;iBACP,aAAa;;;;;;4BAMF,WAAW;mBACpB,qBAAqB;uBACjB,eAAe,cAAc,eAAe;;CAElE,CAAC"}
|