@woodylab/payload 0.0.130 → 0.0.132
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/LayoutRenderer-B1IoWb16.js +2 -0
- package/dist/LayoutRenderer-B1IoWb16.js.map +1 -0
- package/dist/LayoutRenderer-Ba6ITI7O.js +2 -0
- package/dist/LayoutRenderer-Ba6ITI7O.js.map +1 -0
- package/dist/config/blocks/blockCard.d.ts +2 -0
- package/dist/config/blocks/blockCard.js +101 -0
- package/dist/config/blocks/blockReference.d.ts +2 -0
- package/dist/config/blocks/blockReference.js +11 -0
- package/dist/config/{blockView.js → blocks/blockView.js} +35 -91
- package/dist/config/collections/collectionBlocks.d.ts +2 -0
- package/dist/config/collections/collectionBlocks.js +35 -0
- package/dist/config/{collectionComponentDefinitions.d.ts → collections/collectionComponentDefinitions.d.ts} +1 -1
- package/dist/config/collections/collectionComponentDefinitions.js +40 -0
- package/dist/config/collections/collectionMenus.d.ts +2 -0
- package/dist/config/{collectionMenus.js → collections/collectionMenus.js} +18 -16
- package/dist/config/collections/collectionStyles.d.ts +2 -0
- package/dist/config/collections/collectionStyles.js +25 -0
- package/dist/config/{collectionViewModes.d.ts → collections/collectionViewModes.d.ts} +1 -1
- package/dist/config/collections/collectionViewModes.js +106 -0
- package/dist/config/fields/fieldCss.js +537 -0
- package/dist/config/fields/fieldRoles.d.ts +2 -0
- package/dist/{fields/utils → config/fields}/fieldRoles.js +7 -11
- package/dist/config/fields/tailwindFieldSelectors.d.ts +2 -1
- package/dist/config/fields/tailwindFieldSelectors.js +1547 -1
- package/dist/config/fields/tailwindSelectorVariants.js +45 -45
- package/dist/config/{configFooter.js → globals/configFooter.js} +11 -9
- package/dist/config/{configHeader.js → globals/configHeader.js} +11 -10
- package/dist/config/{configSettings.js → globals/configSettings.js} +48 -26
- package/dist/{hooks → config/hooks}/fields/populateSiblingClassName.js +0 -2
- package/dist/{hooks → config/hooks}/fields/populateSiblingClassNameAfterChange.js +0 -1
- package/dist/config/hooks/fields/resolveComponentFromRef.d.ts +2 -0
- package/dist/config/hooks/fields/resolveComponentFromRef.js +30 -0
- package/dist/config/hooks/fields/resolveStyleFromRef.d.ts +2 -0
- package/dist/config/hooks/fields/resolveStyleFromRef.js +35 -0
- package/dist/config/hooks/fields/resolveViewModeFromRef.d.ts +2 -0
- package/dist/config/hooks/fields/resolveViewModeFromRef.js +23 -0
- package/dist/config/index.cjs.js +1 -1
- package/dist/config/index.cjs.js.map +1 -1
- package/dist/config/index.d.ts +15 -9
- package/dist/config/index.esm.js +1 -1
- package/dist/config/index.esm.js.map +1 -1
- package/dist/config/index.js +15 -9
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.js +2 -0
- package/dist/react/ComponentRenderer.js +1 -1
- package/dist/react/LayoutRenderer.d.ts +5 -0
- package/dist/react/LayoutRenderer.js +19 -0
- package/dist/react/componentRegistry.js +7 -0
- package/dist/react/components/Card.d.ts +19 -0
- package/dist/react/components/Card.js +6 -0
- package/dist/react/components/Container.d.ts +5 -0
- package/dist/react/components/Container.js +4 -0
- package/dist/react/components/View.d.ts +1 -0
- package/dist/react/components/View.js +9 -0
- package/dist/react/index.cjs.js +1 -1
- package/dist/react/index.d.ts +5 -5
- package/dist/react/index.esm.js +1 -1
- package/dist/react/index.js +5 -5
- package/dist/resolveLayout-DlRnQBn8.js +2 -0
- package/dist/resolveLayout-DlRnQBn8.js.map +1 -0
- package/dist/resolveLayout-DryOXHEy.js +2 -0
- package/dist/resolveLayout-DryOXHEy.js.map +1 -0
- package/dist/seeders/UIMSSeeder.d.ts +7 -0
- package/dist/seeders/UIMSSeeder.js +14 -0
- package/dist/seeders/clearCollection.d.ts +2 -0
- package/dist/seeders/clearCollection.js +18 -0
- package/dist/seeders/components.d.ts +1 -0
- package/dist/seeders/components.js +3 -0
- package/dist/seeders/generateTailwindStyles.d.ts +6 -0
- package/dist/seeders/generateTailwindStyles.js +18 -0
- package/dist/seeders/index.cjs.js +2 -0
- package/dist/seeders/index.cjs.js.map +1 -0
- package/dist/seeders/index.d.ts +2 -0
- package/dist/seeders/index.esm.js +2 -0
- package/dist/seeders/index.esm.js.map +1 -0
- package/dist/seeders/index.js +2 -0
- package/dist/seeders/styles.d.ts +1 -0
- package/dist/seeders/styles.js +27 -0
- package/dist/seeders/viewModes.d.ts +1 -0
- package/dist/seeders/viewModes.js +3 -0
- package/dist/tailwind/index.cjs.js +2 -0
- package/dist/tailwind/index.cjs.js.map +1 -0
- package/dist/tailwind/index.d.ts +2 -94
- package/dist/tailwind/index.esm.js +2 -0
- package/dist/tailwind/index.esm.js.map +1 -0
- package/dist/tailwind/index.js +2 -2692
- package/dist/tailwind/tailwindFieldSelectors.d.ts +181 -0
- package/dist/tailwind/tailwindFieldSelectors.js +1184 -0
- package/dist/tailwind/tailwindSelectorVariants.d.ts +4 -0
- package/dist/tailwind/tailwindSelectorVariants.js +69 -0
- package/dist/uims/index.cjs.js +2 -0
- package/dist/uims/index.cjs.js.map +1 -0
- package/dist/uims/index.d.ts +6 -0
- package/dist/uims/index.esm.js +2 -0
- package/dist/uims/index.esm.js.map +1 -0
- package/dist/uims/index.js +9 -0
- package/dist/uims/mapper/applyStylesToProps.d.ts +4 -0
- package/dist/uims/mapper/applyStylesToProps.js +18 -0
- package/dist/uims/mapper/getValueByPath.d.ts +1 -0
- package/dist/uims/mapper/getValueByPath.js +3 -0
- package/dist/uims/mapper/mapDataToProps.d.ts +6 -0
- package/dist/uims/mapper/mapDataToProps.js +26 -0
- package/dist/uims/mapper/mapInlineBlockToProps.d.ts +6 -0
- package/dist/uims/mapper/mapInlineBlockToProps.js +16 -0
- package/dist/uims/registry/componentRegistry.d.ts +4 -0
- package/dist/uims/registry/componentRegistry.js +20 -0
- package/dist/uims/registry/styleRegistry.d.ts +4 -0
- package/dist/uims/registry/styleRegistry.js +20 -0
- package/dist/uims/registry/viewModeRegistry.d.ts +4 -0
- package/dist/uims/registry/viewModeRegistry.js +20 -0
- package/dist/uims/resolver/createUIMSContext.d.ts +3 -0
- package/dist/uims/resolver/createUIMSContext.js +13 -0
- package/dist/uims/resolver/resolveInlineBlock.d.ts +8 -0
- package/dist/uims/resolver/resolveInlineBlock.js +22 -0
- package/dist/uims/resolver/resolveInlineStylesBySlot.d.ts +1 -0
- package/dist/uims/resolver/resolveInlineStylesBySlot.js +15 -0
- package/dist/uims/resolver/resolveLayout.d.ts +5 -0
- package/dist/uims/resolver/resolveLayout.js +24 -0
- package/dist/uims/resolver/resolveStylesBySlot.d.ts +11 -0
- package/dist/uims/resolver/resolveStylesBySlot.js +12 -0
- package/dist/uims/resolver/resolveViewBlock.d.ts +12 -0
- package/dist/uims/resolver/resolveViewBlock.js +26 -0
- package/dist/{utils → uims/resolver}/resolveViewData.d.ts +3 -1
- package/dist/uims/resolver/resolveViewData.js +56 -0
- package/dist/uims/types/UIMSContext.d.ts +18 -0
- package/dist/uims/types/UIMSContext.js +1 -0
- package/dist/utils/getPropsKeys.d.ts +1 -0
- package/dist/utils/getPropsKeys.js +3 -0
- package/dist/utils/index.cjs.js +1 -1
- package/dist/utils/index.cjs.js.map +1 -1
- package/dist/utils/index.d.ts +0 -1
- package/dist/utils/index.esm.js +1 -1
- package/dist/utils/index.esm.js.map +1 -1
- package/dist/utils/index.js +0 -1
- package/dist/utils/normalizeStyles.d.ts +1 -0
- package/dist/utils/normalizeStyles.js +12 -0
- package/dist/utils/pickProps.d.ts +1 -0
- package/dist/utils/pickProps.js +9 -0
- package/package.json +12 -4
- package/dist/PageRenderer-BiZflIhY.js +0 -2
- package/dist/PageRenderer-BiZflIhY.js.map +0 -1
- package/dist/PageRenderer-DX3iEA8n.js +0 -2
- package/dist/PageRenderer-DX3iEA8n.js.map +0 -1
- package/dist/config/blockComponentInstance.d.ts +0 -2
- package/dist/config/blockComponentInstance.js +0 -84
- package/dist/config/blocks/blockCarousel.d.ts +0 -3
- package/dist/config/blocks/blockCarousel.js +0 -102
- package/dist/config/blocks/blockDisclosureList.d.ts +0 -3
- package/dist/config/blocks/blockDisclosureList.js +0 -58
- package/dist/config/blocks/blockGrid.d.ts +0 -6
- package/dist/config/blocks/blockGrid.js +0 -161
- package/dist/config/blocks/blockGridContent.d.ts +0 -6
- package/dist/config/blocks/blockGridContent.js +0 -195
- package/dist/config/blocks/blockHtmlElement.d.ts +0 -6
- package/dist/config/blocks/blockHtmlElement.js +0 -13
- package/dist/config/blocks/blockImage.d.ts +0 -3
- package/dist/config/blocks/blockImage.js +0 -15
- package/dist/config/blocks/blockParallax.d.ts +0 -3
- package/dist/config/blocks/blockParallax.js +0 -76
- package/dist/config/blocks/blockTabs.d.ts +0 -3
- package/dist/config/blocks/blockTabs.js +0 -24
- package/dist/config/collectionComponentDefinitions.js +0 -33
- package/dist/config/collectionMenus.d.ts +0 -6
- package/dist/config/collectionViewModes.js +0 -20
- package/dist/config/fieldCss.js +0 -543
- package/dist/config/utils/resolveInlineComponent.d.ts +0 -4
- package/dist/config/utils/resolveInlineComponent.js +0 -35
- package/dist/config/utils/resolveViewRow.d.ts +0 -4
- package/dist/config/utils/resolveViewRow.js +0 -15
- package/dist/fields/fieldArray.d.ts +0 -4
- package/dist/fields/fieldArray.js +0 -9
- package/dist/fields/fieldBlocks.d.ts +0 -4
- package/dist/fields/fieldBlocks.js +0 -9
- package/dist/fields/fieldCheckbox.d.ts +0 -4
- package/dist/fields/fieldCheckbox.js +0 -11
- package/dist/fields/fieldCode.d.ts +0 -4
- package/dist/fields/fieldCode.js +0 -8
- package/dist/fields/fieldDate.d.ts +0 -4
- package/dist/fields/fieldDate.js +0 -15
- package/dist/fields/fieldEmail.d.ts +0 -4
- package/dist/fields/fieldEmail.js +0 -8
- package/dist/fields/fieldJoin.d.ts +0 -4
- package/dist/fields/fieldJoin.js +0 -9
- package/dist/fields/fieldNumber.d.ts +0 -4
- package/dist/fields/fieldNumber.js +0 -8
- package/dist/fields/fieldPoint.d.ts +0 -4
- package/dist/fields/fieldPoint.js +0 -8
- package/dist/fields/fieldRadioGroup.d.ts +0 -4
- package/dist/fields/fieldRadioGroup.js +0 -18
- package/dist/fields/fieldRelationship.d.ts +0 -4
- package/dist/fields/fieldRelationship.js +0 -9
- package/dist/fields/fieldRichText.d.ts +0 -4
- package/dist/fields/fieldRichText.js +0 -12
- package/dist/fields/fieldSelect.d.ts +0 -4
- package/dist/fields/fieldSelect.js +0 -9
- package/dist/fields/fieldText.d.ts +0 -4
- package/dist/fields/fieldText.js +0 -8
- package/dist/fields/fieldTextArea.d.ts +0 -4
- package/dist/fields/fieldTextArea.js +0 -8
- package/dist/fields/fieldUpload.d.ts +0 -4
- package/dist/fields/fieldUpload.js +0 -9
- package/dist/fields/index.cjs.js +0 -2
- package/dist/fields/index.cjs.js.map +0 -1
- package/dist/fields/index.d.ts +0 -31
- package/dist/fields/index.esm.js +0 -2
- package/dist/fields/index.esm.js.map +0 -1
- package/dist/fields/index.js +0 -37
- package/dist/fields/layout/fieldContainerProps.d.ts +0 -3
- package/dist/fields/layout/fieldContainerProps.js +0 -74
- package/dist/fields/section/fieldAction.d.ts +0 -6
- package/dist/fields/section/fieldAction.js +0 -236
- package/dist/fields/section/fieldConfigProps.d.ts +0 -3
- package/dist/fields/section/fieldConfigProps.js +0 -11
- package/dist/fields/section/fieldContentProps.d.ts +0 -3
- package/dist/fields/section/fieldContentProps.js +0 -11
- package/dist/fields/section/fieldSectionProps.d.ts +0 -3
- package/dist/fields/section/fieldSectionProps.js +0 -15
- package/dist/fields/section/fieldSectionTabs.d.ts +0 -13
- package/dist/fields/section/fieldSectionTabs.js +0 -40
- package/dist/fields/style/fieldColor.d.ts +0 -4
- package/dist/fields/style/fieldColor.js +0 -21
- package/dist/fields/style/fieldContainerWidths.d.ts +0 -7
- package/dist/fields/style/fieldContainerWidths.js +0 -17
- package/dist/fields/style/fieldCss.d.ts +0 -3
- package/dist/fields/style/fieldCss.js +0 -65
- package/dist/fields/style/fieldFontSizes.d.ts +0 -3
- package/dist/fields/style/fieldFontSizes.js +0 -14
- package/dist/fields/style/fieldHeights.d.ts +0 -7
- package/dist/fields/style/fieldHeights.js +0 -23
- package/dist/fields/style/fieldMargins.d.ts +0 -7
- package/dist/fields/style/fieldMargins.js +0 -138
- package/dist/fields/style/fieldPaddings.d.ts +0 -7
- package/dist/fields/style/fieldPaddings.js +0 -114
- package/dist/fields/style/fieldViewportHeights.d.ts +0 -7
- package/dist/fields/style/fieldViewportHeights.js +0 -22
- package/dist/fields/utils/fieldRoles.d.ts +0 -4
- package/dist/react/Card.d.ts +0 -6
- package/dist/react/Card.js +0 -4
- package/dist/react/PageRenderer.d.ts +0 -4
- package/dist/react/PageRenderer.js +0 -34
- package/dist/react/ViewBlock.d.ts +0 -1
- package/dist/react/ViewBlock.js +0 -62
- package/dist/react/registry.js +0 -5
- package/dist/userRoles-BqQg1D6Q.js +0 -2
- package/dist/userRoles-BqQg1D6Q.js.map +0 -1
- package/dist/userRoles-CL8SQUFs.js +0 -2
- package/dist/userRoles-CL8SQUFs.js.map +0 -1
- package/dist/utils/resolveViewData.js +0 -26
- /package/dist/{acl → config/acl}/hasRoles.d.ts +0 -0
- /package/dist/{acl → config/acl}/hasRoles.js +0 -0
- /package/dist/{acl → config/acl}/index.d.ts +0 -0
- /package/dist/{acl → config/acl}/index.js +0 -0
- /package/dist/config/{blockView.d.ts → blocks/blockView.d.ts} +0 -0
- /package/dist/{enums → config/enums}/index.d.ts +0 -0
- /package/dist/{enums → config/enums}/index.js +0 -0
- /package/dist/{enums → config/enums}/userRoles.d.ts +0 -0
- /package/dist/{enums → config/enums}/userRoles.js +0 -0
- /package/dist/config/{fieldCss.d.ts → fields/fieldCss.d.ts} +0 -0
- /package/dist/config/{configFooter.d.ts → globals/configFooter.d.ts} +0 -0
- /package/dist/config/{configHeader.d.ts → globals/configHeader.d.ts} +0 -0
- /package/dist/config/{configSettings.d.ts → globals/configSettings.d.ts} +0 -0
- /package/dist/{hooks → config/hooks}/fields/getNumberValueFromClassNameString.d.ts +0 -0
- /package/dist/{hooks → config/hooks}/fields/getNumberValueFromClassNameString.js +0 -0
- /package/dist/{hooks → config/hooks}/fields/populateSiblingClassName.d.ts +0 -0
- /package/dist/{hooks → config/hooks}/fields/populateSiblingClassNameAfterChange.d.ts +0 -0
- /package/dist/{hooks → config/hooks}/fields/updateClassNameAfterRead.d.ts +0 -0
- /package/dist/{hooks → config/hooks}/fields/updateClassNameAfterRead.js +0 -0
- /package/dist/{hooks → config/hooks}/index.d.ts +0 -0
- /package/dist/{hooks → config/hooks}/index.js +0 -0
- /package/dist/react/{registry.d.ts → componentRegistry.d.ts} +0 -0
|
@@ -0,0 +1,1184 @@
|
|
|
1
|
+
export const tailwindFieldsSelectors = {
|
|
2
|
+
accentColor: [
|
|
3
|
+
'accent-auto',
|
|
4
|
+
'accent-transparent',
|
|
5
|
+
'accent-current',
|
|
6
|
+
'accent-black',
|
|
7
|
+
'accent-white',
|
|
8
|
+
],
|
|
9
|
+
alignContent: [
|
|
10
|
+
'content-normal',
|
|
11
|
+
'content-start',
|
|
12
|
+
'content-end',
|
|
13
|
+
'content-center',
|
|
14
|
+
'content-between',
|
|
15
|
+
'content-around',
|
|
16
|
+
'content-evenly',
|
|
17
|
+
'content-stretch',
|
|
18
|
+
],
|
|
19
|
+
alignItems: ['items-start', 'items-end', 'items-center', 'items-baseline', 'items-stretch'],
|
|
20
|
+
alignSelf: [
|
|
21
|
+
'self-auto',
|
|
22
|
+
'self-start',
|
|
23
|
+
'self-end',
|
|
24
|
+
'self-center',
|
|
25
|
+
'self-stretch',
|
|
26
|
+
'self-baseline',
|
|
27
|
+
],
|
|
28
|
+
animation: ['animate-none', 'animate-spin', 'animate-ping', 'animate-pulse', 'animate-bounce'],
|
|
29
|
+
appearance: ['appearance-none', 'appearance-auto'],
|
|
30
|
+
aspectRatio: ['aspect-auto', 'aspect-square', 'aspect-video'],
|
|
31
|
+
backdropBlur: [
|
|
32
|
+
'backdrop-blur-none',
|
|
33
|
+
'backdrop-blur-sm',
|
|
34
|
+
'backdrop-blur',
|
|
35
|
+
'backdrop-blur-md',
|
|
36
|
+
'backdrop-blur-lg',
|
|
37
|
+
'backdrop-blur-xl',
|
|
38
|
+
'backdrop-blur-2xl',
|
|
39
|
+
'backdrop-blur-3xl',
|
|
40
|
+
],
|
|
41
|
+
backdropBrightness: [
|
|
42
|
+
'backdrop-brightness-0',
|
|
43
|
+
'backdrop-brightness-50',
|
|
44
|
+
'backdrop-brightness-75',
|
|
45
|
+
'backdrop-brightness-90',
|
|
46
|
+
'backdrop-brightness-95',
|
|
47
|
+
'backdrop-brightness-100',
|
|
48
|
+
'backdrop-brightness-105',
|
|
49
|
+
'backdrop-brightness-110',
|
|
50
|
+
'backdrop-brightness-125',
|
|
51
|
+
'backdrop-brightness-150',
|
|
52
|
+
'backdrop-brightness-200',
|
|
53
|
+
],
|
|
54
|
+
backdropContrast: [
|
|
55
|
+
'backdrop-contrast-0',
|
|
56
|
+
'backdrop-contrast-50',
|
|
57
|
+
'backdrop-contrast-75',
|
|
58
|
+
'backdrop-contrast-100',
|
|
59
|
+
'backdrop-contrast-125',
|
|
60
|
+
'backdrop-contrast-150',
|
|
61
|
+
'backdrop-contrast-200',
|
|
62
|
+
],
|
|
63
|
+
backdropFilter: ['backdrop-filter', 'backdrop-filter-none'],
|
|
64
|
+
backdropGrayscale: ['backdrop-grayscale', 'backdrop-grayscale-0'],
|
|
65
|
+
backdropHueRotate: [
|
|
66
|
+
'backdrop-hue-rotate-0',
|
|
67
|
+
'backdrop-hue-rotate-15',
|
|
68
|
+
'backdrop-hue-rotate-30',
|
|
69
|
+
'backdrop-hue-rotate-60',
|
|
70
|
+
'backdrop-hue-rotate-90',
|
|
71
|
+
'backdrop-hue-rotate-180',
|
|
72
|
+
],
|
|
73
|
+
backdropInvert: ['backdrop-invert', 'backdrop-invert-0'],
|
|
74
|
+
backdropOpacity: [
|
|
75
|
+
'backdrop-opacity-0',
|
|
76
|
+
'backdrop-opacity-5',
|
|
77
|
+
'backdrop-opacity-10',
|
|
78
|
+
'backdrop-opacity-20',
|
|
79
|
+
'backdrop-opacity-25',
|
|
80
|
+
'backdrop-opacity-30',
|
|
81
|
+
'backdrop-opacity-40',
|
|
82
|
+
'backdrop-opacity-50',
|
|
83
|
+
'backdrop-opacity-60',
|
|
84
|
+
'backdrop-opacity-70',
|
|
85
|
+
'backdrop-opacity-75',
|
|
86
|
+
'backdrop-opacity-80',
|
|
87
|
+
'backdrop-opacity-90',
|
|
88
|
+
'backdrop-opacity-95',
|
|
89
|
+
'backdrop-opacity-100',
|
|
90
|
+
],
|
|
91
|
+
backdropSaturate: [
|
|
92
|
+
'backdrop-saturate-0',
|
|
93
|
+
'backdrop-saturate-50',
|
|
94
|
+
'backdrop-saturate-100',
|
|
95
|
+
'backdrop-saturate-150',
|
|
96
|
+
'backdrop-saturate-200',
|
|
97
|
+
],
|
|
98
|
+
backdropSepia: ['backdrop-sepia', 'backdrop-sepia-0'],
|
|
99
|
+
backgroundAttachment: ['bg-fixed', 'bg-local', 'bg-scroll'],
|
|
100
|
+
backgroundClip: ['bg-clip-border', 'bg-clip-padding', 'bg-clip-content', 'bg-clip-text'],
|
|
101
|
+
backgroundColor: ['bg-transparent', 'bg-current', 'bg-black', 'bg-white'],
|
|
102
|
+
backgroundImage: [
|
|
103
|
+
'bg-none',
|
|
104
|
+
'bg-gradient-to-t',
|
|
105
|
+
'bg-gradient-to-tr',
|
|
106
|
+
'bg-gradient-to-r',
|
|
107
|
+
'bg-gradient-to-br',
|
|
108
|
+
'bg-gradient-to-b',
|
|
109
|
+
'bg-gradient-to-bl',
|
|
110
|
+
'bg-gradient-to-l',
|
|
111
|
+
'bg-gradient-to-tl',
|
|
112
|
+
],
|
|
113
|
+
backgroundOrigin: ['bg-origin-border', 'bg-origin-padding', 'bg-origin-content'],
|
|
114
|
+
backgroundPosition: [
|
|
115
|
+
'bg-bottom',
|
|
116
|
+
'bg-center',
|
|
117
|
+
'bg-left',
|
|
118
|
+
'bg-left-bottom',
|
|
119
|
+
'bg-left-top',
|
|
120
|
+
'bg-right',
|
|
121
|
+
'bg-right-bottom',
|
|
122
|
+
'bg-right-top',
|
|
123
|
+
'bg-top',
|
|
124
|
+
],
|
|
125
|
+
backgroundRepeat: [
|
|
126
|
+
'bg-repeat',
|
|
127
|
+
'bg-no-repeat',
|
|
128
|
+
'bg-repeat-x',
|
|
129
|
+
'bg-repeat-y',
|
|
130
|
+
'bg-repeat-round',
|
|
131
|
+
'bg-repeat-space',
|
|
132
|
+
],
|
|
133
|
+
backgroundSize: ['bg-auto', 'bg-cover', 'bg-contain'],
|
|
134
|
+
borderCollapse: ['border-collapse', 'border-separate'],
|
|
135
|
+
borderColor: ['border-transparent', 'border-current', 'border-black', 'border-white'],
|
|
136
|
+
borderRadius: [
|
|
137
|
+
'rounded-none',
|
|
138
|
+
'rounded-sm',
|
|
139
|
+
'rounded',
|
|
140
|
+
'rounded-md',
|
|
141
|
+
'rounded-lg',
|
|
142
|
+
'rounded-xl',
|
|
143
|
+
'rounded-2xl',
|
|
144
|
+
'rounded-3xl',
|
|
145
|
+
'rounded-full',
|
|
146
|
+
],
|
|
147
|
+
borderStyle: [
|
|
148
|
+
'border-solid',
|
|
149
|
+
'border-dashed',
|
|
150
|
+
'border-dotted',
|
|
151
|
+
'border-double',
|
|
152
|
+
'border-hidden',
|
|
153
|
+
'border-none',
|
|
154
|
+
],
|
|
155
|
+
borderWidth: ['border-0', 'border', 'border-2', 'border-4', 'border-8'],
|
|
156
|
+
boxDecorationBreak: ['box-decoration-slice', 'box-decoration-clone'],
|
|
157
|
+
boxShadow: [
|
|
158
|
+
'shadow-none',
|
|
159
|
+
'shadow-sm',
|
|
160
|
+
'shadow',
|
|
161
|
+
'shadow-md',
|
|
162
|
+
'shadow-lg',
|
|
163
|
+
'shadow-xl',
|
|
164
|
+
'shadow-2xl',
|
|
165
|
+
'shadow-inner',
|
|
166
|
+
],
|
|
167
|
+
boxSizing: ['box-border', 'box-content'],
|
|
168
|
+
breakAfter: [
|
|
169
|
+
'break-after-auto',
|
|
170
|
+
'break-after-avoid',
|
|
171
|
+
'break-after-all',
|
|
172
|
+
'break-after-avoid-page',
|
|
173
|
+
'break-after-page',
|
|
174
|
+
'break-after-left',
|
|
175
|
+
'break-after-right',
|
|
176
|
+
'break-after-column',
|
|
177
|
+
],
|
|
178
|
+
breakBefore: [
|
|
179
|
+
'break-before-auto',
|
|
180
|
+
'break-before-avoid',
|
|
181
|
+
'break-before-all',
|
|
182
|
+
'break-before-avoid-page',
|
|
183
|
+
'break-before-page',
|
|
184
|
+
'break-before-left',
|
|
185
|
+
'break-before-right',
|
|
186
|
+
'break-before-column',
|
|
187
|
+
],
|
|
188
|
+
breakInside: [
|
|
189
|
+
'break-inside-auto',
|
|
190
|
+
'break-inside-avoid',
|
|
191
|
+
'break-inside-avoid-page',
|
|
192
|
+
'break-inside-avoid-column',
|
|
193
|
+
],
|
|
194
|
+
captionSide: ['caption-top', 'caption-bottom'],
|
|
195
|
+
caretColor: ['caret-transparent', 'caret-current', 'caret-black', 'caret-white'],
|
|
196
|
+
clear: ['clear-left', 'clear-right', 'clear-both', 'clear-none'],
|
|
197
|
+
columns: [
|
|
198
|
+
'columns-auto',
|
|
199
|
+
'columns-1',
|
|
200
|
+
'columns-2',
|
|
201
|
+
'columns-3',
|
|
202
|
+
'columns-4',
|
|
203
|
+
'columns-5',
|
|
204
|
+
'columns-6',
|
|
205
|
+
'columns-12',
|
|
206
|
+
],
|
|
207
|
+
columnGap: [
|
|
208
|
+
'gap-x-0',
|
|
209
|
+
'gap-x-1',
|
|
210
|
+
'gap-x-2',
|
|
211
|
+
'gap-x-3',
|
|
212
|
+
'gap-x-4',
|
|
213
|
+
'gap-x-5',
|
|
214
|
+
'gap-x-6',
|
|
215
|
+
'gap-x-8',
|
|
216
|
+
'gap-x-10',
|
|
217
|
+
'gap-x-12',
|
|
218
|
+
],
|
|
219
|
+
columnSpan: [
|
|
220
|
+
'col-span-1',
|
|
221
|
+
'col-span-2',
|
|
222
|
+
'col-span-3',
|
|
223
|
+
'col-span-4',
|
|
224
|
+
'col-span-5',
|
|
225
|
+
'col-span-6',
|
|
226
|
+
'col-span-full',
|
|
227
|
+
],
|
|
228
|
+
container: ['container'],
|
|
229
|
+
content: ['content-none'],
|
|
230
|
+
cursor: [
|
|
231
|
+
'cursor-auto',
|
|
232
|
+
'cursor-default',
|
|
233
|
+
'cursor-pointer',
|
|
234
|
+
'cursor-wait',
|
|
235
|
+
'cursor-text',
|
|
236
|
+
'cursor-move',
|
|
237
|
+
'cursor-help',
|
|
238
|
+
'cursor-not-allowed',
|
|
239
|
+
],
|
|
240
|
+
direction: ['direction-ltr', 'direction-rtl'],
|
|
241
|
+
display: [
|
|
242
|
+
'block',
|
|
243
|
+
'inline-block',
|
|
244
|
+
'inline',
|
|
245
|
+
'flex',
|
|
246
|
+
'inline-flex',
|
|
247
|
+
'grid',
|
|
248
|
+
'inline-grid',
|
|
249
|
+
'flow-root',
|
|
250
|
+
'contents',
|
|
251
|
+
'table',
|
|
252
|
+
'table-row',
|
|
253
|
+
'table-cell',
|
|
254
|
+
'list-item',
|
|
255
|
+
'hidden',
|
|
256
|
+
],
|
|
257
|
+
divideColor: ['divide-transparent', 'divide-current', 'divide-black', 'divide-white'],
|
|
258
|
+
divideStyle: ['divide-solid', 'divide-dashed', 'divide-dotted', 'divide-double', 'divide-none'],
|
|
259
|
+
divideWidth: ['divide-x', 'divide-y', 'divide-x-2', 'divide-y-2', 'divide-x-4', 'divide-y-4'],
|
|
260
|
+
filter: ['filter', 'filter-none'],
|
|
261
|
+
flex: ['flex-1', 'flex-auto', 'flex-initial', 'flex-none'],
|
|
262
|
+
flexBasis: [
|
|
263
|
+
'basis-0',
|
|
264
|
+
'basis-1/2',
|
|
265
|
+
'basis-1/3',
|
|
266
|
+
'basis-2/3',
|
|
267
|
+
'basis-1/4',
|
|
268
|
+
'basis-3/4',
|
|
269
|
+
'basis-full',
|
|
270
|
+
'basis-auto',
|
|
271
|
+
],
|
|
272
|
+
flexDirection: ['flex-row', 'flex-row-reverse', 'flex-col', 'flex-col-reverse'],
|
|
273
|
+
flexGrow: ['grow', 'grow-0'],
|
|
274
|
+
flexShrink: ['shrink', 'shrink-0'],
|
|
275
|
+
flexWrap: ['flex-wrap', 'flex-wrap-reverse', 'flex-nowrap'],
|
|
276
|
+
float: ['float-left', 'float-right', 'float-none'],
|
|
277
|
+
fontFamily: ['font-sans', 'font-serif', 'font-mono'],
|
|
278
|
+
fontSize: [
|
|
279
|
+
'text-xs',
|
|
280
|
+
'text-sm',
|
|
281
|
+
'text-base',
|
|
282
|
+
'text-lg',
|
|
283
|
+
'text-xl',
|
|
284
|
+
'text-2xl',
|
|
285
|
+
'text-3xl',
|
|
286
|
+
'text-4xl',
|
|
287
|
+
'text-5xl',
|
|
288
|
+
'text-6xl',
|
|
289
|
+
],
|
|
290
|
+
fontStyle: ['italic', 'not-italic'],
|
|
291
|
+
fontSmoothing: ['antialiased', 'subpixel-antialiased'],
|
|
292
|
+
fontVariantNumeric: [
|
|
293
|
+
'normal-nums',
|
|
294
|
+
'ordinal',
|
|
295
|
+
'slashed-zero',
|
|
296
|
+
'lining-nums',
|
|
297
|
+
'oldstyle-nums',
|
|
298
|
+
'proportional-nums',
|
|
299
|
+
'tabular-nums',
|
|
300
|
+
'diagonal-fractions',
|
|
301
|
+
'stacked-fractions',
|
|
302
|
+
],
|
|
303
|
+
fontWeight: [
|
|
304
|
+
'font-thin',
|
|
305
|
+
'font-extralight',
|
|
306
|
+
'font-light',
|
|
307
|
+
'font-normal',
|
|
308
|
+
'font-medium',
|
|
309
|
+
'font-semibold',
|
|
310
|
+
'font-bold',
|
|
311
|
+
'font-extrabold',
|
|
312
|
+
'font-black',
|
|
313
|
+
],
|
|
314
|
+
gap: ['gap-0', 'gap-1', 'gap-2', 'gap-3', 'gap-4', 'gap-5', 'gap-6', 'gap-8', 'gap-10', 'gap-12'],
|
|
315
|
+
gridAutoColumns: ['auto-cols-auto', 'auto-cols-min', 'auto-cols-max', 'auto-cols-fr'],
|
|
316
|
+
gridAutoFlow: ['grid-flow-row', 'grid-flow-col', 'grid-flow-row-dense', 'grid-flow-col-dense'],
|
|
317
|
+
gridAutoRows: ['auto-rows-auto', 'auto-rows-min', 'auto-rows-max', 'auto-rows-fr'],
|
|
318
|
+
gridColumn: [
|
|
319
|
+
'col-auto',
|
|
320
|
+
'col-span-1',
|
|
321
|
+
'col-span-2',
|
|
322
|
+
'col-span-3',
|
|
323
|
+
'col-span-4',
|
|
324
|
+
'col-span-5',
|
|
325
|
+
'col-span-6',
|
|
326
|
+
'col-span-full',
|
|
327
|
+
],
|
|
328
|
+
gridRow: [
|
|
329
|
+
'row-auto',
|
|
330
|
+
'row-span-1',
|
|
331
|
+
'row-span-2',
|
|
332
|
+
'row-span-3',
|
|
333
|
+
'row-span-4',
|
|
334
|
+
'row-span-5',
|
|
335
|
+
'row-span-6',
|
|
336
|
+
'row-span-full',
|
|
337
|
+
],
|
|
338
|
+
gridTemplateColumns: [
|
|
339
|
+
'grid-cols-1',
|
|
340
|
+
'grid-cols-2',
|
|
341
|
+
'grid-cols-3',
|
|
342
|
+
'grid-cols-4',
|
|
343
|
+
'grid-cols-5',
|
|
344
|
+
'grid-cols-6',
|
|
345
|
+
'grid-cols-12',
|
|
346
|
+
'grid-cols-none',
|
|
347
|
+
],
|
|
348
|
+
gridTemplateRows: [
|
|
349
|
+
'grid-rows-1',
|
|
350
|
+
'grid-rows-2',
|
|
351
|
+
'grid-rows-3',
|
|
352
|
+
'grid-rows-4',
|
|
353
|
+
'grid-rows-5',
|
|
354
|
+
'grid-rows-6',
|
|
355
|
+
'grid-rows-none',
|
|
356
|
+
],
|
|
357
|
+
height: ['h-auto', 'h-full', 'h-screen', 'h-dvh', 'h-svh', 'h-lvh', 'h-min', 'h-max', 'h-fit'],
|
|
358
|
+
hyphens: ['hyphens-none', 'hyphens-manual', 'hyphens-auto'],
|
|
359
|
+
imageRendering: [
|
|
360
|
+
'image-rendering-auto',
|
|
361
|
+
'image-rendering-crisp-edges',
|
|
362
|
+
'image-rendering-pixelated',
|
|
363
|
+
],
|
|
364
|
+
isolation: ['isolate', 'isolation-auto'],
|
|
365
|
+
justifyContent: [
|
|
366
|
+
'justify-start',
|
|
367
|
+
'justify-end',
|
|
368
|
+
'justify-center',
|
|
369
|
+
'justify-between',
|
|
370
|
+
'justify-around',
|
|
371
|
+
'justify-evenly',
|
|
372
|
+
],
|
|
373
|
+
justifyItems: [
|
|
374
|
+
'justify-items-start',
|
|
375
|
+
'justify-items-end',
|
|
376
|
+
'justify-items-center',
|
|
377
|
+
'justify-items-stretch',
|
|
378
|
+
],
|
|
379
|
+
justifySelf: [
|
|
380
|
+
'justify-self-auto',
|
|
381
|
+
'justify-self-start',
|
|
382
|
+
'justify-self-end',
|
|
383
|
+
'justify-self-center',
|
|
384
|
+
'justify-self-stretch',
|
|
385
|
+
],
|
|
386
|
+
letterSpacing: [
|
|
387
|
+
'tracking-tighter',
|
|
388
|
+
'tracking-tight',
|
|
389
|
+
'tracking-normal',
|
|
390
|
+
'tracking-wide',
|
|
391
|
+
'tracking-wider',
|
|
392
|
+
'tracking-widest',
|
|
393
|
+
],
|
|
394
|
+
lineClamp: [
|
|
395
|
+
'line-clamp-1',
|
|
396
|
+
'line-clamp-2',
|
|
397
|
+
'line-clamp-3',
|
|
398
|
+
'line-clamp-4',
|
|
399
|
+
'line-clamp-5',
|
|
400
|
+
'line-clamp-6',
|
|
401
|
+
'line-clamp-none',
|
|
402
|
+
],
|
|
403
|
+
lineHeight: [
|
|
404
|
+
'leading-none',
|
|
405
|
+
'leading-tight',
|
|
406
|
+
'leading-snug',
|
|
407
|
+
'leading-normal',
|
|
408
|
+
'leading-relaxed',
|
|
409
|
+
'leading-loose',
|
|
410
|
+
],
|
|
411
|
+
listStylePosition: ['list-inside', 'list-outside'],
|
|
412
|
+
listStyleType: ['list-none', 'list-disc', 'list-decimal'],
|
|
413
|
+
margin: [
|
|
414
|
+
'm-0',
|
|
415
|
+
'm-px',
|
|
416
|
+
'm-0.5',
|
|
417
|
+
'm-1',
|
|
418
|
+
'm-2',
|
|
419
|
+
'm-3',
|
|
420
|
+
'm-4',
|
|
421
|
+
'm-5',
|
|
422
|
+
'm-6',
|
|
423
|
+
'm-8',
|
|
424
|
+
'm-10',
|
|
425
|
+
'm-12',
|
|
426
|
+
'm-16',
|
|
427
|
+
'm-auto',
|
|
428
|
+
],
|
|
429
|
+
marginX: [
|
|
430
|
+
'mx-0',
|
|
431
|
+
'mx-px',
|
|
432
|
+
'mx-0.5',
|
|
433
|
+
'mx-1',
|
|
434
|
+
'mx-2',
|
|
435
|
+
'mx-3',
|
|
436
|
+
'mx-4',
|
|
437
|
+
'mx-5',
|
|
438
|
+
'mx-6',
|
|
439
|
+
'mx-8',
|
|
440
|
+
'mx-10',
|
|
441
|
+
'mx-12',
|
|
442
|
+
'mx-16',
|
|
443
|
+
'mx-auto',
|
|
444
|
+
],
|
|
445
|
+
marginY: [
|
|
446
|
+
'my-0',
|
|
447
|
+
'my-px',
|
|
448
|
+
'my-0.5',
|
|
449
|
+
'my-1',
|
|
450
|
+
'my-2',
|
|
451
|
+
'my-3',
|
|
452
|
+
'my-4',
|
|
453
|
+
'my-5',
|
|
454
|
+
'my-6',
|
|
455
|
+
'my-8',
|
|
456
|
+
'my-10',
|
|
457
|
+
'my-12',
|
|
458
|
+
'my-16',
|
|
459
|
+
'my-auto',
|
|
460
|
+
],
|
|
461
|
+
marginTop: [
|
|
462
|
+
'mt-0',
|
|
463
|
+
'mt-px',
|
|
464
|
+
'mt-0.5',
|
|
465
|
+
'mt-1',
|
|
466
|
+
'mt-2',
|
|
467
|
+
'mt-3',
|
|
468
|
+
'mt-4',
|
|
469
|
+
'mt-5',
|
|
470
|
+
'mt-6',
|
|
471
|
+
'mt-8',
|
|
472
|
+
'mt-10',
|
|
473
|
+
'mt-12',
|
|
474
|
+
'mt-16',
|
|
475
|
+
'mt-auto',
|
|
476
|
+
],
|
|
477
|
+
marginEnd: [
|
|
478
|
+
'me-0',
|
|
479
|
+
'me-px',
|
|
480
|
+
'me-0.5',
|
|
481
|
+
'me-1',
|
|
482
|
+
'me-2',
|
|
483
|
+
'me-3',
|
|
484
|
+
'me-4',
|
|
485
|
+
'me-5',
|
|
486
|
+
'me-6',
|
|
487
|
+
'me-8',
|
|
488
|
+
'me-10',
|
|
489
|
+
'me-12',
|
|
490
|
+
'me-16',
|
|
491
|
+
'me-auto',
|
|
492
|
+
],
|
|
493
|
+
marginBottom: [
|
|
494
|
+
'mb-0',
|
|
495
|
+
'mb-px',
|
|
496
|
+
'mb-0.5',
|
|
497
|
+
'mb-1',
|
|
498
|
+
'mb-2',
|
|
499
|
+
'mb-3',
|
|
500
|
+
'mb-4',
|
|
501
|
+
'mb-5',
|
|
502
|
+
'mb-6',
|
|
503
|
+
'mb-8',
|
|
504
|
+
'mb-10',
|
|
505
|
+
'mb-12',
|
|
506
|
+
'mb-16',
|
|
507
|
+
'mb-auto',
|
|
508
|
+
],
|
|
509
|
+
marginStart: [
|
|
510
|
+
'ms-0',
|
|
511
|
+
'ms-px',
|
|
512
|
+
'ms-0.5',
|
|
513
|
+
'ms-1',
|
|
514
|
+
'ms-2',
|
|
515
|
+
'ms-3',
|
|
516
|
+
'ms-4',
|
|
517
|
+
'ms-5',
|
|
518
|
+
'ms-6',
|
|
519
|
+
'ms-8',
|
|
520
|
+
'ms-10',
|
|
521
|
+
'ms-12',
|
|
522
|
+
'ms-16',
|
|
523
|
+
'ms-auto',
|
|
524
|
+
],
|
|
525
|
+
maxHeight: [
|
|
526
|
+
'max-h-none',
|
|
527
|
+
'max-h-full',
|
|
528
|
+
'max-h-screen',
|
|
529
|
+
'max-h-dvh',
|
|
530
|
+
'max-h-svh',
|
|
531
|
+
'max-h-lvh',
|
|
532
|
+
'max-h-min',
|
|
533
|
+
'max-h-max',
|
|
534
|
+
'max-h-fit',
|
|
535
|
+
],
|
|
536
|
+
maxWidth: [
|
|
537
|
+
'max-w-none',
|
|
538
|
+
'max-w-xs',
|
|
539
|
+
'max-w-sm',
|
|
540
|
+
'max-w-md',
|
|
541
|
+
'max-w-lg',
|
|
542
|
+
'max-w-xl',
|
|
543
|
+
'max-w-2xl',
|
|
544
|
+
'max-w-full',
|
|
545
|
+
'max-w-screen',
|
|
546
|
+
],
|
|
547
|
+
minHeight: [
|
|
548
|
+
'min-h-0',
|
|
549
|
+
'min-h-full',
|
|
550
|
+
'min-h-screen',
|
|
551
|
+
'min-h-dvh',
|
|
552
|
+
'min-h-svh',
|
|
553
|
+
'min-h-lvh',
|
|
554
|
+
'min-h-min',
|
|
555
|
+
'min-h-max',
|
|
556
|
+
'min-h-fit',
|
|
557
|
+
],
|
|
558
|
+
minWidth: ['min-w-0', 'min-w-full', 'min-w-min', 'min-w-max', 'min-w-fit'],
|
|
559
|
+
mixBlendMode: [
|
|
560
|
+
'mix-blend-normal',
|
|
561
|
+
'mix-blend-multiply',
|
|
562
|
+
'mix-blend-screen',
|
|
563
|
+
'mix-blend-overlay',
|
|
564
|
+
'mix-blend-darken',
|
|
565
|
+
'mix-blend-lighten',
|
|
566
|
+
'mix-blend-color-dodge',
|
|
567
|
+
'mix-blend-color-burn',
|
|
568
|
+
'mix-blend-hard-light',
|
|
569
|
+
'mix-blend-soft-light',
|
|
570
|
+
'mix-blend-difference',
|
|
571
|
+
'mix-blend-exclusion',
|
|
572
|
+
'mix-blend-hue',
|
|
573
|
+
'mix-blend-saturation',
|
|
574
|
+
'mix-blend-color',
|
|
575
|
+
'mix-blend-luminosity',
|
|
576
|
+
],
|
|
577
|
+
objectFit: ['object-contain', 'object-cover', 'object-fill', 'object-none', 'object-scale-down'],
|
|
578
|
+
objectPosition: [
|
|
579
|
+
'object-bottom',
|
|
580
|
+
'object-center',
|
|
581
|
+
'object-left',
|
|
582
|
+
'object-left-bottom',
|
|
583
|
+
'object-left-top',
|
|
584
|
+
'object-right',
|
|
585
|
+
'object-right-bottom',
|
|
586
|
+
'object-right-top',
|
|
587
|
+
'object-top',
|
|
588
|
+
],
|
|
589
|
+
opacity: [
|
|
590
|
+
'opacity-0',
|
|
591
|
+
'opacity-5',
|
|
592
|
+
'opacity-10',
|
|
593
|
+
'opacity-20',
|
|
594
|
+
'opacity-25',
|
|
595
|
+
'opacity-30',
|
|
596
|
+
'opacity-40',
|
|
597
|
+
'opacity-50',
|
|
598
|
+
'opacity-60',
|
|
599
|
+
'opacity-70',
|
|
600
|
+
'opacity-75',
|
|
601
|
+
'opacity-80',
|
|
602
|
+
'opacity-90',
|
|
603
|
+
'opacity-95',
|
|
604
|
+
'opacity-100',
|
|
605
|
+
],
|
|
606
|
+
order: [
|
|
607
|
+
'order-first',
|
|
608
|
+
'order-last',
|
|
609
|
+
'order-none',
|
|
610
|
+
'order-1',
|
|
611
|
+
'order-2',
|
|
612
|
+
'order-3',
|
|
613
|
+
'order-4',
|
|
614
|
+
'order-5',
|
|
615
|
+
'order-6',
|
|
616
|
+
'order-12',
|
|
617
|
+
],
|
|
618
|
+
outline: ['outline-none', 'outline'],
|
|
619
|
+
outlineColor: ['outline-transparent', 'outline-current', 'outline-black', 'outline-white'],
|
|
620
|
+
outlineOffset: [
|
|
621
|
+
'outline-offset-0',
|
|
622
|
+
'outline-offset-1',
|
|
623
|
+
'outline-offset-2',
|
|
624
|
+
'outline-offset-4',
|
|
625
|
+
'outline-offset-8',
|
|
626
|
+
],
|
|
627
|
+
outlineStyle: ['outline-solid', 'outline-dashed', 'outline-dotted', 'outline-double'],
|
|
628
|
+
outlineWidth: ['outline-0', 'outline-1', 'outline-2', 'outline-4', 'outline-8'],
|
|
629
|
+
overflow: [
|
|
630
|
+
'overflow-auto',
|
|
631
|
+
'overflow-hidden',
|
|
632
|
+
'overflow-clip',
|
|
633
|
+
'overflow-visible',
|
|
634
|
+
'overflow-scroll',
|
|
635
|
+
],
|
|
636
|
+
overflowX: [
|
|
637
|
+
'overflow-x-auto',
|
|
638
|
+
'overflow-x-hidden',
|
|
639
|
+
'overflow-x-clip',
|
|
640
|
+
'overflow-x-visible',
|
|
641
|
+
'overflow-x-scroll',
|
|
642
|
+
],
|
|
643
|
+
overflowY: [
|
|
644
|
+
'overflow-y-auto',
|
|
645
|
+
'overflow-y-hidden',
|
|
646
|
+
'overflow-y-clip',
|
|
647
|
+
'overflow-y-visible',
|
|
648
|
+
'overflow-y-scroll',
|
|
649
|
+
],
|
|
650
|
+
overscrollBehavior: ['overscroll-auto', 'overscroll-contain', 'overscroll-none'],
|
|
651
|
+
padding: [
|
|
652
|
+
'p-0',
|
|
653
|
+
'p-px',
|
|
654
|
+
'p-0.5',
|
|
655
|
+
'p-1',
|
|
656
|
+
'p-2',
|
|
657
|
+
'p-3',
|
|
658
|
+
'p-4',
|
|
659
|
+
'p-5',
|
|
660
|
+
'p-6',
|
|
661
|
+
'p-8',
|
|
662
|
+
'p-10',
|
|
663
|
+
'p-12',
|
|
664
|
+
'p-16',
|
|
665
|
+
],
|
|
666
|
+
paddingX: [
|
|
667
|
+
'px-0',
|
|
668
|
+
'px-px',
|
|
669
|
+
'px-0.5',
|
|
670
|
+
'px-1',
|
|
671
|
+
'px-2',
|
|
672
|
+
'px-3',
|
|
673
|
+
'px-4',
|
|
674
|
+
'px-5',
|
|
675
|
+
'px-6',
|
|
676
|
+
'px-8',
|
|
677
|
+
'px-10',
|
|
678
|
+
'px-12',
|
|
679
|
+
'px-16',
|
|
680
|
+
],
|
|
681
|
+
paddingY: [
|
|
682
|
+
'py-0',
|
|
683
|
+
'py-px',
|
|
684
|
+
'py-0.5',
|
|
685
|
+
'py-1',
|
|
686
|
+
'py-2',
|
|
687
|
+
'py-3',
|
|
688
|
+
'py-4',
|
|
689
|
+
'py-5',
|
|
690
|
+
'py-6',
|
|
691
|
+
'py-8',
|
|
692
|
+
'py-10',
|
|
693
|
+
'py-12',
|
|
694
|
+
'py-16',
|
|
695
|
+
],
|
|
696
|
+
paddingTop: [
|
|
697
|
+
'pt-0',
|
|
698
|
+
'pt-px',
|
|
699
|
+
'pt-0.5',
|
|
700
|
+
'pt-1',
|
|
701
|
+
'pt-2',
|
|
702
|
+
'pt-3',
|
|
703
|
+
'pt-4',
|
|
704
|
+
'pt-5',
|
|
705
|
+
'pt-6',
|
|
706
|
+
'pt-8',
|
|
707
|
+
'pt-10',
|
|
708
|
+
'pt-12',
|
|
709
|
+
'pt-16',
|
|
710
|
+
],
|
|
711
|
+
paddingBottom: [
|
|
712
|
+
'pb-0',
|
|
713
|
+
'pb-px',
|
|
714
|
+
'pb-0.5',
|
|
715
|
+
'pb-1',
|
|
716
|
+
'pb-2',
|
|
717
|
+
'pb-3',
|
|
718
|
+
'pb-4',
|
|
719
|
+
'pb-5',
|
|
720
|
+
'pb-6',
|
|
721
|
+
'pb-8',
|
|
722
|
+
'pb-10',
|
|
723
|
+
'pb-12',
|
|
724
|
+
'pb-16',
|
|
725
|
+
],
|
|
726
|
+
paddingStart: [
|
|
727
|
+
'ps-0',
|
|
728
|
+
'ps-px',
|
|
729
|
+
'ps-0.5',
|
|
730
|
+
'ps-1',
|
|
731
|
+
'ps-2',
|
|
732
|
+
'ps-3',
|
|
733
|
+
'ps-4',
|
|
734
|
+
'ps-5',
|
|
735
|
+
'ps-6',
|
|
736
|
+
'ps-8',
|
|
737
|
+
'ps-10',
|
|
738
|
+
'ps-12',
|
|
739
|
+
'ps-16',
|
|
740
|
+
],
|
|
741
|
+
paddingEnd: [
|
|
742
|
+
'pe-0',
|
|
743
|
+
'pe-px',
|
|
744
|
+
'pe-0.5',
|
|
745
|
+
'pe-1',
|
|
746
|
+
'pe-2',
|
|
747
|
+
'pe-3',
|
|
748
|
+
'pe-4',
|
|
749
|
+
'pe-5',
|
|
750
|
+
'pe-6',
|
|
751
|
+
'pe-8',
|
|
752
|
+
'pe-10',
|
|
753
|
+
'pe-12',
|
|
754
|
+
'pe-16',
|
|
755
|
+
],
|
|
756
|
+
placeContent: [
|
|
757
|
+
'place-content-start',
|
|
758
|
+
'place-content-end',
|
|
759
|
+
'place-content-center',
|
|
760
|
+
'place-content-between',
|
|
761
|
+
'place-content-around',
|
|
762
|
+
'place-content-evenly',
|
|
763
|
+
'place-content-stretch',
|
|
764
|
+
],
|
|
765
|
+
placeItems: ['place-items-start', 'place-items-end', 'place-items-center', 'place-items-stretch'],
|
|
766
|
+
placeSelf: [
|
|
767
|
+
'place-self-auto',
|
|
768
|
+
'place-self-start',
|
|
769
|
+
'place-self-end',
|
|
770
|
+
'place-self-center',
|
|
771
|
+
'place-self-stretch',
|
|
772
|
+
],
|
|
773
|
+
pointerEvents: ['pointer-events-none', 'pointer-events-auto'],
|
|
774
|
+
position: ['static', 'fixed', 'absolute', 'relative', 'sticky'],
|
|
775
|
+
resize: ['resize-none', 'resize-y', 'resize-x', 'resize'],
|
|
776
|
+
ringColor: ['ring-transparent', 'ring-current', 'ring-black', 'ring-white'],
|
|
777
|
+
ringOffsetColor: [
|
|
778
|
+
'ring-offset-transparent',
|
|
779
|
+
'ring-offset-current',
|
|
780
|
+
'ring-offset-black',
|
|
781
|
+
'ring-offset-white',
|
|
782
|
+
],
|
|
783
|
+
ringOffsetWidth: [
|
|
784
|
+
'ring-offset-0',
|
|
785
|
+
'ring-offset-1',
|
|
786
|
+
'ring-offset-2',
|
|
787
|
+
'ring-offset-4',
|
|
788
|
+
'ring-offset-8',
|
|
789
|
+
],
|
|
790
|
+
ringWidth: ['ring-0', 'ring-1', 'ring-2', 'ring-4', 'ring-8'],
|
|
791
|
+
rotate: [
|
|
792
|
+
'rotate-0',
|
|
793
|
+
'rotate-1',
|
|
794
|
+
'rotate-2',
|
|
795
|
+
'rotate-3',
|
|
796
|
+
'rotate-6',
|
|
797
|
+
'rotate-12',
|
|
798
|
+
'rotate-45',
|
|
799
|
+
'rotate-90',
|
|
800
|
+
'rotate-180',
|
|
801
|
+
],
|
|
802
|
+
rowGap: [
|
|
803
|
+
'gap-y-0',
|
|
804
|
+
'gap-y-0.5',
|
|
805
|
+
'gap-y-1',
|
|
806
|
+
'gap-y-1.5',
|
|
807
|
+
'gap-y-2',
|
|
808
|
+
'gap-y-2.5',
|
|
809
|
+
'gap-y-3',
|
|
810
|
+
'gap-y-4',
|
|
811
|
+
'gap-y-5',
|
|
812
|
+
'gap-y-6',
|
|
813
|
+
'gap-y-8',
|
|
814
|
+
'gap-y-10',
|
|
815
|
+
'gap-y-12',
|
|
816
|
+
'gap-y-16',
|
|
817
|
+
],
|
|
818
|
+
scale: [
|
|
819
|
+
'scale-0',
|
|
820
|
+
'scale-50',
|
|
821
|
+
'scale-75',
|
|
822
|
+
'scale-90',
|
|
823
|
+
'scale-95',
|
|
824
|
+
'scale-100',
|
|
825
|
+
'scale-105',
|
|
826
|
+
'scale-110',
|
|
827
|
+
'scale-125',
|
|
828
|
+
'scale-150',
|
|
829
|
+
],
|
|
830
|
+
scrollBehavior: ['scroll-auto', 'scroll-smooth'],
|
|
831
|
+
scrollMargin: [
|
|
832
|
+
'scroll-m-0',
|
|
833
|
+
'scroll-m-px',
|
|
834
|
+
'scroll-m-0.5',
|
|
835
|
+
'scroll-m-1',
|
|
836
|
+
'scroll-m-2',
|
|
837
|
+
'scroll-m-3',
|
|
838
|
+
'scroll-m-4',
|
|
839
|
+
'scroll-m-6',
|
|
840
|
+
'scroll-m-8',
|
|
841
|
+
'scroll-m-12',
|
|
842
|
+
'scroll-m-16',
|
|
843
|
+
],
|
|
844
|
+
scrollMarginX: [
|
|
845
|
+
'scroll-mx-0',
|
|
846
|
+
'scroll-mx-px',
|
|
847
|
+
'scroll-mx-0.5',
|
|
848
|
+
'scroll-mx-1',
|
|
849
|
+
'scroll-mx-2',
|
|
850
|
+
'scroll-mx-3',
|
|
851
|
+
'scroll-mx-4',
|
|
852
|
+
'scroll-mx-6',
|
|
853
|
+
'scroll-mx-8',
|
|
854
|
+
'scroll-mx-12',
|
|
855
|
+
'scroll-mx-16',
|
|
856
|
+
],
|
|
857
|
+
scrollMarginY: [
|
|
858
|
+
'scroll-my-0',
|
|
859
|
+
'scroll-my-px',
|
|
860
|
+
'scroll-my-0.5',
|
|
861
|
+
'scroll-my-1',
|
|
862
|
+
'scroll-my-2',
|
|
863
|
+
'scroll-my-3',
|
|
864
|
+
'scroll-my-4',
|
|
865
|
+
'scroll-my-6',
|
|
866
|
+
'scroll-my-8',
|
|
867
|
+
'scroll-my-12',
|
|
868
|
+
'scroll-my-16',
|
|
869
|
+
],
|
|
870
|
+
scrollMarginTop: [
|
|
871
|
+
'scroll-mt-0',
|
|
872
|
+
'scroll-mt-px',
|
|
873
|
+
'scroll-mt-0.5',
|
|
874
|
+
'scroll-mt-1',
|
|
875
|
+
'scroll-mt-2',
|
|
876
|
+
'scroll-mt-3',
|
|
877
|
+
'scroll-mt-4',
|
|
878
|
+
'scroll-mt-6',
|
|
879
|
+
'scroll-mt-8',
|
|
880
|
+
'scroll-mt-12',
|
|
881
|
+
'scroll-mt-16',
|
|
882
|
+
],
|
|
883
|
+
scrollMarginBottom: [
|
|
884
|
+
'scroll-mb-0',
|
|
885
|
+
'scroll-mb-px',
|
|
886
|
+
'scroll-mb-0.5',
|
|
887
|
+
'scroll-mb-1',
|
|
888
|
+
'scroll-mb-2',
|
|
889
|
+
'scroll-mb-3',
|
|
890
|
+
'scroll-mb-4',
|
|
891
|
+
'scroll-mb-6',
|
|
892
|
+
'scroll-mb-8',
|
|
893
|
+
'scroll-mb-12',
|
|
894
|
+
'scroll-mb-16',
|
|
895
|
+
],
|
|
896
|
+
scrollMarginStart: [
|
|
897
|
+
'scroll-ms-0',
|
|
898
|
+
'scroll-ms-px',
|
|
899
|
+
'scroll-ms-0.5',
|
|
900
|
+
'scroll-ms-1',
|
|
901
|
+
'scroll-ms-2',
|
|
902
|
+
'scroll-ms-3',
|
|
903
|
+
'scroll-ms-4',
|
|
904
|
+
'scroll-ms-6',
|
|
905
|
+
'scroll-ms-8',
|
|
906
|
+
'scroll-ms-12',
|
|
907
|
+
'scroll-ms-16',
|
|
908
|
+
],
|
|
909
|
+
scrollMarginEnd: [
|
|
910
|
+
'scroll-me-0',
|
|
911
|
+
'scroll-me-px',
|
|
912
|
+
'scroll-me-0.5',
|
|
913
|
+
'scroll-me-1',
|
|
914
|
+
'scroll-me-2',
|
|
915
|
+
'scroll-me-3',
|
|
916
|
+
'scroll-me-4',
|
|
917
|
+
'scroll-me-6',
|
|
918
|
+
'scroll-me-8',
|
|
919
|
+
'scroll-me-12',
|
|
920
|
+
'scroll-me-16',
|
|
921
|
+
],
|
|
922
|
+
scrollPadding: [
|
|
923
|
+
'scroll-p-0',
|
|
924
|
+
'scroll-p-px',
|
|
925
|
+
'scroll-p-0.5',
|
|
926
|
+
'scroll-p-1',
|
|
927
|
+
'scroll-p-2',
|
|
928
|
+
'scroll-p-3',
|
|
929
|
+
'scroll-p-4',
|
|
930
|
+
'scroll-p-6',
|
|
931
|
+
'scroll-p-8',
|
|
932
|
+
'scroll-p-12',
|
|
933
|
+
'scroll-p-16',
|
|
934
|
+
],
|
|
935
|
+
scrollPaddingX: [
|
|
936
|
+
'scroll-px-0',
|
|
937
|
+
'scroll-px-px',
|
|
938
|
+
'scroll-px-0.5',
|
|
939
|
+
'scroll-px-1',
|
|
940
|
+
'scroll-px-2',
|
|
941
|
+
'scroll-px-3',
|
|
942
|
+
'scroll-px-4',
|
|
943
|
+
'scroll-px-6',
|
|
944
|
+
'scroll-px-8',
|
|
945
|
+
'scroll-px-12',
|
|
946
|
+
'scroll-px-16',
|
|
947
|
+
],
|
|
948
|
+
scrollPaddingY: [
|
|
949
|
+
'scroll-py-0',
|
|
950
|
+
'scroll-py-px',
|
|
951
|
+
'scroll-py-0.5',
|
|
952
|
+
'scroll-py-1',
|
|
953
|
+
'scroll-py-2',
|
|
954
|
+
'scroll-py-3',
|
|
955
|
+
'scroll-py-4',
|
|
956
|
+
'scroll-py-6',
|
|
957
|
+
'scroll-py-8',
|
|
958
|
+
'scroll-py-12',
|
|
959
|
+
'scroll-py-16',
|
|
960
|
+
],
|
|
961
|
+
scrollPaddingTop: [
|
|
962
|
+
'scroll-pt-0',
|
|
963
|
+
'scroll-pt-px',
|
|
964
|
+
'scroll-pt-0.5',
|
|
965
|
+
'scroll-pt-1',
|
|
966
|
+
'scroll-pt-2',
|
|
967
|
+
'scroll-pt-3',
|
|
968
|
+
'scroll-pt-4',
|
|
969
|
+
'scroll-pt-6',
|
|
970
|
+
'scroll-pt-8',
|
|
971
|
+
'scroll-pt-12',
|
|
972
|
+
'scroll-pt-16',
|
|
973
|
+
],
|
|
974
|
+
scrollPaddingBottom: [
|
|
975
|
+
'scroll-pb-0',
|
|
976
|
+
'scroll-pb-px',
|
|
977
|
+
'scroll-pb-0.5',
|
|
978
|
+
'scroll-pb-1',
|
|
979
|
+
'scroll-pb-2',
|
|
980
|
+
'scroll-pb-3',
|
|
981
|
+
'scroll-pb-4',
|
|
982
|
+
'scroll-pb-6',
|
|
983
|
+
'scroll-pb-8',
|
|
984
|
+
'scroll-pb-12',
|
|
985
|
+
'scroll-pb-16',
|
|
986
|
+
],
|
|
987
|
+
scrollPaddingStart: [
|
|
988
|
+
'scroll-ps-0',
|
|
989
|
+
'scroll-ps-px',
|
|
990
|
+
'scroll-ps-0.5',
|
|
991
|
+
'scroll-ps-1',
|
|
992
|
+
'scroll-ps-2',
|
|
993
|
+
'scroll-ps-3',
|
|
994
|
+
'scroll-ps-4',
|
|
995
|
+
'scroll-ps-6',
|
|
996
|
+
'scroll-ps-8',
|
|
997
|
+
'scroll-ps-12',
|
|
998
|
+
'scroll-ps-16',
|
|
999
|
+
],
|
|
1000
|
+
scrollPaddingEnd: [
|
|
1001
|
+
'scroll-pe-0',
|
|
1002
|
+
'scroll-pe-px',
|
|
1003
|
+
'scroll-pe-0.5',
|
|
1004
|
+
'scroll-pe-1',
|
|
1005
|
+
'scroll-pe-2',
|
|
1006
|
+
'scroll-pe-3',
|
|
1007
|
+
'scroll-pe-4',
|
|
1008
|
+
'scroll-pe-6',
|
|
1009
|
+
'scroll-pe-8',
|
|
1010
|
+
'scroll-pe-12',
|
|
1011
|
+
'scroll-pe-16',
|
|
1012
|
+
],
|
|
1013
|
+
size: [
|
|
1014
|
+
'size-0',
|
|
1015
|
+
'size-px',
|
|
1016
|
+
'size-0.5',
|
|
1017
|
+
'size-1',
|
|
1018
|
+
'size-2',
|
|
1019
|
+
'size-3',
|
|
1020
|
+
'size-4',
|
|
1021
|
+
'size-6',
|
|
1022
|
+
'size-8',
|
|
1023
|
+
'size-10',
|
|
1024
|
+
'size-12',
|
|
1025
|
+
'size-16',
|
|
1026
|
+
'size-20',
|
|
1027
|
+
'size-24',
|
|
1028
|
+
],
|
|
1029
|
+
strokeWidth: ['stroke-0', 'stroke-1', 'stroke-2'],
|
|
1030
|
+
scrollSnapAlign: ['snap-start', 'snap-end', 'snap-center', 'snap-align-none'],
|
|
1031
|
+
scrollSnapStop: ['snap-normal', 'snap-always'],
|
|
1032
|
+
scrollSnapType: ['snap-none', 'snap-x', 'snap-y', 'snap-both', 'snap-mandatory'],
|
|
1033
|
+
skew: [
|
|
1034
|
+
'skew-x-0',
|
|
1035
|
+
'skew-x-1',
|
|
1036
|
+
'skew-x-2',
|
|
1037
|
+
'skew-x-3',
|
|
1038
|
+
'skew-x-6',
|
|
1039
|
+
'skew-x-12',
|
|
1040
|
+
'skew-y-0',
|
|
1041
|
+
'skew-y-1',
|
|
1042
|
+
'skew-y-2',
|
|
1043
|
+
'skew-y-3',
|
|
1044
|
+
'skew-y-6',
|
|
1045
|
+
'skew-y-12',
|
|
1046
|
+
],
|
|
1047
|
+
stroke: ['stroke-none', 'stroke-current'],
|
|
1048
|
+
tableLayout: ['table-auto', 'table-fixed'],
|
|
1049
|
+
textAlign: ['text-left', 'text-center', 'text-right', 'text-justify', 'text-start', 'text-end'],
|
|
1050
|
+
textColor: ['text-transparent', 'text-current', 'text-black', 'text-white'],
|
|
1051
|
+
textDecoration: ['underline', 'overline', 'line-through', 'no-underline'],
|
|
1052
|
+
textDecorationColor: [
|
|
1053
|
+
'decoration-transparent',
|
|
1054
|
+
'decoration-current',
|
|
1055
|
+
'decoration-black',
|
|
1056
|
+
'decoration-white',
|
|
1057
|
+
],
|
|
1058
|
+
textDecorationStyle: [
|
|
1059
|
+
'decoration-solid',
|
|
1060
|
+
'decoration-double',
|
|
1061
|
+
'decoration-dotted',
|
|
1062
|
+
'decoration-dashed',
|
|
1063
|
+
'decoration-wavy',
|
|
1064
|
+
],
|
|
1065
|
+
textDecorationThickness: [
|
|
1066
|
+
'decoration-auto',
|
|
1067
|
+
'decoration-from-font',
|
|
1068
|
+
'decoration-0',
|
|
1069
|
+
'decoration-1',
|
|
1070
|
+
'decoration-2',
|
|
1071
|
+
'decoration-4',
|
|
1072
|
+
'decoration-8',
|
|
1073
|
+
],
|
|
1074
|
+
textIndent: ['indent-0', 'indent-1', 'indent-2', 'indent-3', 'indent-4', 'indent-8'],
|
|
1075
|
+
textOverflow: ['truncate', 'text-ellipsis', 'text-clip'],
|
|
1076
|
+
textTransform: ['uppercase', 'lowercase', 'capitalize', 'normal-case'],
|
|
1077
|
+
textUnderlineOffset: [
|
|
1078
|
+
'underline-offset-auto',
|
|
1079
|
+
'underline-offset-0',
|
|
1080
|
+
'underline-offset-1',
|
|
1081
|
+
'underline-offset-2',
|
|
1082
|
+
'underline-offset-4',
|
|
1083
|
+
'underline-offset-8',
|
|
1084
|
+
],
|
|
1085
|
+
transform: ['transform', 'transform-gpu', 'transform-none'],
|
|
1086
|
+
transformOrigin: [
|
|
1087
|
+
'origin-center',
|
|
1088
|
+
'origin-top',
|
|
1089
|
+
'origin-top-right',
|
|
1090
|
+
'origin-right',
|
|
1091
|
+
'origin-bottom-right',
|
|
1092
|
+
'origin-bottom',
|
|
1093
|
+
'origin-bottom-left',
|
|
1094
|
+
'origin-left',
|
|
1095
|
+
'origin-top-left',
|
|
1096
|
+
],
|
|
1097
|
+
transition: [
|
|
1098
|
+
'transition-none',
|
|
1099
|
+
'transition-all',
|
|
1100
|
+
'transition',
|
|
1101
|
+
'transition-colors',
|
|
1102
|
+
'transition-opacity',
|
|
1103
|
+
'transition-shadow',
|
|
1104
|
+
'transition-transform',
|
|
1105
|
+
],
|
|
1106
|
+
transitionDelay: [
|
|
1107
|
+
'delay-0',
|
|
1108
|
+
'delay-75',
|
|
1109
|
+
'delay-100',
|
|
1110
|
+
'delay-150',
|
|
1111
|
+
'delay-200',
|
|
1112
|
+
'delay-300',
|
|
1113
|
+
'delay-500',
|
|
1114
|
+
'delay-700',
|
|
1115
|
+
'delay-1000',
|
|
1116
|
+
],
|
|
1117
|
+
transitionDuration: [
|
|
1118
|
+
'duration-0',
|
|
1119
|
+
'duration-75',
|
|
1120
|
+
'duration-100',
|
|
1121
|
+
'duration-150',
|
|
1122
|
+
'duration-200',
|
|
1123
|
+
'duration-300',
|
|
1124
|
+
'duration-500',
|
|
1125
|
+
'duration-700',
|
|
1126
|
+
'duration-1000',
|
|
1127
|
+
],
|
|
1128
|
+
transitionProperty: [
|
|
1129
|
+
'transition-none',
|
|
1130
|
+
'transition-all',
|
|
1131
|
+
'transition',
|
|
1132
|
+
'transition-colors',
|
|
1133
|
+
'transition-opacity',
|
|
1134
|
+
'transition-shadow',
|
|
1135
|
+
'transition-transform',
|
|
1136
|
+
],
|
|
1137
|
+
transitionTimingFunction: ['ease-linear', 'ease-in', 'ease-out', 'ease-in-out'],
|
|
1138
|
+
translate: [
|
|
1139
|
+
'translate-x-0',
|
|
1140
|
+
'translate-x-1',
|
|
1141
|
+
'translate-x-2',
|
|
1142
|
+
'translate-x-3',
|
|
1143
|
+
'translate-x-4',
|
|
1144
|
+
'translate-y-0',
|
|
1145
|
+
'translate-y-1',
|
|
1146
|
+
'translate-y-2',
|
|
1147
|
+
'translate-y-3',
|
|
1148
|
+
'translate-y-4',
|
|
1149
|
+
],
|
|
1150
|
+
userSelect: ['select-none', 'select-text', 'select-all', 'select-auto'],
|
|
1151
|
+
verticalAlign: [
|
|
1152
|
+
'align-baseline',
|
|
1153
|
+
'align-top',
|
|
1154
|
+
'align-middle',
|
|
1155
|
+
'align-bottom',
|
|
1156
|
+
'align-text-top',
|
|
1157
|
+
'align-text-bottom',
|
|
1158
|
+
'align-sub',
|
|
1159
|
+
'align-super',
|
|
1160
|
+
],
|
|
1161
|
+
visibility: ['visible', 'invisible', 'collapse'],
|
|
1162
|
+
whiteSpace: [
|
|
1163
|
+
'whitespace-normal',
|
|
1164
|
+
'whitespace-nowrap',
|
|
1165
|
+
'whitespace-pre',
|
|
1166
|
+
'whitespace-pre-line',
|
|
1167
|
+
'whitespace-pre-wrap',
|
|
1168
|
+
'whitespace-break-spaces',
|
|
1169
|
+
],
|
|
1170
|
+
width: ['w-auto', 'w-full', 'w-screen', 'w-dvh', 'w-svh', 'w-lvh', 'w-min', 'w-max', 'w-fit'],
|
|
1171
|
+
willChange: [
|
|
1172
|
+
'will-change-auto',
|
|
1173
|
+
'will-change-scroll',
|
|
1174
|
+
'will-change-contents',
|
|
1175
|
+
'will-change-transform',
|
|
1176
|
+
],
|
|
1177
|
+
wordBreak: ['break-normal', 'break-words', 'break-all', 'break-keep'],
|
|
1178
|
+
writingMode: [
|
|
1179
|
+
'writing-mode-horizontal-tb',
|
|
1180
|
+
'writing-mode-vertical-rl',
|
|
1181
|
+
'writing-mode-vertical-lr',
|
|
1182
|
+
],
|
|
1183
|
+
zIndex: ['z-0', 'z-10', 'z-20', 'z-30', 'z-40', 'z-50', 'z-auto'],
|
|
1184
|
+
};
|