@wellingtonhlc/shared-ui 0.29.0 → 0.29.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +25 -10
- package/dist/cli/check-page-actions.d.ts +9 -0
- package/dist/cli/check-page-actions.d.ts.map +1 -0
- package/dist/cli/check-page-actions.js +108 -0
- package/dist/components/ActionBar.d.ts +26 -0
- package/dist/components/ActionBar.d.ts.map +1 -0
- package/dist/components/ActionBar.js +29 -0
- package/dist/components/ActionPrimitives.d.ts +31 -0
- package/dist/components/ActionPrimitives.d.ts.map +1 -0
- package/dist/components/ActionPrimitives.js +27 -0
- package/dist/components/AppShell.d.ts +65 -0
- package/dist/components/AppShell.d.ts.map +1 -0
- package/dist/components/AppShell.js +50 -0
- package/dist/components/AppShellActions.d.ts +24 -0
- package/dist/components/AppShellActions.d.ts.map +1 -0
- package/dist/components/AppShellActions.js +15 -0
- package/dist/components/Badge.d.ts +16 -0
- package/dist/components/Badge.d.ts.map +1 -0
- package/dist/components/Badge.js +36 -0
- package/dist/components/Banner.d.ts +13 -0
- package/dist/components/Banner.d.ts.map +1 -0
- package/dist/components/Banner.js +29 -0
- package/dist/components/Button.d.ts +14 -0
- package/dist/components/Button.d.ts.map +1 -0
- package/dist/components/Button.js +39 -0
- package/dist/components/Card.d.ts +36 -0
- package/dist/components/Card.d.ts.map +1 -0
- package/dist/components/Card.js +56 -0
- package/dist/components/ConfirmationDialog.d.ts +74 -0
- package/dist/components/ConfirmationDialog.d.ts.map +1 -0
- package/dist/components/ConfirmationDialog.js +234 -0
- package/dist/components/CopyableField.d.ts +10 -0
- package/dist/components/CopyableField.d.ts.map +1 -0
- package/dist/components/CopyableField.js +60 -0
- package/dist/components/DateField.d.ts +20 -0
- package/dist/components/DateField.d.ts.map +1 -0
- package/dist/components/DateField.js +172 -0
- package/dist/components/DecimalField.d.ts +21 -0
- package/dist/components/DecimalField.d.ts.map +1 -0
- package/dist/components/DecimalField.js +137 -0
- package/dist/components/DismissiblePopover.d.ts +14 -0
- package/dist/components/DismissiblePopover.d.ts.map +1 -0
- package/dist/components/DismissiblePopover.js +51 -0
- package/dist/components/EmptyState.d.ts +15 -0
- package/dist/components/EmptyState.d.ts.map +1 -0
- package/dist/components/EmptyState.js +32 -0
- package/dist/components/FieldControl.d.ts +20 -0
- package/dist/components/FieldControl.d.ts.map +1 -0
- package/dist/components/FieldControl.js +73 -0
- package/dist/components/FieldGroup.d.ts +11 -0
- package/dist/components/FieldGroup.d.ts.map +1 -0
- package/dist/components/FieldGroup.js +11 -0
- package/dist/components/FieldSkeleton.d.ts +14 -0
- package/dist/components/FieldSkeleton.d.ts.map +1 -0
- package/dist/components/FieldSkeleton.js +23 -0
- package/dist/components/FieldValidationError.d.ts +8 -0
- package/dist/components/FieldValidationError.d.ts.map +1 -0
- package/dist/components/FieldValidationError.js +7 -0
- package/dist/components/Filter.d.ts +51 -0
- package/dist/components/Filter.d.ts.map +1 -0
- package/dist/components/Filter.js +68 -0
- package/dist/components/Loading.d.ts +17 -0
- package/dist/components/Loading.d.ts.map +1 -0
- package/dist/components/Loading.js +15 -0
- package/dist/components/LoadingOverlay.d.ts +11 -0
- package/dist/components/LoadingOverlay.d.ts.map +1 -0
- package/dist/components/LoadingOverlay.js +8 -0
- package/dist/components/Modal.d.ts +49 -0
- package/dist/components/Modal.d.ts.map +1 -0
- package/dist/components/Modal.js +108 -0
- package/dist/components/MultiSelectField.d.ts +22 -0
- package/dist/components/MultiSelectField.d.ts.map +1 -0
- package/dist/components/MultiSelectField.js +84 -0
- package/dist/components/NavCard.d.ts +15 -0
- package/dist/components/NavCard.d.ts.map +1 -0
- package/dist/components/NavCard.js +13 -0
- package/dist/components/Page.d.ts +89 -0
- package/dist/components/Page.d.ts.map +1 -0
- package/dist/components/Page.js +347 -0
- package/dist/components/PageMessage.d.ts +12 -0
- package/dist/components/PageMessage.d.ts.map +1 -0
- package/dist/components/PageMessage.js +36 -0
- package/dist/components/Pagination.d.ts +15 -0
- package/dist/components/Pagination.d.ts.map +1 -0
- package/dist/components/Pagination.js +57 -0
- package/dist/components/PasswordInput.d.ts +8 -0
- package/dist/components/PasswordInput.d.ts.map +1 -0
- package/dist/components/PasswordInput.js +17 -0
- package/dist/components/RadioGroup.d.ts +32 -0
- package/dist/components/RadioGroup.d.ts.map +1 -0
- package/dist/components/RadioGroup.js +86 -0
- package/dist/components/RenderCase.d.ts +20 -0
- package/dist/components/RenderCase.d.ts.map +1 -0
- package/dist/components/RenderCase.js +31 -0
- package/dist/components/RenderIf.d.ts +10 -0
- package/dist/components/RenderIf.d.ts.map +1 -0
- package/dist/components/RenderIf.js +9 -0
- package/dist/components/SearchField.d.ts +22 -0
- package/dist/components/SearchField.d.ts.map +1 -0
- package/dist/components/SearchField.js +43 -0
- package/dist/components/SelectField.d.ts +31 -0
- package/dist/components/SelectField.d.ts.map +1 -0
- package/dist/components/SelectField.js +26 -0
- package/dist/components/SelectionField.d.ts +39 -0
- package/dist/components/SelectionField.d.ts.map +1 -0
- package/dist/components/SelectionField.js +105 -0
- package/dist/components/Sidebar.d.ts +104 -0
- package/dist/components/Sidebar.d.ts.map +1 -0
- package/dist/components/Sidebar.js +146 -0
- package/dist/components/StatCard.d.ts +16 -0
- package/dist/components/StatCard.d.ts.map +1 -0
- package/dist/components/StatCard.js +62 -0
- package/dist/components/Switch.d.ts +20 -0
- package/dist/components/Switch.d.ts.map +1 -0
- package/dist/components/Switch.js +63 -0
- package/dist/components/Table.d.ts +65 -0
- package/dist/components/Table.d.ts.map +1 -0
- package/dist/components/Table.js +118 -0
- package/dist/components/TabsUnderlined.d.ts +23 -0
- package/dist/components/TabsUnderlined.d.ts.map +1 -0
- package/dist/components/TabsUnderlined.js +29 -0
- package/dist/components/TextField.d.ts +25 -0
- package/dist/components/TextField.d.ts.map +1 -0
- package/dist/components/TextField.js +71 -0
- package/dist/components/TextareaField.d.ts +14 -0
- package/dist/components/TextareaField.d.ts.map +1 -0
- package/dist/components/TextareaField.js +34 -0
- package/dist/components/ThemePreferencesSelector.d.ts +29 -0
- package/dist/components/ThemePreferencesSelector.d.ts.map +1 -0
- package/dist/components/ThemePreferencesSelector.js +37 -0
- package/dist/components/Tooltip.d.ts +13 -0
- package/dist/components/Tooltip.d.ts.map +1 -0
- package/dist/components/Tooltip.js +40 -0
- package/dist/components/Workspace.d.ts +22 -0
- package/dist/components/Workspace.d.ts.map +1 -0
- package/dist/components/Workspace.js +33 -0
- package/dist/components/WorkspaceContext.d.ts +2 -0
- package/dist/components/WorkspaceContext.d.ts.map +1 -0
- package/dist/components/WorkspaceContext.js +2 -0
- package/dist/components/form-control-helpers.d.ts +24 -0
- package/dist/components/form-control-helpers.d.ts.map +1 -0
- package/dist/components/form-control-helpers.js +20 -0
- package/dist/index.d.ts +45 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +44 -0
- package/dist/styles.css +26 -43
- package/dist/tailwind-preset.d.ts +23 -0
- package/dist/tailwind-preset.d.ts.map +1 -0
- package/dist/tailwind-preset.js +22 -0
- package/dist/utils/cn.d.ts +2 -0
- package/dist/utils/cn.d.ts.map +1 -0
- package/dist/utils/cn.js +33 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -919,8 +919,8 @@ h2.react-datepicker__current-month {
|
|
|
919
919
|
.left-4 {
|
|
920
920
|
left: calc(var(--spacing) * 4);
|
|
921
921
|
}
|
|
922
|
-
.left-
|
|
923
|
-
left: calc(var(--spacing) *
|
|
922
|
+
.left-8 {
|
|
923
|
+
left: calc(var(--spacing) * 8);
|
|
924
924
|
}
|
|
925
925
|
.left-\[50\%\] {
|
|
926
926
|
left: 50%;
|
|
@@ -1381,9 +1381,6 @@ h2.react-datepicker__current-month {
|
|
|
1381
1381
|
.w-11 {
|
|
1382
1382
|
width: calc(var(--spacing) * 11);
|
|
1383
1383
|
}
|
|
1384
|
-
.w-14 {
|
|
1385
|
-
width: calc(var(--spacing) * 14);
|
|
1386
|
-
}
|
|
1387
1384
|
.w-16 {
|
|
1388
1385
|
width: calc(var(--spacing) * 16);
|
|
1389
1386
|
}
|
|
@@ -1540,6 +1537,9 @@ h2.react-datepicker__current-month {
|
|
|
1540
1537
|
.min-w-14 {
|
|
1541
1538
|
min-width: calc(var(--spacing) * 14);
|
|
1542
1539
|
}
|
|
1540
|
+
.min-w-16 {
|
|
1541
|
+
min-width: calc(var(--spacing) * 16);
|
|
1542
|
+
}
|
|
1543
1543
|
.min-w-18 {
|
|
1544
1544
|
min-width: calc(var(--spacing) * 18);
|
|
1545
1545
|
}
|
|
@@ -1859,6 +1859,10 @@ h2.react-datepicker__current-month {
|
|
|
1859
1859
|
.rounded-xl {
|
|
1860
1860
|
border-radius: var(--radius-xl);
|
|
1861
1861
|
}
|
|
1862
|
+
.rounded-t-\[calc\(var\(--radius-xl\)-1px\)\] {
|
|
1863
|
+
border-top-left-radius: calc(var(--radius-xl) - 1px);
|
|
1864
|
+
border-top-right-radius: calc(var(--radius-xl) - 1px);
|
|
1865
|
+
}
|
|
1862
1866
|
.rounded-t-xl {
|
|
1863
1867
|
border-top-left-radius: var(--radius-xl);
|
|
1864
1868
|
border-top-right-radius: var(--radius-xl);
|
|
@@ -2070,9 +2074,6 @@ h2.react-datepicker__current-month {
|
|
|
2070
2074
|
.bg-\[var\(--sidebar-neutral-active\)\] {
|
|
2071
2075
|
background-color: var(--sidebar-neutral-active);
|
|
2072
2076
|
}
|
|
2073
|
-
.bg-\[var\(--sidebar-toggle-bg\)\] {
|
|
2074
|
-
background-color: var(--sidebar-toggle-bg);
|
|
2075
|
-
}
|
|
2076
2077
|
.bg-\[var\(--status-danger-bg\)\] {
|
|
2077
2078
|
background-color: var(--status-danger-bg);
|
|
2078
2079
|
}
|
|
@@ -2328,6 +2329,9 @@ h2.react-datepicker__current-month {
|
|
|
2328
2329
|
.pl-14 {
|
|
2329
2330
|
padding-left: calc(var(--spacing) * 14);
|
|
2330
2331
|
}
|
|
2332
|
+
.pl-16 {
|
|
2333
|
+
padding-left: calc(var(--spacing) * 16);
|
|
2334
|
+
}
|
|
2331
2335
|
.text-center {
|
|
2332
2336
|
text-align: center;
|
|
2333
2337
|
}
|
|
@@ -2765,6 +2769,11 @@ h2.react-datepicker__current-month {
|
|
|
2765
2769
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2766
2770
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2767
2771
|
}
|
|
2772
|
+
.transition-\[background-color\,color\] {
|
|
2773
|
+
transition-property: background-color,color;
|
|
2774
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2775
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2776
|
+
}
|
|
2768
2777
|
.transition-\[border-color\,box-shadow\,transform\,opacity\] {
|
|
2769
2778
|
transition-property: border-color,box-shadow,transform,opacity;
|
|
2770
2779
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -2790,11 +2799,6 @@ h2.react-datepicker__current-month {
|
|
|
2790
2799
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2791
2800
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2792
2801
|
}
|
|
2793
|
-
.transition-\[width\,background-color\,color\] {
|
|
2794
|
-
transition-property: width,background-color,color;
|
|
2795
|
-
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2796
|
-
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2797
|
-
}
|
|
2798
2802
|
.transition-\[width\,transform\] {
|
|
2799
2803
|
transition-property: width,transform;
|
|
2800
2804
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -3205,17 +3209,17 @@ h2.react-datepicker__current-month {
|
|
|
3205
3209
|
}
|
|
3206
3210
|
}
|
|
3207
3211
|
}
|
|
3208
|
-
.hover\:bg-\[var\(--sidebar-
|
|
3212
|
+
.hover\:bg-\[var\(--sidebar-item-hover\)\] {
|
|
3209
3213
|
&:hover {
|
|
3210
3214
|
@media (hover: hover) {
|
|
3211
|
-
background-color: var(--sidebar-
|
|
3215
|
+
background-color: var(--sidebar-item-hover);
|
|
3212
3216
|
}
|
|
3213
3217
|
}
|
|
3214
3218
|
}
|
|
3215
|
-
.hover\:bg-\[var\(--sidebar-
|
|
3219
|
+
.hover\:bg-\[var\(--sidebar-neutral-hover\)\] {
|
|
3216
3220
|
&:hover {
|
|
3217
3221
|
@media (hover: hover) {
|
|
3218
|
-
background-color: var(--sidebar-
|
|
3222
|
+
background-color: var(--sidebar-neutral-hover);
|
|
3219
3223
|
}
|
|
3220
3224
|
}
|
|
3221
3225
|
}
|
|
@@ -3650,11 +3654,6 @@ h2.react-datepicker__current-month {
|
|
|
3650
3654
|
width: calc(4/5 * 100%);
|
|
3651
3655
|
}
|
|
3652
3656
|
}
|
|
3653
|
-
.data-\[open\=true\]\:w-full {
|
|
3654
|
-
&[data-open="true"] {
|
|
3655
|
-
width: 100%;
|
|
3656
|
-
}
|
|
3657
|
-
}
|
|
3658
3657
|
.data-\[open\=true\]\:translate-x-0 {
|
|
3659
3658
|
&[data-open="true"] {
|
|
3660
3659
|
--tw-translate-x: calc(var(--spacing) * 0);
|
|
@@ -4448,19 +4447,11 @@ h2.react-datepicker__current-month {
|
|
|
4448
4447
|
--sidebar-background: var(--surface);
|
|
4449
4448
|
--sidebar-flyout-background: var(--surface);
|
|
4450
4449
|
--topbar-background: var(--surface);
|
|
4451
|
-
--tabs-background: var(--
|
|
4450
|
+
--tabs-background: var(--foreground-muted);
|
|
4452
4451
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4453
|
-
--tabs-background: color-mix(in srgb, var(--
|
|
4452
|
+
--tabs-background: color-mix(in srgb, var(--foreground-muted) 6%, var(--surface));
|
|
4454
4453
|
}
|
|
4455
4454
|
--sidebar-accent: var(--status-info-icon);
|
|
4456
|
-
--sidebar-toggle-bg: var(--brand);
|
|
4457
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
4458
|
-
--sidebar-toggle-bg: color-mix(in srgb, var(--brand) 8%, transparent);
|
|
4459
|
-
}
|
|
4460
|
-
--sidebar-toggle-hover: var(--brand);
|
|
4461
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
4462
|
-
--sidebar-toggle-hover: color-mix(in srgb, var(--brand) 11%, transparent);
|
|
4463
|
-
}
|
|
4464
4455
|
--sidebar-item-active: var(--sidebar-accent);
|
|
4465
4456
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4466
4457
|
--sidebar-item-active: color-mix(in srgb, var(--sidebar-accent) 8%, transparent);
|
|
@@ -4508,19 +4499,11 @@ h2.react-datepicker__current-month {
|
|
|
4508
4499
|
--muted-foreground: var(--foreground-muted);
|
|
4509
4500
|
--app-border: var(--dark-app-border, #29364d);
|
|
4510
4501
|
--input-bg: var(--dark-input-bg, #111a2b);
|
|
4511
|
-
--sidebar-background: var(--
|
|
4512
|
-
--sidebar-flyout-background: var(--
|
|
4513
|
-
--topbar-background: var(--
|
|
4502
|
+
--sidebar-background: var(--background-secondary);
|
|
4503
|
+
--sidebar-flyout-background: var(--background-secondary);
|
|
4504
|
+
--topbar-background: var(--background-secondary);
|
|
4514
4505
|
--tabs-background: var(--background-secondary);
|
|
4515
4506
|
--sidebar-accent: var(--status-info-icon);
|
|
4516
|
-
--sidebar-toggle-bg: var(--brand);
|
|
4517
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
4518
|
-
--sidebar-toggle-bg: color-mix(in srgb, var(--brand) 13%, transparent);
|
|
4519
|
-
}
|
|
4520
|
-
--sidebar-toggle-hover: var(--brand);
|
|
4521
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
4522
|
-
--sidebar-toggle-hover: color-mix(in srgb, var(--brand) 15%, transparent);
|
|
4523
|
-
}
|
|
4524
4507
|
--sidebar-item-active: var(--sidebar-accent);
|
|
4525
4508
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4526
4509
|
--sidebar-item-active: color-mix(in srgb, var(--sidebar-accent) 13%, transparent);
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
declare const sharedUiPreset: {
|
|
2
|
+
theme: {
|
|
3
|
+
extend: {
|
|
4
|
+
colors: {
|
|
5
|
+
background: string;
|
|
6
|
+
backgroundSecondary: string;
|
|
7
|
+
'background-secondary': string;
|
|
8
|
+
surface: string;
|
|
9
|
+
foreground: string;
|
|
10
|
+
'foreground-muted': string;
|
|
11
|
+
'muted-foreground': string;
|
|
12
|
+
'app-border': string;
|
|
13
|
+
'sidebar-flyout-background': string;
|
|
14
|
+
brand: string;
|
|
15
|
+
'brand-hover': string;
|
|
16
|
+
destructive: string;
|
|
17
|
+
'input-bg': string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
export default sharedUiPreset;
|
|
23
|
+
//# sourceMappingURL=tailwind-preset.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tailwind-preset.d.ts","sourceRoot":"","sources":["../src/tailwind-preset.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;CAoBnB,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
const sharedUiPreset = {
|
|
2
|
+
theme: {
|
|
3
|
+
extend: {
|
|
4
|
+
colors: {
|
|
5
|
+
background: 'var(--background)',
|
|
6
|
+
backgroundSecondary: 'var(--background-secondary)',
|
|
7
|
+
'background-secondary': 'var(--background-secondary)',
|
|
8
|
+
surface: 'var(--surface)',
|
|
9
|
+
foreground: 'var(--foreground)',
|
|
10
|
+
'foreground-muted': 'var(--foreground-muted)',
|
|
11
|
+
'muted-foreground': 'var(--muted-foreground)',
|
|
12
|
+
'app-border': 'var(--app-border)',
|
|
13
|
+
'sidebar-flyout-background': 'var(--sidebar-flyout-background)',
|
|
14
|
+
brand: 'var(--brand)',
|
|
15
|
+
'brand-hover': 'var(--brand-hover)',
|
|
16
|
+
destructive: 'var(--destructive)',
|
|
17
|
+
'input-bg': 'var(--input-bg)',
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
},
|
|
21
|
+
};
|
|
22
|
+
export default sharedUiPreset;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cn.d.ts","sourceRoot":"","sources":["../../src/utils/cn.ts"],"names":[],"mappings":"AAAA,wBAAgB,EAAE,CAAC,GAAG,OAAO,EAAE,KAAK,CAAC,MAAM,GAAG,KAAK,GAAG,IAAI,GAAG,SAAS,CAAC,UAsBtE"}
|
package/dist/utils/cn.js
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export function cn(...classes) {
|
|
2
|
+
const tokens = classes
|
|
3
|
+
.filter((className) => typeof className === 'string' && className.length > 0)
|
|
4
|
+
.flatMap((className) => className.split(/\s+/))
|
|
5
|
+
.filter(Boolean);
|
|
6
|
+
const resolvedTokens = [];
|
|
7
|
+
for (const token of tokens) {
|
|
8
|
+
const conflictGroup = getConflictGroup(token);
|
|
9
|
+
if (conflictGroup) {
|
|
10
|
+
const index = resolvedTokens.findIndex((item) => getConflictGroup(item) === conflictGroup);
|
|
11
|
+
if (index >= 0) {
|
|
12
|
+
resolvedTokens.splice(index, 1);
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
resolvedTokens.push(token);
|
|
16
|
+
}
|
|
17
|
+
return resolvedTokens.join(' ');
|
|
18
|
+
}
|
|
19
|
+
function getConflictGroup(token) {
|
|
20
|
+
const parts = token.split(':');
|
|
21
|
+
const utility = parts[parts.length - 1];
|
|
22
|
+
const variantPrefix = parts.slice(0, -1).join(':');
|
|
23
|
+
const normalizedUtility = utility?.startsWith('!') ? utility.slice(1) : utility;
|
|
24
|
+
if (normalizedUtility === 'text-left' ||
|
|
25
|
+
normalizedUtility === 'text-center' ||
|
|
26
|
+
normalizedUtility === 'text-right' ||
|
|
27
|
+
normalizedUtility === 'text-justify' ||
|
|
28
|
+
normalizedUtility === 'text-start' ||
|
|
29
|
+
normalizedUtility === 'text-end') {
|
|
30
|
+
return `${variantPrefix}:text-align`;
|
|
31
|
+
}
|
|
32
|
+
return null;
|
|
33
|
+
}
|