@intlayer/design-system 8.7.0 → 8.7.1-canary-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.
@@ -43,7 +43,7 @@ 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" | "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark" | "error" | "success" | "custom";
46
+ color?: "text" | "error" | "custom" | "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark" | "success";
47
47
  variant?: "none" | "default" | "outline" | "hoverable";
48
48
  size?: "sm" | "md" | "lg";
49
49
  } & _$class_variance_authority_types0.ClassProp) => string;
@@ -61,7 +61,7 @@ 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" | "primary" | "secondary" | "destructive" | "neutral" | "card" | "light" | "dark" | "current" | "text-inverse" | "error" | "success" | "custom";
64
+ color?: "text" | "error" | "custom" | "primary" | "secondary" | "destructive" | "neutral" | "card" | "light" | "dark" | "current" | "text-inverse" | "success";
65
65
  roundedSize?: "sm" | "md" | "lg" | "xl" | "2xl" | "none" | "3xl" | "4xl" | "5xl" | "full";
66
66
  variant?: "none" | "default" | "input" | "outline" | "link" | "invisible-link" | "hoverable" | "fade";
67
67
  textAlign?: "left" | "center" | "right";
@@ -5,7 +5,7 @@ import { VariantProps } from "class-variance-authority";
5
5
  //#region src/components/CollapsibleTable/CollapsibleTable.d.ts
6
6
  declare const collapsibleTableVariants: (props?: {
7
7
  size?: "sm" | "md" | "lg" | "xl" | "full";
8
- variant?: "default" | "dark" | "ghost" | "outlined";
8
+ variant?: "default" | "ghost" | "dark" | "outlined";
9
9
  spacing?: "sm" | "md" | "lg" | "none" | "auto";
10
10
  } & _$class_variance_authority_types0.ClassProp) => string;
