css-in-props 3.14.0 → 3.14.1

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 (38) hide show
  1. package/README.md +1 -1
  2. package/dist/cjs/{props/defaults.js → defaults.js} +2 -2
  3. package/dist/cjs/{transform/index.js → emotion.js} +15 -5
  4. package/dist/cjs/index.js +21 -4
  5. package/dist/cjs/package.json +4 -0
  6. package/dist/cjs/props/animation.js +24 -93
  7. package/dist/cjs/props/block.js +78 -84
  8. package/dist/cjs/props/font.js +8 -7
  9. package/dist/cjs/props/index.js +7 -38
  10. package/dist/cjs/props/misc.js +9 -15
  11. package/dist/cjs/props/position.js +17 -14
  12. package/dist/cjs/props/theme.js +77 -77
  13. package/dist/cjs/props/timing.js +11 -11
  14. package/dist/cjs/registry.js +39 -0
  15. package/dist/cjs/set.js +6 -13
  16. package/dist/cjs/transform.js +80 -0
  17. package/package.json +1 -1
  18. package/dist/cjs/props/flex.js +0 -44
  19. package/dist/cjs/props/grid.js +0 -39
  20. package/dist/cjs/transform/executors.js +0 -131
  21. package/dist/cjs/transform/transformers.js +0 -156
  22. package/dist/esm/index.js +0 -4
  23. package/dist/esm/props/animation.js +0 -106
  24. package/dist/esm/props/block.js +0 -159
  25. package/dist/esm/props/defaults.js +0 -321
  26. package/dist/esm/props/flex.js +0 -24
  27. package/dist/esm/props/font.js +0 -16
  28. package/dist/esm/props/grid.js +0 -19
  29. package/dist/esm/props/index.js +0 -34
  30. package/dist/esm/props/misc.js +0 -22
  31. package/dist/esm/props/position.js +0 -31
  32. package/dist/esm/props/theme.js +0 -137
  33. package/dist/esm/props/timing.js +0 -26
  34. package/dist/esm/set.js +0 -16
  35. package/dist/esm/transform/executors.js +0 -111
  36. package/dist/esm/transform/index.js +0 -2
  37. package/dist/esm/transform/transformers.js +0 -136
  38. package/dist/iife/index.js +0 -1147
