@infonomic/uikit 6.5.1 → 6.6.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/README.md +76 -4
- package/dist/components/accordion/accordion.module.css +1 -2
- package/dist/components/avatar/avatar.module.css +2 -19
- package/dist/components/avatar/avatar_module.css +2 -10
- package/dist/components/button/button-group.d.ts.map +1 -1
- package/dist/components/button/button-group.js +1 -1
- package/dist/components/button/button.module.css +56 -37
- package/dist/components/button/button_module.css +12 -12
- package/dist/components/button/combo-button.d.ts.map +1 -1
- package/dist/components/button/combo-button.module.css +3 -3
- package/dist/components/button/copy-button.d.ts.map +1 -1
- package/dist/components/button/copy-button.js +14 -7
- package/dist/components/card/card.module.css +1 -9
- package/dist/components/card/card_module.css +1 -5
- package/dist/components/chips/chip.module.css +32 -21
- package/dist/components/chips/chip_module.css +2 -2
- package/dist/components/dropdown/dropdown.d.ts.map +1 -1
- package/dist/components/hamburger/hamburger.module.css +6 -7
- package/dist/components/inputs/autocomplete.d.ts.map +1 -1
- package/dist/components/inputs/autocomplete.module.css +9 -10
- package/dist/components/inputs/autocomplete_module.css +2 -2
- package/dist/components/inputs/checkbox-group.module.css +6 -7
- package/dist/components/inputs/checkbox.module.css +16 -18
- package/dist/components/inputs/checkbox_module.css +2 -2
- package/dist/components/inputs/error-text.module.css +1 -1
- package/dist/components/inputs/error-text_module.css +1 -1
- package/dist/components/inputs/input.module.css +10 -11
- package/dist/components/inputs/input_module.css +2 -2
- package/dist/components/inputs/label.module.css +1 -1
- package/dist/components/inputs/label_module.css +1 -1
- package/dist/components/inputs/radio-group.module.css +6 -7
- package/dist/components/inputs/select.d.ts.map +1 -1
- package/dist/components/inputs/select.module.css +6 -7
- package/dist/components/inputs/text-area.module.css +10 -9
- package/dist/components/notifications/toast.module.css +9 -19
- package/dist/components/notifications/toast_module.css +3 -6
- package/dist/components/pager/first-button.d.ts.map +1 -1
- package/dist/components/pager/last-button.d.ts.map +1 -1
- package/dist/components/pager/next-button.d.ts.map +1 -1
- package/dist/components/pager/number-button.d.ts.map +1 -1
- package/dist/components/pager/pagination.module.css +1 -6
- package/dist/components/pager/pagination_module.css +1 -1
- package/dist/components/pager/previous-button.d.ts.map +1 -1
- package/dist/components/scroll-area/scroll-area.d.ts.map +1 -1
- package/dist/components/scroll-to-top/scroll-to-top.module.css +3 -3
- package/dist/components/scroll-to-top/scroll-to-top_module.css +6 -6
- package/dist/components/tabs/tabs.module.css +6 -7
- package/dist/components/tooltip/tooltip.d.ts.map +1 -1
- package/dist/components/tooltip/tooltip.module.css +10 -11
- package/dist/lib/ripple.js +3 -3
- package/dist/loaders/ellipses.d.ts.map +1 -1
- package/dist/loaders/ring.d.ts.map +1 -1
- package/dist/loaders/spinner.d.ts.map +1 -1
- package/dist/styles/components-vanilla.css +1 -1
- package/dist/styles/styles.css +1 -1
- package/dist/widgets/datepicker/datepicker.d.ts.map +1 -1
- package/dist/widgets/datepicker/datepicker.module.css +1 -2
- package/dist/widgets/drawer/drawer.module.css +1 -2
- package/dist/widgets/modal/modal.d.ts.map +1 -1
- package/dist/widgets/modal/modal.module.css +1 -4
- package/package.json +1 -1
- package/src/components/accordion/accordion.module.css +1 -2
- package/src/components/avatar/avatar.module.css +2 -19
- package/src/components/button/button-group.tsx +3 -9
- package/src/components/button/button.module.css +56 -37
- package/src/components/button/combo-button.module.css +3 -3
- package/src/components/button/combo-button.tsx +1 -7
- package/src/components/button/copy-button.tsx +23 -9
- package/src/components/card/card.module.css +1 -9
- package/src/components/chips/chip.module.css +32 -21
- package/src/components/chips/chip.stories.tsx +2 -2
- package/src/components/chips/chip.tsx +2 -2
- package/src/components/dropdown/dropdown.tsx +4 -19
- package/src/components/hamburger/hamburger.module.css +6 -7
- package/src/components/hamburger/hamburger.stories.tsx +0 -1
- package/src/components/inputs/autocomplete.module.css +9 -10
- package/src/components/inputs/autocomplete.tsx +10 -4
- package/src/components/inputs/calendar.stories.tsx +18 -18
- package/src/components/inputs/checkbox-group.module.css +6 -7
- package/src/components/inputs/checkbox-group.stories.tsx +4 -7
- package/src/components/inputs/checkbox.module.css +16 -18
- package/src/components/inputs/error-text.module.css +1 -1
- package/src/components/inputs/input.module.css +10 -11
- package/src/components/inputs/label.module.css +1 -1
- package/src/components/inputs/radio-group.module.css +6 -7
- package/src/components/inputs/select.module.css +6 -7
- package/src/components/inputs/select.stories.tsx +21 -4
- package/src/components/inputs/select.tsx +9 -7
- package/src/components/inputs/text-area.module.css +10 -9
- package/src/components/notifications/toast.module.css +9 -19
- package/src/components/notifications/toast.tsx +2 -11
- package/src/components/pager/first-button.tsx +5 -1
- package/src/components/pager/last-button.tsx +5 -1
- package/src/components/pager/next-button.tsx +5 -1
- package/src/components/pager/number-button.tsx +6 -3
- package/src/components/pager/pagination.module.css +1 -6
- package/src/components/pager/previous-button.tsx +5 -1
- package/src/components/scroll-area/scroll-area.tsx +1 -1
- package/src/components/scroll-to-top/scroll-to-top.module.css +3 -3
- package/src/components/tabs/tabs.module.css +6 -7
- package/src/components/tooltip/tooltip.module.css +10 -11
- package/src/components/tooltip/tooltip.tsx +12 -12
- package/src/lib/ripple.ts +3 -3
- package/src/loaders/ellipses.tsx +1 -1
- package/src/loaders/loaders.stories.tsx +44 -10
- package/src/loaders/ring.tsx +1 -1
- package/src/loaders/spinner.tsx +2 -2
- package/src/styles/components/hamburger.css +6 -6
- package/src/styles/components/loaders.css +1 -1
- package/src/styles/functional/README.md +67 -0
- package/src/styles/functional/borders.css +19 -0
- package/src/styles/functional/colors.css +237 -69
- package/src/styles/functional/functional.css +1 -0
- package/src/styles/functional/shadcn-compat.css +120 -0
- package/src/styles/functional/surfaces.css +17 -0
- package/src/styles/functional/typography.css +14 -6
- package/src/styles/local-fonts.css +1 -1
- package/src/styles/theme/theme.css +1 -1
- package/src/styles/utils/utility-classes.css +12 -22
- package/src/widgets/datepicker/datepicker.module.css +1 -2
- package/src/widgets/datepicker/datepicker.tsx +10 -8
- package/src/widgets/drawer/drawer.module.css +1 -2
- package/src/widgets/modal/modal.module.css +1 -4
- package/src/widgets/modal/modal.tsx +2 -6
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
@layer infonomic-base,
|
|
2
|
-
infonomic-functional,
|
|
3
|
-
infonomic-utilities,
|
|
4
|
-
infonomic-theme,
|
|
5
|
-
infonomic-typography,
|
|
6
|
-
infonomic-components;
|
|
2
|
+
infonomic-functional,
|
|
3
|
+
infonomic-utilities,
|
|
4
|
+
infonomic-theme,
|
|
5
|
+
infonomic-typography,
|
|
6
|
+
infonomic-components;
|
|
7
7
|
|
|
8
8
|
@layer infonomic-components {
|
|
9
|
-
|
|
10
9
|
.chip,
|
|
11
10
|
:global(.infonomic-chip) {
|
|
12
11
|
--chip-font-size: 0.9rem;
|
|
@@ -148,10 +147,14 @@ infonomic-components;
|
|
|
148
147
|
.filled[disabled],
|
|
149
148
|
:global(.infonomic-chip-filled):disabled,
|
|
150
149
|
:global(.infonomic-chip-filled)[disabled] {
|
|
151
|
-
background-color: var(
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
150
|
+
background-color: var(
|
|
151
|
+
--chip-variant-filled-disabled,
|
|
152
|
+
oklch(from var(--chip-variant-filled) calc(l * 1.1) calc(c * 0.85) h)
|
|
153
|
+
);
|
|
154
|
+
color: var(
|
|
155
|
+
--chip-variant-filled-foreground-disabled,
|
|
156
|
+
oklch(from var(--chip-variant-filled-foreground) calc(l * 0.9) calc(c * 0.85) h)
|
|
157
|
+
);
|
|
155
158
|
}
|
|
156
159
|
|
|
157
160
|
/* -------------------------------------------------------- */
|
|
@@ -179,10 +182,14 @@ infonomic-components;
|
|
|
179
182
|
.filled-weak[disabled],
|
|
180
183
|
:global(.infonomic-chip-filled-weak):disabled,
|
|
181
184
|
:global(.infonomic-chip-filled-weak)[disabled] {
|
|
182
|
-
background-color: var(
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
185
|
+
background-color: var(
|
|
186
|
+
--chip-variant-filled-weak-disabled,
|
|
187
|
+
oklch(from var(--chip-variant-filled-weak) calc(l * 1.1) calc(c * 0.85) h)
|
|
188
|
+
);
|
|
189
|
+
color: var(
|
|
190
|
+
--chip-variant-filled-weak-foreground-disabled,
|
|
191
|
+
oklch(from var(--chip-variant-filled-weak-foreground) calc(l * 0.9) calc(c * 0.85) h)
|
|
192
|
+
);
|
|
186
193
|
}
|
|
187
194
|
|
|
188
195
|
/* -------------------------------------------------------- */
|
|
@@ -199,10 +206,14 @@ infonomic-components;
|
|
|
199
206
|
.outlined[disabled],
|
|
200
207
|
:global(.infonomic-chip-outlined):disabled,
|
|
201
208
|
:global(.infonomic-chip-outlined)[disabled] {
|
|
202
|
-
border-color: var(
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
209
|
+
border-color: var(
|
|
210
|
+
--chip-variant-outlined-border-disabled,
|
|
211
|
+
oklch(from var(--chip-variant-outlined-border) calc(l * 1.5) calc(c * 0.8) h)
|
|
212
|
+
);
|
|
213
|
+
color: var(
|
|
214
|
+
--chip-variant-outlined-foreground-disabled,
|
|
215
|
+
oklch(from var(--chip-variant-outlined-foreground) calc(l * 1.1) calc(c * 0.7) h)
|
|
216
|
+
);
|
|
206
217
|
}
|
|
207
218
|
|
|
208
219
|
.outlined:hover,
|
|
@@ -283,10 +294,10 @@ infonomic-components;
|
|
|
283
294
|
|
|
284
295
|
/* Filled Weak */
|
|
285
296
|
--chip-variant-filled-weak: var(--fill-secondary-weak);
|
|
286
|
-
--chip-variant-filled-weak-foreground: var(--text-on-secondary);
|
|
297
|
+
--chip-variant-filled-weak-foreground: var(--text-on-secondary-weak);
|
|
287
298
|
--chip-variant-filled-weak-hover: var(--fill-secondary-weak-hover);
|
|
288
299
|
--chip-variant-filled-weak-disabled: var(--fill-secondary-weak-disabled);
|
|
289
|
-
--chip-variant-filled-weak-foreground-disabled: var(--text-on-secondary-disabled);
|
|
300
|
+
--chip-variant-filled-weak-foreground-disabled: var(--text-on-secondary-weak-disabled);
|
|
290
301
|
|
|
291
302
|
/* Outlined */
|
|
292
303
|
--chip-variant-outlined: var(--fill-secondary-outlined);
|
|
@@ -431,4 +442,4 @@ infonomic-components;
|
|
|
431
442
|
--chip-variant-outlined-foreground: var(--text-on-danger-outlined);
|
|
432
443
|
--chip-variant-outlined-foreground-disabled: var(--text-on-danger-outlined-disabled);
|
|
433
444
|
}
|
|
434
|
-
}
|
|
445
|
+
}
|
|
@@ -200,10 +200,10 @@
|
|
|
200
200
|
--chip-variant-filled-foreground: var(--text-on-secondary-strong);
|
|
201
201
|
--chip-variant-filled-foreground-disabled: var(--text-on-secondary-strong-disabled);
|
|
202
202
|
--chip-variant-filled-weak: var(--fill-secondary-weak);
|
|
203
|
-
--chip-variant-filled-weak-foreground: var(--text-on-secondary);
|
|
203
|
+
--chip-variant-filled-weak-foreground: var(--text-on-secondary-weak);
|
|
204
204
|
--chip-variant-filled-weak-hover: var(--fill-secondary-weak-hover);
|
|
205
205
|
--chip-variant-filled-weak-disabled: var(--fill-secondary-weak-disabled);
|
|
206
|
-
--chip-variant-filled-weak-foreground-disabled: var(--text-on-secondary-disabled);
|
|
206
|
+
--chip-variant-filled-weak-foreground-disabled: var(--text-on-secondary-weak-disabled);
|
|
207
207
|
--chip-variant-outlined: var(--fill-secondary-outlined);
|
|
208
208
|
--chip-variant-outlined-hover: var(--fill-secondary-outlined-hover);
|
|
209
209
|
--chip-variant-outlined-border: var(--stroke-secondary);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dropdown.d.ts","sourceRoot":"","sources":["../../../src/components/dropdown/dropdown.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,OAAO,EAAE,IAAI,EAAE,MAAM,qBAAqB,CAAA;AAK1C,iBAAS,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"dropdown.d.ts","sourceRoot":"","sources":["../../../src/components/dropdown/dropdown.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
@layer infonomic-base,
|
|
2
|
-
infonomic-functional,
|
|
3
|
-
infonomic-utilities,
|
|
4
|
-
infonomic-theme,
|
|
5
|
-
infonomic-typography,
|
|
6
|
-
infonomic-components;
|
|
2
|
+
infonomic-functional,
|
|
3
|
+
infonomic-utilities,
|
|
4
|
+
infonomic-theme,
|
|
5
|
+
infonomic-typography,
|
|
6
|
+
infonomic-components;
|
|
7
7
|
|
|
8
8
|
@layer infonomic-components {
|
|
9
|
-
|
|
10
9
|
.hamburger,
|
|
11
10
|
:global(.infonomic-hamburger) {
|
|
12
11
|
--hamburger-color: currentColor;
|
|
@@ -139,4 +138,4 @@ infonomic-components;
|
|
|
139
138
|
--hamburger-color: var(--foreground, #1a1a1a);
|
|
140
139
|
--hamburger-focus-ring-color: var(--foreground, #1a1a1a);
|
|
141
140
|
}
|
|
142
|
-
}
|
|
141
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"autocomplete.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/autocomplete.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,OAAO,EAAE,YAAY,IAAI,qBAAqB,EAAE,MAAM,6BAA6B,CAAA;AAOnF,OAAO,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAA;AAErE,KAAK,qBAAqB,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,qBAAqB,CAAC,IAAI,CAAC,CAAA;AAEpF,MAAM,WAAW,iBAAiB,CAAC,IAAI,GAAG,MAAM,CAC9C,SAAQ,IAAI,CAAC,qBAAqB,EAAE,OAAO,GAAG,UAAU,CAAC;IACzD,EAAE,EAAE,MAAM,CAAA;IACV,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,SAAS,CAAC,EAAE,IAAI,CAAA;IAChB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,KAAK,EAAE,IAAI,EAAE,CAAA;IACb,QAAQ,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,qBAAqB,CAAC,IAAI,CAAC,CAAC,UAAU,CAAC,CAAA;IAC7E,UAAU,CAAC,EAAE,MAAM,CAAA;CACpB;AAED,wBAAgB,YAAY,CAAC,IAAI,GAAG,MAAM,EAAE,EAC1C,EAAE,EACF,KAAK,EACL,OAAoB,EACpB,SAAgB,EAChB,MAAkB,EAClB,QAAQ,EACR,WAAgB,EAChB,YAAoB,EACpB,KAAa,EACb,QAAa,EACb,SAAc,EACd,SAA+B,EAC/B,SAAS,EACT,cAAc,EACd,gBAAgB,EAChB,KAAK,EACL,QAAQ,EACR,UAAc,EACd,GAAG,IAAI,EACR,EAAE,iBAAiB,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"autocomplete.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/autocomplete.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,OAAO,EAAE,YAAY,IAAI,qBAAqB,EAAE,MAAM,6BAA6B,CAAA;AAOnF,OAAO,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAA;AAErE,KAAK,qBAAqB,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,qBAAqB,CAAC,IAAI,CAAC,CAAA;AAEpF,MAAM,WAAW,iBAAiB,CAAC,IAAI,GAAG,MAAM,CAC9C,SAAQ,IAAI,CAAC,qBAAqB,EAAE,OAAO,GAAG,UAAU,CAAC;IACzD,EAAE,EAAE,MAAM,CAAA;IACV,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,SAAS,CAAC,EAAE,IAAI,CAAA;IAChB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,KAAK,EAAE,IAAI,EAAE,CAAA;IACb,QAAQ,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,qBAAqB,CAAC,IAAI,CAAC,CAAC,UAAU,CAAC,CAAA;IAC7E,UAAU,CAAC,EAAE,MAAM,CAAA;CACpB;AAED,wBAAgB,YAAY,CAAC,IAAI,GAAG,MAAM,EAAE,EAC1C,EAAE,EACF,KAAK,EACL,OAAoB,EACpB,SAAgB,EAChB,MAAkB,EAClB,QAAQ,EACR,WAAgB,EAChB,YAAoB,EACpB,KAAa,EACb,QAAa,EACb,SAAc,EACd,SAA+B,EAC/B,SAAS,EACT,cAAc,EACd,gBAAgB,EAChB,KAAK,EACL,QAAQ,EACR,UAAc,EACd,GAAG,IAAI,EACR,EAAE,iBAAiB,CAAC,IAAI,CAAC,qBAoEzB;AAED,eAAO,MAAM,gBAAgB;2DAK1B,KAAK,CAAC,cAAc,CAAC,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG;QAC3D,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,cAAc,CAAC,CAAA;KACtC;;CAUA,CAAA;AAID,eAAO,MAAM,iBAAiB,qIAA8B,CAAA;AAC5D,eAAO,MAAM,sBAAsB;wCAIhC,KAAK,CAAC,cAAc,CAAC,OAAO,qBAAqB,CAAC,UAAU,CAAC;;CAS/D,CAAA;AAID,eAAO,MAAM,qBAAqB;8BAG/B,KAAK,CAAC,cAAc,CAAC,OAAO,qBAAqB,CAAC,SAAS,CAAC;;CAO9D,CAAA"}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
@layer infonomic-base,
|
|
2
|
-
infonomic-functional,
|
|
3
|
-
infonomic-utilities,
|
|
4
|
-
infonomic-theme,
|
|
5
|
-
infonomic-typography,
|
|
6
|
-
infonomic-components;
|
|
2
|
+
infonomic-functional,
|
|
3
|
+
infonomic-utilities,
|
|
4
|
+
infonomic-theme,
|
|
5
|
+
infonomic-typography,
|
|
6
|
+
infonomic-components;
|
|
7
7
|
|
|
8
8
|
@layer infonomic-components {
|
|
9
|
-
|
|
10
9
|
/* ── Wrapper ── */
|
|
11
10
|
|
|
12
11
|
.autocomplete-wrapper,
|
|
@@ -139,19 +138,19 @@ infonomic-components;
|
|
|
139
138
|
|
|
140
139
|
.error,
|
|
141
140
|
:global(.infonomic-autocomplete-input-error) {
|
|
142
|
-
border: 1px solid var(--
|
|
141
|
+
border: 1px solid var(--field-border-invalid);
|
|
143
142
|
}
|
|
144
143
|
|
|
145
144
|
.error:hover,
|
|
146
145
|
:global(.infonomic-autocomplete-input-error):hover {
|
|
147
|
-
border: 1px solid var(--
|
|
146
|
+
border: 1px solid var(--field-border-invalid);
|
|
148
147
|
}
|
|
149
148
|
|
|
150
149
|
.error:focus,
|
|
151
150
|
.error:active,
|
|
152
151
|
:global(.infonomic-autocomplete-input-error):focus,
|
|
153
152
|
:global(.infonomic-autocomplete-input-error):active {
|
|
154
|
-
--ring-color: var(--
|
|
153
|
+
--ring-color: var(--field-ring-invalid);
|
|
155
154
|
}
|
|
156
155
|
|
|
157
156
|
/* ── Intents ── */
|
|
@@ -368,4 +367,4 @@ infonomic-components;
|
|
|
368
367
|
}
|
|
369
368
|
|
|
370
369
|
/* Dark mode handled by semantic tokens in theme layer */
|
|
371
|
-
}
|
|
370
|
+
}
|
|
@@ -112,11 +112,11 @@
|
|
|
112
112
|
}
|
|
113
113
|
|
|
114
114
|
:is(.error-Wyckbu, .infonomic-autocomplete-input-error), :is(.error-Wyckbu:hover, .infonomic-autocomplete-input-error:hover) {
|
|
115
|
-
border: 1px solid var(--
|
|
115
|
+
border: 1px solid var(--field-border-invalid);
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
:is(.error-Wyckbu:focus, .error-Wyckbu:active, .infonomic-autocomplete-input-error:focus, .infonomic-autocomplete-input-error:active) {
|
|
119
|
-
--ring-color: var(--
|
|
119
|
+
--ring-color: var(--field-ring-invalid);
|
|
120
120
|
}
|
|
121
121
|
|
|
122
122
|
:is(.primary-j2veZ2, .infonomic-autocomplete-input-primary) {
|
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
@layer infonomic-base,
|
|
2
|
-
infonomic-functional,
|
|
3
|
-
infonomic-utilities,
|
|
4
|
-
infonomic-theme,
|
|
5
|
-
infonomic-typography,
|
|
6
|
-
infonomic-components;
|
|
2
|
+
infonomic-functional,
|
|
3
|
+
infonomic-utilities,
|
|
4
|
+
infonomic-theme,
|
|
5
|
+
infonomic-typography,
|
|
6
|
+
infonomic-components;
|
|
7
7
|
|
|
8
8
|
@layer infonomic-components {
|
|
9
|
-
|
|
10
9
|
:global(.infonomic-checkbox-group),
|
|
11
10
|
.checkbox-group {
|
|
12
11
|
display: flex;
|
|
13
12
|
flex-direction: column;
|
|
14
13
|
gap: var(--spacing-8);
|
|
15
14
|
}
|
|
16
|
-
}
|
|
15
|
+
}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
@layer infonomic-base,
|
|
2
|
-
infonomic-functional,
|
|
3
|
-
infonomic-utilities,
|
|
4
|
-
infonomic-theme,
|
|
5
|
-
infonomic-typography,
|
|
6
|
-
infonomic-components;
|
|
2
|
+
infonomic-functional,
|
|
3
|
+
infonomic-utilities,
|
|
4
|
+
infonomic-theme,
|
|
5
|
+
infonomic-typography,
|
|
6
|
+
infonomic-components;
|
|
7
7
|
|
|
8
8
|
@layer infonomic-components {
|
|
9
|
-
|
|
10
9
|
.container,
|
|
11
10
|
:global(.infonomic-checkbox-container) {
|
|
12
11
|
width: 100%;
|
|
@@ -93,8 +92,8 @@ infonomic-components;
|
|
|
93
92
|
color: var(--label-color);
|
|
94
93
|
}
|
|
95
94
|
|
|
96
|
-
.checkbox[data-disabled]
|
|
97
|
-
:global(.infonomic-checkbox)[data-disabled]~ :global(.infonomic-checkbox-label) {
|
|
95
|
+
.checkbox[data-disabled] ~ .label,
|
|
96
|
+
:global(.infonomic-checkbox)[data-disabled] ~ :global(.infonomic-checkbox-label) {
|
|
98
97
|
pointer-events: none;
|
|
99
98
|
}
|
|
100
99
|
|
|
@@ -118,8 +117,8 @@ infonomic-components;
|
|
|
118
117
|
height: 16px;
|
|
119
118
|
}
|
|
120
119
|
|
|
121
|
-
.sm
|
|
122
|
-
:global(.infonomic-checkbox-sm)~ :global(.infonomic-checkbox-label) {
|
|
120
|
+
.sm ~ .label,
|
|
121
|
+
:global(.infonomic-checkbox-sm) ~ :global(.infonomic-checkbox-label) {
|
|
123
122
|
font-size: 0.85rem;
|
|
124
123
|
}
|
|
125
124
|
|
|
@@ -135,8 +134,8 @@ infonomic-components;
|
|
|
135
134
|
height: 18px;
|
|
136
135
|
}
|
|
137
136
|
|
|
138
|
-
.md
|
|
139
|
-
:global(.infonomic-checkbox-md)~ :global(.infonomic-checkbox-label) {
|
|
137
|
+
.md ~ .label,
|
|
138
|
+
:global(.infonomic-checkbox-md) ~ :global(.infonomic-checkbox-label) {
|
|
140
139
|
font-size: 0.875rem;
|
|
141
140
|
}
|
|
142
141
|
|
|
@@ -152,8 +151,8 @@ infonomic-components;
|
|
|
152
151
|
height: 22px;
|
|
153
152
|
}
|
|
154
153
|
|
|
155
|
-
.lg
|
|
156
|
-
:global(.infonomic-checkbox-lg)~ :global(.infonomic-checkbox-label) {
|
|
154
|
+
.lg ~ .label,
|
|
155
|
+
:global(.infonomic-checkbox-lg) ~ :global(.infonomic-checkbox-label) {
|
|
157
156
|
font-size: 1rem;
|
|
158
157
|
}
|
|
159
158
|
|
|
@@ -209,7 +208,7 @@ infonomic-components;
|
|
|
209
208
|
--checkbox-variant-outlined-hover-border: var(--fill-noeffect-strong-hover);
|
|
210
209
|
--checkbox-variant-outline-ring-color: var(--ring-noeffect);
|
|
211
210
|
--checkbox-variant-filled: var(--fill-noeffect-strong);
|
|
212
|
-
--checkbox-icon-color: var(--text-on-noeffect);
|
|
211
|
+
--checkbox-icon-color: var(--text-on-noeffect-strong);
|
|
213
212
|
}
|
|
214
213
|
|
|
215
214
|
.success,
|
|
@@ -239,7 +238,7 @@ infonomic-components;
|
|
|
239
238
|
--checkbox-variant-outlined-hover-border: var(--fill-warning-strong-hover);
|
|
240
239
|
--checkbox-variant-outline-ring-color: var(--ring-warning);
|
|
241
240
|
--checkbox-variant-filled: var(--fill-warning-strong);
|
|
242
|
-
--checkbox-icon-color: var(--text-on-warning);
|
|
241
|
+
--checkbox-icon-color: var(--text-on-warning-strong);
|
|
243
242
|
}
|
|
244
243
|
|
|
245
244
|
.danger,
|
|
@@ -276,5 +275,4 @@ infonomic-components;
|
|
|
276
275
|
/* Settle */
|
|
277
276
|
}
|
|
278
277
|
}
|
|
279
|
-
|
|
280
|
-
}
|
|
278
|
+
}
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
--checkbox-variant-outlined-hover-border: var(--fill-noeffect-strong-hover);
|
|
155
155
|
--checkbox-variant-outline-ring-color: var(--ring-noeffect);
|
|
156
156
|
--checkbox-variant-filled: var(--fill-noeffect-strong);
|
|
157
|
-
--checkbox-icon-color: var(--text-on-noeffect);
|
|
157
|
+
--checkbox-icon-color: var(--text-on-noeffect-strong);
|
|
158
158
|
}
|
|
159
159
|
|
|
160
160
|
:is(.success-ocrgme, .infonomic-checkbox-success) {
|
|
@@ -181,7 +181,7 @@
|
|
|
181
181
|
--checkbox-variant-outlined-hover-border: var(--fill-warning-strong-hover);
|
|
182
182
|
--checkbox-variant-outline-ring-color: var(--ring-warning);
|
|
183
183
|
--checkbox-variant-filled: var(--fill-warning-strong);
|
|
184
|
-
--checkbox-icon-color: var(--text-on-warning);
|
|
184
|
+
--checkbox-icon-color: var(--text-on-warning-strong);
|
|
185
185
|
}
|
|
186
186
|
|
|
187
187
|
:is(.danger-A2Iomw, .infonomic-checkbox-danger) {
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
@layer infonomic-base,
|
|
2
|
-
infonomic-functional,
|
|
3
|
-
infonomic-utilities,
|
|
4
|
-
infonomic-theme,
|
|
5
|
-
infonomic-typography,
|
|
6
|
-
infonomic-components;
|
|
2
|
+
infonomic-functional,
|
|
3
|
+
infonomic-utilities,
|
|
4
|
+
infonomic-theme,
|
|
5
|
+
infonomic-typography,
|
|
6
|
+
infonomic-components;
|
|
7
7
|
|
|
8
8
|
@layer infonomic-components {
|
|
9
|
-
|
|
10
9
|
.input-wrapper,
|
|
11
10
|
:global(.infonomic-input-wrapper) {
|
|
12
11
|
display: flex;
|
|
@@ -172,23 +171,23 @@ infonomic-components;
|
|
|
172
171
|
background-color: var(--input-variant-filled);
|
|
173
172
|
}
|
|
174
173
|
|
|
175
|
-
/* Error classes last, so that they override all
|
|
174
|
+
/* Error classes last, so that they override all
|
|
176
175
|
of the above */
|
|
177
176
|
.error,
|
|
178
177
|
:global(.infonomic-input-error) {
|
|
179
|
-
border: 1px solid var(--
|
|
178
|
+
border: 1px solid var(--field-border-invalid);
|
|
180
179
|
}
|
|
181
180
|
|
|
182
181
|
.error:hover,
|
|
183
182
|
:global(.infonomic-input-error):hover {
|
|
184
|
-
border: 1px solid var(--
|
|
183
|
+
border: 1px solid var(--field-border-invalid);
|
|
185
184
|
}
|
|
186
185
|
|
|
187
186
|
.error:focus,
|
|
188
187
|
.error:active,
|
|
189
188
|
:global(.infonomic-input-error):focus,
|
|
190
189
|
:global(.infonomic-input-error):active {
|
|
191
|
-
--ring-color: var(--
|
|
190
|
+
--ring-color: var(--field-ring-invalid);
|
|
192
191
|
}
|
|
193
192
|
|
|
194
193
|
.underlined.start-adornment-padding,
|
|
@@ -287,4 +286,4 @@ infonomic-components;
|
|
|
287
286
|
}
|
|
288
287
|
|
|
289
288
|
/* Dark mode handled by semantic tokens in theme layer */
|
|
290
|
-
}
|
|
289
|
+
}
|
|
@@ -146,11 +146,11 @@
|
|
|
146
146
|
}
|
|
147
147
|
|
|
148
148
|
:is(.error-FQ2_hh, .infonomic-input-error), :is(.error-FQ2_hh:hover, .infonomic-input-error:hover) {
|
|
149
|
-
border: 1px solid var(--
|
|
149
|
+
border: 1px solid var(--field-border-invalid);
|
|
150
150
|
}
|
|
151
151
|
|
|
152
152
|
:is(.error-FQ2_hh:focus, .error-FQ2_hh:active, .infonomic-input-error:focus, .infonomic-input-error:active) {
|
|
153
|
-
--ring-color: var(--
|
|
153
|
+
--ring-color: var(--field-ring-invalid);
|
|
154
154
|
}
|
|
155
155
|
|
|
156
156
|
.underlined-CSLRKX.start-adornment-padding-ya34Ht, .start-adornment-padding-ya34Ht {
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
@layer infonomic-base,
|
|
2
|
-
infonomic-functional,
|
|
3
|
-
infonomic-utilities,
|
|
4
|
-
infonomic-theme,
|
|
5
|
-
infonomic-typography,
|
|
6
|
-
infonomic-components;
|
|
2
|
+
infonomic-functional,
|
|
3
|
+
infonomic-utilities,
|
|
4
|
+
infonomic-theme,
|
|
5
|
+
infonomic-typography,
|
|
6
|
+
infonomic-components;
|
|
7
7
|
|
|
8
8
|
/* 'border-collapse w-full text-sm text-left text-gray-700 dark:text-gray-400 m-0', */
|
|
9
9
|
@layer infonomic-components {
|
|
10
|
-
|
|
11
10
|
.column,
|
|
12
11
|
:global(.infonomic-radio-group-column) {
|
|
13
12
|
display: flex;
|
|
@@ -173,4 +172,4 @@ infonomic-components;
|
|
|
173
172
|
transform: scale(0.8);
|
|
174
173
|
}
|
|
175
174
|
}
|
|
176
|
-
}
|
|
175
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"select.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/select.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,uBAAuB,CAAA;AASjE,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAA;AACjD,OAAO,KAAK,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AAE/D,MAAM,WAAW,WAAW,CAAC,KAAK,SAAS,MAAM,GAAG,MAAM,GAAG,MAAM;IACjE,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,KAAK,CAAA;IACZ,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,KAAK,WAAW,CAAC,KAAK,SAAS,MAAM,GAAG,MAAM,GAAG,MAAM,IAAI,IAAI,CAC7D,KAAK,CAAC,cAAc,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,EACxD,OAAO,CACR,GAAG;IACF,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,IAAI,CAAC,EAAE,IAAI,CAAA;IACX,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,QAAQ,CAAC,EAAE,cAAc,GAAG,QAAQ,CAAA;IACpC,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,KAAK,CAAC,EAAE,WAAW,CAAC,KAAK,CAAC,EAAE,CAAA;CAC7B,CAAA;AAED,wBAAgB,MAAM,CAAC,KAAK,SAAS,MAAM,GAAG,MAAM,GAAG,MAAM,EAAE,EAC7D,EAAE,EACF,QAAQ,EACR,WAAW,EACX,aAAa,EACb,MAAM,EACN,OAAO,EACP,IAAI,EACJ,QAAQ,EACR,kBAAkB,EAClB,SAAS,EACT,SAAS,EACT,QAAQ,EACR,KAAK,EACL,GAAG,IAAI,EACR,EAAE,WAAW,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,GAAG,CAAC,OAAO,
|
|
1
|
+
{"version":3,"file":"select.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/select.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,uBAAuB,CAAA;AASjE,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAA;AACjD,OAAO,KAAK,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AAE/D,MAAM,WAAW,WAAW,CAAC,KAAK,SAAS,MAAM,GAAG,MAAM,GAAG,MAAM;IACjE,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,KAAK,CAAA;IACZ,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,KAAK,WAAW,CAAC,KAAK,SAAS,MAAM,GAAG,MAAM,GAAG,MAAM,IAAI,IAAI,CAC7D,KAAK,CAAC,cAAc,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,EACxD,OAAO,CACR,GAAG;IACF,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,IAAI,CAAC,EAAE,IAAI,CAAA;IACX,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,QAAQ,CAAC,EAAE,cAAc,GAAG,QAAQ,CAAA;IACpC,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,KAAK,CAAC,EAAE,WAAW,CAAC,KAAK,CAAC,EAAE,CAAA;CAC7B,CAAA;AAED,wBAAgB,MAAM,CAAC,KAAK,SAAS,MAAM,GAAG,MAAM,GAAG,MAAM,EAAE,EAC7D,EAAE,EACF,QAAQ,EACR,WAAW,EACX,aAAa,EACb,MAAM,EACN,OAAO,EACP,IAAI,EACJ,QAAQ,EACR,kBAAkB,EAClB,SAAS,EACT,SAAS,EACT,QAAQ,EACR,KAAK,EACL,GAAG,IAAI,EACR,EAAE,WAAW,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,GAAG,CAAC,OAAO,CAmDxC;AAED,eAAO,MAAM,UAAU;2DAKpB,KAAK,CAAC,cAAc,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC,GAAG;QACrD,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,cAAc,CAAC,CAAA;KACtC;;CAeA,CAAA"}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
@layer infonomic-base,
|
|
2
|
-
infonomic-functional,
|
|
3
|
-
infonomic-utilities,
|
|
4
|
-
infonomic-theme,
|
|
5
|
-
infonomic-typography,
|
|
6
|
-
infonomic-components;
|
|
2
|
+
infonomic-functional,
|
|
3
|
+
infonomic-utilities,
|
|
4
|
+
infonomic-theme,
|
|
5
|
+
infonomic-typography,
|
|
6
|
+
infonomic-components;
|
|
7
7
|
|
|
8
8
|
@layer infonomic-components {
|
|
9
|
-
|
|
10
9
|
.positioner,
|
|
11
10
|
:global(.infonomic-select-positioner) {
|
|
12
11
|
z-index: 50;
|
|
@@ -150,4 +149,4 @@ infonomic-components;
|
|
|
150
149
|
.popup-xl .select-item-indicator {
|
|
151
150
|
width: 28px;
|
|
152
151
|
}
|
|
153
|
-
}
|
|
152
|
+
}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
@layer infonomic-base,
|
|
2
|
-
infonomic-functional,
|
|
3
|
-
infonomic-utilities,
|
|
4
|
-
infonomic-theme,
|
|
5
|
-
infonomic-typography,
|
|
6
|
-
infonomic-components;
|
|
2
|
+
infonomic-functional,
|
|
3
|
+
infonomic-utilities,
|
|
4
|
+
infonomic-theme,
|
|
5
|
+
infonomic-typography,
|
|
6
|
+
infonomic-components;
|
|
7
7
|
|
|
8
8
|
@layer infonomic-components {
|
|
9
|
-
|
|
10
9
|
.text-area,
|
|
11
10
|
:global(.infonomic-text-area) {
|
|
12
11
|
font-size: 1rem;
|
|
@@ -27,7 +26,9 @@ infonomic-components;
|
|
|
27
26
|
outline: none;
|
|
28
27
|
}
|
|
29
28
|
|
|
30
|
-
.outlined {
|
|
29
|
+
.outlined {
|
|
30
|
+
}
|
|
31
31
|
|
|
32
|
-
.filled {
|
|
33
|
-
}
|
|
32
|
+
.filled {
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
@layer infonomic-base,
|
|
2
|
-
infonomic-functional,
|
|
3
|
-
infonomic-utilities,
|
|
4
|
-
infonomic-theme,
|
|
5
|
-
infonomic-typography,
|
|
6
|
-
infonomic-components;
|
|
2
|
+
infonomic-functional,
|
|
3
|
+
infonomic-utilities,
|
|
4
|
+
infonomic-theme,
|
|
5
|
+
infonomic-typography,
|
|
6
|
+
infonomic-components;
|
|
7
7
|
|
|
8
8
|
@layer infonomic-components {
|
|
9
9
|
/* ============================================
|
|
@@ -53,7 +53,6 @@ infonomic-components;
|
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
@media (min-width: 48rem) {
|
|
56
|
-
|
|
57
56
|
.bottom-right,
|
|
58
57
|
:global(.infonomic-toast-bottom-right) {
|
|
59
58
|
bottom: var(--viewport-padding);
|
|
@@ -104,27 +103,19 @@ infonomic-components;
|
|
|
104
103
|
gap: var(--gap-1);
|
|
105
104
|
padding-top: 12px;
|
|
106
105
|
padding-bottom: 16px;
|
|
107
|
-
background: var(--
|
|
106
|
+
background: var(--surface-panel-elevated);
|
|
108
107
|
border-width: var(--border-width-thin);
|
|
109
108
|
border-color: var(--border-color);
|
|
110
109
|
border-style: var(--border-style-solid);
|
|
111
110
|
border-radius: var(--border-radius-md);
|
|
112
111
|
box-shadow: var(--shadow-sm);
|
|
113
|
-
transform: translateX(var(--toast-swipe-movement-x, 0))
|
|
112
|
+
transform: translateX(var(--toast-swipe-movement-x, 0))
|
|
113
|
+
translateY(var(--toast-swipe-movement-y, 0));
|
|
114
114
|
transition:
|
|
115
115
|
transform 200ms ease-out,
|
|
116
116
|
opacity 150ms ease-in;
|
|
117
117
|
}
|
|
118
118
|
|
|
119
|
-
:global(.dark),
|
|
120
|
-
:global([data-theme="dark"]) {
|
|
121
|
-
|
|
122
|
-
.root,
|
|
123
|
-
:global(.infonomic-toast-root) {
|
|
124
|
-
background: var(--canvas-800);
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
|
|
128
119
|
/* Entry animation */
|
|
129
120
|
.root[data-starting-style],
|
|
130
121
|
:global(.infonomic-toast-root[data-starting-style]) {
|
|
@@ -133,7 +124,6 @@ infonomic-components;
|
|
|
133
124
|
}
|
|
134
125
|
|
|
135
126
|
@media (min-width: 48rem) {
|
|
136
|
-
|
|
137
127
|
.viewport.top-right .root[data-starting-style],
|
|
138
128
|
.viewport.bottom-right .root[data-starting-style],
|
|
139
129
|
:global(.infonomic-toast-viewport.top-right .infonomic-toast-root[data-starting-style]),
|
|
@@ -241,4 +231,4 @@ infonomic-components;
|
|
|
241
231
|
justify-content: end;
|
|
242
232
|
padding: 0 12px 0 12px;
|
|
243
233
|
}
|
|
244
|
-
}
|
|
234
|
+
}
|
|
@@ -61,13 +61,14 @@
|
|
|
61
61
|
|
|
62
62
|
:is(.root-dWN7jD, .infonomic-toast-root) {
|
|
63
63
|
gap: var(--gap-1);
|
|
64
|
-
background: var(--
|
|
64
|
+
background: var(--surface-panel-elevated);
|
|
65
65
|
border-width: var(--border-width-thin);
|
|
66
66
|
border-color: var(--border-color);
|
|
67
67
|
border-style: var(--border-style-solid);
|
|
68
68
|
border-radius: var(--border-radius-md);
|
|
69
69
|
box-shadow: var(--shadow-sm);
|
|
70
|
-
transform: translateX(var(--toast-swipe-movement-x, 0))
|
|
70
|
+
transform: translateX(var(--toast-swipe-movement-x, 0))
|
|
71
|
+
translateY(var(--toast-swipe-movement-y, 0));
|
|
71
72
|
flex-direction: column;
|
|
72
73
|
padding-top: 12px;
|
|
73
74
|
padding-bottom: 16px;
|
|
@@ -75,10 +76,6 @@
|
|
|
75
76
|
display: flex;
|
|
76
77
|
}
|
|
77
78
|
|
|
78
|
-
:is(:is(.dark, [data-theme="dark"]) .root-dWN7jD, :is(.dark, [data-theme="dark"]) .infonomic-toast-root) {
|
|
79
|
-
background: var(--canvas-800);
|
|
80
|
-
}
|
|
81
|
-
|
|
82
79
|
.root-dWN7jD[data-starting-style] {
|
|
83
80
|
opacity: 0;
|
|
84
81
|
transform: translateY(calc(100% + var(--viewport-padding)));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"first-button.d.ts","sourceRoot":"","sources":["../../../src/components/pager/first-button.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAA;AAOzB,OAAO,KAAK,EAAE,gBAAgB,EAAE,OAAO,EAAE,MAAM,cAAc,CAAA;AAE7D,eAAO,MAAM,WAAW;8DAOrB,gBAAgB,GAAG;QACpB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,OAAO,CAAC,CAAA;KAC/B;;
|
|
1
|
+
{"version":3,"file":"first-button.d.ts","sourceRoot":"","sources":["../../../src/components/pager/first-button.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAA;AAOzB,OAAO,KAAK,EAAE,gBAAgB,EAAE,OAAO,EAAE,MAAM,cAAc,CAAA;AAE7D,eAAO,MAAM,WAAW;8DAOrB,gBAAgB,GAAG;QACpB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,OAAO,CAAC,CAAA;KAC/B;;CAiCA,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"last-button.d.ts","sourceRoot":"","sources":["../../../src/components/pager/last-button.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAA;AAOzB,OAAO,KAAK,EAAE,gBAAgB,EAAE,OAAO,EAAE,MAAM,cAAc,CAAA;AAE7D,MAAM,MAAM,eAAe,GAAG,gBAAgB,GAAG;IAC/C,KAAK,EAAE,MAAM,CAAA;CACd,CAAA;AAED,eAAO,MAAM,UAAU;qEAQpB,eAAe,GAAG;QACnB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,OAAO,CAAC,CAAA;KAC/B;;
|
|
1
|
+
{"version":3,"file":"last-button.d.ts","sourceRoot":"","sources":["../../../src/components/pager/last-button.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAA;AAOzB,OAAO,KAAK,EAAE,gBAAgB,EAAE,OAAO,EAAE,MAAM,cAAc,CAAA;AAE7D,MAAM,MAAM,eAAe,GAAG,gBAAgB,GAAG;IAC/C,KAAK,EAAE,MAAM,CAAA;CACd,CAAA;AAED,eAAO,MAAM,UAAU;qEAQpB,eAAe,GAAG;QACnB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,OAAO,CAAC,CAAA;KAC/B;;CAiCA,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"next-button.d.ts","sourceRoot":"","sources":["../../../src/components/pager/next-button.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAA;AAOzB,OAAO,KAAK,EAAE,gBAAgB,EAAE,OAAO,EAAE,MAAM,cAAc,CAAA;AAE7D,MAAM,MAAM,eAAe,GAAG,gBAAgB,GAAG;IAC/C,IAAI,EAAE,MAAM,GAAG,IAAI,CAAA;CACpB,CAAA;AAED,eAAO,MAAM,UAAU;oEAQpB,eAAe,GAAG;QACnB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,OAAO,CAAC,CAAA;KAC/B;;
|
|
1
|
+
{"version":3,"file":"next-button.d.ts","sourceRoot":"","sources":["../../../src/components/pager/next-button.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAA;AAOzB,OAAO,KAAK,EAAE,gBAAgB,EAAE,OAAO,EAAE,MAAM,cAAc,CAAA;AAE7D,MAAM,MAAM,eAAe,GAAG,gBAAgB,GAAG;IAC/C,IAAI,EAAE,MAAM,GAAG,IAAI,CAAA;CACpB,CAAA;AAED,eAAO,MAAM,UAAU;oEAQpB,eAAe,GAAG;QACnB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,OAAO,CAAC,CAAA;KAC/B;;CAiCA,CAAA"}
|