css-in-props 3.14.0 → 3.14.3

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.
Files changed (86) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/README.md +1 -1
  3. package/dist/cjs/index.js +1 -21
  4. package/dist/cjs/package.json +1 -0
  5. package/dist/cjs/src/index.js +1 -0
  6. package/dist/cjs/src/props/animation.js +1 -0
  7. package/dist/cjs/src/props/block.js +1 -0
  8. package/dist/cjs/src/props/defaults.js +1 -0
  9. package/dist/cjs/src/props/flex.js +1 -0
  10. package/dist/cjs/src/props/font.js +1 -0
  11. package/dist/cjs/src/props/grid.js +1 -0
  12. package/dist/cjs/src/props/index.js +1 -0
  13. package/dist/cjs/src/props/misc.js +1 -0
  14. package/dist/cjs/src/props/position.js +1 -0
  15. package/dist/cjs/src/props/theme.js +1 -0
  16. package/dist/cjs/src/props/timing.js +1 -0
  17. package/dist/cjs/src/set.js +1 -0
  18. package/dist/cjs/src/transform/executors.js +1 -0
  19. package/dist/cjs/src/transform/index.js +1 -0
  20. package/dist/cjs/src/transform/transformers.js +1 -0
  21. package/dist/esm/index.js +1 -4
  22. package/dist/esm/src/index.js +1 -0
  23. package/dist/esm/src/props/animation.js +1 -0
  24. package/dist/esm/src/props/block.js +1 -0
  25. package/dist/esm/src/props/defaults.js +1 -0
  26. package/dist/esm/src/props/flex.js +1 -0
  27. package/dist/esm/src/props/font.js +1 -0
  28. package/dist/esm/src/props/grid.js +1 -0
  29. package/dist/esm/src/props/index.js +1 -0
  30. package/dist/esm/src/props/misc.js +1 -0
  31. package/dist/esm/src/props/position.js +1 -0
  32. package/dist/esm/src/props/theme.js +1 -0
  33. package/dist/esm/src/props/timing.js +1 -0
  34. package/dist/esm/src/set.js +1 -0
  35. package/dist/esm/src/transform/executors.js +1 -0
  36. package/dist/esm/src/transform/index.js +1 -0
  37. package/dist/esm/src/transform/transformers.js +1 -0
  38. package/package.json +19 -20
  39. package/dist/cjs/props/animation.js +0 -126
  40. package/dist/cjs/props/block.js +0 -173
  41. package/dist/cjs/props/defaults.js +0 -340
  42. package/dist/cjs/props/flex.js +0 -44
  43. package/dist/cjs/props/font.js +0 -36
  44. package/dist/cjs/props/grid.js +0 -39
  45. package/dist/cjs/props/index.js +0 -55
  46. package/dist/cjs/props/misc.js +0 -42
  47. package/dist/cjs/props/position.js +0 -51
  48. package/dist/cjs/props/theme.js +0 -147
  49. package/dist/cjs/props/timing.js +0 -42
  50. package/dist/cjs/set.js +0 -36
  51. package/dist/cjs/transform/executors.js +0 -131
  52. package/dist/cjs/transform/index.js +0 -19
  53. package/dist/cjs/transform/transformers.js +0 -156
  54. package/dist/esm/props/animation.js +0 -106
  55. package/dist/esm/props/block.js +0 -159
  56. package/dist/esm/props/defaults.js +0 -321
  57. package/dist/esm/props/flex.js +0 -24
  58. package/dist/esm/props/font.js +0 -16
  59. package/dist/esm/props/grid.js +0 -19
  60. package/dist/esm/props/index.js +0 -34
  61. package/dist/esm/props/misc.js +0 -22
  62. package/dist/esm/props/position.js +0 -31
  63. package/dist/esm/props/theme.js +0 -137
  64. package/dist/esm/props/timing.js +0 -26
  65. package/dist/esm/set.js +0 -16
  66. package/dist/esm/transform/executors.js +0 -111
  67. package/dist/esm/transform/index.js +0 -2
  68. package/dist/esm/transform/transformers.js +0 -136
  69. package/dist/iife/index.js +0 -1147
  70. package/index.js +0 -1
  71. package/src/index.js +0 -6
  72. package/src/props/animation.js +0 -119
  73. package/src/props/block.js +0 -183
  74. package/src/props/defaults.js +0 -318
  75. package/src/props/flex.js +0 -30
  76. package/src/props/font.js +0 -16
  77. package/src/props/grid.js +0 -21
  78. package/src/props/index.js +0 -35
  79. package/src/props/misc.js +0 -23
  80. package/src/props/position.js +0 -34
  81. package/src/props/theme.js +0 -155
  82. package/src/props/timing.js +0 -26
  83. package/src/set.js +0 -16
  84. package/src/transform/executors.js +0 -123
  85. package/src/transform/index.js +0 -4
  86. package/src/transform/transformers.js +0 -178