@@ -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
- };
@@ -1,22 +0,0 @@
1
- const MISC_PROPS = {
2
- overflow: (value) => ({
3
- overflow: value,
4
- scrollBehavior: "smooth"
5
- }),
6
- cursor: (value, el, s, ctx) => {
7
- if (!value) return;
8
- const asset = ctx.assets && ctx.assets[value];
9
- if (asset && asset.content) value = `url(${asset.content.src})`;
10
- else {
11
- const file = ctx.files && ctx.files[value];
12
- if (file && file.content) value = `url(${file.content.src})`;
13
- }
14
- return { cursor: value };
15
- },
16
- opacity: (value) => value != null ? { opacity: String(value) } : void 0,
17
- visibility: (value) => value != null ? { visibility: value } : void 0,
18
- pointerEvents: (value) => value != null ? { pointerEvents: value } : void 0
19
- };
20
- export {
21
- MISC_PROPS
22
- };
@@ -1,31 +0,0 @@
1
- import { getSpacingByKey } from "@symbo.ls/scratch";
2
- const POSITION_PROPS = {
3
- inset: (val, el) => {
4
- if (el.call("isNumber", val)) return { inset: val };
5
- if (!el.call("isString", val)) return;
6
- return { inset: val.split(" ").map((v) => getSpacingByKey(v, "k").k).join(" ") };
7
- },
8
- left: (val) => getSpacingByKey(val, "left"),
9
- top: (val) => getSpacingByKey(val, "top"),
10
- right: (val) => getSpacingByKey(val, "right"),
11
- bottom: (val) => getSpacingByKey(val, "bottom"),
12
- verticalInset: (val) => {
13
- if (typeof val !== "string") return;
14
- const vi = val.split(" ").map((v) => getSpacingByKey(v, "k").k);
15
- return {
16
- top: vi[0],
17
- bottom: vi[1] || vi[0]
18
- };
19
- },
20
- horizontalInset: (val) => {
21
- if (typeof val !== "string") return;
22
- const vi = val.split(" ").map((v) => getSpacingByKey(v, "k").k);
23
- return {
24
- left: vi[0],
25
- right: vi[1] || vi[0]
26
- };
27
- }
28
- };
29
- export {
30
- POSITION_PROPS
31
- };
@@ -1,137 +0,0 @@
1
- import {
2
- getMediaTheme,
3
- getMediaColor,
4
- transformTextStroke,
5
- transformShadow,
6
- transformBoxShadow,
7
- transformBorder,
8
- transformBackgroundImage,
9
- resolveColorsInGradient,
10
- transformSizeRatio
11
- } from "@symbo.ls/scratch";
12
- import { isDefined, isString } from "@symbo.ls/utils";
13
- const getSystemGlobalTheme = ({ context, state }) => {
14
- const theme = state?.root?.globalTheme || context.designSystem?.globalTheme;
15
- return theme === "auto" ? null : theme;
16
- };
17
- const THEME_PROPS = {
18
- theme: (val, element) => {
19
- if (!val) return;
20
- if (element.themeModifier) {
21
- return getMediaTheme(val, `@${element.themeModifier}`);
22
- }
23
- return getMediaTheme(val);
24
- },
25
- color: (val, element) => {
26
- const globalTheme = getSystemGlobalTheme(element);
27
- if (!val) return;
28
- return {
29
- color: getMediaColor(val, globalTheme)
30
- };
31
- },
32
- background: (val, element) => {
33
- const globalTheme = getSystemGlobalTheme(element);
34
- if (!val) return;
35
- if (isString(val) && val.includes("gradient")) {
36
- return { background: resolveColorsInGradient(val, globalTheme) };
37
- }
38
- return {
39
- background: getMediaColor(val, globalTheme)
40
- };
41
- },
42
- backgroundColor: (val, element) => {
43
- const globalTheme = getSystemGlobalTheme(element);
44
- if (!val) return;
45
- return {
46
- backgroundColor: getMediaColor(val, globalTheme)
47
- };
48
- },
49
- backgroundImage: (val, element, s, ctx) => {
50
- const globalTheme = getSystemGlobalTheme(element);
51
- if (!val) return;
52
- const asset = ctx.assets && ctx.assets[val];
53
- if (asset && asset.content) val = asset.content.src;
54
- else {
55
- const file = ctx.files && ctx.files[val];
56
- if (file && file.content) val = file.content.src;
57
- }
58
- return {
59
- backgroundImage: transformBackgroundImage(val, globalTheme)
60
- };
61
- },
62
- textStroke: (val) => ({
63
- WebkitTextStroke: transformTextStroke(val)
64
- }),
65
- outline: (val) => ({
66
- outline: transformBorder(val)
67
- }),
68
- outlineOffset: (val, el) => transformSizeRatio("outlineOffset", val, el),
69
- border: (val) => ({
70
- border: transformBorder(val)
71
- }),
72
- borderColor: (val, element) => {
73
- const globalTheme = getSystemGlobalTheme(element);
74
- if (!val) return;
75
- return {
76
- borderColor: getMediaColor(val, globalTheme)
77
- };
78
- },
79
- borderTopColor: (val, element) => {
80
- const globalTheme = getSystemGlobalTheme(element);
81
- if (!val) return;
82
- return { borderTopColor: getMediaColor(val, globalTheme) };
83
- },
84
- borderBottomColor: (val, element) => {
85
- const globalTheme = getSystemGlobalTheme(element);
86
- if (!val) return;
87
- return { borderBottomColor: getMediaColor(val, globalTheme) };
88
- },
89
- borderLeftColor: (val, element) => {
90
- const globalTheme = getSystemGlobalTheme(element);
91
- if (!val) return;
92
- return { borderLeftColor: getMediaColor(val, globalTheme) };
93
- },
94
- borderRightColor: (val, element) => {
95
- const globalTheme = getSystemGlobalTheme(element);
96
- if (!val) return;
97
- return { borderRightColor: getMediaColor(val, globalTheme) };
98
- },
99
- borderLeft: (val) => ({
100
- borderLeft: transformBorder(val)
101
- }),
102
- borderTop: (val) => ({
103
- borderTop: transformBorder(val)
104
- }),
105
- borderRight: (val) => ({
106
- borderRight: transformBorder(val)
107
- }),
108
- borderBottom: (val) => ({
109
- borderBottom: transformBorder(val)
110
- }),
111
- shadow: (val, element) => {
112
- const globalTheme = getSystemGlobalTheme(element);
113
- if (!val) return;
114
- return {
115
- boxShadow: transformShadow(val, globalTheme)
116
- };
117
- },
118
- boxShadow: (val, element) => {
119
- if (!isString(val)) return;
120
- const [value, hasImportant] = val.split("!importan");
121
- const globalTheme = getSystemGlobalTheme(element);
122
- const important = hasImportant ? " !important" : "";
123
- return {
124
- boxShadow: transformBoxShadow(value.trim(), globalTheme) + important
125
- };
126
- },
127
- textShadow: (val, { context }) => ({
128
- textShadow: transformBoxShadow(val, context.designSystem.globalTheme)
129
- }),
130
- columnRule: (val) => ({
131
- columnRule: transformBorder(val)
132
- })
133
- };
134
- export {
135
- THEME_PROPS,
136
- getSystemGlobalTheme
137
- };
@@ -1,26 +0,0 @@
1
- import {
2
- getTimingFunction,
3
- splitTransition,
4
- transformDuration
5
- } from "@symbo.ls/scratch";
6
- const TIMING_PROPS = {
7
- transition: (val) => ({
8
- transition: splitTransition(val)
9
- }),
10
- transitionDuration: (val) => ({
11
- transitionDuration: transformDuration(val)
12
- }),
13
- transitionDelay: (val) => ({
14
- transitionDelay: transformDuration(val)
15
- }),
16
- transitionTimingFunction: (val) => ({
17
- transitionTimingFunction: getTimingFunction(val)
18
- }),
19
- transitionProperty: (val) => ({
20
- transitionProperty: val,
21
- willChange: val
22
- })
23
- };
24
- export {
25
- TIMING_PROPS
26
- };
package/dist/esm/set.js DELETED
@@ -1,16 +0,0 @@
1
- import { isObject } from "@symbo.ls/utils";
2
- import { useCssInProps } from "./transform/index.js";
3
- import { css } from "@symbo.ls/css";
4
- const transformClassname = (element) => {
5
- if (!isObject(element)) return;
6
- return useCssInProps(element, element);
7
- };
8
- const setClassname = (props, cssEngine) => {
9
- const transform = transformClassname(props);
10
- if (typeof cssEngine === "function") return cssEngine(transform);
11
- return css(transform);
12
- };
13
- export {
14
- setClassname,
15
- transformClassname
16
- };