@liner-fe/prism 1.10.2 → 1.10.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,8 @@
1
+ interface ICDocumentCheckProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICDocumentCheck: (props: ICDocumentCheckProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICExampleProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICExample: (props: ICExampleProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -109,3 +109,7 @@ export { ICLightMode } from './light-mode';
109
109
  export { ICDarkMode } from './dark-mode';
110
110
  export { ICTarget } from './target';
111
111
  export { ICQuestionBox } from './question-box';
112
+ export { ICNewTab } from './new-tab';
113
+ export { ICExample } from './example';
114
+ export { ICQuote } from './quote';
115
+ export { ICDocumentCheck } from './document-check';
@@ -0,0 +1,8 @@
1
+ interface ICNewTabProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICNewTab: (props: ICNewTabProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICQuoteProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICQuote: (props: ICQuoteProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -10,8 +10,9 @@ declare const iconSizeMap: {
10
10
  readonly xl: 40;
11
11
  };
12
12
  export declare const iconKeyOptions: IconKey[];
13
+ export declare const colorKeys: BasicColorType[];
13
14
  declare const iconVariants: (props?: ({
14
- type?: "neutral-label-primary" | "neutral-label-secondary" | "neutral-label-tertiary" | "neutral-label-quaternary" | "neutral-label-static-primary" | "neutral-label-static-secondary" | "inverse-label-primary" | "inverse-label-secondary" | "inverse-label-tertiary" | "inverse-label-quaternary" | "inverse-label-static-primary" | "inverse-label-static-secondary" | "brand-label-primary" | "brand-label-secondary" | "function-label-positive" | "function-label-negative" | "function-label-caution" | null | undefined;
15
+ type?: BasicColorType | null | undefined;
15
16
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
16
17
  export declare const getIconComponent: (iconKey: IconKey, map: IconMapType) => import("../../type").IconComponent;
17
18
  type IconSizeKey = keyof typeof iconSizeMap;
@@ -1,3 +1,3 @@
1
1
  export declare const colorVariants: (props?: ({
2
- type?: "neutral-label-primary" | "neutral-label-secondary" | "neutral-label-tertiary" | "neutral-label-quaternary" | "neutral-label-static-primary" | "neutral-label-static-secondary" | "inverse-label-primary" | "inverse-label-secondary" | "inverse-label-tertiary" | "inverse-label-quaternary" | "inverse-label-static-primary" | "inverse-label-static-secondary" | "brand-label-primary" | "brand-label-secondary" | "function-label-positive" | "function-label-negative" | "function-label-caution" | null | undefined;
2
+ type?: import("../..").BasicColorType | null | undefined;
3
3
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
package/lib/index.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /* esbuild-sass-plugin:css-chunk:src/components/Button/style.module.scss */
2
- ._button_fkfnu_1 {
2
+ ._button_k9hnj_1 {
3
3
  position: relative;
4
4
  display: flex;
5
5
  align-items: center;
@@ -11,305 +11,335 @@
11
11
  overflow: hidden;
12
12
  cursor: pointer;
13
13
  }
14
- ._button_fkfnu_1:disabled {
15
- background: var(--neutral-container-mid);
14
+ ._button_k9hnj_1:disabled {
15
+ background: var(--neutral-fill-mid);
16
16
  color: var(--neutral-label-tertiary);
17
17
  cursor: not-allowed;
18
18
  }
19
- ._button_fkfnu_1:disabled svg path {
19
+ ._button_k9hnj_1:disabled svg path {
20
20
  fill: var(--neutral-label-tertiary);
21
21
  }
22
- ._default_fkfnu_22 {
22
+ ._default_k9hnj_22 {
23
23
  color: var(--inverse-label-primary);
24
24
  background: var(--lp-pri-achromatic-white);
25
25
  }
26
- ._default_fkfnu_22 svg path {
26
+ ._default_k9hnj_22 svg path {
27
27
  fill: var(--inverse-label-primary);
28
28
  }
29
- ._text_fkfnu_30 {
29
+ ._text_k9hnj_30 {
30
30
  background: none;
31
31
  color: var(--inverse-label-static-primary);
32
32
  }
33
- ._text_fkfnu_30:not(:disabled):hover {
33
+ ._text_k9hnj_30:not(:disabled):hover {
34
34
  text-decoration: underline;
35
35
  text-underline-offset: 0.2rem;
36
36
  }
37
- ._primary_fkfnu_39 {
37
+ ._primary_k9hnj_39 {
38
38
  color: var(--inverse-label-static-primary);
39
39
  background: var(--brand-container-mid);
40
40
  }
41
- ._primary_fkfnu_39:not(:disabled):hover {
41
+ ._primary_k9hnj_39:not(:disabled):hover {
42
42
  background: var(--brand-container-mid-hover);
43
43
  }
44
- ._secondary_fkfnu_47 {
44
+ ._secondary_k9hnj_47 {
45
45
  background: var(--inverse-container-high);
46
46
  }
47
- ._secondary_fkfnu_47:not(:disabled):hover {
47
+ ._secondary_k9hnj_47:not(:disabled):hover {
48
48
  background: var(--inverse-container-high-hover);
49
49
  }
50
- ._tertiary_fkfnu_54 {
50
+ ._tertiary_k9hnj_54 {
51
51
  background: var(--neutral-fill-mid);
52
52
  color: var(--neutral-label-primary);
53
53
  }
54
- ._tertiary_fkfnu_54:not(:disabled):hover {
54
+ ._tertiary_k9hnj_54:not(:disabled):hover {
55
55
  background: var(--neutral-fill-mid-hover);
56
56
  }
57
- ._tertiary_fkfnu_54 svg path {
57
+ ._tertiary_k9hnj_54 svg path {
58
58
  fill: var(--neutral-label-primary);
59
59
  }
60
- ._quaternary_fkfnu_65 {
60
+ ._quaternary_k9hnj_65 {
61
61
  color: var(--neutral-label-primary);
62
62
  border: 1px solid var(--neutral-border-overlay-normal);
63
63
  background: var(--neutral-fill-lowest);
64
64
  }
65
- ._quaternary_fkfnu_65:not(:disabled):hover {
65
+ ._quaternary_k9hnj_65:not(:disabled):hover {
66
66
  background: var(--neutral-fill-lowest-hover);
67
67
  }
68
- ._quaternary_fkfnu_65 svg path {
68
+ ._quaternary_k9hnj_65 svg path {
69
69
  fill: var(--neutral-label-primary);
70
70
  }
71
- ._quaternary_fkfnu_65:disabled {
71
+ ._quaternary_k9hnj_65:disabled {
72
72
  background: var(--neutral-label-primary);
73
73
  color: var(--neutral-label-tertiary);
74
74
  opacity: 0.4;
75
75
  }
76
- ._quaternary_fkfnu_65:disabled svg path {
76
+ ._quaternary_k9hnj_65:disabled svg path {
77
77
  fill: var(--neutral-label-tertiary);
78
78
  }
79
- ._error_fkfnu_85 {
79
+ ._error_k9hnj_85 {
80
80
  color: var(--inverse-label-static-primary);
81
81
  background: var(--function-container-negative);
82
82
  }
83
- ._error_fkfnu_85:not(:disabled):hover {
83
+ ._error_k9hnj_85:not(:disabled):hover {
84
84
  background: var(--function-container-negative-hover);
85
85
  }
86
- ._inverse_fkfnu_93 {
86
+ ._inverse_k9hnj_93 {
87
87
  background: var(--neutral-container-static-lowest);
88
88
  color: var(--neutral-label-static-primary);
89
89
  }
90
- ._inverse_fkfnu_93:not(:disabled):hover {
90
+ ._inverse_k9hnj_93:not(:disabled):hover {
91
91
  background: var(--neutral-container-static-lowest-hover);
92
92
  }
93
- ._inverse_fkfnu_93 svg path {
93
+ ._inverse_k9hnj_93 svg path {
94
94
  fill: var(--neutral-label-static-primary);
95
95
  }
96
- ._inverse_fkfnu_93:disabled {
97
- background: var(--neutral-container-mid);
96
+ ._inverse_k9hnj_93:disabled {
97
+ background: var(--neutral-fill-mid);
98
98
  color: var(--neutral-label-tertiary);
99
99
  opacity: 0.4;
100
100
  }
101
- ._inverse_fkfnu_93:disabled svg path {
101
+ ._inverse_k9hnj_93:disabled svg path {
102
102
  fill: var(--neutral-label-tertiary);
103
103
  }
104
- ._ghost_fkfnu_112._primary_fkfnu_39 {
104
+ ._ghost_k9hnj_112._primary_k9hnj_39 {
105
105
  background: var(--neutral-fill-lowest);
106
106
  color: var(--neutral-label-primary);
107
107
  }
108
- ._ghost_fkfnu_112._primary_fkfnu_39:not(:disabled):hover {
108
+ ._ghost_k9hnj_112._primary_k9hnj_39:not(:disabled):hover {
109
109
  background: var(--neutral-fill-lowest-hover);
110
110
  }
111
- ._ghost_fkfnu_112._primary_fkfnu_39 svg path {
111
+ ._ghost_k9hnj_112._primary_k9hnj_39 svg path {
112
112
  fill: var(--neutral-label-primary);
113
113
  }
114
- ._ghost_fkfnu_112._primary_fkfnu_39:disabled {
114
+ ._ghost_k9hnj_112._primary_k9hnj_39:disabled {
115
115
  background: var(--neutral-fill-lowest);
116
116
  color: var(--neutral-label-tertiary);
117
117
  }
118
- ._ghost_fkfnu_112._primary_fkfnu_39:disabled svg path {
118
+ ._ghost_k9hnj_112._primary_k9hnj_39:disabled svg path {
119
119
  fill: var(--neutral-label-tertiary);
120
120
  }
121
- ._ghost_fkfnu_112._secondary_fkfnu_47 {
121
+ ._ghost_k9hnj_112._secondary_k9hnj_47 {
122
122
  background: var(--neutral-fill-lowest);
123
123
  color: var(--neutral-label-secondary);
124
124
  }
125
- ._ghost_fkfnu_112._secondary_fkfnu_47:not(:disabled):hover {
125
+ ._ghost_k9hnj_112._secondary_k9hnj_47:not(:disabled):hover {
126
126
  background: var(--neutral-fill-lowest-hover);
127
127
  }
128
- ._ghost_fkfnu_112._secondary_fkfnu_47 svg path {
128
+ ._ghost_k9hnj_112._secondary_k9hnj_47 svg path {
129
129
  fill: var(--neutral-label-secondary);
130
130
  }
131
- ._ghost_fkfnu_112._secondary_fkfnu_47:disabled {
131
+ ._ghost_k9hnj_112._secondary_k9hnj_47:disabled {
132
132
  background: var(--neutral-fill-lowest);
133
133
  color: var(--neutral-label-tertiary);
134
134
  }
135
- ._ghost_fkfnu_112._secondary_fkfnu_47:disabled svg path {
135
+ ._ghost_k9hnj_112._secondary_k9hnj_47:disabled svg path {
136
136
  fill: var(--neutral-label-tertiary);
137
137
  }
138
- ._cta_fkfnu_147 {
138
+ ._cta_k9hnj_147 {
139
139
  border-radius: var(--lp-sys-radius-m);
140
140
  width: fit-content;
141
141
  height: 52px;
142
142
  gap: 8px;
143
143
  }
144
- ._l_fkfnu_154 {
144
+ ._l_k9hnj_154 {
145
145
  border-radius: var(--lp-sys-radius-s);
146
146
  width: fit-content;
147
147
  height: 44px;
148
148
  }
149
- ._m_fkfnu_160 {
149
+ ._m_k9hnj_160 {
150
150
  border-radius: var(--lp-sys-radius-s);
151
151
  width: fit-content;
152
152
  height: 36px;
153
153
  }
154
- ._s_fkfnu_47 {
154
+ ._s_k9hnj_47 {
155
155
  border-radius: var(--lp-sys-radius-s);
156
156
  width: fit-content;
157
157
  height: 28px;
158
158
  }
159
- ._align-center_fkfnu_172 {
159
+ ._align-center_k9hnj_172 {
160
160
  justify-content: center;
161
161
  }
162
- ._align-space-between_fkfnu_176 {
162
+ ._align-space-between_k9hnj_176 {
163
163
  justify-content: space-between;
164
164
  }
165
- ._neutral-primary_fkfnu_180 {
165
+ ._neutral-primary_k9hnj_180 {
166
166
  color: var(--neutral-label-secondary);
167
167
  opacity: 0.8;
168
168
  }
169
- ._inverse-primary_fkfnu_185 {
169
+ ._inverse-primary_k9hnj_185 {
170
170
  color: var(--inverse-label-primary);
171
171
  }
172
- ._inverse-static-primary_fkfnu_189 {
172
+ ._inverse-static-primary_k9hnj_189 {
173
173
  color: var(--inverse-label-static-primary);
174
174
  }
175
- ._content_fkfnu_193 {
175
+ ._content_k9hnj_193 {
176
176
  line-height: 0;
177
177
  padding: 0px var(--lp-sys-padding-component-100);
178
178
  }
179
- ._full_fkfnu_198 {
179
+ ._full_k9hnj_198 {
180
180
  width: 100%;
181
181
  }
182
- ._fit-content_fkfnu_202 {
182
+ ._fit-content_k9hnj_202 {
183
183
  width: fit-content;
184
184
  }
185
- ._children_fkfnu_206 {
185
+ ._children_k9hnj_206 {
186
186
  display: flex;
187
187
  align-items: center;
188
188
  justify-content: center;
189
189
  }
190
- ._cta-children_fkfnu_212 {
190
+ ._cta-children_k9hnj_212 {
191
191
  padding: 0 var(--lp-sys-gap-positive-300);
192
192
  gap: var(--lp-sys-gap-positive-100);
193
193
  }
194
- ._l-children_fkfnu_217 {
194
+ ._l-children_k9hnj_217 {
195
195
  padding: 0 var(--lp-sys-gap-positive-200);
196
196
  gap: var(--lp-sys-gap-positive-50);
197
197
  }
198
- ._m-children_fkfnu_222 {
198
+ ._m-children_k9hnj_222 {
199
199
  padding: 0 var(--lp-sys-gap-positive-150);
200
200
  gap: var(--lp-sys-gap-positive-50);
201
201
  }
202
- ._s-children_fkfnu_227 {
202
+ ._s-children_k9hnj_227 {
203
203
  padding: 0 var(--lp-sys-gap-positive-150);
204
204
  gap: var(--lp-sys-gap-positive-50);
205
205
  }
206
206
 
207
207
  /* esbuild-sass-plugin:css-chunk:src/components/Icon/style.module.scss */
208
- ._icon_19wcc_1 {
208
+ ._icon_h9p7f_1 {
209
209
  fill: gray;
210
210
  }
211
- ._neutral-label-primary_19wcc_5 path:not([fill=white]) {
211
+ ._neutral-label-primary_h9p7f_5 path:not([fill=white]) {
212
212
  fill: var(--neutral-label-primary);
213
213
  }
214
- ._neutral-label-primary_19wcc_5 path[fill=white] {
214
+ ._neutral-label-primary_h9p7f_5 path[fill=white] {
215
215
  fill: var(--inverse-label-primary);
216
216
  }
217
- ._neutral-label-secondary_19wcc_12 path:not([fill=white]) {
217
+ ._neutral-label-secondary_h9p7f_12 path:not([fill=white]) {
218
218
  fill: var(--neutral-label-secondary);
219
219
  }
220
- ._neutral-label-secondary_19wcc_12 path[fill=white] {
220
+ ._neutral-label-secondary_h9p7f_12 path[fill=white] {
221
221
  fill: var(--inverse-label-primary);
222
222
  }
223
- ._neutral-label-tertiary_19wcc_19 path:not([fill=white]) {
223
+ ._neutral-label-tertiary_h9p7f_19 path:not([fill=white]) {
224
224
  fill: var(--neutral-label-tertiary);
225
225
  }
226
- ._neutral-label-tertiary_19wcc_19 path[fill=white] {
226
+ ._neutral-label-tertiary_h9p7f_19 path[fill=white] {
227
227
  fill: var(--inverse-label-primary);
228
228
  }
229
- ._neutral-label-quaternary_19wcc_26 path:not([fill=white]) {
229
+ ._neutral-label-quaternary_h9p7f_26 path:not([fill=white]) {
230
230
  fill: var(--neutral-label-quaternary);
231
231
  }
232
- ._neutral-label-quaternary_19wcc_26 path[fill=white] {
232
+ ._neutral-label-quaternary_h9p7f_26 path[fill=white] {
233
233
  fill: var(--inverse-label-primary);
234
234
  }
235
- ._neutral-label-static-primary_19wcc_33 path:not([fill=white]) {
235
+ ._neutral-label-static-primary_h9p7f_33 path:not([fill=white]) {
236
236
  fill: var(--neutral-label-static-primary);
237
237
  }
238
- ._neutral-label-static-primary_19wcc_33 path[fill=white] {
238
+ ._neutral-label-static-primary_h9p7f_33 path[fill=white] {
239
239
  fill: var(--inverse-label-primary);
240
240
  }
241
- ._neutral-label-static-secondary_19wcc_40 path:not([fill=white]) {
241
+ ._neutral-label-static-secondary_h9p7f_40 path:not([fill=white]) {
242
242
  fill: var(--neutral-label-static-secondary);
243
243
  }
244
- ._neutral-label-static-secondary_19wcc_40 path[fill=white] {
244
+ ._neutral-label-static-secondary_h9p7f_40 path[fill=white] {
245
245
  fill: var(--inverse-label-primary);
246
246
  }
247
- ._inverse-label-primary_19wcc_47 path:not([fill=white]) {
247
+ ._inverse-label-primary_h9p7f_47 path:not([fill=white]) {
248
248
  fill: var(--inverse-label-primary);
249
249
  }
250
- ._inverse-label-primary_19wcc_47 path[fill=white] {
250
+ ._inverse-label-primary_h9p7f_47 path[fill=white] {
251
251
  fill: var(--inverse-label-primary);
252
252
  }
253
- ._inverse-label-secondary_19wcc_54 path:not([fill=white]) {
253
+ ._inverse-label-secondary_h9p7f_54 path:not([fill=white]) {
254
254
  fill: var(--inverse-label-secondary);
255
255
  }
256
- ._inverse-label-secondary_19wcc_54 path[fill=white] {
256
+ ._inverse-label-secondary_h9p7f_54 path[fill=white] {
257
257
  fill: var(--inverse-label-primary);
258
258
  }
259
- ._inverse-label-tertiary_19wcc_61 path:not([fill=white]) {
259
+ ._inverse-label-tertiary_h9p7f_61 path:not([fill=white]) {
260
260
  fill: var(--inverse-label-tertiary);
261
261
  }
262
- ._inverse-label-tertiary_19wcc_61 path[fill=white] {
262
+ ._inverse-label-tertiary_h9p7f_61 path[fill=white] {
263
263
  fill: var(--inverse-label-primary);
264
264
  }
265
- ._inverse-label-quaternary_19wcc_68 path:not([fill=white]) {
265
+ ._inverse-label-quaternary_h9p7f_68 path:not([fill=white]) {
266
266
  fill: var(--inverse-label-quaternary);
267
267
  }
268
- ._inverse-label-quaternary_19wcc_68 path[fill=white] {
268
+ ._inverse-label-quaternary_h9p7f_68 path[fill=white] {
269
269
  fill: var(--inverse-label-primary);
270
270
  }
271
- ._inverse-label-static-primary_19wcc_75 path:not([fill=white]) {
271
+ ._inverse-label-static-primary_h9p7f_75 path:not([fill=white]) {
272
272
  fill: var(--inverse-label-static-primary);
273
273
  }
274
- ._inverse-label-static-primary_19wcc_75 path[fill=white] {
274
+ ._inverse-label-static-primary_h9p7f_75 path[fill=white] {
275
275
  fill: var(--inverse-label-primary);
276
276
  }
277
- ._inverse-label-static-secondary_19wcc_82 path:not([fill=white]) {
277
+ ._inverse-label-static-secondary_h9p7f_82 path:not([fill=white]) {
278
278
  fill: var(--inverse-label-static-secondary);
279
279
  }
280
- ._inverse-label-static-secondary_19wcc_82 path[fill=white] {
280
+ ._inverse-label-static-secondary_h9p7f_82 path[fill=white] {
281
281
  fill: var(--inverse-label-primary);
282
282
  }
283
- ._brand-label-primary_19wcc_89 path:not([fill=white]) {
283
+ ._brand-label-primary_h9p7f_89 path:not([fill=white]) {
284
284
  fill: var(--brand-label-primary);
285
285
  }
286
- ._brand-label-primary_19wcc_89 path[fill=white] {
286
+ ._brand-label-primary_h9p7f_89 path[fill=white] {
287
287
  fill: var(--inverse-label-primary);
288
288
  }
289
- ._brand-label-secondary_19wcc_96 path:not([fill=white]) {
289
+ ._brand-label-secondary_h9p7f_96 path:not([fill=white]) {
290
290
  fill: var(--brand-label-secondary);
291
291
  }
292
- ._brand-label-secondary_19wcc_96 path[fill=white] {
292
+ ._brand-label-secondary_h9p7f_96 path[fill=white] {
293
293
  fill: var(--inverse-label-primary);
294
294
  }
295
- ._function-label-positive_19wcc_103 path:not([fill=white]) {
295
+ ._function-label-positive_h9p7f_103 path:not([fill=white]) {
296
296
  fill: var(--function-label-positive);
297
297
  }
298
- ._function-label-positive_19wcc_103 path[fill=white] {
298
+ ._function-label-positive_h9p7f_103 path[fill=white] {
299
299
  fill: var(--inverse-label-primary);
300
300
  }
301
- ._function-label-negative_19wcc_110 path:not([fill=white]) {
301
+ ._function-label-negative_h9p7f_110 path:not([fill=white]) {
302
302
  fill: var(--function-label-negative);
303
303
  }
304
- ._function-label-negative_19wcc_110 path[fill=white] {
304
+ ._function-label-negative_h9p7f_110 path[fill=white] {
305
305
  fill: var(--inverse-label-primary);
306
306
  }
307
- ._function-label-caution_19wcc_117 path:not([fill=white]) {
307
+ ._function-label-caution_h9p7f_117 path:not([fill=white]) {
308
308
  fill: var(--function-label-caution);
309
309
  }
310
- ._function-label-caution_19wcc_117 path[fill=white] {
310
+ ._function-label-caution_h9p7f_117 path[fill=white] {
311
311
  fill: var(--inverse-label-primary);
312
312
  }
313
+ ._accent-yellow_h9p7f_124 path:not([fill=white]) {
314
+ fill: var(--accent-yellow);
315
+ }
316
+ ._accent-yellow_h9p7f_124 path[fill=white] {
317
+ fill: var(--accent-yellow);
318
+ }
319
+ ._accent-mint_h9p7f_131 path:not([fill=white]) {
320
+ fill: var(--accent-mint);
321
+ }
322
+ ._accent-mint_h9p7f_131 path[fill=white] {
323
+ fill: var(--accent-mint);
324
+ }
325
+ ._accent-cyan_h9p7f_138 path:not([fill=white]) {
326
+ fill: var(--accent-cyan);
327
+ }
328
+ ._accent-cyan_h9p7f_138 path[fill=white] {
329
+ fill: var(--accent-cyan);
330
+ }
331
+ ._accent-purple_h9p7f_145 path:not([fill=white]) {
332
+ fill: var(--accent-purple);
333
+ }
334
+ ._accent-purple_h9p7f_145 path[fill=white] {
335
+ fill: var(--accent-purple);
336
+ }
337
+ ._accent-pink_h9p7f_152 path:not([fill=white]) {
338
+ fill: var(--accent-pink);
339
+ }
340
+ ._accent-pink_h9p7f_152 path[fill=white] {
341
+ fill: var(--accent-pink);
342
+ }
313
343
 
314
344
  /* esbuild-sass-plugin:css-chunk:src/components/Toast/style.module.scss */
315
345
  @keyframes _hide_1dm5g_1 {
@@ -408,65 +438,80 @@
408
438
  }
409
439
 
410
440
  /* esbuild-sass-plugin:css-chunk:src/components/Typography/style.module.scss */
411
- ._caption_11wz1_1 {
441
+ ._caption_xamca_1 {
412
442
  display: block;
413
443
  text-align: start;
414
444
  }
415
- ._typography_11wz1_6 {
445
+ ._typography_xamca_6 {
416
446
  white-space: pre-wrap;
417
447
  margin: 0;
418
448
  }
419
- ._neutral-label-primary_11wz1_11 {
449
+ ._neutral-label-primary_xamca_11 {
420
450
  color: var(--neutral-label-primary);
421
451
  }
422
- ._neutral-label-secondary_11wz1_15 {
452
+ ._neutral-label-secondary_xamca_15 {
423
453
  color: var(--neutral-label-secondary);
424
454
  }
425
- ._neutral-label-tertiary_11wz1_19 {
455
+ ._neutral-label-tertiary_xamca_19 {
426
456
  color: var(--neutral-label-tertiary);
427
457
  }
428
- ._neutral-label-quaternary_11wz1_23 {
458
+ ._neutral-label-quaternary_xamca_23 {
429
459
  color: var(--neutral-label-quaternary);
430
460
  }
431
- ._neutral-label-static-primary_11wz1_27 {
461
+ ._neutral-label-static-primary_xamca_27 {
432
462
  color: var(--neutral-label-static-primary);
433
463
  }
434
- ._neutral-label-static-secondary_11wz1_31 {
464
+ ._neutral-label-static-secondary_xamca_31 {
435
465
  color: var(--neutral-label-static-secondary);
436
466
  }
437
- ._inverse-label-primary_11wz1_35 {
467
+ ._inverse-label-primary_xamca_35 {
438
468
  color: var(--inverse-label-primary);
439
469
  }
440
- ._inverse-label-secondary_11wz1_39 {
470
+ ._inverse-label-secondary_xamca_39 {
441
471
  color: var(--inverse-label-secondary);
442
472
  }
443
- ._inverse-label-tertiary_11wz1_43 {
473
+ ._inverse-label-tertiary_xamca_43 {
444
474
  color: var(--inverse-label-tertiary);
445
475
  }
446
- ._inverse-label-quaternary_11wz1_47 {
476
+ ._inverse-label-quaternary_xamca_47 {
447
477
  color: var(--inverse-label-quaternary);
448
478
  }
449
- ._inverse-label-static-primary_11wz1_51 {
479
+ ._inverse-label-static-primary_xamca_51 {
450
480
  color: var(--inverse-label-static-primary);
451
481
  }
452
- ._inverse-label-static-secondary_11wz1_55 {
482
+ ._inverse-label-static-secondary_xamca_55 {
453
483
  color: var(--inverse-label-static-secondary);
454
484
  }
455
- ._brand-label-primary_11wz1_59 {
485
+ ._brand-label-primary_xamca_59 {
456
486
  color: var(--brand-label-primary);
457
487
  }
458
- ._brand-label-secondary_11wz1_63 {
488
+ ._brand-label-secondary_xamca_63 {
459
489
  color: var(--brand-label-secondary);
460
490
  }
461
- ._function-label-positive_11wz1_67 {
491
+ ._function-label-positive_xamca_67 {
462
492
  color: var(--function-label-positive);
463
493
  }
464
- ._function-label-negative_11wz1_71 {
494
+ ._function-label-negative_xamca_71 {
465
495
  color: var(--function-label-negative);
466
496
  }
467
- ._function-label-caution_11wz1_75 {
497
+ ._function-label-caution_xamca_75 {
468
498
  color: var(--function-label-caution);
469
499
  }
500
+ ._accent-yellow_xamca_79 {
501
+ color: var(--accent-yellow);
502
+ }
503
+ ._accent-mint_xamca_83 {
504
+ color: var(--accent-mint);
505
+ }
506
+ ._accent-cyan_xamca_87 {
507
+ color: var(--accent-cyan);
508
+ }
509
+ ._accent-purple_xamca_91 {
510
+ color: var(--accent-purple);
511
+ }
512
+ ._accent-pink_xamca_95 {
513
+ color: var(--accent-pink);
514
+ }
470
515
 
471
516
  /* esbuild-sass-plugin:css-chunk:src/components/Popover/style.module.scss */
472
517
  ._content_dilgu_1 {