@@ -1,106 +0,0 @@
1
- import { isObject, isString } from "@symbo.ls/utils";
2
- import { keyframes as cssKeyframes } from "@symbo.ls/css";
3
- import { getTimingByKey, getTimingFunction } from "@symbo.ls/scratch";
4
- const TIMING_FUNCTIONS = ["ease", "linear", "ease-in", "ease-out", "ease-in-out", "step-start", "step-end"];
5
- const FILL_MODES = ["none", "forwards", "backwards", "both"];
6
- const DIRECTIONS = ["normal", "reverse", "alternate", "alternate-reverse"];
7
- const PLAY_STATES = ["running", "paused"];
8
- const isDuration = (v) => /^[\d.]+m?s$/.test(v);
9
- let _animCounter = 0;
10
- const applyAnimationProps = (animation, element) => {
11
- const { animation: ANIMATION } = element.context && element.context.designSystem || {};
12
- if (isObject(animation)) {
13
- const name = `smbls-anim-${_animCounter++}`;
14
- return { animationName: cssKeyframes(name, animation) };
15
- }
16
- const record = ANIMATION && ANIMATION[animation];
17
- if (isObject(record)) {
18
- return cssKeyframes(animation, record);
19
- }
20
- return animation;
21
- };
22
- const parseAnimationShorthand = (val, el) => {
23
- const { animation: ANIMATION } = el.context && el.context.designSystem || {};
24
- const tokens = val.split(/\s+/);
25
- let name = null;
26
- const durations = [];
27
- let timingFunction = null;
28
- let iterationCount = null;
29
- let direction = null;
30
- let fillMode = null;
31
- let playState = null;
32
- for (const token of tokens) {
33
- if (ANIMATION && ANIMATION[token]) {
34
- name = token;
35
- } else if (isDuration(token)) {
36
- durations.push(token);
37
- } else if (TIMING_FUNCTIONS.includes(token) || token.startsWith("cubic-bezier") || token.startsWith("steps(")) {
38
- timingFunction = token;
39
- } else if (token === "infinite" || /^\d+$/.test(token)) {
40
- iterationCount = token === "infinite" ? token : Number(token);
41
- } else if (DIRECTIONS.includes(token)) {
42
- direction = token;
43
- } else if (FILL_MODES.includes(token)) {
44
- fillMode = token;
45
- } else if (PLAY_STATES.includes(token)) {
46
- playState = token;
47
- } else if (!name) {
48
- name = token;
49
- }
50
- }
51
- return { name, durations, timingFunction, iterationCount, direction, fillMode, playState };
52
- };
53
- const ANIMATION_PROPS = {
54
- animation: (val, el) => {
55
- if (isString(val) && val.includes(" ")) {
56
- const parsed = parseAnimationShorthand(val, el);
57
- return {
58
- animationName: applyAnimationProps(parsed.name || val, el),
59
- animationDuration: parsed.durations[0] || getTimingByKey(el.animationDuration || "A").timing,
60
- animationDelay: parsed.durations[1] || getTimingByKey(el.animationDelay || "0s").timing,
61
- animationTimingFunction: parsed.timingFunction || getTimingFunction(el.animationTimingFunction || "ease"),
62
- animationFillMode: parsed.fillMode || el.animationFillMode || "both",
63
- animationIterationCount: parsed.iterationCount != null ? parsed.iterationCount : el.animationIterationCount || 1,
64
- animationPlayState: parsed.playState || el.animationPlayState,
65
- animationDirection: parsed.direction || el.animationDirection
66
- };
67
- }
68
- return {
69
- animationName: applyAnimationProps(val, el),
70
- animationDuration: getTimingByKey(el.animationDuration || "A").timing,
71
- animationDelay: getTimingByKey(el.animationDelay || "0s").timing,
72
- animationTimingFunction: getTimingFunction(el.animationTimingFunction || "ease"),
73
- animationFillMode: el.animationFillMode || "both",
74
- animationIterationCount: el.animationIterationCount || 1,
75
- animationPlayState: el.animationPlayState,
76
- animationDirection: el.animationDirection
77
- };
78
- },
79
- animationName: (val, el) => ({
80
- animationName: applyAnimationProps(val, el)
81
- }),
82
- animationDuration: (val) => ({
83
- animationDuration: getTimingByKey(val).timing
84
- }),
85
- animationDelay: (val) => ({
86
- animationDelay: getTimingByKey(val).timing
87
- }),
88
- animationTimingFunction: (val) => ({
89
- animationTimingFunction: getTimingFunction(val)
90
- }),
91
- animationIterationCount: (val) => ({
92
- animationIterationCount: val
93
- }),
94
- animationFillMode: (val) => ({
95
- animationFillMode: val
96
- }),
97
- animationPlayState: (val) => ({
98
- animationPlayState: val
99
- }),
100
- animationDirection: (val) => ({
101
- animationDirection: val
102
- })
103
- };
104
- export {
105
- ANIMATION_PROPS
106
- };
@@ -1,159 +0,0 @@
1
- import { isUndefined, isString } from "@symbo.ls/utils";
2
- import {
3
- getSpacingBasedOnRatio,
4
- transformSize,
5
- transformBorderRadius,
6
- transformSizeRatio,
7
- transfromGap
8
- } from "@symbo.ls/scratch";
9
- const BLOCK_PROPS = {
10
- show: (val) => !val ? { display: "none !important" } : void 0,
11
- hide: (val) => val ? { display: "none !important" } : void 0,
12
- height: (val, el) => transformSizeRatio("height", val, el),
13
- width: (val, el) => transformSizeRatio("width", val, el),
14
- boxSizing: (val) => !isUndefined(val) ? { boxSizing: val } : { boxSizing: "border-box" },
15
- boxSize: (val) => {
16
- if (!isString(val)) return;
17
- const [height, width] = val.split(" ");
18
- return {
19
- ...transformSize("height", height),
20
- ...transformSize("width", width || height)
21
- };
22
- },
23
- inlineSize: (val, el) => transformSizeRatio("inlineSize", val, el),
24
- blockSize: (val, el) => transformSizeRatio("blockSize", val, el),
25
- minWidth: (val, el) => transformSizeRatio("minWidth", val, el),
26
- maxWidth: (val, el) => transformSizeRatio("maxWidth", val, el),
27
- widthRange: (val) => {
28
- if (!isString(val)) return;
29
- const [minWidth, maxWidth] = val.split(" ");
30
- return {
31
- ...transformSize("minWidth", minWidth),
32
- ...transformSize("maxWidth", maxWidth || minWidth)
33
- };
34
- },
35
- minHeight: (val, el) => transformSizeRatio("minHeight", val, el),
36
- maxHeight: (val, el) => transformSizeRatio("maxHeight", val, el),
37
- heightRange: (val) => {
38
- if (!isString(val)) return;
39
- const [minHeight, maxHeight] = val.split(" ");
40
- return {
41
- ...transformSize("minHeight", minHeight),
42
- ...transformSize("maxHeight", maxHeight || minHeight)
43
- };
44
- },
45
- size: (val) => {
46
- if (!isString(val)) return;
47
- const [inlineSize, blockSize] = val.split(" ");
48
- return {
49
- ...transformSizeRatio("inlineSize", inlineSize),
50
- ...transformSizeRatio("blockSize", blockSize || inlineSize)
51
- };
52
- },
53
- minBlockSize: (val, el) => transformSizeRatio("minBlockSize", val, el),
54
- minInlineSize: (val, el) => transformSizeRatio("minInlineSize", val, el),
55
- maxBlockSize: (val, el) => transformSizeRatio("maxBlockSize", val, el),
56
- maxInlineSize: (val, el) => transformSizeRatio("maxInlineSize", val, el),
57
- minSize: (val) => {
58
- if (!isString(val)) return;
59
- const [minInlineSize, minBlockSize] = val.split(" ");
60
- return {
61
- ...transformSize("minInlineSize", minInlineSize),
62
- ...transformSize("minBlockSize", minBlockSize || minInlineSize)
63
- };
64
- },
65
- maxSize: (val) => {
66
- if (!isString(val)) return;
67
- const [maxInlineSize, maxBlockSize] = val.split(" ");
68
- return {
69
- ...transformSize("maxInlineSize", maxInlineSize),
70
- ...transformSize("maxBlockSize", maxBlockSize || maxInlineSize)
71
- };
72
- },
73
- borderWidth: (val, el) => transformSizeRatio("borderWidth", val, el),
74
- padding: (val, el) => transformSizeRatio("padding", val, el),
75
- scrollPadding: (val, el) => transformSizeRatio("scrollPadding", val, el),
76
- paddingInline: (val) => {
77
- if (!isString(val)) return;
78
- const [paddingInlineStart, paddingInlineEnd] = val.split(" ");
79
- return {
80
- ...transformSize("paddingInlineStart", paddingInlineStart),
81
- ...transformSize("paddingInlineEnd", paddingInlineEnd || paddingInlineStart)
82
- };
83
- },
84
- paddingBlock: (val) => {
85
- if (!isString(val)) return;
86
- const [paddingBlockStart, paddingBlockEnd] = val.split(" ");
87
- return {
88
- ...transformSize("paddingBlockStart", paddingBlockStart),
89
- ...transformSize("paddingBlockEnd", paddingBlockEnd || paddingBlockStart)
90
- };
91
- },
92
- paddingTop: (val, el) => transformSizeRatio("paddingBlockStart", val, el),
93
- paddingBottom: (val, el) => transformSizeRatio("paddingBlockEnd", val, el),
94
- paddingLeft: (val, el) => transformSizeRatio("paddingInlineStart", val, el),
95
- paddingRight: (val, el) => transformSizeRatio("paddingInlineEnd", val, el),
96
- paddingBlockStart: (val, el) => transformSizeRatio("paddingBlockStart", val, el),
97
- paddingBlockEnd: (val, el) => transformSizeRatio("paddingBlockEnd", val, el),
98
- paddingInlineStart: (val, el) => transformSizeRatio("paddingInlineStart", val, el),
99
- paddingInlineEnd: (val, el) => transformSizeRatio("paddingInlineEnd", val, el),
100
- margin: (val, el) => transformSizeRatio("margin", val, el),
101
- marginInline: (val) => {
102
- if (!isString(val)) return;
103
- const [marginInlineStart, marginInlineEnd] = val.split(" ");
104
- return {
105
- ...transformSize("marginInlineStart", marginInlineStart),
106
- ...transformSize("marginInlineEnd", marginInlineEnd || marginInlineStart)
107
- };
108
- },
109
- marginBlock: (val, el) => {
110
- if (!isString(el.marginBlock)) return;
111
- const [marginBlockStart, marginBlockEnd] = el.marginBlock.split(" ");
112
- return {
113
- ...transformSize("marginBlockStart", marginBlockStart),
114
- ...transformSize("marginBlockEnd", marginBlockEnd || marginBlockStart)
115
- };
116
- },
117
- marginTop: (val, el) => transformSizeRatio("marginBlockStart", val, el),
118
- marginBottom: (val, el) => transformSizeRatio("marginBlockEnd", val, el),
119
- marginLeft: (val, el) => transformSizeRatio("marginInlineStart", val, el),
120
- marginRight: (val, el) => transformSizeRatio("marginInlineEnd", val, el),
121
- marginInlineStart: (val, el) => transformSizeRatio("marginInlineStart", val, el),
122
- marginInlineEnd: (val, el) => transformSizeRatio("marginInlineEnd", val, el),
123
- marginBlockStart: (val, el) => transformSizeRatio("marginBlockStart", val, el),
124
- marginBlockEnd: (val, el) => transformSizeRatio("marginBlockEnd", val, el),
125
- gap: (val) => ({
126
- gap: transfromGap(val)
127
- }),
128
- columnGap: (val, el) => getSpacingBasedOnRatio(el, "columnGap", val),
129
- rowGap: (val, el) => getSpacingBasedOnRatio(el, "rowGap", val),
130
- flexWrap: (val) => ({
131
- display: "flex",
132
- flexWrap: val
133
- }),
134
- flexFlow: (val, el) => {
135
- const reverse = el.reverse;
136
- if (!isString(val)) return;
137
- let [direction, wrap] = (val || "row").split(" ");
138
- if (val.startsWith("x") || val === "row") direction = "row";
139
- if (val.startsWith("y") || val === "column") direction = "column";
140
- return {
141
- display: "flex",
142
- flexFlow: (direction || "") + (!direction.includes("-reverse") && reverse ? "-reverse" : "") + " " + (wrap || "")
143
- };
144
- },
145
- flexAlign: (val) => {
146
- if (!isString(val)) return;
147
- const [alignItems, justifyContent] = val.split(" ");
148
- return {
149
- display: "flex",
150
- alignItems,
151
- justifyContent
152
- };
153
- },
154
- round: (val, el) => transformBorderRadius(val ?? el.borderRadius, el, "round"),
155
- borderRadius: (val, el) => transformBorderRadius(val ?? el.round, el, "borderRadius")
156
- };
157
- export {
158
- BLOCK_PROPS
159
- };
@@ -1,321 +0,0 @@
1
- const DEFAULT_CSS_PROPERTIES_LIST = /* @__PURE__ */ new Set([
2
- "accentColor",
3
- "alignContent",
4
- "alignItems",
5
- "alignSelf",
6
- "alignmentBaseline",
7
- "all",
8
- "animation",
9
- "animationDelay",
10
- "animationDirection",
11
- "animationDuration",
12
- "animationFillMode",
13
- "animationIterationCount",
14
- "animationName",
15
- "animationPlayState",
16
- "animationTimingFunction",
17
- "appearance",
18
- "aspectRatio",
19
- "backdropFilter",
20
- "backfaceVisibility",
21
- "background",
22
- "backgroundAttachment",
23
- "backgroundBlendMode",
24
- "backgroundClip",
25
- "backgroundColor",
26
- "backgroundImage",
27
- "backgroundOrigin",
28
- "backgroundPosition",
29
- "backgroundPositionX",
30
- "backgroundPositionY",
31
- "backgroundRepeat",
32
- "backgroundRepeatX",
33
- "backgroundRepeatY",
34
- "backgroundSize",
35
- "baselineShift",
36
- "blockSize",
37
- "border",
38
- "borderBlock",
39
- "borderBlockColor",
40
- "borderBlockEnd",
41
- "borderBlockEndColor",
42
- "borderBlockEndStyle",
43
- "borderBlockEndWidth",
44
- "borderBlockStart",
45
- "borderBlockStartColor",
46
- "borderBlockStartStyle",
47
- "borderBlockStartWidth",
48
- "borderBlockStyle",
49
- "borderBlockWidth",
50
- "borderBottom",
51
- "borderBottomColor",
52
- "borderBottomLeftRadius",
53
- "borderBottomRightRadius",
54
- "borderBottomStyle",
55
- "borderBottomWidth",
56
- "borderCollapse",
57
- "borderColor",
58
- "borderImage",
59
- "borderImageOutset",
60
- "borderImageRepeat",
61
- "borderImageSlice",
62
- "borderImageSource",
63
- "borderImageWidth",
64
- "borderLeft",
65
- "borderLeftColor",
66
- "borderLeftStyle",
67
- "borderLeftWidth",
68
- "borderRadius",
69
- "borderRight",
70
- "borderRightColor",
71
- "borderRightStyle",
72
- "borderRightWidth",
73
- "borderSpacing",
74
- "borderStyle",
75
- "borderTop",
76
- "borderTopColor",
77
- "borderTopLeftRadius",
78
- "borderTopRightRadius",
79
- "borderTopStyle",
80
- "borderTopWidth",
81
- "borderWidth",
82
- "bottom",
83
- "boxDecorationBreak",
84
- "boxShadow",
85
- "boxSizing",
86
- "breakAfter",
87
- "breakBefore",
88
- "breakInside",
89
- "captionSide",
90
- "caretColor",
91
- "clear",
92
- "clip",
93
- "clipPath",
94
- "color",
95
- "colorAdjust",
96
- "colorInterpolation",
97
- "colorInterpolationFilters",
98
- "colorRendering",
99
- "columnCount",
100
- "columnFill",
101
- "columnGap",
102
- "columnRule",
103
- "columnRuleColor",
104
- "columnRuleStyle",
105
- "columnRuleWidth",
106
- "columnSpan",
107
- "columnWidth",
108
- "columns",
109
- "contain",
110
- "content",
111
- "counterIncrement",
112
- "counterReset",
113
- "cursor",
114
- "direction",
115
- "display",
116
- "emptyCells",
117
- "filter",
118
- "flex",
119
- "flexBasis",
120
- "flexDirection",
121
- "flexFlow",
122
- "flexGrow",
123
- "flexShrink",
124
- "flexWrap",
125
- "float",
126
- "font",
127
- "fontFamily",
128
- "fontFeatureSettings",
129
- "fontKerning",
130
- "fontLanguageOverride",
131
- "fontSize",
132
- "fontSizeAdjust",
133
- "fontStretch",
134
- "fontStyle",
135
- "fontVariant",
136
- "fontVariantAlternates",
137
- "fontVariantCaps",
138
- "fontVariantEastAsian",
139
- "fontVariantNumeric",
140
- "fontVariantPosition",
141
- "fontWeight",
142
- "fontVariationSettings",
143
- "fontSynthesis",
144
- "forcedColorAdjust",
145
- "gap",
146
- "grid",
147
- "gridArea",
148
- "gridAutoColumns",
149
- "gridAutoFlow",
150
- "gridAutoRows",
151
- "gridColumn",
152
- "gridColumnEnd",
153
- "gridColumnGap",
154
- "gridColumnStart",
155
- "gridGap",
156
- "gridRow",
157
- "gridRowEnd",
158
- "gridRowGap",
159
- "gridRowStart",
160
- "gridTemplate",
161
- "gridTemplateAreas",
162
- "gridTemplateColumns",
163
- "gridTemplateRows",
164
- "height",
165
- "hyphens",
166
- "imageOrientation",
167
- "imageRendering",
168
- "imeMode",
169
- "inset",
170
- "insetBlock",
171
- "insetBlockEnd",
172
- "insetBlockStart",
173
- "insetInline",
174
- "insetInlineEnd",
175
- "insetInlineStart",
176
- "initialLetter",
177
- "isolation",
178
- "justifyContent",
179
- "justifyItems",
180
- "justifySelf",
181
- "left",
182
- "letterSpacing",
183
- "lineBreak",
184
- "lineClamp",
185
- "lineHeight",
186
- "listStyle",
187
- "listStyleImage",
188
- "listStylePosition",
189
- "listStyleType",
190
- "margin",
191
- "marginBottom",
192
- "marginLeft",
193
- "marginRight",
194
- "marginTop",
195
- "marginBlock",
196
- "marginBlockEnd",
197
- "marginBlockStart",
198
- "marginInline",
199
- "marginInlineEnd",
200
- "marginInlineStart",
201
- "mask",
202
- "maskBorder",
203
- "maskBorderImage",
204
- "maskBorderOutset",
205
- "maskBorderRepeat",
206
- "maskBorderSlice",
207
- "maskBorderSource",
208
- "maskBorderWidth",
209
- "maskClip",
210
- "maskComposite",
211
- "maskImage",
212
- "maskOrigin",
213
- "maskPosition",
214
- "maskRepeat",
215
- "maskSize",
216
- "maskType",
217
- "maxBlockSize",
218
- "maxHeight",
219
- "maxInlineSize",
220
- "maxWidth",
221
- "minBlockSize",
222
- "minHeight",
223
- "minInlineSize",
224
- "minWidth",
225
- "mixBlendMode",
226
- "objectFit",
227
- "objectPosition",
228
- "objectViewBox",
229
- "offset",
230
- "offsetDistance",
231
- "offsetPath",
232
- "offsetRotate",
233
- "opacity",
234
- "order",
235
- "orientation",
236
- "outline",
237
- "outlineColor",
238
- "outlineOffset",
239
- "outlineStyle",
240
- "outlineWidth",
241
- "overflow",
242
- "overflowAnchor",
243
- "overflowClip",
244
- "overflowScrolling",
245
- "overflowWrap",
246
- "overflowX",
247
- "overflowY",
248
- "padding",
249
- "paddingBottom",
250
- "paddingLeft",
251
- "paddingRight",
252
- "paddingTop",
253
- "pageBreakAfter",
254
- "pageBreakBefore",
255
- "pageBreakInside",
256
- "paintOrder",
257
- "perspective",
258
- "perspectiveOrigin",
259
- "placeContent",
260
- "placeItems",
261
- "placeSelf",
262
- "pointerEvents",
263
- "position",
264
- "resize",
265
- "right",
266
- "rotate",
267
- "rowGap",
268
- "scrollBehavior",
269
- "scrollPadding",
270
- "scrollSnapAlign",
271
- "scrollSnapType",
272
- "scrollbarColor",
273
- "scrollbarWidth",
274
- "shapeImageThreshold",
275
- "shapeMargin",
276
- "shapeOutside",
277
- "tabSize",
278
- "tableLayout",
279
- "textAlign",
280
- "textAlignLast",
281
- "textDecoration",
282
- "textDecorationColor",
283
- "textDecorationLine",
284
- "textDecorationSkipInk",
285
- "textDecorationStyle",
286
- "textDecorationThickness",
287
- "textIndent",
288
- "textOverflow",
289
- "textShadow",
290
- "textTransform",
291
- "textUnderlineOffset",
292
- "top",
293
- "transform",
294
- "transformOrigin",
295
- "transformStyle",
296
- "transition",
297
- "transitionDelay",
298
- "transitionDuration",
299
- "transitionProperty",
300
- "transitionTimingFunction",
301
- "translate",
302
- "translateX",
303
- "translateY",
304
- "translateZ",
305
- "unicodeBidi",
306
- "userSelect",
307
- "verticalAlign",
308
- "visibility",
309
- "whiteSpace",
310
- "widows",
311
- "width",
312
- "willChange",
313
- "wordBreak",
314
- "wordSpacing",
315
- "wordWrap",
316
- "writingMode",
317
- "zIndex"
318
- ]);
319
- export {
320
- DEFAULT_CSS_PROPERTIES_LIST
321
- };
@@ -1,24 +0,0 @@
1
- import { isString } from "@symbo.ls/utils";
2
- const FLEX_PROPS = {
3
- flow: (value, el) => {
4
- const reverse = el.reverse;
5
- if (!isString(value)) return;
6
- let [direction, wrap] = (value || "row").split(" ");
7
- if (value.startsWith("x") || value === "row") direction = "row";
8
- if (value.startsWith("y") || value === "column") direction = "column";
9
- return {
10
- display: "flex",
11
- flexFlow: (direction || "") + (!direction.includes("-reverse") && reverse ? "-reverse" : "") + " " + (wrap || "")
12
- };
13
- },
14
- wrap: (value, el) => {
15
- return { display: "flex", flexWrap: value };
16
- },
17
- align: (value, el) => {
18
- const [alignItems, justifyContent] = value.split(" ");
19
- return { display: "flex", alignItems, justifyContent };
20
- }
21
- };
22
- export {
23
- FLEX_PROPS
24
- };
@@ -1,16 +0,0 @@
1
- import { getFontSizeByKey, getFontFamily } from "@symbo.ls/scratch";
2
- const FONT_PROPS = {
3
- fontSize: (value) => {
4
- return getFontSizeByKey(value) || value;
5
- },
6
- fontFamily: (value) => ({
7
- fontFamily: getFontFamily(value) || value
8
- }),
9
- fontWeight: (value) => ({
10
- fontWeight: value,
11
- fontVariationSettings: '"wght" ' + value
12
- })
13
- };
14
- export {
15
- FONT_PROPS
16
- };
@@ -1,19 +0,0 @@
1
- const GRID_PROPS = {
2
- area: (value) => ({ gridArea: value }),
3
- template: (value) => ({ gridTemplate: value }),
4
- templateAreas: (value) => ({ gridTemplateAreas: value }),
5
- column: (value) => ({ gridColumn: value }),
6
- columns: (value) => ({ gridTemplateColumns: value }),
7
- templateColumns: (value) => ({ gridTemplateColumns: value }),
8
- autoColumns: (value) => ({ gridAutoColumns: value }),
9
- columnStart: (value) => ({ gridColumnStart: value }),
10
- row: (value) => ({ gridRow: value }),
11
- rows: (value) => ({ gridTemplateRows: value }),
12
- templateRows: (value) => ({ gridTemplateRows: value }),
13
- autoRows: (value) => ({ gridAutoRows: value }),
14
- rowStart: (value) => ({ gridRowStart: value }),
15
- autoFlow: (value) => ({ gridAutoFlow: value })
16
- };
17
- export {
18
- GRID_PROPS
19
- };
@@ -1,34 +0,0 @@
1
- import { ANIMATION_PROPS } from "./animation.js";
2
- import { BLOCK_PROPS } from "./block.js";
3
- import { FONT_PROPS } from "./font.js";
4
- import { MISC_PROPS } from "./misc.js";
5
- import { POSITION_PROPS } from "./position.js";
6
- import { THEME_PROPS } from "./theme.js";
7
- import { TIMING_PROPS } from "./timing.js";
8
- import { FLEX_PROPS } from "./flex.js";
9
- import { GRID_PROPS } from "./grid.js";
10
- export * from "./animation.js";
11
- export * from "./block.js";
12
- export * from "./font.js";
13
- export * from "./misc.js";
14
- export * from "./position.js";
15
- export * from "./theme.js";
16
- export * from "./timing.js";
17
- export * from "./flex.js";
18
- export * from "./grid.js";
19
- const CSS_PROPS_REGISTRY = {
20
- ...ANIMATION_PROPS,
21
- ...BLOCK_PROPS,
22
- ...FONT_PROPS,
23
- ...MISC_PROPS,
24
- ...POSITION_PROPS,
25
- ...THEME_PROPS,
26
- ...TIMING_PROPS,
27
- ...FLEX_PROPS,
28
- ...GRID_PROPS
29
- };
30
- var props_default = CSS_PROPS_REGISTRY;
31
- export {
32
- CSS_PROPS_REGISTRY,
33
- props_default as default
34
- };