@likec4/styles 1.46.1 → 1.46.4

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/preset.d.mts CHANGED
@@ -1174,7 +1174,10 @@ declare const theme: {
1174
1174
  body: {
1175
1175
  DEFAULT: {
1176
1176
  description: string;
1177
- value: "var(--mantine-color-body)";
1177
+ value: {
1178
+ base: "var(--mantine-color-body)";
1179
+ _dark: "var(--mantine-color-dark-6)";
1180
+ };
1178
1181
  };
1179
1182
  };
1180
1183
  border: {
package/dist/preset.mjs CHANGED
@@ -6841,7 +6841,10 @@ const semanticTokens = defineSemanticTokens({
6841
6841
  body: {
6842
6842
  DEFAULT: {
6843
6843
  description: "LikeC4 overlay body color",
6844
- value: mantine.colors.body
6844
+ value: {
6845
+ base: mantine.colors.body,
6846
+ _dark: mantine.colors.dark[6]
6847
+ }
6845
6848
  }
6846
6849
  },
6847
6850
  border: {
@@ -9736,7 +9736,7 @@ const tokens = {
9736
9736
  "variable": "var(--colors-likec4-overlay-backdrop)"
9737
9737
  },
9738
9738
  "colors.likec4.overlay.body": {
9739
- "value": "var(--mantine-color-body)",
9739
+ "value": "var(--colors-likec4-overlay-body)",
9740
9740
  "variable": "var(--colors-likec4-overlay-body)"
9741
9741
  },
9742
9742
  "colors.likec4.overlay.border": {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@likec4/styles",
3
3
  "description": "Shared PandaCSS preset and generated styles, used in LikeC4",
4
4
  "license": "MIT",
5
- "version": "1.46.1",
5
+ "version": "1.46.4",
6
6
  "bugs": "https://github.com/likec4/likec4/issues",
7
7
  "homepage": "https://likec4.dev",
8
8
  "author": "Denis Davydkov <denis@davydkov.com>",
@@ -85,7 +85,7 @@
85
85
  }
86
86
  },
87
87
  "devDependencies": {
88
- "@types/node": "~22.19.1",
88
+ "@types/node": "~22.19.3",
89
89
  "@pandabox/panda-plugins": "^0.0.8",
90
90
  "@pandabox/utils": "^0.0.5",
91
91
  "@pandabox/unplugin": "^0.2.2",
@@ -95,10 +95,10 @@
95
95
  "@types/react": "19.2.7",
96
96
  "@types/react-dom": "19.2.3",
97
97
  "postcss": "8.5.6",
98
- "nano-spawn": "^1.0.3",
98
+ "nano-spawn": "^2.0.0",
99
99
  "unbuild": "3.5.0",
100
100
  "typescript": "5.9.3",
101
- "@likec4/style-preset": "1.46.1",
101
+ "@likec4/style-preset": "1.46.4",
102
102
  "@likec4/devops": "1.42.0",
103
103
  "@likec4/tsconfig": "1.46.1"
104
104
  },
@@ -1,33 +0,0 @@
1
- /* eslint-disable */
2
- import type { ConditionalValue } from '../types/index';
3
- import type { DistributiveOmit, Pretty } from '../types/system-types';
4
-
5
- interface EdgeContainerVariant {
6
-
7
- }
8
-
9
- type EdgeContainerVariantMap = {
10
- [key in keyof EdgeContainerVariant]: Array<EdgeContainerVariant[key]>
11
- }
12
-
13
-
14
-
15
- export type EdgeContainerVariantProps = {
16
- [key in keyof EdgeContainerVariant]?: ConditionalValue<EdgeContainerVariant[key]> | undefined
17
- }
18
-
19
- export interface EdgeContainerRecipe {
20
-
21
- __type: EdgeContainerVariantProps
22
- (props?: EdgeContainerVariantProps): string
23
- raw: (props?: EdgeContainerVariantProps) => EdgeContainerVariantProps
24
- variantMap: EdgeContainerVariantMap
25
- variantKeys: Array<keyof EdgeContainerVariant>
26
- splitVariantProps<Props extends EdgeContainerVariantProps>(props: Props): [EdgeContainerVariantProps, Pretty<DistributiveOmit<Props, keyof EdgeContainerVariantProps>>]
27
- getVariantProps: (props?: EdgeContainerVariantProps) => EdgeContainerVariantProps
28
- }
29
-
30
- /**
31
- * Recipe for Edge Container
32
- */
33
- export declare const edgeContainer: EdgeContainerRecipe
@@ -1,24 +0,0 @@
1
- import { memo, splitProps } from '../helpers.mjs';
2
- import { createRecipe, mergeRecipes } from './create-recipe.mjs';
3
-
4
- const edgeContainerFn = /* @__PURE__ */ createRecipe('likec4-edge-container', {}, [])
5
-
6
- const edgeContainerVariantMap = {}
7
-
8
- const edgeContainerVariantKeys = Object.keys(edgeContainerVariantMap)
9
-
10
- export const edgeContainer = /* @__PURE__ */ Object.assign(memo(edgeContainerFn.recipeFn), {
11
- __recipe__: true,
12
- __name__: 'edgeContainer',
13
- __getCompoundVariantCss__: edgeContainerFn.__getCompoundVariantCss__,
14
- raw: (props) => props,
15
- variantKeys: edgeContainerVariantKeys,
16
- variantMap: edgeContainerVariantMap,
17
- merge(recipe) {
18
- return mergeRecipes(this, recipe)
19
- },
20
- splitVariantProps(props) {
21
- return splitProps(props, edgeContainerVariantKeys)
22
- },
23
- getVariantProps: edgeContainerFn.getVariantProps,
24
- })