@intlayer/design-system 8.7.13 → 8.7.14

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.
@@ -43,8 +43,8 @@ declare enum BadgeSize {
43
43
  * @description Defines the styling variants for different badge combinations
44
44
  */
45
45
  declare const badgeVariants: (props?: {
46
- color?: "text" | "error" | "custom" | "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark" | "success";
47
- variant?: "none" | "default" | "hoverable" | "outline";
46
+ color?: "text" | "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark" | "error" | "success" | "custom";
47
+ variant?: "none" | "default" | "outline" | "hoverable";
48
48
  size?: "sm" | "md" | "lg";
49
49
  } & _$class_variance_authority_types0.ClassProp) => string;
50
50
  /**
@@ -61,10 +61,10 @@ declare enum ButtonTextAlign {
61
61
  */
62
62
  declare const buttonVariants: (props?: {
63
63
  size?: "sm" | "md" | "lg" | "xl" | "icon-sm" | "icon-md" | "icon-lg" | "icon-xl";
64
- color?: "text" | "error" | "custom" | "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark" | "text-inverse" | "success" | "card" | "current";
65
- roundedSize?: "sm" | "md" | "lg" | "xl" | "2xl" | "none" | "3xl" | "full" | "4xl" | "5xl";
66
- variant?: "none" | "default" | "input" | "invisible-link" | "hoverable" | "outline" | "link" | "fade";
67
- textAlign?: "left" | "right" | "center";
64
+ color?: "text" | "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark" | "card" | "current" | "text-inverse" | "error" | "success" | "custom";
65
+ roundedSize?: "sm" | "md" | "lg" | "xl" | "2xl" | "none" | "3xl" | "4xl" | "5xl" | "full";
66
+ variant?: "input" | "none" | "default" | "link" | "outline" | "invisible-link" | "hoverable" | "fade";
67
+ textAlign?: "left" | "center" | "right";
68
68
  isFullWidth?: boolean;
69
69
  } & _$class_variance_authority_types0.ClassProp) => string;
70
70
  /**
@@ -55,7 +55,7 @@ declare const Command: {
55
55
  ref?: React.Ref<HTMLDivElement>;
56
56
  } & {
57
57
  asChild?: boolean;
58
- }, "key" | keyof HTMLAttributes<HTMLDivElement> | "asChild">, "value" | "heading"> & {
58
+ }, "key" | keyof HTMLAttributes<HTMLDivElement> | "asChild">, "heading" | "value"> & {
59
59
  heading?: React.ReactNode;
60
60
  value?: string;
61
61
  forceMount?: boolean;
@@ -73,7 +73,7 @@ declare const Command: {
73
73
  ref?: React.Ref<HTMLDivElement>;
74
74
  } & {
75
75
  asChild?: boolean;
76
- }, "key" | keyof HTMLAttributes<HTMLDivElement> | "asChild">, "onSelect" | "disabled" | "value"> & {
76
+ }, "key" | keyof HTMLAttributes<HTMLDivElement> | "asChild">, "onSelect" | "value" | "disabled"> & {
77
77
  disabled?: boolean;
78
78
  onSelect?: (value: string) => void;
79
79
  value?: string;
@@ -8,13 +8,13 @@ import { VariantProps } from "class-variance-authority";
8
8
  * Provides flexible styling options for background, padding, borders, and layout
9
9
  */
10
10
  declare const containerVariants: (props?: {
11
- roundedSize?: "sm" | "md" | "lg" | "xl" | "2xl" | "none" | "3xl" | "full" | "4xl";
11
+ roundedSize?: "sm" | "md" | "lg" | "xl" | "2xl" | "none" | "3xl" | "4xl" | "full";
12
12
  transparency?: "xs" | "sm" | "md" | "lg" | "xl" | "none" | "full";
13
13
  padding?: "sm" | "md" | "lg" | "xl" | "2xl" | "none";
14
14
  separator?: "both" | "without" | "x" | "y";
15
- border?: "none" | "with";
15
+ border?: "with" | "none";
16
16
  borderColor?: "error" | "success" | "text" | "primary" | "secondary" | "neutral" | "card" | "warning";
17
- background?: "none" | "with" | "hoverable";
17
+ background?: "with" | "none" | "hoverable";
18
18
  gap?: "sm" | "md" | "lg" | "xl" | "2xl" | "none";
19
19
  } & _$class_variance_authority_types0.ClassProp) => string;
20
20
  /** Available rounded corner sizes for the container */
@@ -6,7 +6,7 @@ import { VariantProps } from "class-variance-authority";
6
6
  declare const checkboxVariants: (props?: {
7
7
  variant?: "default";
8
8
  size?: "xs" | "sm" | "md" | "lg";
9
- color?: "error" | "success" | "text" | "custom" | "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark";
9
+ color?: "error" | "success" | "text" | "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark" | "custom";
10
10
  validationStyleEnabled?: "enabled" | "disabled";
11
11
  } & _$class_variance_authority_types0.ClassProp) => string;
12
12
  declare enum CheckboxSize {
@@ -53,9 +53,9 @@ declare enum LinkUnderlined {
53
53
  FALSE = "false"
54
54
  }
55
55
  declare const linkVariants: (props?: {
56
- variant?: "default" | "invisible-link" | "button" | "button-outlined" | "hoverable";
56
+ variant?: "default" | "button" | "invisible-link" | "hoverable" | "button-outlined";
57
57
  roundedSize?: "sm" | "md" | "lg" | "xl" | "2xl" | "none" | "3xl" | "full";
58
- color?: "text" | "error" | "custom" | "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark" | "text-inverse" | "success";
58
+ color?: "text" | "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark" | "text-inverse" | "error" | "success" | "custom";
59
59
  size?: "sm" | "md" | "lg" | "xl" | "custom";
60
60
  underlined?: boolean | LinkUnderlined.DEFAULT;
61
61
  } & _$class_variance_authority_types0.ClassProp) => string;
@@ -186,7 +186,7 @@ declare enum TagBackground {
186
186
  }
187
187
  declare const containerVariants: (props?: {
188
188
  roundedSize?: "sm" | "md" | "lg" | "xl" | "2xl" | "none" | "3xl" | "full";
189
- color?: "text" | "error" | "primary" | "neutral" | "success" | "warning" | "blue" | "yellow" | "green" | "red" | "orange" | "purple" | "pink" | "brown" | "gray" | "black" | "white";
189
+ color?: "text" | "primary" | "neutral" | "error" | "success" | "warning" | "blue" | "yellow" | "green" | "red" | "orange" | "purple" | "pink" | "brown" | "gray" | "black" | "white";
190
190
  size?: "xs" | "sm" | "md" | "lg" | "xl";
191
191
  border?: "none" | "with";
192
192
  background?: "none" | "with";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intlayer/design-system",
3
- "version": "8.7.13",
3
+ "version": "8.7.14",
4
4
  "private": false,
5
5
  "description": "Intlayer design system, including UI components used in the Intlayer editor, website, and visual editor/CMS.",
6
6
  "keywords": [
@@ -421,12 +421,12 @@
421
421
  "dependencies": {
422
422
  "@better-auth/passkey": "1.6.9",
423
423
  "@better-auth/sso": "1.6.9",
424
- "@intlayer/api": "8.7.13",
425
- "@intlayer/config": "8.7.13",
426
- "@intlayer/core": "8.7.13",
427
- "@intlayer/dictionaries-entry": "8.7.13",
428
- "@intlayer/editor-react": "8.7.13",
429
- "@intlayer/types": "8.7.13",
424
+ "@intlayer/api": "8.7.14",
425
+ "@intlayer/config": "8.7.14",
426
+ "@intlayer/core": "8.7.14",
427
+ "@intlayer/dictionaries-entry": "8.7.14",
428
+ "@intlayer/editor-react": "8.7.14",
429
+ "@intlayer/types": "8.7.14",
430
430
  "@radix-ui/react-dialog": "1.1.15",
431
431
  "@radix-ui/react-select": "2.2.6",
432
432
  "@radix-ui/react-slot": "1.2.4",
@@ -438,12 +438,12 @@
438
438
  "class-variance-authority": "0.7.1",
439
439
  "cmdk": "1.1.1",
440
440
  "defu": "6.1.7",
441
- "react-intlayer": "8.7.13",
441
+ "react-intlayer": "8.7.14",
442
442
  "rollup-preserve-directives": "1.1.3",
443
443
  "zod": "4.4.2"
444
444
  },
445
445
  "devDependencies": {
446
- "@intlayer/backend": "8.7.13",
446
+ "@intlayer/backend": "8.7.14",
447
447
  "@shikijs/transformers": "4.0.2",
448
448
  "@storybook/addon-a11y": "8.6.14",
449
449
  "@storybook/addon-essentials": "8.6.14",
@@ -473,7 +473,7 @@
473
473
  "@utils/ts-config-types": "1.0.4",
474
474
  "clsx": "2.1.1",
475
475
  "fast-glob": "3.3.3",
476
- "intlayer": "8.7.13",
476
+ "intlayer": "8.7.14",
477
477
  "rimraf": "6.1.3",
478
478
  "shiki": "4.0.2",
479
479
  "storybook": "8.6.17",
@@ -481,26 +481,26 @@
481
481
  "tsdown": "0.21.10",
482
482
  "typescript": "6.0.3",
483
483
  "vite": "8.0.10",
484
- "vite-intlayer": "8.7.13",
484
+ "vite-intlayer": "8.7.14",
485
485
  "vite-plugin-dts": "5.0.0",
486
486
  "vitest": "4.1.5"
487
487
  },
488
488
  "peerDependencies": {
489
489
  "@better-fetch/fetch": "1.1.21",
490
490
  "@hookform/resolvers": "5.2.2",
491
- "@intlayer/backend": "8.7.13",
491
+ "@intlayer/backend": "8.7.14",
492
492
  "@monaco-editor/react": "4.7.0",
493
493
  "@shikijs/transformers": "4.0.2",
494
494
  "@tanstack/react-query": "5.100.9",
495
495
  "@tanstack/react-query-devtools": "5.100.9",
496
496
  "framer-motion": "12.38.0",
497
497
  "fuse.js": "7.3.0",
498
- "intlayer": "8.7.13",
498
+ "intlayer": "8.7.14",
499
499
  "lucide-react": "1.14.0",
500
500
  "react": ">=16.0.0",
501
501
  "react-dom": ">=16.0.0",
502
502
  "react-hook-form": "7.75.0",
503
- "react-intlayer": "8.7.13",
503
+ "react-intlayer": "8.7.14",
504
504
  "shiki": "4.0.2",
505
505
  "tailwindcss": "4.2.4"
506
506
  },