11
11
  interface CollapsibleTableProps extends Omit<HTMLAttributes<HTMLElement>, 'title'>, VariantProps<typeof collapsibleTableVariants> {
@@ -29,7 +29,7 @@ declare const Command: {
29
29
  ref?: React.Ref<HTMLInputElement>;
30
30
  } & {
31
31
  asChild?: boolean;
32
- }, "key" | keyof _$react.InputHTMLAttributes<HTMLInputElement> | "asChild">, "onChange" | "type" | "value"> & {
32
+ }, "key" | keyof _$react.InputHTMLAttributes<HTMLInputElement> | "asChild">, "type" | "onChange" | "value"> & {
33
33
  value?: string;
34
34
  onValueChange?: (search: string) => void;
35
35
  } & _$react.RefAttributes<HTMLInputElement>>;
@@ -13,8 +13,8 @@ declare const containerVariants: (props?: {
13
13
  padding?: "sm" | "md" | "lg" | "xl" | "2xl" | "none";
14
14
  separator?: "both" | "without" | "x" | "y";
15
15
  border?: "none" | "with";
16
- borderColor?: "text" | "error" | "success" | "primary" | "secondary" | "neutral" | "card" | "warning";
17
- background?: "none" | "hoverable" | "with";
16
+ borderColor?: "error" | "success" | "text" | "primary" | "secondary" | "neutral" | "card" | "warning";
17
+ background?: "none" | "with" | "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?: "text" | "error" | "success" | "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark" | "custom";
9
+ color?: "error" | "success" | "text" | "primary" | "secondary" | "neutral" | "destructive" | "custom" | "light" | "dark";
10
10
  validationStyleEnabled?: "enabled" | "disabled";
11
11
  } & _$class_variance_authority_types0.ClassProp) => string;
12
12
  declare enum CheckboxSize {
@@ -55,7 +55,7 @@ declare enum LinkUnderlined {
55
55
  declare const linkVariants: (props?: {
56
56
  variant?: "default" | "invisible-link" | "hoverable" | "button" | "button-outlined";
57
57
  roundedSize?: "sm" | "md" | "lg" | "xl" | "2xl" | "none" | "3xl" | "full";
58
- color?: "text" | "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark" | "text-inverse" | "error" | "success" | "custom";
58
+ color?: "text" | "error" | "custom" | "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark" | "text-inverse" | "success";
59
59
  size?: "sm" | "md" | "lg" | "xl" | "custom";
60
60
  underlined?: boolean | LinkUnderlined.DEFAULT;
61
61
  } & _$class_variance_authority_types0.ClassProp) => string;
@@ -5,7 +5,7 @@ import { VariantProps } from "class-variance-authority";
5
5
  //#region src/components/Pagination/Pagination.d.ts
6
6
  declare const paginationVariants: (props?: {
7
7
  size?: "sm" | "md" | "lg";
8
- color?: "text" | "primary" | "secondary" | "destructive" | "neutral";
8
+ color?: "text" | "primary" | "secondary" | "neutral" | "destructive";
9
9
  variant?: "default" | "bordered" | "ghost";
10
10
  } & _$class_variance_authority_types0.ClassProp) => string;
11
11
  declare enum PaginationSize {
@@ -15,7 +15,7 @@ declare enum TabSelectorColor {
15
15
  TEXT = "text"
16
16
  }
17
17
  declare const tabSelectorVariant: (props?: {
18
- color?: "text" | "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark";
18
+ color?: "text" | "primary" | "secondary" | "neutral" | "destructive" | "light" | "dark";
19
19
  } & _$class_variance_authority_types0.ClassProp) => string;
20
20
  type TabSelectorItemProps = HTMLAttributes<HTMLElement> & {
21
21
  key: string | number;
@@ -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" | "primary" | "neutral" | "error" | "success" | "warning" | "blue" | "yellow" | "green" | "red" | "orange" | "purple" | "pink" | "brown" | "gray" | "black" | "white";
189
+ color?: "text" | "error" | "primary" | "neutral" | "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.0",
3
+ "version": "8.7.1-canary-1",
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": [
@@ -419,28 +419,28 @@
419
419
  "typecheck_": "tsc --noEmit --project tsconfig.types.json"
420
420
  },
421
421
  "dependencies": {
422
- "@better-auth/passkey": "1.6.2",
423
- "@better-auth/sso": "1.6.2",
424
- "@intlayer/api": "8.7.0",
425
- "@intlayer/config": "8.7.0",
426
- "@intlayer/core": "8.7.0",
427
- "@intlayer/dictionaries-entry": "8.7.0",
428
- "@intlayer/editor-react": "8.7.0",
429
- "@intlayer/types": "8.7.0",
422
+ "@better-auth/passkey": "1.6.4",
423
+ "@better-auth/sso": "1.6.4",
424
+ "@intlayer/api": "8.7.1-canary-1",
425
+ "@intlayer/config": "8.7.1-canary-1",
426
+ "@intlayer/core": "8.7.1-canary-1",
427
+ "@intlayer/dictionaries-entry": "8.7.1-canary-1",
428
+ "@intlayer/editor-react": "8.7.1-canary-1",
429
+ "@intlayer/types": "8.7.1-canary-1",
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",
433
433
  "@radix-ui/react-toast": "1.2.15",
434
434
  "@tailwindcss/aspect-ratio": "0.4.2",
435
- "better-auth": "1.6.2",
435
+ "better-auth": "1.6.4",
436
436
  "class-variance-authority": "0.7.1",
437
437
  "cmdk": "1.1.1",
438
- "react-intlayer": "8.7.0",
438
+ "react-intlayer": "8.7.1-canary-1",
439
439
  "rollup-preserve-directives": "1.1.3",
440
440
  "zod": "4.3.6"
441
441
  },
442
442
  "devDependencies": {
443
- "@intlayer/backend": "8.7.0",
443
+ "@intlayer/backend": "8.7.1-canary-1",
444
444
  "@shikijs/transformers": "4.0.2",
445
445
  "@storybook/addon-a11y": "8.6.14",
446
446
  "@storybook/addon-essentials": "8.6.14",
@@ -470,34 +470,34 @@
470
470
  "@utils/ts-config-types": "1.0.4",
471
471
  "clsx": "2.1.1",
472
472
  "fast-glob": "3.3.3",
473
- "intlayer": "8.7.0",
473
+ "intlayer": "8.7.1-canary-1",
474
474
  "rimraf": "6.1.3",
475
475
  "shiki": "4.0.2",
476
476
  "storybook": "8.6.17",
477
477
  "tailwind-merge": "3.5.0",
478
- "tsdown": "0.21.7",
478
+ "tsdown": "0.21.8",
479
479
  "typescript": "6.0.2",
480
480
  "vite": "8.0.8",
481
- "vite-intlayer": "8.7.0",
481
+ "vite-intlayer": "8.7.1-canary-1",
482
482
  "vite-plugin-dts": "4.5.4",
483
483
  "vitest": "4.1.4"
484
484
  },
485
485
  "peerDependencies": {
486
486
  "@better-fetch/fetch": "1.1.21",
487
487
  "@hookform/resolvers": "5.2.2",
488
- "@intlayer/backend": "8.7.0",
488
+ "@intlayer/backend": "8.7.1-canary-1",
489
489
  "@monaco-editor/react": "4.7.0",
490
490
  "@shikijs/transformers": "4.0.2",
491
- "@tanstack/react-query": "5.97.0",
491
+ "@tanstack/react-query": "5.99.0",
492
492
  "@tanstack/react-query-devtools": "5.97.0",
493
493
  "framer-motion": "12.38.0",
494
494
  "fuse.js": "7.3.0",
495
- "intlayer": "8.7.0",
495
+ "intlayer": "8.7.1-canary-1",
496
496
  "lucide-react": "1.8.0",
497
497
  "react": ">=16.0.0",
498
498
  "react-dom": ">=16.0.0",
499
499
  "react-hook-form": "7.72.1",
500
- "react-intlayer": "8.7.0",
500
+ "react-intlayer": "8.7.1-canary-1",
501
501
  "shiki": "4.0.2",
502
502
  "tailwindcss": "4.2.1"
503
503
  },