@intlayer/design-system 8.9.1 → 8.9.2
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/types/components/Button/Button.d.ts +4 -4
- package/dist/types/components/CollapsibleTable/CollapsibleTable.d.ts +1 -1
- package/dist/types/components/Command/index.d.ts +2 -2
- package/dist/types/components/Container/index.d.ts +2 -2
- package/dist/types/components/Link/Link.d.ts +1 -1
- package/dist/types/components/Pagination/Pagination.d.ts +1 -1
- package/dist/types/components/Tab/Tab.d.ts +1 -1
- package/package.json +14 -14
|
@@ -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" | "primary" | "secondary" | "destructive" | "success" | "error" | "neutral" | "light" | "dark" | "custom" | "
|
|
65
|
-
roundedSize?: "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "
|
|
66
|
-
variant?: "input" | "none" | "default" | "outline" | "hoverable" | "
|
|
67
|
-
textAlign?: "left" | "
|
|
64
|
+
color?: "text" | "primary" | "secondary" | "destructive" | "success" | "error" | "neutral" | "light" | "dark" | "custom" | "card" | "current" | "text-inverse";
|
|
65
|
+
roundedSize?: "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "full";
|
|
66
|
+
variant?: "input" | "none" | "default" | "outline" | "hoverable" | "link" | "invisible-link" | "fade";
|
|
67
|
+
textAlign?: "left" | "right" | "center";
|
|
68
68
|
isFullWidth?: boolean;
|
|
69
69
|
} & _$class_variance_authority_types0.ClassProp) => string;
|
|
70
70
|
/**
|
|
@@ -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" | "
|
|
8
|
+
variant?: "default" | "ghost" | "dark" | "outlined";
|
|
9
9
|
spacing?: "none" | "sm" | "md" | "lg" | "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
|
|
32
|
+
}, "key" | "asChild" | keyof _$react.InputHTMLAttributes<HTMLInputElement>>, "type" | "onChange" | "value"> & {
|
|
33
33
|
value?: string;
|
|
34
34
|
onValueChange?: (search: string) => void;
|
|
35
35
|
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
@@ -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" | "
|
|
76
|
+
}, "key" | keyof HTMLAttributes<HTMLDivElement> | "asChild">, "onSelect" | "value" | "disabled"> & {
|
|
77
77
|
disabled?: boolean;
|
|
78
78
|
onSelect?: (value: string) => void;
|
|
79
79
|
value?: string;
|
|
@@ -8,12 +8,12 @@ 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?: "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "
|
|
11
|
+
roundedSize?: "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "full";
|
|
12
12
|
transparency?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full";
|
|
13
13
|
padding?: "none" | "sm" | "md" | "lg" | "xl" | "2xl";
|
|
14
14
|
separator?: "both" | "without" | "x" | "y";
|
|
15
15
|
border?: "with" | "none";
|
|
16
|
-
borderColor?: "error" | "success" | "text" | "primary" | "secondary" | "neutral" | "
|
|
16
|
+
borderColor?: "error" | "success" | "text" | "primary" | "secondary" | "neutral" | "card" | "warning";
|
|
17
17
|
background?: "with" | "none" | "hoverable";
|
|
18
18
|
gap?: "none" | "sm" | "md" | "lg" | "xl" | "2xl";
|
|
19
19
|
} & _$class_variance_authority_types0.ClassProp) => string;
|
|
@@ -53,7 +53,7 @@ declare enum LinkUnderlined {
|
|
|
53
53
|
FALSE = "false"
|
|
54
54
|
}
|
|
55
55
|
declare const linkVariants: (props?: {
|
|
56
|
-
variant?: "default" | "hoverable" | "
|
|
56
|
+
variant?: "default" | "hoverable" | "button" | "invisible-link" | "button-outlined";
|
|
57
57
|
roundedSize?: "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full";
|
|
58
58
|
color?: "text" | "primary" | "secondary" | "destructive" | "success" | "error" | "neutral" | "light" | "dark" | "custom" | "text-inverse";
|
|
59
59
|
size?: "sm" | "md" | "lg" | "xl" | "custom";
|
|
@@ -6,7 +6,7 @@ import { VariantProps } from "class-variance-authority";
|
|
|
6
6
|
declare const paginationVariants: (props?: {
|
|
7
7
|
size?: "sm" | "md" | "lg";
|
|
8
8
|
color?: "text" | "primary" | "secondary" | "destructive" | "neutral";
|
|
9
|
-
variant?: "default" | "
|
|
9
|
+
variant?: "default" | "bordered" | "ghost";
|
|
10
10
|
} & _$class_variance_authority_types0.ClassProp) => string;
|
|
11
11
|
declare enum PaginationSize {
|
|
12
12
|
SM = "sm",
|
|
@@ -6,7 +6,7 @@ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
|
6
6
|
//#region src/components/Tab/Tab.d.ts
|
|
7
7
|
declare const tabContainerVariant: (props?: {
|
|
8
8
|
background?: "with" | "without";
|
|
9
|
-
variant?: "default" | "
|
|
9
|
+
variant?: "default" | "bordered" | "ghost";
|
|
10
10
|
} & _$class_variance_authority_types0.ClassProp) => string;
|
|
11
11
|
type TabProps = HTMLAttributes<HTMLDivElement> & VariantProps<typeof tabContainerVariant> & {
|
|
12
12
|
defaultTab?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/design-system",
|
|
3
|
-
"version": "8.9.
|
|
3
|
+
"version": "8.9.2",
|
|
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.9.
|
|
425
|
-
"@intlayer/config": "8.9.
|
|
426
|
-
"@intlayer/core": "8.9.
|
|
427
|
-
"@intlayer/dictionaries-entry": "8.9.
|
|
428
|
-
"@intlayer/editor-react": "8.9.
|
|
429
|
-
"@intlayer/types": "8.9.
|
|
424
|
+
"@intlayer/api": "8.9.2",
|
|
425
|
+
"@intlayer/config": "8.9.2",
|
|
426
|
+
"@intlayer/core": "8.9.2",
|
|
427
|
+
"@intlayer/dictionaries-entry": "8.9.2",
|
|
428
|
+
"@intlayer/editor-react": "8.9.2",
|
|
429
|
+
"@intlayer/types": "8.9.2",
|
|
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.9.
|
|
441
|
+
"react-intlayer": "8.9.2",
|
|
442
442
|
"rollup-preserve-directives": "1.1.3",
|
|
443
443
|
"zod": "4.4.3"
|
|
444
444
|
},
|
|
445
445
|
"devDependencies": {
|
|
446
|
-
"@intlayer/backend": "8.9.
|
|
446
|
+
"@intlayer/backend": "8.9.2",
|
|
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.9.
|
|
476
|
+
"intlayer": "8.9.2",
|
|
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.9.
|
|
484
|
+
"vite-intlayer": "8.9.2",
|
|
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.9.
|
|
491
|
+
"@intlayer/backend": "8.9.2",
|
|
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.9.
|
|
498
|
+
"intlayer": "8.9.2",
|
|
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.9.
|
|
503
|
+
"react-intlayer": "8.9.2",
|
|
504
504
|
"shiki": "4.0.2",
|
|
505
505
|
"tailwindcss": "4.2.4"
|
|
506
506
|
},
|