@shuriken-ui/tailwind 2.0.0-next.1 → 2.0.0-next.10
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/index.d.cts +3 -3
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/preset.cjs +44 -36
- package/dist/preset.d.cts +2 -2
- package/dist/preset.d.mts +2 -2
- package/dist/preset.d.ts +2 -2
- package/dist/preset.mjs +44 -36
- package/dist/shared/{tailwind.3d76501d.d.cts → tailwind.d65f80d7.d.cts} +3 -4
- package/dist/shared/{tailwind.3d76501d.d.mts → tailwind.d65f80d7.d.mts} +3 -4
- package/dist/shared/{tailwind.3d76501d.d.ts → tailwind.d65f80d7.d.ts} +3 -4
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
import { S as ShurikenUIConfig } from './shared/tailwind.
|
2
|
-
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.
|
3
|
-
import 'tailwindcss';
|
1
|
+
import { S as ShurikenUIConfig } from './shared/tailwind.d65f80d7.cjs';
|
2
|
+
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.d65f80d7.cjs';
|
4
3
|
import 'tailwindcss/types/config';
|
4
|
+
import 'tailwindcss';
|
5
5
|
import '@tailwindcss/typography';
|
6
6
|
|
7
7
|
declare function withShurikenUI(config: ShurikenUIConfig): ShurikenUIConfig;
|
package/dist/index.d.mts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
import { S as ShurikenUIConfig } from './shared/tailwind.
|
2
|
-
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.
|
3
|
-
import 'tailwindcss';
|
1
|
+
import { S as ShurikenUIConfig } from './shared/tailwind.d65f80d7.mjs';
|
2
|
+
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.d65f80d7.mjs';
|
4
3
|
import 'tailwindcss/types/config';
|
4
|
+
import 'tailwindcss';
|
5
5
|
import '@tailwindcss/typography';
|
6
6
|
|
7
7
|
declare function withShurikenUI(config: ShurikenUIConfig): ShurikenUIConfig;
|
package/dist/index.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
import { S as ShurikenUIConfig } from './shared/tailwind.
|
2
|
-
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.
|
3
|
-
import 'tailwindcss';
|
1
|
+
import { S as ShurikenUIConfig } from './shared/tailwind.d65f80d7.js';
|
2
|
+
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.d65f80d7.js';
|
4
3
|
import 'tailwindcss/types/config';
|
4
|
+
import 'tailwindcss';
|
5
5
|
import '@tailwindcss/typography';
|
6
6
|
|
7
7
|
declare function withShurikenUI(config: ShurikenUIConfig): ShurikenUIConfig;
|
package/dist/preset.cjs
CHANGED
@@ -4337,7 +4337,7 @@ const defaultConfig$I = {
|
|
4337
4337
|
},
|
4338
4338
|
dark: {
|
4339
4339
|
base: "transparent",
|
4340
|
-
hover: "
|
4340
|
+
hover: "white",
|
4341
4341
|
active: "muted-700",
|
4342
4342
|
focus: "muted-800"
|
4343
4343
|
}
|
@@ -4409,7 +4409,7 @@ const defaultConfig$I = {
|
|
4409
4409
|
background: {
|
4410
4410
|
light: {
|
4411
4411
|
base: "transparent",
|
4412
|
-
hover: "
|
4412
|
+
hover: "muted-300",
|
4413
4413
|
active: "muted-400",
|
4414
4414
|
focus: "muted-300"
|
4415
4415
|
},
|
@@ -5383,63 +5383,63 @@ const card = plugin__default.withOptions(
|
|
5383
5383
|
//Color:white
|
5384
5384
|
[`&.${prefix}card-white`]: {
|
5385
5385
|
//Border
|
5386
|
-
[`@apply border border-${config.color.white.border.light} dark:border-${config.color.white.border.
|
5386
|
+
[`@apply border border-${config.color.white.border.light} dark:border-${config.color.white.border.dark}`]: {},
|
5387
5387
|
//Background
|
5388
5388
|
[`@apply bg-${config.color.white.background.light} dark:bg-${config.color.white.background.dark}`]: {}
|
5389
5389
|
},
|
5390
5390
|
//Color:whiteContrast
|
5391
5391
|
[`&.${prefix}card-white-contrast`]: {
|
5392
5392
|
//Border
|
5393
|
-
[`@apply border border-${config.color.whiteContrast.border.light} dark:border-${config.color.whiteContrast.border.
|
5393
|
+
[`@apply border border-${config.color.whiteContrast.border.light} dark:border-${config.color.whiteContrast.border.dark}`]: {},
|
5394
5394
|
//Background
|
5395
5395
|
[`@apply bg-${config.color.whiteContrast.background.light} dark:bg-${config.color.whiteContrast.background.dark}`]: {}
|
5396
5396
|
},
|
5397
5397
|
//Color:muted
|
5398
5398
|
[`&.${prefix}card-muted`]: {
|
5399
5399
|
//Border
|
5400
|
-
[`@apply border border-${config.color.muted.border.light} dark:border-${config.color.muted.border.
|
5400
|
+
[`@apply border border-${config.color.muted.border.light} dark:border-${config.color.muted.border.dark}`]: {},
|
5401
5401
|
//Background
|
5402
5402
|
[`@apply bg-${config.color.muted.background.light} dark:bg-${config.color.muted.background.dark}`]: {}
|
5403
5403
|
},
|
5404
5404
|
//Color:mutedContrast
|
5405
5405
|
[`&.${prefix}card-muted-contrast`]: {
|
5406
5406
|
//Border
|
5407
|
-
[`@apply border border-${config.color.mutedContrast.border.light} dark:border-${config.color.mutedContrast.border.
|
5407
|
+
[`@apply border border-${config.color.mutedContrast.border.light} dark:border-${config.color.mutedContrast.border.dark}`]: {},
|
5408
5408
|
//Background
|
5409
5409
|
[`@apply bg-${config.color.mutedContrast.background.light} dark:bg-${config.color.mutedContrast.background.dark}`]: {}
|
5410
5410
|
},
|
5411
5411
|
//Color:primary
|
5412
5412
|
[`&.${prefix}card-primary`]: {
|
5413
5413
|
//Border
|
5414
|
-
[`@apply border border-${config.color.primary.border.light} dark:border-${config.color.primary.border.
|
5414
|
+
[`@apply border border-${config.color.primary.border.light} dark:border-${config.color.primary.border.dark}`]: {},
|
5415
5415
|
//Background
|
5416
5416
|
[`@apply bg-${config.color.primary.background.light} dark:bg-${config.color.primary.background.dark}`]: {}
|
5417
5417
|
},
|
5418
5418
|
//Color:info
|
5419
5419
|
[`&.${prefix}card-info`]: {
|
5420
5420
|
//Border
|
5421
|
-
[`@apply border border-${config.color.info.border.light} dark:border-${config.color.info.border.
|
5421
|
+
[`@apply border border-${config.color.info.border.light} dark:border-${config.color.info.border.dark}`]: {},
|
5422
5422
|
//Background
|
5423
5423
|
[`@apply bg-${config.color.info.background.light} dark:bg-${config.color.info.background.dark}`]: {}
|
5424
5424
|
},
|
5425
5425
|
//Color:success
|
5426
5426
|
[`&.${prefix}card-success`]: {
|
5427
5427
|
//Border
|
5428
|
-
[`@apply border border-${config.color.success.border.light} dark:border-${config.color.success.border.
|
5428
|
+
[`@apply border border-${config.color.success.border.light} dark:border-${config.color.success.border.dark}`]: {},
|
5429
5429
|
//Background
|
5430
5430
|
[`@apply bg-${config.color.success.background.light} dark:bg-${config.color.success.background.dark}`]: {}
|
5431
5431
|
},
|
5432
5432
|
//Color:warning
|
5433
5433
|
[`&.${prefix}card-warning`]: {
|
5434
5434
|
//Border
|
5435
|
-
[`@apply border border-${config.color.warning.border.light} dark:border-${config.color.warning.border.
|
5435
|
+
[`@apply border border-${config.color.warning.border.light} dark:border-${config.color.warning.border.dark}`]: {},
|
5436
5436
|
//Background
|
5437
5437
|
[`@apply bg-${config.color.warning.background.light} dark:bg-${config.color.warning.background.dark}`]: {}
|
5438
5438
|
},
|
5439
5439
|
//Color:danger
|
5440
5440
|
[`&.${prefix}card-danger`]: {
|
5441
5441
|
//Border
|
5442
|
-
[`@apply border border-${config.color.danger.border.light} dark:border-${config.color.danger.border.
|
5442
|
+
[`@apply border border-${config.color.danger.border.light} dark:border-${config.color.danger.border.dark}`]: {},
|
5443
5443
|
//Background
|
5444
5444
|
[`@apply bg-${config.color.danger.background.light} dark:bg-${config.color.danger.background.dark}`]: {}
|
5445
5445
|
},
|
@@ -5594,7 +5594,7 @@ const checkbox = plugin__default.withOptions(
|
|
5594
5594
|
[`.${prefix}checkbox-inner`]: {
|
5595
5595
|
[`@apply absolute start-0 top-0 z-0 h-${config.inner.size} w-${config.inner.size}`]: {},
|
5596
5596
|
//Background
|
5597
|
-
[`@apply bg-${config.inner.background.light} dark:bg-${config.inner.background.
|
5597
|
+
[`@apply bg-${config.inner.background.light} dark:bg-${config.inner.background.dark}`]: {},
|
5598
5598
|
//Border
|
5599
5599
|
[`@apply border-2 border-${config.inner.border.light} dark:border-${config.inner.border.dark}`]: {}
|
5600
5600
|
},
|
@@ -5826,7 +5826,11 @@ const dropdownItem = plugin__default.withOptions(
|
|
5826
5826
|
},
|
5827
5827
|
//Color:default
|
5828
5828
|
[`&.${prefix}item-default`]: {
|
5829
|
-
|
5829
|
+
//Background:hover
|
5830
|
+
[`@apply hover:bg-${config.color.default.background.light} dark:hover:bg-${config.color.default.background.dark}`]: {},
|
5831
|
+
//Font:hover
|
5832
|
+
[`@apply hover:text-${config.color.default.font.color.light} dark:hover:text-${config.color.default.font.color.dark}`]: {},
|
5833
|
+
[`&.${prefix}active`]: {
|
5830
5834
|
//Background:hover
|
5831
5835
|
[`@apply bg-${config.color.default.background.light} dark:bg-${config.color.default.background.dark}`]: {},
|
5832
5836
|
//Font:hover
|
@@ -5835,7 +5839,11 @@ const dropdownItem = plugin__default.withOptions(
|
|
5835
5839
|
},
|
5836
5840
|
//Color:contrast
|
5837
5841
|
[`&.${prefix}item-contrast`]: {
|
5838
|
-
|
5842
|
+
//Background:hover
|
5843
|
+
[`@apply hover:bg-${config.color.contrast.background.light} dark:hover:bg-${config.color.contrast.background.dark}`]: {},
|
5844
|
+
//Font:hover
|
5845
|
+
[`@apply hover:text-${config.color.contrast.font.color.light} dark:hover:text-${config.color.contrast.font.color.dark}`]: {},
|
5846
|
+
[`&.${prefix}active`]: {
|
5839
5847
|
//Background:hover
|
5840
5848
|
[`@apply bg-${config.color.contrast.background.light} dark:bg-${config.color.contrast.background.dark}`]: {},
|
5841
5849
|
//Font:hover
|
@@ -10555,7 +10563,7 @@ const listbox = plugin__default.withOptions(
|
|
10555
10563
|
[`@apply text-${config.error.font.color.light} dark:text-${config.error.font.color.dark}`]: {}
|
10556
10564
|
},
|
10557
10565
|
//Listbox:placeload
|
10558
|
-
[`.${prefix}listbox-placeload`]: {
|
10566
|
+
[`.${prefix}listbox-placeload.${prefix}loading-placeload`]: {
|
10559
10567
|
[`@apply absolute start-0 top-0 flex w-full items-center px-4`]: {},
|
10560
10568
|
[`.${prefix}placeload`]: {
|
10561
10569
|
[`@apply h-3 w-full max-w-[75%] rounded`]: {}
|
@@ -10789,7 +10797,7 @@ const listbox = plugin__default.withOptions(
|
|
10789
10797
|
//Listbox:loading
|
10790
10798
|
[`&.${prefix}listbox-loading`]: {
|
10791
10799
|
[`.${prefix}listbox-button`]: {
|
10792
|
-
[`@apply !text-transparent placeholder:!text-transparent dark:placeholder:!text-transparent`]: {}
|
10800
|
+
[`@apply !text-transparent placeholder:!text-transparent dark:placeholder:!text-transparent pointer-events-none`]: {}
|
10793
10801
|
},
|
10794
10802
|
[`.${prefix}listbox-button ~ .${prefix}label-float`]: {
|
10795
10803
|
[`@apply text-transparent`]: {}
|
@@ -10855,7 +10863,7 @@ const listbox = plugin__default.withOptions(
|
|
10855
10863
|
[`.${prefix}label-float`]: {
|
10856
10864
|
[`@apply start-3 -ms-3 -mt-7 text-${config.icon.disabled.label.float.sm.font.size} text-transparent`]: {}
|
10857
10865
|
},
|
10858
|
-
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float`]: {
|
10866
|
+
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float, .${prefix}label-float-active`]: {
|
10859
10867
|
[`@apply !-ms-3 !-mt-7 !text-${config.label.float.font.color}`]: {}
|
10860
10868
|
},
|
10861
10869
|
[`.${prefix}listbox-button ~ .${prefix}label-float`]: {
|
@@ -10867,7 +10875,7 @@ const listbox = plugin__default.withOptions(
|
|
10867
10875
|
[`.${prefix}label-float`]: {
|
10868
10876
|
[`@apply start-8 -ms-8 -mt-7 text-${config.icon.disabled.label.float.sm.font.size} text-transparent`]: {}
|
10869
10877
|
},
|
10870
|
-
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float`]: {
|
10878
|
+
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float, .${prefix}label-float-active`]: {
|
10871
10879
|
[`@apply !-ms-8 !-mt-7 !text-${config.label.float.font.color}`]: {}
|
10872
10880
|
},
|
10873
10881
|
[`.${prefix}listbox-button ~ .${prefix}label-float`]: {
|
@@ -10877,10 +10885,10 @@ const listbox = plugin__default.withOptions(
|
|
10877
10885
|
//Without:icon && Size:md && Label:float
|
10878
10886
|
[`&.${prefix}listbox-label-float:not(.${prefix}has-icon).${prefix}listbox-md`]: {
|
10879
10887
|
[`.${prefix}label-float`]: {
|
10880
|
-
[`@apply start-3 -ms-3 -mt-
|
10888
|
+
[`@apply start-3 -ms-3 -mt-7 text-${config.icon.disabled.label.float.md.font.size.base} text-transparent`]: {}
|
10881
10889
|
},
|
10882
|
-
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float`]: {
|
10883
|
-
[`@apply !-ms-3 !-mt-
|
10890
|
+
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float, .${prefix}label-float-active`]: {
|
10891
|
+
[`@apply !-ms-3 !-mt-7 !text-${config.icon.disabled.label.float.md.font.size.focus} !text-${config.label.float.font.color}`]: {}
|
10884
10892
|
},
|
10885
10893
|
[`.${prefix}listbox-button ~ .${prefix}label-float`]: {
|
10886
10894
|
[`@apply ms-0 mt-0 text-${config.icon.disabled.label.float.md.font.size.base}`]: {}
|
@@ -10889,10 +10897,10 @@ const listbox = plugin__default.withOptions(
|
|
10889
10897
|
//With:icon && Size:md && Label:float
|
10890
10898
|
[`&.${prefix}listbox-label-float.${prefix}has-icon.${prefix}listbox-md`]: {
|
10891
10899
|
[`.${prefix}label-float`]: {
|
10892
|
-
[`@apply start-10 -ms-10 -mt-
|
10900
|
+
[`@apply start-10 -ms-10 -mt-7 text-${config.icon.enabled.label.float.md.font.size.base} text-transparent`]: {}
|
10893
10901
|
},
|
10894
|
-
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float`]: {
|
10895
|
-
[`@apply !-ms-10 !-mt-
|
10902
|
+
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float, .${prefix}label-float-active`]: {
|
10903
|
+
[`@apply !-ms-10 !-mt-7 !text-${config.icon.enabled.label.float.md.font.size.focus} !text-${config.label.float.font.color}`]: {}
|
10896
10904
|
},
|
10897
10905
|
[`.${prefix}listbox-button ~ .${prefix}label-float`]: {
|
10898
10906
|
[`@apply ms-0 mt-0 text-${config.icon.enabled.label.float.md.font.size.unfocus}`]: {}
|
@@ -10901,10 +10909,10 @@ const listbox = plugin__default.withOptions(
|
|
10901
10909
|
//Without:icon && Size:lg && Label:float
|
10902
10910
|
[`&.${prefix}listbox-label-float:not(.${prefix}has-icon).${prefix}listbox-lg`]: {
|
10903
10911
|
[`.${prefix}label-float`]: {
|
10904
|
-
[`@apply start-3 -ms-3 -mt-
|
10912
|
+
[`@apply start-3 -ms-3 -mt-7 text-${config.icon.disabled.label.float.lg.font.size.base} text-transparent`]: {}
|
10905
10913
|
},
|
10906
|
-
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float`]: {
|
10907
|
-
[`@apply !-ms-3 !-mt-
|
10914
|
+
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float, .${prefix}label-float-active`]: {
|
10915
|
+
[`@apply !-ms-3 !-mt-7 !text-${config.icon.disabled.label.float.lg.font.size.focus} !text-${config.label.float.font.color}`]: {}
|
10908
10916
|
},
|
10909
10917
|
[`.${prefix}listbox-button ~ .${prefix}label-float`]: {
|
10910
10918
|
[`@apply ms-0 mt-0 text-${config.icon.disabled.label.float.lg.font.size.unfocus}`]: {}
|
@@ -10913,10 +10921,10 @@ const listbox = plugin__default.withOptions(
|
|
10913
10921
|
//With:icon && Size:lg && Label:float
|
10914
10922
|
[`&.${prefix}listbox-label-float.${prefix}has-icon.${prefix}listbox-lg`]: {
|
10915
10923
|
[`.${prefix}label-float`]: {
|
10916
|
-
[`@apply start-11 -ms-10 -mt-
|
10924
|
+
[`@apply start-11 -ms-10 -mt-7 text-${config.icon.enabled.label.float.lg.font.size.base} text-transparent`]: {}
|
10917
10925
|
},
|
10918
|
-
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float`]: {
|
10919
|
-
[`@apply !-ms-10 !-mt-
|
10926
|
+
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float, .${prefix}label-float-active`]: {
|
10927
|
+
[`@apply !-ms-10 !-mt-7 !text-${config.icon.enabled.label.float.lg.font.size.focus} !text-${config.label.float.font.color}`]: {}
|
10920
10928
|
},
|
10921
10929
|
[`.${prefix}listbox-button ~ .${prefix}label-float`]: {
|
10922
10930
|
[`@apply ms-0 mt-0 text-${config.icon.enabled.label.float.lg.font.size.unfocus}`]: {}
|
@@ -14064,7 +14072,7 @@ const defaultConfig$a = {
|
|
14064
14072
|
},
|
14065
14073
|
background: {
|
14066
14074
|
light: "white",
|
14067
|
-
dark: "
|
14075
|
+
dark: "muted-950"
|
14068
14076
|
}
|
14069
14077
|
},
|
14070
14078
|
image: {
|
@@ -15555,7 +15563,7 @@ const tag = plugin__default.withOptions(
|
|
15555
15563
|
},
|
15556
15564
|
//Shadow:hover
|
15557
15565
|
[`&.${prefix}tag-shadow-hover`]: {
|
15558
|
-
[`@apply hover:shadow-${config.variant.solid.
|
15566
|
+
[`@apply hover:shadow-${config.variant.solid.info.shadow.size} hover:shadow-${config.variant.solid.info.shadow.light} hover:shadow-${config.variant.solid.info.shadow.dark}`]: {}
|
15559
15567
|
}
|
15560
15568
|
},
|
15561
15569
|
//Color:success
|
@@ -15570,7 +15578,7 @@ const tag = plugin__default.withOptions(
|
|
15570
15578
|
},
|
15571
15579
|
//Shadow:hover
|
15572
15580
|
[`&.${prefix}tag-shadow-hover`]: {
|
15573
|
-
[`@apply hover:shadow-${config.variant.solid.
|
15581
|
+
[`@apply hover:shadow-${config.variant.solid.success.shadow.size} hover:shadow-${config.variant.solid.success.shadow.light} hover:shadow-${config.variant.solid.success.shadow.dark}`]: {}
|
15574
15582
|
}
|
15575
15583
|
},
|
15576
15584
|
//Color:warning
|
@@ -15585,7 +15593,7 @@ const tag = plugin__default.withOptions(
|
|
15585
15593
|
},
|
15586
15594
|
//Shadow:hover
|
15587
15595
|
[`&.${prefix}tag-shadow-hover`]: {
|
15588
|
-
[`@apply hover:shadow-${config.variant.solid.
|
15596
|
+
[`@apply hover:shadow-${config.variant.solid.warning.shadow.size} hover:shadow-${config.variant.solid.warning.shadow.light} hover:shadow-${config.variant.solid.warning.shadow.dark}`]: {}
|
15589
15597
|
}
|
15590
15598
|
},
|
15591
15599
|
//Color:danger
|
@@ -16176,7 +16184,7 @@ const textarea = plugin__default.withOptions(
|
|
16176
16184
|
},
|
16177
16185
|
//Textarea
|
16178
16186
|
[`.${prefix}textarea`]: {
|
16179
|
-
[`@apply ${prefix}focus w-${config.textarea.width}`]: {},
|
16187
|
+
[`@apply ${prefix}focus w-${config.textarea.width} enabled:cursor-default cursor-not-allowed`]: {},
|
16180
16188
|
//Focus:label:float
|
16181
16189
|
[`&:focus-visible ~ .${prefix}label-float`]: {
|
16182
16190
|
[`@apply !text-${config.label.float.font.color} dark:!text-${config.label.float.font.color}`]: {}
|
@@ -16596,7 +16604,7 @@ const themeSwitch = plugin__default.withOptions(
|
|
16596
16604
|
[`@apply ring-offset-${config.inverted.disabled.ring.light} dark:ring-offset-${config.inverted.disabled.ring.dark}`]: {},
|
16597
16605
|
[`.${prefix}theme-switch-inner`]: {
|
16598
16606
|
//Border
|
16599
|
-
[`@apply border border-${config.inverted.disabled.inner.
|
16607
|
+
[`@apply border border-${config.inverted.disabled.inner.border.light} dark:border-${config.inverted.disabled.inner.border.dark}`]: {},
|
16600
16608
|
//Background
|
16601
16609
|
[`@apply bg-${config.inverted.disabled.inner.background.light} dark:bg-${config.inverted.disabled.inner.background.dark}`]: {}
|
16602
16610
|
}
|
package/dist/preset.d.cts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import 'tailwindcss';
|
2
1
|
import 'tailwindcss/types/config';
|
3
|
-
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.
|
2
|
+
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.d65f80d7.cjs';
|
4
3
|
import '@tailwindcss/typography';
|
4
|
+
import 'tailwindcss';
|
package/dist/preset.d.mts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import 'tailwindcss';
|
2
1
|
import 'tailwindcss/types/config';
|
3
|
-
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.
|
2
|
+
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.d65f80d7.mjs';
|
4
3
|
import '@tailwindcss/typography';
|
4
|
+
import 'tailwindcss';
|
package/dist/preset.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import 'tailwindcss';
|
2
1
|
import 'tailwindcss/types/config';
|
3
|
-
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.
|
2
|
+
export { c as createPreset, h as hasPreset, p as preset } from './shared/tailwind.d65f80d7.js';
|
4
3
|
import '@tailwindcss/typography';
|
4
|
+
import 'tailwindcss';
|
package/dist/preset.mjs
CHANGED
@@ -4327,7 +4327,7 @@ const defaultConfig$I = {
|
|
4327
4327
|
},
|
4328
4328
|
dark: {
|
4329
4329
|
base: "transparent",
|
4330
|
-
hover: "
|
4330
|
+
hover: "white",
|
4331
4331
|
active: "muted-700",
|
4332
4332
|
focus: "muted-800"
|
4333
4333
|
}
|
@@ -4399,7 +4399,7 @@ const defaultConfig$I = {
|
|
4399
4399
|
background: {
|
4400
4400
|
light: {
|
4401
4401
|
base: "transparent",
|
4402
|
-
hover: "
|
4402
|
+
hover: "muted-300",
|
4403
4403
|
active: "muted-400",
|
4404
4404
|
focus: "muted-300"
|
4405
4405
|
},
|
@@ -5373,63 +5373,63 @@ const card = plugin.withOptions(
|
|
5373
5373
|
//Color:white
|
5374
5374
|
[`&.${prefix}card-white`]: {
|
5375
5375
|
//Border
|
5376
|
-
[`@apply border border-${config.color.white.border.light} dark:border-${config.color.white.border.
|
5376
|
+
[`@apply border border-${config.color.white.border.light} dark:border-${config.color.white.border.dark}`]: {},
|
5377
5377
|
//Background
|
5378
5378
|
[`@apply bg-${config.color.white.background.light} dark:bg-${config.color.white.background.dark}`]: {}
|
5379
5379
|
},
|
5380
5380
|
//Color:whiteContrast
|
5381
5381
|
[`&.${prefix}card-white-contrast`]: {
|
5382
5382
|
//Border
|
5383
|
-
[`@apply border border-${config.color.whiteContrast.border.light} dark:border-${config.color.whiteContrast.border.
|
5383
|
+
[`@apply border border-${config.color.whiteContrast.border.light} dark:border-${config.color.whiteContrast.border.dark}`]: {},
|
5384
5384
|
//Background
|
5385
5385
|
[`@apply bg-${config.color.whiteContrast.background.light} dark:bg-${config.color.whiteContrast.background.dark}`]: {}
|
5386
5386
|
},
|
5387
5387
|
//Color:muted
|
5388
5388
|
[`&.${prefix}card-muted`]: {
|
5389
5389
|
//Border
|
5390
|
-
[`@apply border border-${config.color.muted.border.light} dark:border-${config.color.muted.border.
|
5390
|
+
[`@apply border border-${config.color.muted.border.light} dark:border-${config.color.muted.border.dark}`]: {},
|
5391
5391
|
//Background
|
5392
5392
|
[`@apply bg-${config.color.muted.background.light} dark:bg-${config.color.muted.background.dark}`]: {}
|
5393
5393
|
},
|
5394
5394
|
//Color:mutedContrast
|
5395
5395
|
[`&.${prefix}card-muted-contrast`]: {
|
5396
5396
|
//Border
|
5397
|
-
[`@apply border border-${config.color.mutedContrast.border.light} dark:border-${config.color.mutedContrast.border.
|
5397
|
+
[`@apply border border-${config.color.mutedContrast.border.light} dark:border-${config.color.mutedContrast.border.dark}`]: {},
|
5398
5398
|
//Background
|
5399
5399
|
[`@apply bg-${config.color.mutedContrast.background.light} dark:bg-${config.color.mutedContrast.background.dark}`]: {}
|
5400
5400
|
},
|
5401
5401
|
//Color:primary
|
5402
5402
|
[`&.${prefix}card-primary`]: {
|
5403
5403
|
//Border
|
5404
|
-
[`@apply border border-${config.color.primary.border.light} dark:border-${config.color.primary.border.
|
5404
|
+
[`@apply border border-${config.color.primary.border.light} dark:border-${config.color.primary.border.dark}`]: {},
|
5405
5405
|
//Background
|
5406
5406
|
[`@apply bg-${config.color.primary.background.light} dark:bg-${config.color.primary.background.dark}`]: {}
|
5407
5407
|
},
|
5408
5408
|
//Color:info
|
5409
5409
|
[`&.${prefix}card-info`]: {
|
5410
5410
|
//Border
|
5411
|
-
[`@apply border border-${config.color.info.border.light} dark:border-${config.color.info.border.
|
5411
|
+
[`@apply border border-${config.color.info.border.light} dark:border-${config.color.info.border.dark}`]: {},
|
5412
5412
|
//Background
|
5413
5413
|
[`@apply bg-${config.color.info.background.light} dark:bg-${config.color.info.background.dark}`]: {}
|
5414
5414
|
},
|
5415
5415
|
//Color:success
|
5416
5416
|
[`&.${prefix}card-success`]: {
|
5417
5417
|
//Border
|
5418
|
-
[`@apply border border-${config.color.success.border.light} dark:border-${config.color.success.border.
|
5418
|
+
[`@apply border border-${config.color.success.border.light} dark:border-${config.color.success.border.dark}`]: {},
|
5419
5419
|
//Background
|
5420
5420
|
[`@apply bg-${config.color.success.background.light} dark:bg-${config.color.success.background.dark}`]: {}
|
5421
5421
|
},
|
5422
5422
|
//Color:warning
|
5423
5423
|
[`&.${prefix}card-warning`]: {
|
5424
5424
|
//Border
|
5425
|
-
[`@apply border border-${config.color.warning.border.light} dark:border-${config.color.warning.border.
|
5425
|
+
[`@apply border border-${config.color.warning.border.light} dark:border-${config.color.warning.border.dark}`]: {},
|
5426
5426
|
//Background
|
5427
5427
|
[`@apply bg-${config.color.warning.background.light} dark:bg-${config.color.warning.background.dark}`]: {}
|
5428
5428
|
},
|
5429
5429
|
//Color:danger
|
5430
5430
|
[`&.${prefix}card-danger`]: {
|
5431
5431
|
//Border
|
5432
|
-
[`@apply border border-${config.color.danger.border.light} dark:border-${config.color.danger.border.
|
5432
|
+
[`@apply border border-${config.color.danger.border.light} dark:border-${config.color.danger.border.dark}`]: {},
|
5433
5433
|
//Background
|
5434
5434
|
[`@apply bg-${config.color.danger.background.light} dark:bg-${config.color.danger.background.dark}`]: {}
|
5435
5435
|
},
|
@@ -5584,7 +5584,7 @@ const checkbox = plugin.withOptions(
|
|
5584
5584
|
[`.${prefix}checkbox-inner`]: {
|
5585
5585
|
[`@apply absolute start-0 top-0 z-0 h-${config.inner.size} w-${config.inner.size}`]: {},
|
5586
5586
|
//Background
|
5587
|
-
[`@apply bg-${config.inner.background.light} dark:bg-${config.inner.background.
|
5587
|
+
[`@apply bg-${config.inner.background.light} dark:bg-${config.inner.background.dark}`]: {},
|
5588
5588
|
//Border
|
5589
5589
|
[`@apply border-2 border-${config.inner.border.light} dark:border-${config.inner.border.dark}`]: {}
|
5590
5590
|
},
|
@@ -5816,7 +5816,11 @@ const dropdownItem = plugin.withOptions(
|
|
5816
5816
|
},
|
5817
5817
|
//Color:default
|
5818
5818
|
[`&.${prefix}item-default`]: {
|
5819
|
-
|
5819
|
+
//Background:hover
|
5820
|
+
[`@apply hover:bg-${config.color.default.background.light} dark:hover:bg-${config.color.default.background.dark}`]: {},
|
5821
|
+
//Font:hover
|
5822
|
+
[`@apply hover:text-${config.color.default.font.color.light} dark:hover:text-${config.color.default.font.color.dark}`]: {},
|
5823
|
+
[`&.${prefix}active`]: {
|
5820
5824
|
//Background:hover
|
5821
5825
|
[`@apply bg-${config.color.default.background.light} dark:bg-${config.color.default.background.dark}`]: {},
|
5822
5826
|
//Font:hover
|
@@ -5825,7 +5829,11 @@ const dropdownItem = plugin.withOptions(
|
|
5825
5829
|
},
|
5826
5830
|
//Color:contrast
|
5827
5831
|
[`&.${prefix}item-contrast`]: {
|
5828
|
-
|
5832
|
+
//Background:hover
|
5833
|
+
[`@apply hover:bg-${config.color.contrast.background.light} dark:hover:bg-${config.color.contrast.background.dark}`]: {},
|
5834
|
+
//Font:hover
|
5835
|
+
[`@apply hover:text-${config.color.contrast.font.color.light} dark:hover:text-${config.color.contrast.font.color.dark}`]: {},
|
5836
|
+
[`&.${prefix}active`]: {
|
5829
5837
|
//Background:hover
|
5830
5838
|
[`@apply bg-${config.color.contrast.background.light} dark:bg-${config.color.contrast.background.dark}`]: {},
|
5831
5839
|
//Font:hover
|
@@ -10545,7 +10553,7 @@ const listbox = plugin.withOptions(
|
|
10545
10553
|
[`@apply text-${config.error.font.color.light} dark:text-${config.error.font.color.dark}`]: {}
|
10546
10554
|
},
|
10547
10555
|
//Listbox:placeload
|
10548
|
-
[`.${prefix}listbox-placeload`]: {
|
10556
|
+
[`.${prefix}listbox-placeload.${prefix}loading-placeload`]: {
|
10549
10557
|
[`@apply absolute start-0 top-0 flex w-full items-center px-4`]: {},
|
10550
10558
|
[`.${prefix}placeload`]: {
|
10551
10559
|
[`@apply h-3 w-full max-w-[75%] rounded`]: {}
|
@@ -10779,7 +10787,7 @@ const listbox = plugin.withOptions(
|
|
10779
10787
|
//Listbox:loading
|
10780
10788
|
[`&.${prefix}listbox-loading`]: {
|
10781
10789
|
[`.${prefix}listbox-button`]: {
|
10782
|
-
[`@apply !text-transparent placeholder:!text-transparent dark:placeholder:!text-transparent`]: {}
|
10790
|
+
[`@apply !text-transparent placeholder:!text-transparent dark:placeholder:!text-transparent pointer-events-none`]: {}
|
10783
10791
|
},
|
10784
10792
|
[`.${prefix}listbox-button ~ .${prefix}label-float`]: {
|
10785
10793
|
[`@apply text-transparent`]: {}
|
@@ -10845,7 +10853,7 @@ const listbox = plugin.withOptions(
|
|
10845
10853
|
[`.${prefix}label-float`]: {
|
10846
10854
|
[`@apply start-3 -ms-3 -mt-7 text-${config.icon.disabled.label.float.sm.font.size} text-transparent`]: {}
|
10847
10855
|
},
|
10848
|
-
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float`]: {
|
10856
|
+
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float, .${prefix}label-float-active`]: {
|
10849
10857
|
[`@apply !-ms-3 !-mt-7 !text-${config.label.float.font.color}`]: {}
|
10850
10858
|
},
|
10851
10859
|
[`.${prefix}listbox-button ~ .${prefix}label-float`]: {
|
@@ -10857,7 +10865,7 @@ const listbox = plugin.withOptions(
|
|
10857
10865
|
[`.${prefix}label-float`]: {
|
10858
10866
|
[`@apply start-8 -ms-8 -mt-7 text-${config.icon.disabled.label.float.sm.font.size} text-transparent`]: {}
|
10859
10867
|
},
|
10860
|
-
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float`]: {
|
10868
|
+
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float, .${prefix}label-float-active`]: {
|
10861
10869
|
[`@apply !-ms-8 !-mt-7 !text-${config.label.float.font.color}`]: {}
|
10862
10870
|
},
|
10863
10871
|
[`.${prefix}listbox-button ~ .${prefix}label-float`]: {
|
@@ -10867,10 +10875,10 @@ const listbox = plugin.withOptions(
|
|
10867
10875
|
//Without:icon && Size:md && Label:float
|
10868
10876
|
[`&.${prefix}listbox-label-float:not(.${prefix}has-icon).${prefix}listbox-md`]: {
|
10869
10877
|
[`.${prefix}label-float`]: {
|
10870
|
-
[`@apply start-3 -ms-3 -mt-
|
10878
|
+
[`@apply start-3 -ms-3 -mt-7 text-${config.icon.disabled.label.float.md.font.size.base} text-transparent`]: {}
|
10871
10879
|
},
|
10872
|
-
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float`]: {
|
10873
|
-
[`@apply !-ms-3 !-mt-
|
10880
|
+
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float, .${prefix}label-float-active`]: {
|
10881
|
+
[`@apply !-ms-3 !-mt-7 !text-${config.icon.disabled.label.float.md.font.size.focus} !text-${config.label.float.font.color}`]: {}
|
10874
10882
|
},
|
10875
10883
|
[`.${prefix}listbox-button ~ .${prefix}label-float`]: {
|
10876
10884
|
[`@apply ms-0 mt-0 text-${config.icon.disabled.label.float.md.font.size.base}`]: {}
|
@@ -10879,10 +10887,10 @@ const listbox = plugin.withOptions(
|
|
10879
10887
|
//With:icon && Size:md && Label:float
|
10880
10888
|
[`&.${prefix}listbox-label-float.${prefix}has-icon.${prefix}listbox-md`]: {
|
10881
10889
|
[`.${prefix}label-float`]: {
|
10882
|
-
[`@apply start-10 -ms-10 -mt-
|
10890
|
+
[`@apply start-10 -ms-10 -mt-7 text-${config.icon.enabled.label.float.md.font.size.base} text-transparent`]: {}
|
10883
10891
|
},
|
10884
|
-
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float`]: {
|
10885
|
-
[`@apply !-ms-10 !-mt-
|
10892
|
+
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float, .${prefix}label-float-active`]: {
|
10893
|
+
[`@apply !-ms-10 !-mt-7 !text-${config.icon.enabled.label.float.md.font.size.focus} !text-${config.label.float.font.color}`]: {}
|
10886
10894
|
},
|
10887
10895
|
[`.${prefix}listbox-button ~ .${prefix}label-float`]: {
|
10888
10896
|
[`@apply ms-0 mt-0 text-${config.icon.enabled.label.float.md.font.size.unfocus}`]: {}
|
@@ -10891,10 +10899,10 @@ const listbox = plugin.withOptions(
|
|
10891
10899
|
//Without:icon && Size:lg && Label:float
|
10892
10900
|
[`&.${prefix}listbox-label-float:not(.${prefix}has-icon).${prefix}listbox-lg`]: {
|
10893
10901
|
[`.${prefix}label-float`]: {
|
10894
|
-
[`@apply start-3 -ms-3 -mt-
|
10902
|
+
[`@apply start-3 -ms-3 -mt-7 text-${config.icon.disabled.label.float.lg.font.size.base} text-transparent`]: {}
|
10895
10903
|
},
|
10896
|
-
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float`]: {
|
10897
|
-
[`@apply !-ms-3 !-mt-
|
10904
|
+
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float, .${prefix}label-float-active`]: {
|
10905
|
+
[`@apply !-ms-3 !-mt-7 !text-${config.icon.disabled.label.float.lg.font.size.focus} !text-${config.label.float.font.color}`]: {}
|
10898
10906
|
},
|
10899
10907
|
[`.${prefix}listbox-button ~ .${prefix}label-float`]: {
|
10900
10908
|
[`@apply ms-0 mt-0 text-${config.icon.disabled.label.float.lg.font.size.unfocus}`]: {}
|
@@ -10903,10 +10911,10 @@ const listbox = plugin.withOptions(
|
|
10903
10911
|
//With:icon && Size:lg && Label:float
|
10904
10912
|
[`&.${prefix}listbox-label-float.${prefix}has-icon.${prefix}listbox-lg`]: {
|
10905
10913
|
[`.${prefix}label-float`]: {
|
10906
|
-
[`@apply start-11 -ms-10 -mt-
|
10914
|
+
[`@apply start-11 -ms-10 -mt-7 text-${config.icon.enabled.label.float.lg.font.size.base} text-transparent`]: {}
|
10907
10915
|
},
|
10908
|
-
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float`]: {
|
10909
|
-
[`@apply !-ms-10 !-mt-
|
10916
|
+
[`.${prefix}listbox-button:focus-visible ~ .${prefix}label-float, .${prefix}listbox-button:focus ~ .${prefix}label-float, .${prefix}label-float-active`]: {
|
10917
|
+
[`@apply !-ms-10 !-mt-7 !text-${config.icon.enabled.label.float.lg.font.size.focus} !text-${config.label.float.font.color}`]: {}
|
10910
10918
|
},
|
10911
10919
|
[`.${prefix}listbox-button ~ .${prefix}label-float`]: {
|
10912
10920
|
[`@apply ms-0 mt-0 text-${config.icon.enabled.label.float.lg.font.size.unfocus}`]: {}
|
@@ -14054,7 +14062,7 @@ const defaultConfig$a = {
|
|
14054
14062
|
},
|
14055
14063
|
background: {
|
14056
14064
|
light: "white",
|
14057
|
-
dark: "
|
14065
|
+
dark: "muted-950"
|
14058
14066
|
}
|
14059
14067
|
},
|
14060
14068
|
image: {
|
@@ -15545,7 +15553,7 @@ const tag = plugin.withOptions(
|
|
15545
15553
|
},
|
15546
15554
|
//Shadow:hover
|
15547
15555
|
[`&.${prefix}tag-shadow-hover`]: {
|
15548
|
-
[`@apply hover:shadow-${config.variant.solid.
|
15556
|
+
[`@apply hover:shadow-${config.variant.solid.info.shadow.size} hover:shadow-${config.variant.solid.info.shadow.light} hover:shadow-${config.variant.solid.info.shadow.dark}`]: {}
|
15549
15557
|
}
|
15550
15558
|
},
|
15551
15559
|
//Color:success
|
@@ -15560,7 +15568,7 @@ const tag = plugin.withOptions(
|
|
15560
15568
|
},
|
15561
15569
|
//Shadow:hover
|
15562
15570
|
[`&.${prefix}tag-shadow-hover`]: {
|
15563
|
-
[`@apply hover:shadow-${config.variant.solid.
|
15571
|
+
[`@apply hover:shadow-${config.variant.solid.success.shadow.size} hover:shadow-${config.variant.solid.success.shadow.light} hover:shadow-${config.variant.solid.success.shadow.dark}`]: {}
|
15564
15572
|
}
|
15565
15573
|
},
|
15566
15574
|
//Color:warning
|
@@ -15575,7 +15583,7 @@ const tag = plugin.withOptions(
|
|
15575
15583
|
},
|
15576
15584
|
//Shadow:hover
|
15577
15585
|
[`&.${prefix}tag-shadow-hover`]: {
|
15578
|
-
[`@apply hover:shadow-${config.variant.solid.
|
15586
|
+
[`@apply hover:shadow-${config.variant.solid.warning.shadow.size} hover:shadow-${config.variant.solid.warning.shadow.light} hover:shadow-${config.variant.solid.warning.shadow.dark}`]: {}
|
15579
15587
|
}
|
15580
15588
|
},
|
15581
15589
|
//Color:danger
|
@@ -16166,7 +16174,7 @@ const textarea = plugin.withOptions(
|
|
16166
16174
|
},
|
16167
16175
|
//Textarea
|
16168
16176
|
[`.${prefix}textarea`]: {
|
16169
|
-
[`@apply ${prefix}focus w-${config.textarea.width}`]: {},
|
16177
|
+
[`@apply ${prefix}focus w-${config.textarea.width} enabled:cursor-default cursor-not-allowed`]: {},
|
16170
16178
|
//Focus:label:float
|
16171
16179
|
[`&:focus-visible ~ .${prefix}label-float`]: {
|
16172
16180
|
[`@apply !text-${config.label.float.font.color} dark:!text-${config.label.float.font.color}`]: {}
|
@@ -16586,7 +16594,7 @@ const themeSwitch = plugin.withOptions(
|
|
16586
16594
|
[`@apply ring-offset-${config.inverted.disabled.ring.light} dark:ring-offset-${config.inverted.disabled.ring.dark}`]: {},
|
16587
16595
|
[`.${prefix}theme-switch-inner`]: {
|
16588
16596
|
//Border
|
16589
|
-
[`@apply border border-${config.inverted.disabled.inner.
|
16597
|
+
[`@apply border border-${config.inverted.disabled.inner.border.light} dark:border-${config.inverted.disabled.inner.border.dark}`]: {},
|
16590
16598
|
//Background
|
16591
16599
|
[`@apply bg-${config.inverted.disabled.inner.background.light} dark:bg-${config.inverted.disabled.inner.background.dark}`]: {}
|
16592
16600
|
}
|
@@ -1,6 +1,5 @@
|
|
1
|
-
import * as tailwindcss from 'tailwindcss';
|
2
|
-
import { Config } from 'tailwindcss';
|
3
1
|
import * as tailwindcss_types_config from 'tailwindcss/types/config';
|
2
|
+
import { Config } from 'tailwindcss';
|
4
3
|
import typography from '@tailwindcss/typography';
|
5
4
|
|
6
5
|
declare const key$P: "accordion";
|
@@ -8016,7 +8015,7 @@ declare function createPreset(options?: PluginOption): {
|
|
8016
8015
|
content: never[];
|
8017
8016
|
plugins: (typeof typography | {
|
8018
8017
|
handler: tailwindcss_types_config.PluginCreator;
|
8019
|
-
config?: Partial<
|
8018
|
+
config?: Partial<tailwindcss_types_config.Config> | undefined;
|
8020
8019
|
})[];
|
8021
8020
|
theme: {
|
8022
8021
|
fontFamily: {
|
@@ -8206,7 +8205,7 @@ declare const preset: {
|
|
8206
8205
|
content: never[];
|
8207
8206
|
plugins: (typeof typography | {
|
8208
8207
|
handler: tailwindcss_types_config.PluginCreator;
|
8209
|
-
config?: Partial<
|
8208
|
+
config?: Partial<tailwindcss_types_config.Config> | undefined;
|
8210
8209
|
})[];
|
8211
8210
|
theme: {
|
8212
8211
|
fontFamily: {
|
@@ -1,6 +1,5 @@
|
|
1
|
-
import * as tailwindcss from 'tailwindcss';
|
2
|
-
import { Config } from 'tailwindcss';
|
3
1
|
import * as tailwindcss_types_config from 'tailwindcss/types/config';
|
2
|
+
import { Config } from 'tailwindcss';
|
4
3
|
import typography from '@tailwindcss/typography';
|
5
4
|
|
6
5
|
declare const key$P: "accordion";
|
@@ -8016,7 +8015,7 @@ declare function createPreset(options?: PluginOption): {
|
|
8016
8015
|
content: never[];
|
8017
8016
|
plugins: (typeof typography | {
|
8018
8017
|
handler: tailwindcss_types_config.PluginCreator;
|
8019
|
-
config?: Partial<
|
8018
|
+
config?: Partial<tailwindcss_types_config.Config> | undefined;
|
8020
8019
|
})[];
|
8021
8020
|
theme: {
|
8022
8021
|
fontFamily: {
|
@@ -8206,7 +8205,7 @@ declare const preset: {
|
|
8206
8205
|
content: never[];
|
8207
8206
|
plugins: (typeof typography | {
|
8208
8207
|
handler: tailwindcss_types_config.PluginCreator;
|
8209
|
-
config?: Partial<
|
8208
|
+
config?: Partial<tailwindcss_types_config.Config> | undefined;
|
8210
8209
|
})[];
|
8211
8210
|
theme: {
|
8212
8211
|
fontFamily: {
|
@@ -1,6 +1,5 @@
|
|
1
|
-
import * as tailwindcss from 'tailwindcss';
|
2
|
-
import { Config } from 'tailwindcss';
|
3
1
|
import * as tailwindcss_types_config from 'tailwindcss/types/config';
|
2
|
+
import { Config } from 'tailwindcss';
|
4
3
|
import typography from '@tailwindcss/typography';
|
5
4
|
|
6
5
|
declare const key$P: "accordion";
|
@@ -8016,7 +8015,7 @@ declare function createPreset(options?: PluginOption): {
|
|
8016
8015
|
content: never[];
|
8017
8016
|
plugins: (typeof typography | {
|
8018
8017
|
handler: tailwindcss_types_config.PluginCreator;
|
8019
|
-
config?: Partial<
|
8018
|
+
config?: Partial<tailwindcss_types_config.Config> | undefined;
|
8020
8019
|
})[];
|
8021
8020
|
theme: {
|
8022
8021
|
fontFamily: {
|
@@ -8206,7 +8205,7 @@ declare const preset: {
|
|
8206
8205
|
content: never[];
|
8207
8206
|
plugins: (typeof typography | {
|
8208
8207
|
handler: tailwindcss_types_config.PluginCreator;
|
8209
|
-
config?: Partial<
|
8208
|
+
config?: Partial<tailwindcss_types_config.Config> | undefined;
|
8210
8209
|
})[];
|
8211
8210
|
theme: {
|
8212
8211
|
fontFamily: {
|