@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,35 +1,30 @@
|
|
|
1
1
|
import { css } from '@microsoft/fast-element';
|
|
2
2
|
import { display } from '@microsoft/fast-foundation';
|
|
3
|
-
import {
|
|
3
|
+
import { borderRgbPartialColor, borderHoverColor, borderWidth, fillSelectedRgbPartialColor, smallDelay, bodyFontColor, bodyDisabledFontColor, controlLabelFont, controlLabelFontColor, bodyFont, controlLabelDisabledFontColor } from '../theme-provider/design-tokens';
|
|
4
4
|
import { appearanceBehavior } from '../utilities/style/appearance';
|
|
5
5
|
import { TextAreaAppearance } from './types';
|
|
6
6
|
export const styles = css `
|
|
7
7
|
${display('inline-block')}
|
|
8
8
|
|
|
9
9
|
:host {
|
|
10
|
-
font
|
|
11
|
-
font-size: ${contentFontSize};
|
|
10
|
+
font: ${bodyFont};
|
|
12
11
|
outline: none;
|
|
13
12
|
user-select: none;
|
|
14
|
-
color: ${
|
|
13
|
+
color: ${bodyFontColor};
|
|
15
14
|
}
|
|
16
15
|
|
|
17
16
|
:host([disabled]) {
|
|
18
|
-
color: ${
|
|
17
|
+
color: ${bodyDisabledFontColor};
|
|
19
18
|
}
|
|
20
19
|
|
|
21
20
|
.label {
|
|
22
21
|
display: flex;
|
|
23
|
-
color: ${
|
|
24
|
-
font
|
|
25
|
-
font-size: ${labelFontSize};
|
|
26
|
-
font-weight: ${labelFontWeight};
|
|
27
|
-
line-height: ${labelHeight};
|
|
28
|
-
text-transform: ${labelTextTransform};
|
|
22
|
+
color: ${controlLabelFontColor};
|
|
23
|
+
font: ${controlLabelFont};
|
|
29
24
|
}
|
|
30
25
|
|
|
31
26
|
:host([disabled]) .label {
|
|
32
|
-
color: ${
|
|
27
|
+
color: ${controlLabelDisabledFontColor};
|
|
33
28
|
}
|
|
34
29
|
|
|
35
30
|
.control {
|
|
@@ -54,12 +49,12 @@ export const styles = css `
|
|
|
54
49
|
}
|
|
55
50
|
|
|
56
51
|
.control:hover {
|
|
57
|
-
border-color: ${
|
|
58
|
-
box-shadow: 0px 0px 0px 1px ${
|
|
52
|
+
border-color: ${borderHoverColor};
|
|
53
|
+
box-shadow: 0px 0px 0px 1px ${borderHoverColor};
|
|
59
54
|
}
|
|
60
55
|
|
|
61
56
|
.control:focus-within {
|
|
62
|
-
border-color: ${
|
|
57
|
+
border-color: ${borderHoverColor};
|
|
63
58
|
}
|
|
64
59
|
|
|
65
60
|
.control[readonly],
|
|
@@ -67,21 +62,21 @@ export const styles = css `
|
|
|
67
62
|
.control[readonly]:hover:focus-within,
|
|
68
63
|
.control[disabled],
|
|
69
64
|
.control[disabled]:hover {
|
|
70
|
-
border-color: rgba(${
|
|
65
|
+
border-color: rgba(${borderRgbPartialColor}, 0.1);
|
|
71
66
|
box-shadow: none;
|
|
72
67
|
}
|
|
73
68
|
|
|
74
69
|
.control::selection {
|
|
75
|
-
color: ${
|
|
76
|
-
background: rgba(${
|
|
70
|
+
color: ${controlLabelFontColor};
|
|
71
|
+
background: rgba(${fillSelectedRgbPartialColor}, 0.3);
|
|
77
72
|
}
|
|
78
73
|
|
|
79
74
|
.control::placeholder {
|
|
80
|
-
color: ${
|
|
75
|
+
color: ${controlLabelFontColor};
|
|
81
76
|
}
|
|
82
77
|
|
|
83
78
|
.control[disabled]::placeholder {
|
|
84
|
-
color: ${
|
|
79
|
+
color: ${controlLabelDisabledFontColor};
|
|
85
80
|
}
|
|
86
81
|
|
|
87
82
|
:host([resize='both']) .control {
|
|
@@ -97,12 +92,12 @@ export const styles = css `
|
|
|
97
92
|
// prettier-ignore
|
|
98
93
|
.withBehaviors(appearanceBehavior(TextAreaAppearance.Outline, css `
|
|
99
94
|
.control {
|
|
100
|
-
border-color: rgba(${
|
|
95
|
+
border-color: rgba(${borderRgbPartialColor}, 0.3);
|
|
101
96
|
background-color: transparent;
|
|
102
97
|
}
|
|
103
98
|
`), appearanceBehavior(TextAreaAppearance.Block, css `
|
|
104
99
|
.control {
|
|
105
|
-
background-color: rgba(${
|
|
100
|
+
background-color: rgba(${borderRgbPartialColor}, 0.1);
|
|
106
101
|
}
|
|
107
102
|
|
|
108
103
|
:host([readonly]) .control {
|
|
@@ -111,7 +106,7 @@ export const styles = css `
|
|
|
111
106
|
|
|
112
107
|
:host([disabled]) .control {
|
|
113
108
|
border-color: transparent;
|
|
114
|
-
background-color: rgba(${
|
|
109
|
+
background-color: rgba(${borderRgbPartialColor}, 0.1);
|
|
115
110
|
}
|
|
116
111
|
`));
|
|
117
112
|
//# sourceMappingURL=styles.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/text-area/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,gBAAgB,EAChB,WAAW,EACX,
|
|
1
|
+
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/text-area/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,gBAAgB,EAChB,WAAW,EACX,2BAA2B,EAC3B,UAAU,EACV,aAAa,EACb,qBAAqB,EACrB,gBAAgB,EAChB,qBAAqB,EACrB,QAAQ,EACR,6BAA6B,EAChC,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAE,kBAAkB,EAAE,MAAM,+BAA+B,CAAC;AACnE,OAAO,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAE7C,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CAAA;MACnB,OAAO,CAAC,cAAc,CAAC;;;gBAGb,QAAQ;;;iBAGP,aAAa;;;;iBAIb,qBAAqB;;;;;iBAKrB,qBAAqB;gBACtB,gBAAgB;;;;iBAIf,6BAA6B;;;;;;;;;;;;kBAY5B,WAAW;;iCAEI,UAAU,YAAY,UAAU;;;;;;;;;;;wBAWzC,gBAAgB;sCACF,gBAAgB;;;;wBAI9B,gBAAgB;;;;;;;;6BAQX,qBAAqB;;;;;iBAKjC,qBAAqB;2BACX,2BAA2B;;;;iBAIrC,qBAAqB;;;;iBAIrB,6BAA6B;;;;;;;;;;;;CAY7C;IACG,kBAAkB;KACjB,aAAa,CACV,kBAAkB,CACd,kBAAkB,CAAC,OAAO,EAC1B,GAAG,CAAA;;yCAE0B,qBAAqB;;;aAGjD,CACJ,EACD,kBAAkB,CACd,kBAAkB,CAAC,KAAK,EACxB,GAAG,CAAA;;6CAE8B,qBAAqB;;;;;;;;;6CASrB,qBAAqB;;aAErD,CACJ,CACJ,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { css } from '@microsoft/fast-element';
|
|
2
2
|
import { display } from '@microsoft/fast-foundation';
|
|
3
|
-
import {
|
|
3
|
+
import { borderRgbPartialColor, borderHoverColor, borderWidth, bodyFontColor, bodyDisabledFontColor, controlHeight, failColor, fillSelectedRgbPartialColor, iconSize, labelHeight, smallDelay, controlLabelFont, bodyFont, controlLabelFontColor, standardPadding, controlLabelDisabledFontColor } from '../theme-provider/design-tokens';
|
|
4
4
|
import { appearanceBehavior } from '../utilities/style/appearance';
|
|
5
5
|
import { TextFieldAppearance } from './types';
|
|
6
6
|
import { Theme } from '../theme-provider/types';
|
|
@@ -9,30 +9,15 @@ export const styles = css `
|
|
|
9
9
|
${display('inline-block')}
|
|
10
10
|
|
|
11
11
|
:host {
|
|
12
|
-
font
|
|
13
|
-
font-size: ${contentFontSize};
|
|
12
|
+
font: ${bodyFont};
|
|
14
13
|
outline: none;
|
|
15
14
|
user-select: none;
|
|
16
|
-
color: ${
|
|
15
|
+
color: ${bodyFontColor};
|
|
17
16
|
height: calc(${labelHeight} + ${controlHeight});
|
|
18
17
|
}
|
|
19
18
|
|
|
20
19
|
:host([disabled]) {
|
|
21
|
-
color: ${
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.label {
|
|
25
|
-
display: flex;
|
|
26
|
-
color: ${labelFontColor};
|
|
27
|
-
font-family: ${labelFontFamily};
|
|
28
|
-
font-size: ${labelFontSize};
|
|
29
|
-
font-weight: ${labelFontWeight};
|
|
30
|
-
line-height: ${labelHeight};
|
|
31
|
-
text-transform: ${labelTextTransform};
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
:host([disabled]) .label {
|
|
35
|
-
color: ${labelFontColorDisabled};
|
|
20
|
+
color: ${bodyDisabledFontColor};
|
|
36
21
|
}
|
|
37
22
|
|
|
38
23
|
.root {
|
|
@@ -41,11 +26,11 @@ export const styles = css `
|
|
|
41
26
|
display: flex;
|
|
42
27
|
flex-direction: row;
|
|
43
28
|
border-radius: 0px;
|
|
44
|
-
font
|
|
29
|
+
font: ${bodyFont};
|
|
45
30
|
transition: border-bottom ${smallDelay}, padding-bottom ${smallDelay};
|
|
46
31
|
align-items: flex-end;
|
|
47
32
|
--ni-private-hover-bottom-border-width: 2px;
|
|
48
|
-
border: 0px solid rgba(${
|
|
33
|
+
border: 0px solid rgba(${borderRgbPartialColor}, 0.3);
|
|
49
34
|
border-bottom-width: var(--ni-private-bottom-border-width);
|
|
50
35
|
padding-bottom: calc(
|
|
51
36
|
var(--ni-private-hover-bottom-border-width) -
|
|
@@ -64,21 +49,21 @@ export const styles = css `
|
|
|
64
49
|
}
|
|
65
50
|
|
|
66
51
|
:host([readonly]:not([disabled])) .root {
|
|
67
|
-
border: ${borderWidth} solid rgba(${
|
|
52
|
+
border: ${borderWidth} solid rgba(${borderRgbPartialColor}, 0.1);
|
|
68
53
|
padding: 0px;
|
|
69
54
|
padding-bottom: 1px;
|
|
70
55
|
background-color: transparent;
|
|
71
56
|
}
|
|
72
57
|
|
|
73
58
|
:host([disabled]) .root {
|
|
74
|
-
border-color: rgba(${
|
|
59
|
+
border-color: rgba(${borderRgbPartialColor}, 0.1);
|
|
75
60
|
}
|
|
76
61
|
|
|
77
62
|
.root:hover {
|
|
78
63
|
--ni-private-bottom-border-width: var(
|
|
79
64
|
--ni-private-hover-bottom-border-width
|
|
80
65
|
);
|
|
81
|
-
border-bottom-color: ${
|
|
66
|
+
border-bottom-color: ${borderHoverColor};
|
|
82
67
|
}
|
|
83
68
|
|
|
84
69
|
:host([disabled]) .root:hover {
|
|
@@ -86,7 +71,7 @@ export const styles = css `
|
|
|
86
71
|
}
|
|
87
72
|
|
|
88
73
|
.root:focus-within {
|
|
89
|
-
border-bottom-color: ${
|
|
74
|
+
border-bottom-color: ${borderHoverColor};
|
|
90
75
|
}
|
|
91
76
|
|
|
92
77
|
.control {
|
|
@@ -116,12 +101,12 @@ export const styles = css `
|
|
|
116
101
|
}
|
|
117
102
|
|
|
118
103
|
.control::selection {
|
|
119
|
-
color: ${
|
|
120
|
-
background: rgba(${
|
|
104
|
+
color: ${controlLabelFontColor};
|
|
105
|
+
background: rgba(${fillSelectedRgbPartialColor}, 0.3);
|
|
121
106
|
}
|
|
122
107
|
|
|
123
108
|
.control::placeholder {
|
|
124
|
-
color: ${
|
|
109
|
+
color: ${controlLabelFontColor};
|
|
125
110
|
}
|
|
126
111
|
|
|
127
112
|
.control:not([readonly]):focus-within::placeholder {
|
|
@@ -129,7 +114,17 @@ export const styles = css `
|
|
|
129
114
|
}
|
|
130
115
|
|
|
131
116
|
.control[disabled]::placeholder {
|
|
132
|
-
color: ${
|
|
117
|
+
color: ${bodyDisabledFontColor};
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.label {
|
|
121
|
+
display: flex;
|
|
122
|
+
color: ${controlLabelFontColor};
|
|
123
|
+
font: ${controlLabelFont};
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
:host([disabled]) .label {
|
|
127
|
+
color: ${controlLabelDisabledFontColor};
|
|
133
128
|
}
|
|
134
129
|
|
|
135
130
|
:host [part='end'] {
|
|
@@ -153,7 +148,7 @@ export const styles = css `
|
|
|
153
148
|
}
|
|
154
149
|
|
|
155
150
|
:host([disabled]) [part='end'] path {
|
|
156
|
-
fill: ${
|
|
151
|
+
fill: ${bodyDisabledFontColor};
|
|
157
152
|
}
|
|
158
153
|
`.withBehaviors(appearanceBehavior(TextFieldAppearance.Underline, css `
|
|
159
154
|
.root {
|
|
@@ -164,7 +159,7 @@ export const styles = css `
|
|
|
164
159
|
}
|
|
165
160
|
`), appearanceBehavior(TextFieldAppearance.Block, css `
|
|
166
161
|
.root {
|
|
167
|
-
background-color: rgba(${
|
|
162
|
+
background-color: rgba(${borderRgbPartialColor}, 0.1);
|
|
168
163
|
--ni-private-bottom-border-width: 0px;
|
|
169
164
|
padding-top: ${borderWidth};
|
|
170
165
|
padding-left: ${borderWidth};
|
|
@@ -192,7 +187,7 @@ export const styles = css `
|
|
|
192
187
|
}
|
|
193
188
|
|
|
194
189
|
:host([disabled]) .root {
|
|
195
|
-
background-color: rgba(${
|
|
190
|
+
background-color: rgba(${borderRgbPartialColor}, 0.07);
|
|
196
191
|
}
|
|
197
192
|
|
|
198
193
|
:host([disabled]) .root:hover {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/text-field/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AAErD,OAAO,EACH,qBAAqB,EACrB,gBAAgB,EAChB,WAAW,EACX,
|
|
1
|
+
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/text-field/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AAErD,OAAO,EACH,qBAAqB,EACrB,gBAAgB,EAChB,WAAW,EACX,aAAa,EACb,qBAAqB,EACrB,aAAa,EACb,SAAS,EACT,2BAA2B,EAC3B,QAAQ,EACR,WAAW,EACX,UAAU,EACV,gBAAgB,EAChB,QAAQ,EACR,qBAAqB,EACrB,eAAe,EACf,6BAA6B,EAChC,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAE,kBAAkB,EAAE,MAAM,+BAA+B,CAAC;AACnE,OAAO,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,EAAE,KAAK,EAAE,MAAM,yBAAyB,CAAC;AAChD,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAEzD,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CAAA;MACnB,OAAO,CAAC,cAAc,CAAC;;;gBAGb,QAAQ;;;iBAGP,aAAa;uBACP,WAAW,MAAM,aAAa;;;;iBAIpC,qBAAqB;;;;;;;;;gBAStB,QAAQ;oCACY,UAAU,oBAAoB,UAAU;;;iCAG3C,qBAAqB;;;;;;;;;;;;;;;+BAevB,SAAS;;;;kBAItB,WAAW,eAAe,qBAAqB;;;;;;;6BAOpC,qBAAqB;;;;;;;+BAOnB,gBAAgB;;;;;;;;+BAQhB,gBAAgB;;;;;;;;;;;cAWjC,aAAa,MAAM,WAAW;;;;;;6BAMf,eAAe;8BACd,eAAe;;;;;;;;;;;;iBAY5B,qBAAqB;2BACX,2BAA2B;;;;iBAIrC,qBAAqB;;;;;;;;iBAQrB,qBAAqB;;;;;iBAKrB,qBAAqB;gBACtB,gBAAgB;;;;iBAIf,6BAA6B;;;;;;;;;;;;;;;kBAe5B,QAAQ;iBACT,QAAQ;;;;gBAIT,SAAS;;;;gBAIT,qBAAqB;;CAEpC,CAAC,aAAa,CACP,kBAAkB,CACd,mBAAmB,CAAC,SAAS,EAC7B,GAAG,CAAA;;;+BAGgB,WAAW;gCACV,WAAW;iCACV,WAAW;;SAEnC,CACA,EACD,kBAAkB,CACd,mBAAmB,CAAC,KAAK,EACzB,GAAG,CAAA;;yCAE0B,qBAAqB;;+BAE/B,WAAW;gCACV,WAAW;iCACV,WAAW;;;;;;;;;;;;;;;;;;;;;;;;yCAwBH,qBAAqB;;;;;;;;;;SAUrD,CACA,EACD,kBAAkB,CACd,mBAAmB,CAAC,OAAO,EAC3B,GAAG,CAAA;;;gCAGiB,WAAW;;;SAGlC,CACA,EACD,aAAa,CACT,GAAG,CAAA;cACD,EAAE,CAAC,iBAAiB;;;;SAIzB,EACG,GAAG,CAAA;cACD,EAAE,CAAC,gBAAgB;;;;SAIxB;AACG,cAAc;AACd,KAAK,CAAC,IAAI,CACb,CACJ,CAAC"}
|
|
@@ -1,45 +1,76 @@
|
|
|
1
1
|
export const comments = {
|
|
2
|
-
|
|
3
|
-
applicationBackgroundColor: '
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
2
|
+
actionRgbPartialColor: 'DEPRECATED: *-partial tokens are used with rgba() to set color transparency in component stylesheets',
|
|
3
|
+
applicationBackgroundColor: 'Primary background color for the application',
|
|
4
|
+
headerBackgroundColor: 'Background color for application headers',
|
|
5
|
+
sectionBackgroundColor: 'Background color for dialogs and menus',
|
|
6
|
+
fillColorSelected: 'Control fill color when a control is selected',
|
|
7
|
+
fillSelectedRgbPartialColor: 'DEPRECATED: *-partial tokens are used with rgba() to set color transparency in component stylesheets',
|
|
8
|
+
fillHoverSelectedColor: 'Control fill color when hovering a selected control',
|
|
9
|
+
fillHoverColor: 'Control fill color when hovering component',
|
|
10
|
+
borderColor: 'Standard control outline or border color',
|
|
11
|
+
borderRgbPartialColor: 'DEPRECATED: *-partial tokens are used with rgba() to set color transparency in component stylesheets',
|
|
12
|
+
failColor: 'Used to highlight errors or invalid input',
|
|
13
|
+
warningColor: 'Used to highlight invalid input or for icons to indicate that a process errored or failed',
|
|
14
|
+
passColor: 'Used to highlight a correct state or the successful completion of a process',
|
|
15
|
+
borderHoverColor: 'Border color when hovering component',
|
|
16
|
+
iconColor: 'Equivalent to the font color for icons',
|
|
17
|
+
popupBoxShadowColor: 'Shadow color for menus and dialog boxes',
|
|
18
|
+
popupBorderColor: 'Border color for menus and dialog boxes',
|
|
19
|
+
controlHeight: 'Standard layout height for all controls. Add "labelHeight" for labels on top.',
|
|
20
|
+
smallPadding: 'Small layout padding for components',
|
|
21
|
+
standardPadding: 'Standard layout padding for components',
|
|
22
|
+
labelHeight: 'Standard label height for components',
|
|
23
|
+
borderWidth: 'Standard border width for most components',
|
|
24
|
+
iconSize: 'Standard layout height for all icons',
|
|
25
|
+
groupHeaderTextTransform: 'CSS text-transform string to use for headers',
|
|
26
|
+
drawerWidth: 'TODO: delete when able',
|
|
27
|
+
smallDelay: 'Elements with small transition areas, such as icons and selection controls, have short durations.',
|
|
28
|
+
mediumDelay: 'Elements with larger transition areas, such as bottom sheets and expanding chips, have slightly longer durations.',
|
|
29
|
+
largeDelay: 'Animated elements that traverse a large portion of the screen have the longest durations.',
|
|
30
|
+
headlinePlus1Font: 'Font shorthand for the "Headline_2" base token',
|
|
31
|
+
headlineFont: 'Font shorthand for the "Headline_1" base token',
|
|
32
|
+
titlePlus2Font: 'Font shorthand for the "Title_3" base token',
|
|
33
|
+
titlePlus1Font: 'Font shorthand for the "Title_2" base token',
|
|
34
|
+
titleFont: 'Font shorthand for the "Title_1" base token',
|
|
35
|
+
subtitlePlus1Font: 'Font shorthand for the "Subtitle_2" base token',
|
|
36
|
+
subtitleFont: 'Font shorthand for the "Subtitle_1" base token',
|
|
37
|
+
linkStandardFont: 'Font shorthand for the "Link_standard_1" base token',
|
|
38
|
+
placeholderFont: 'Font shorthand for the "Placeholder" base token',
|
|
39
|
+
bodyEmphasizedFont: 'Font shorthand for the "Body_Emphasized" base token',
|
|
40
|
+
bodyFont: 'Font shorthand for the "Body" base token',
|
|
41
|
+
groupHeaderFont: 'Font shorthand for the "Group_Header_1" base token',
|
|
42
|
+
controlLabelFont: 'Font shorthand for the "Control_Label_1" base token',
|
|
43
|
+
buttonLabelFont: 'Font shorthand for the "Button_Label_1" base token',
|
|
44
|
+
tooltipCaptionFont: 'Font shorthand for the "Tooltip_Caption" base token',
|
|
45
|
+
headlinePlus1FontColor: 'Font color for "Headline_2" base token',
|
|
46
|
+
headlineFontColor: 'Font color for "Headline_1" base token',
|
|
47
|
+
titlePlus2FontColor: 'Font color for "Title_3" base token',
|
|
48
|
+
titlePlus1FontColor: 'Font color for "Title_2" base token',
|
|
49
|
+
titleFontColor: 'Font color for "Title_1" base token',
|
|
50
|
+
subtitlePlus1FontColor: 'Font color for "Subtitle_2" base token',
|
|
51
|
+
subtitleFontColor: 'Font color for "Subtitle_1" base token',
|
|
52
|
+
linkStandardFontColor: 'Font color for "Link_Standard_1" base token',
|
|
53
|
+
placeholderFontColor: 'Font color for "Placeholder" base token',
|
|
54
|
+
bodyEmphasizedFontColor: 'Font color for "Body_Emphasized" base token',
|
|
55
|
+
bodyFontColor: 'Font color for "Body" base token',
|
|
56
|
+
groupHeaderFontColor: 'Font color for "Group_Header_1" base token',
|
|
57
|
+
controlLabelFontColor: 'Font color for "Control_Label_1" base token',
|
|
58
|
+
buttonLabelFontColor: 'Font color for "Button_Label_1" base token',
|
|
59
|
+
tooltipCaptionFontColor: 'Font color for "Tooltip_Caption" base token',
|
|
60
|
+
headlinePlus1DisabledFontColor: 'Disabled font color for "Headline_2" base token',
|
|
61
|
+
headlineDisabledFontColor: 'Disabled font color for "Headline_1" base token',
|
|
62
|
+
titlePlus2DisabledFontColor: 'Disabled font color for "Title_3" base token',
|
|
63
|
+
titlePlus1DisabledFontColor: 'Disabled font color for "Title_2" base token',
|
|
64
|
+
titleDisabledFontColor: 'Disabled font color for "Title_1" base token',
|
|
65
|
+
subtitlePlus1DisabledFontColor: 'Disabled font color for "Subtitle_2" base token',
|
|
66
|
+
subtitleDisabledFontColor: 'Disabled font color for "Subtitle_1" base token',
|
|
67
|
+
linkStandardDisabledFontColor: 'Disabled font color for "Link_Standard_1" base token',
|
|
68
|
+
placeholderDisabledFontColor: 'Disabled font color for "Placeholder" base token',
|
|
69
|
+
bodyEmphasizedDisabledFontColor: 'Disabled font color for "Body_Emphasized" base token',
|
|
70
|
+
bodyDisabledFontColor: 'Disabled font color for "Body" base token',
|
|
71
|
+
groupHeaderDisabledFontColor: 'Disabled font color for "Group_Header_1" base token',
|
|
72
|
+
controlLabelDisabledFontColor: 'Disabled font color for "Control_Label_1" base token',
|
|
73
|
+
buttonLabelDisabledFontColor: 'Disabled font color for "Button_Label_1" base token',
|
|
74
|
+
tooltipCaptionDisabledFontColor: 'Disabled font color for "Tooltip_Caption" base token'
|
|
44
75
|
};
|
|
45
76
|
//# sourceMappingURL=design-token-comments.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"design-token-comments.js","sourceRoot":"","sources":["../../../src/theme-provider/design-token-comments.ts"],"names":[],"mappings":"AAIA,MAAM,CAAC,MAAM,QAAQ,GAA4C;IAC7D,qBAAqB,
|
|
1
|
+
{"version":3,"file":"design-token-comments.js","sourceRoot":"","sources":["../../../src/theme-provider/design-token-comments.ts"],"names":[],"mappings":"AAIA,MAAM,CAAC,MAAM,QAAQ,GAA4C;IAC7D,qBAAqB,EACjB,sGAAsG;IAC1G,0BAA0B,EAAE,8CAA8C;IAC1E,qBAAqB,EAAE,0CAA0C;IACjE,sBAAsB,EAAE,wCAAwC;IAChE,iBAAiB,EAAE,+CAA+C;IAClE,2BAA2B,EACvB,sGAAsG;IAC1G,sBAAsB,EAClB,qDAAqD;IACzD,cAAc,EAAE,4CAA4C;IAC5D,WAAW,EAAE,0CAA0C;IACvD,qBAAqB,EACjB,sGAAsG;IAC1G,SAAS,EAAE,2CAA2C;IACtD,YAAY,EACR,2FAA2F;IAC/F,SAAS,EACL,6EAA6E;IACjF,gBAAgB,EAAE,sCAAsC;IACxD,SAAS,EAAE,wCAAwC;IACnD,mBAAmB,EAAE,yCAAyC;IAC9D,gBAAgB,EAAE,yCAAyC;IAC3D,aAAa,EACT,+EAA+E;IACnF,YAAY,EAAE,qCAAqC;IACnD,eAAe,EAAE,wCAAwC;IACzD,WAAW,EAAE,sCAAsC;IACnD,WAAW,EAAE,2CAA2C;IACxD,QAAQ,EAAE,sCAAsC;IAChD,wBAAwB,EAAE,8CAA8C;IACxE,WAAW,EAAE,wBAAwB;IACrC,UAAU,EACN,mGAAmG;IACvG,WAAW,EACP,mHAAmH;IACvH,UAAU,EACN,2FAA2F;IAC/F,iBAAiB,EAAE,gDAAgD;IACnE,YAAY,EAAE,gDAAgD;IAC9D,cAAc,EAAE,6CAA6C;IAC7D,cAAc,EAAE,6CAA6C;IAC7D,SAAS,EAAE,6CAA6C;IACxD,iBAAiB,EAAE,gDAAgD;IACnE,YAAY,EAAE,gDAAgD;IAC9D,gBAAgB,EAAE,qDAAqD;IACvE,eAAe,EAAE,iDAAiD;IAClE,kBAAkB,EAAE,qDAAqD;IACzE,QAAQ,EAAE,0CAA0C;IACpD,eAAe,EAAE,oDAAoD;IACrE,gBAAgB,EAAE,qDAAqD;IACvE,eAAe,EAAE,oDAAoD;IACrE,kBAAkB,EAAE,qDAAqD;IACzE,sBAAsB,EAAE,wCAAwC;IAChE,iBAAiB,EAAE,wCAAwC;IAC3D,mBAAmB,EAAE,qCAAqC;IAC1D,mBAAmB,EAAE,qCAAqC;IAC1D,cAAc,EAAE,qCAAqC;IACrD,sBAAsB,EAAE,wCAAwC;IAChE,iBAAiB,EAAE,wCAAwC;IAC3D,qBAAqB,EAAE,6CAA6C;IACpE,oBAAoB,EAAE,yCAAyC;IAC/D,uBAAuB,EAAE,6CAA6C;IACtE,aAAa,EAAE,kCAAkC;IACjD,oBAAoB,EAAE,4CAA4C;IAClE,qBAAqB,EAAE,6CAA6C;IACpE,oBAAoB,EAAE,4CAA4C;IAClE,uBAAuB,EAAE,6CAA6C;IACtE,8BAA8B,EAC1B,iDAAiD;IACrD,yBAAyB,EACrB,iDAAiD;IACrD,2BAA2B,EAAE,8CAA8C;IAC3E,2BAA2B,EAAE,8CAA8C;IAC3E,sBAAsB,EAAE,8CAA8C;IACtE,8BAA8B,EAC1B,iDAAiD;IACrD,yBAAyB,EACrB,iDAAiD;IACrD,6BAA6B,EACzB,sDAAsD;IAC1D,4BAA4B,EACxB,kDAAkD;IACtD,+BAA+B,EAC3B,sDAAsD;IAC1D,qBAAqB,EAAE,2CAA2C;IAClE,4BAA4B,EACxB,qDAAqD;IACzD,6BAA6B,EACzB,sDAAsD;IAC1D,4BAA4B,EACxB,qDAAqD;IACzD,+BAA+B,EAC3B,sDAAsD;CAC7D,CAAC"}
|
|
@@ -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,46 +1,81 @@
|
|
|
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
|
export const tokenNames = {
|
|
2
|
-
|
|
6
|
+
actionRgbPartialColor: 'action-rgb-partial-color',
|
|
3
7
|
applicationBackgroundColor: 'application-background-color',
|
|
8
|
+
headerBackgroundColor: 'header-background-color',
|
|
9
|
+
sectionBackgroundColor: 'section-background-color',
|
|
4
10
|
fillColorSelected: 'fill-color-selected',
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
11
|
+
fillSelectedRgbPartialColor: 'fill-selected-rgb-partial-color',
|
|
12
|
+
fillHoverSelectedColor: 'fill-selected-hover-color',
|
|
13
|
+
fillHoverColor: 'fill-hover-color',
|
|
8
14
|
borderColor: 'border-color',
|
|
9
|
-
|
|
15
|
+
borderRgbPartialColor: 'border-rgb-partial-color',
|
|
10
16
|
failColor: 'fail-color',
|
|
11
17
|
warningColor: 'warning-color',
|
|
12
18
|
passColor: 'pass-color',
|
|
13
|
-
|
|
19
|
+
borderHoverColor: 'border-hover-color',
|
|
14
20
|
iconColor: 'icon-color',
|
|
15
21
|
popupBoxShadowColor: 'popup-box-shadow-color',
|
|
16
22
|
popupBorderColor: 'popup-border-color',
|
|
17
23
|
controlHeight: 'control-height',
|
|
24
|
+
smallPadding: 'small-padding',
|
|
18
25
|
standardPadding: 'standard-padding',
|
|
19
26
|
labelHeight: 'label-height',
|
|
20
27
|
borderWidth: 'border-width',
|
|
21
28
|
iconSize: 'icon-size',
|
|
29
|
+
groupHeaderTextTransform: 'group-header-text-transform',
|
|
22
30
|
drawerWidth: 'drawer-width',
|
|
23
|
-
fontFamily: 'font-family',
|
|
24
|
-
labelFontFamily: 'label-font-family',
|
|
25
|
-
groupLabelFontFamily: 'group-label-font-family',
|
|
26
|
-
drawerHeaderFontFamily: 'drawer-header-font-family',
|
|
27
|
-
labelFontSize: 'label-font-size',
|
|
28
|
-
contentFontSize: 'content-font-size',
|
|
29
|
-
groupLabelFontSize: 'group-label-font-size',
|
|
30
|
-
drawerHeaderFontSize: 'drawer-header-font-size',
|
|
31
|
-
groupLabelFontWeight: 'group-label-font-weight',
|
|
32
|
-
labelFontWeight: 'label-font-weight',
|
|
33
|
-
labelFontColor: 'label-font-color',
|
|
34
|
-
groupLabelFontColor: 'group-label-font-color',
|
|
35
|
-
contentFontColor: 'content-font-color',
|
|
36
|
-
buttonContentFontColor: 'button-content-font-color',
|
|
37
|
-
labelFontColorDisabled: 'label-font-color-disabled',
|
|
38
|
-
labelTextTransform: 'label-text-transform',
|
|
39
|
-
groupLabelTextTransform: 'group-label-text-transform',
|
|
40
|
-
contentFontColorDisabled: 'content-font-color-disabled',
|
|
41
31
|
smallDelay: 'small-delay',
|
|
42
32
|
mediumDelay: 'medium-delay',
|
|
43
|
-
|
|
33
|
+
largeDelay: 'large-delay',
|
|
34
|
+
headlinePlus1Font: 'headline-plus-1-font',
|
|
35
|
+
headlineFont: 'headline-font',
|
|
36
|
+
titlePlus2Font: 'title-plus-2-font',
|
|
37
|
+
titlePlus1Font: 'title-plus-1-font',
|
|
38
|
+
titleFont: 'title-font',
|
|
39
|
+
subtitlePlus1Font: 'subtitle-plus-1-font',
|
|
40
|
+
subtitleFont: 'subtitle-font',
|
|
41
|
+
linkStandardFont: 'link-standard-font',
|
|
42
|
+
placeholderFont: 'placeholder-font',
|
|
43
|
+
bodyEmphasizedFont: 'body-emphasized-font',
|
|
44
|
+
bodyFont: 'body-font',
|
|
45
|
+
groupHeaderFont: 'group-header-font',
|
|
46
|
+
controlLabelFont: 'control-label-font',
|
|
47
|
+
buttonLabelFont: 'button-label-font',
|
|
48
|
+
tooltipCaptionFont: 'tooltip-caption-font',
|
|
49
|
+
headlinePlus1FontColor: 'headline-plus-1-font-color',
|
|
50
|
+
headlineFontColor: 'headline-font-color',
|
|
51
|
+
titlePlus2FontColor: 'title-plus-2-font-color',
|
|
52
|
+
titlePlus1FontColor: 'title-plus-1-font-color',
|
|
53
|
+
titleFontColor: 'title-font-color',
|
|
54
|
+
subtitlePlus1FontColor: 'subtitle-plus-1-font-color',
|
|
55
|
+
subtitleFontColor: 'subtitle-font-color',
|
|
56
|
+
linkStandardFontColor: 'link-standard-font-color',
|
|
57
|
+
placeholderFontColor: 'placeholder-font-color',
|
|
58
|
+
bodyEmphasizedFontColor: 'body-emphasized-font-color',
|
|
59
|
+
bodyFontColor: 'body-font-color',
|
|
60
|
+
groupHeaderFontColor: 'group-header-font-color',
|
|
61
|
+
controlLabelFontColor: 'control-label-font-color',
|
|
62
|
+
buttonLabelFontColor: 'button-label-font-color',
|
|
63
|
+
tooltipCaptionFontColor: 'tooltip-caption-font-color',
|
|
64
|
+
headlinePlus1DisabledFontColor: 'headline-plus-1-disabled-font-color',
|
|
65
|
+
headlineDisabledFontColor: 'headline-disabled-font-color',
|
|
66
|
+
titlePlus2DisabledFontColor: 'title-plus-2-disabled-font-color',
|
|
67
|
+
titlePlus1DisabledFontColor: 'title-plus-1-disabled-font-color',
|
|
68
|
+
titleDisabledFontColor: 'title-disabled-font-color',
|
|
69
|
+
subtitlePlus1DisabledFontColor: 'subtitle-plus-1-disabled-font-color',
|
|
70
|
+
subtitleDisabledFontColor: 'subtitle-disabled-font-color',
|
|
71
|
+
linkStandardDisabledFontColor: 'link-standard-disabled-font-color',
|
|
72
|
+
placeholderDisabledFontColor: 'placeholder-disabled-font-color',
|
|
73
|
+
bodyEmphasizedDisabledFontColor: 'body-emphasized-disabled-font-color',
|
|
74
|
+
bodyDisabledFontColor: 'body-disabled-font-color',
|
|
75
|
+
groupHeaderDisabledFontColor: 'group-header-disabled-font-color',
|
|
76
|
+
controlLabelDisabledFontColor: 'control-label-disabled-font-color',
|
|
77
|
+
buttonLabelDisabledFontColor: 'button-label-disabled-font-color',
|
|
78
|
+
tooltipCaptionDisabledFontColor: 'tooltip-caption-disabled-font-color'
|
|
44
79
|
};
|
|
45
80
|
const prefix = 'ni-nimble';
|
|
46
81
|
export const styleNameFromTokenName = (tokenName) => `${prefix}-${tokenName}`;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"design-token-names.js","sourceRoot":"","sources":["../../../src/theme-provider/design-token-names.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"design-token-names.js","sourceRoot":"","sources":["../../../src/theme-provider/design-token-names.ts"],"names":[],"mappings":"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"}
|