@likec4/styles 1.48.0 → 1.50.0
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/css/conditions.mjs +1 -1
- package/dist/jsx/is-valid-prop.mjs +2 -2
- package/dist/recipes/element-shape-recipe.d.mts +4 -0
- package/dist/recipes/element-shape-recipe.mjs +6 -1
- package/dist/recipes/index.d.mts +1 -0
- package/dist/recipes/index.mjs +1 -0
- package/dist/recipes/node-notes.d.mts +34 -0
- package/dist/recipes/node-notes.mjs +31 -0
- package/dist/tokens/index.mjs +116 -16
- package/dist/tokens/tokens.d.mts +7 -4
- package/dist/types/conditions.d.mts +3 -5
- package/dist/types/csstype.d.mts +6405 -5133
- package/dist/types/prop-type.d.mts +18 -2
- package/dist/types/style-props.d.mts +2768 -2183
- package/dist/types/system-types.d.mts +14 -132
- package/package.json +30 -33
- package/{dist → preset}/_chunks/libs/@radix-ui/colors.mjs +1 -5
- package/preset/_chunks/libs/pandacss-preset-radix-colors.mjs +147 -0
- package/{dist → preset}/_chunks/libs/remeda.mjs +31 -69
- package/preset/_chunks/rolldown-runtime.mjs +11 -0
- package/preset/package.json +2 -2
- package/{dist → preset}/preset.d.mts +231 -32
- package/{dist → preset}/preset.mjs +525 -421
- package/vars/package.json +2 -2
- package/vars/vars.mjs +415 -0
- package/dist/_chunks/libs/pandacss-preset-radix-colors.mjs +0 -106
- package/dist/_chunks/rolldown-runtime.mjs +0 -18
- package/dist/vars/index.mjs +0 -426
- /package/{dist/vars/index.d.mts → vars/vars.d.mts} +0 -0
|
@@ -53,6 +53,7 @@ export interface UtilityValues {
|
|
|
53
53
|
marginInlineStart: "auto" | Tokens["spacing"];
|
|
54
54
|
spaceX: "auto" | Tokens["spacing"];
|
|
55
55
|
spaceY: "auto" | Tokens["spacing"];
|
|
56
|
+
outlineWidth: Tokens["borderWidths"];
|
|
56
57
|
outlineColor: Tokens["colors"];
|
|
57
58
|
outline: Tokens["borders"];
|
|
58
59
|
outlineOffset: Tokens["spacing"];
|
|
@@ -60,6 +61,9 @@ export interface UtilityValues {
|
|
|
60
61
|
focusVisibleRing: "outside" | "inside" | "mixed" | "none";
|
|
61
62
|
focusRingColor: Tokens["colors"];
|
|
62
63
|
focusRingOffset: Tokens["spacing"];
|
|
64
|
+
focusRingWidth: Tokens["borderWidths"];
|
|
65
|
+
divideX: Tokens["borderWidths"];
|
|
66
|
+
divideY: Tokens["borderWidths"];
|
|
63
67
|
divideColor: Tokens["colors"];
|
|
64
68
|
width: "auto" | Tokens["sizes"] | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | "9/12" | "10/12" | "11/12" | "screen";
|
|
65
69
|
inlineSize: "auto" | Tokens["sizes"] | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | "9/12" | "10/12" | "11/12" | "screen";
|
|
@@ -112,18 +116,29 @@ export interface UtilityValues {
|
|
|
112
116
|
borderEndEndRadius: Tokens["radii"];
|
|
113
117
|
borderEndRadius: Tokens["radii"];
|
|
114
118
|
border: Tokens["borders"];
|
|
119
|
+
borderWidth: Tokens["borderWidths"];
|
|
120
|
+
borderTopWidth: Tokens["borderWidths"];
|
|
121
|
+
borderLeftWidth: Tokens["borderWidths"];
|
|
122
|
+
borderRightWidth: Tokens["borderWidths"];
|
|
123
|
+
borderBottomWidth: Tokens["borderWidths"];
|
|
124
|
+
borderBlockStartWidth: Tokens["borderWidths"];
|
|
125
|
+
borderBlockEndWidth: Tokens["borderWidths"];
|
|
115
126
|
borderColor: Tokens["colors"];
|
|
116
127
|
borderInline: Tokens["borders"];
|
|
128
|
+
borderInlineWidth: Tokens["borderWidths"];
|
|
117
129
|
borderInlineColor: Tokens["colors"];
|
|
118
130
|
borderBlock: Tokens["borders"];
|
|
131
|
+
borderBlockWidth: Tokens["borderWidths"];
|
|
119
132
|
borderBlockColor: Tokens["colors"];
|
|
120
133
|
borderLeft: Tokens["borders"];
|
|
121
134
|
borderLeftColor: Tokens["colors"];
|
|
122
135
|
borderInlineStart: Tokens["borders"];
|
|
136
|
+
borderInlineStartWidth: Tokens["borderWidths"];
|
|
123
137
|
borderInlineStartColor: Tokens["colors"];
|
|
124
138
|
borderRight: Tokens["borders"];
|
|
125
139
|
borderRightColor: Tokens["colors"];
|
|
126
140
|
borderInlineEnd: Tokens["borders"];
|
|
141
|
+
borderInlineEndWidth: Tokens["borderWidths"];
|
|
127
142
|
borderInlineEndColor: Tokens["colors"];
|
|
128
143
|
borderTop: Tokens["borders"];
|
|
129
144
|
borderTopColor: Tokens["colors"];
|
|
@@ -191,10 +206,11 @@ export interface UtilityValues {
|
|
|
191
206
|
scrollSnapMarginRight: Tokens["spacing"];
|
|
192
207
|
fill: Tokens["colors"];
|
|
193
208
|
stroke: Tokens["colors"];
|
|
209
|
+
strokeWidth: Tokens["borderWidths"];
|
|
194
210
|
srOnly: boolean;
|
|
195
211
|
debug: boolean;
|
|
196
|
-
colorPalette: "mantine" | "mantine.colors.primary" | "mantine.colors" | "mantine.colors.gray" | "mantine.colors.dark" | "mantine.colors.orange" | "mantine.colors.teal" | "mantine.colors.red" | "mantine.colors.green" | "mantine.colors.yellow" | "transparent" | "none" | "
|
|
197
|
-
textStyle: "dimmed.xxs" | "dimmed.xs" | "dimmed.sm" | "dimmed.md" | "xxs" | "xs" | "sm" | "md" | "lg" | "xl" | "likec4.panel" | "likec4.panel.action";
|
|
212
|
+
colorPalette: "mantine" | "mantine.colors.primary" | "mantine.colors" | "mantine.colors.gray" | "mantine.colors.dark" | "mantine.colors.orange" | "mantine.colors.teal" | "mantine.colors.red" | "mantine.colors.green" | "mantine.colors.yellow" | "transparent" | "none" | "inherit" | "amber" | "amber.light" | "amber.light.a" | "amber.light.p3" | "amber.light.p3.a" | "amber.dark" | "amber.dark.a" | "amber.dark.p3" | "amber.dark.p3.a" | "amber.a" | "amber.p3" | "amber.p3.a" | "blue" | "blue.light" | "blue.light.a" | "blue.light.p3" | "blue.light.p3.a" | "blue.dark" | "blue.dark.a" | "blue.dark.p3" | "blue.dark.p3.a" | "blue.a" | "blue.p3" | "blue.p3.a" | "crimson" | "crimson.light" | "crimson.light.a" | "crimson.light.p3" | "crimson.light.p3.a" | "crimson.dark" | "crimson.dark.a" | "crimson.dark.p3" | "crimson.dark.p3.a" | "crimson.a" | "crimson.p3" | "crimson.p3.a" | "grass" | "grass.light" | "grass.light.a" | "grass.light.p3" | "grass.light.p3.a" | "grass.dark" | "grass.dark.a" | "grass.dark.p3" | "grass.dark.p3.a" | "grass.a" | "grass.p3" | "grass.p3.a" | "indigo" | "indigo.light" | "indigo.light.a" | "indigo.light.p3" | "indigo.light.p3.a" | "indigo.dark" | "indigo.dark.a" | "indigo.dark.p3" | "indigo.dark.p3.a" | "indigo.a" | "indigo.p3" | "indigo.p3.a" | "lime" | "lime.light" | "lime.light.a" | "lime.light.p3" | "lime.light.p3.a" | "lime.dark" | "lime.dark.a" | "lime.dark.p3" | "lime.dark.p3.a" | "lime.a" | "lime.p3" | "lime.p3.a" | "orange" | "orange.light" | "orange.light.a" | "orange.light.p3" | "orange.light.p3.a" | "orange.dark" | "orange.dark.a" | "orange.dark.p3" | "orange.dark.p3.a" | "orange.a" | "orange.p3" | "orange.p3.a" | "pink" | "pink.light" | "pink.light.a" | "pink.light.p3" | "pink.light.p3.a" | "pink.dark" | "pink.dark.a" | "pink.dark.p3" | "pink.dark.p3.a" | "pink.a" | "pink.p3" | "pink.p3.a" | "purple" | "purple.light" | "purple.light.a" | "purple.light.p3" | "purple.light.p3.a" | "purple.dark" | "purple.dark.a" | "purple.dark.p3" | "purple.dark.p3.a" | "purple.a" | "purple.p3" | "purple.p3.a" | "red" | "red.light" | "red.light.a" | "red.light.p3" | "red.light.p3.a" | "red.dark" | "red.dark.a" | "red.dark.p3" | "red.dark.p3.a" | "red.a" | "red.p3" | "red.p3.a" | "ruby" | "ruby.light" | "ruby.light.a" | "ruby.light.p3" | "ruby.light.p3.a" | "ruby.dark" | "ruby.dark.a" | "ruby.dark.p3" | "ruby.dark.p3.a" | "ruby.a" | "ruby.p3" | "ruby.p3.a" | "teal" | "teal.light" | "teal.light.a" | "teal.light.p3" | "teal.light.p3.a" | "teal.dark" | "teal.dark.a" | "teal.dark.p3" | "teal.dark.p3.a" | "teal.a" | "teal.p3" | "teal.p3.a" | "tomato" | "tomato.light" | "tomato.light.a" | "tomato.light.p3" | "tomato.light.p3.a" | "tomato.dark" | "tomato.dark.a" | "tomato.dark.p3" | "tomato.dark.p3.a" | "tomato.a" | "tomato.p3" | "tomato.p3.a" | "violet" | "violet.light" | "violet.light.a" | "violet.light.p3" | "violet.light.p3.a" | "violet.dark" | "violet.dark.a" | "violet.dark.p3" | "violet.dark.p3.a" | "violet.a" | "violet.p3" | "violet.p3.a" | "yellow" | "yellow.light" | "yellow.light.a" | "yellow.light.p3" | "yellow.light.p3.a" | "yellow.dark" | "yellow.dark.a" | "yellow.dark.p3" | "yellow.dark.p3.a" | "yellow.a" | "yellow.p3" | "yellow.p3.a" | "white" | "black" | "body" | "text" | "default" | "disabled" | "likec4" | "likec4.background" | "likec4.tag.bg" | "likec4.tag" | "likec4.panel.bg" | "likec4.panel" | "likec4.panel.text" | "likec4.panel.action" | "likec4.panel.action.bg" | "likec4.panel.action.warning" | "likec4.panel.action.warning.bg" | "likec4.dropdown.bg" | "likec4.dropdown" | "likec4.overlay.backdrop" | "likec4.overlay" | "likec4.overlay.body" | "likec4.compare" | "likec4.walkthrough" | "likec4.compare.manual";
|
|
213
|
+
textStyle: "dimmed" | "dimmed.xxs" | "dimmed.xs" | "dimmed.sm" | "dimmed.md" | "xxs" | "xs" | "sm" | "md" | "lg" | "xl" | "likec4" | "likec4.panel" | "likec4.panel.action";
|
|
198
214
|
layerStyle: "likec4.tag" | "likec4.panel" | "likec4.panel.action" | "likec4.panel.action.filled" | "likec4.dropdown";
|
|
199
215
|
animationStyle: "indicator" | "xyedgeAnimated";
|
|
200
216
|
}
|