@synerise/ds-table 1.10.9 → 1.10.10
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.10.10](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@1.10.9...@synerise/ds-table@1.10.10) (2026-05-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-table
|
|
9
|
+
|
|
6
10
|
## [1.10.9](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@1.10.8...@synerise/ds-table@1.10.9) (2026-05-06)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @synerise/ds-table
|
|
@@ -1,19 +1,12 @@
|
|
|
1
|
-
export declare const ToggleButton: import('styled-components').StyledComponent<import('react').ForwardRefExoticComponent<Omit<
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
onClick?: React.MouseEventHandler<HTMLElement>;
|
|
5
|
-
} & import('antd/lib/button/button').BaseButtonProps & Omit<import('react').AnchorHTMLAttributes<any>, "onClick" | "type"> & {
|
|
6
|
-
htmlType?: import('antd/lib/button/button').ButtonHTMLType;
|
|
7
|
-
onClick?: React.MouseEventHandler<HTMLElement>;
|
|
8
|
-
} & Omit<import('react').ButtonHTMLAttributes<any>, "onClick" | "type">>, "type" | "ghost"> & {
|
|
9
|
-
type?: import('@synerise/ds-utils').LiteralStringUnion<import('@synerise/ds-button/dist/Button.types').ButtonType>;
|
|
10
|
-
mode?: import('@synerise/ds-utils').LiteralStringUnion<"single-icon" | "split" | "two-icons" | "label-icon" | "icon-label">;
|
|
1
|
+
export declare const ToggleButton: import('styled-components').StyledComponent<import('react').ForwardRefExoticComponent<Omit<import('@synerise/ds-button/dist/BaseButton.types').BaseButtonProps, "type"> & {
|
|
2
|
+
type?: import('@synerise/ds-button').ButtonType;
|
|
3
|
+
mode?: import('@synerise/ds-utils').LiteralStringUnion<import('@synerise/ds-button/dist/Button.types').ButtonMode>;
|
|
11
4
|
color?: import('@synerise/ds-utils').LiteralStringUnion<"blue" | "grey" | "red" | "green" | "yellow" | "pink" | "mars" | "orange" | "fern" | "cyan" | "purple" | "violet">;
|
|
12
5
|
groupVariant?: import('@synerise/ds-utils').LiteralStringUnion<"left-rounded" | "squared" | "right-rounded">;
|
|
13
|
-
justifyContent?: string;
|
|
14
6
|
loading?: boolean | {
|
|
15
7
|
delay?: number;
|
|
16
8
|
};
|
|
9
|
+
icon?: import('react').ReactNode;
|
|
17
10
|
onClick?: (event: import('react').MouseEvent<HTMLElement>) => void;
|
|
18
11
|
iconColor?: import('@synerise/ds-utils').LiteralStringUnion<"blue" | "grey" | "red" | "green" | "yellow" | "pink" | "mars" | "orange" | "fern" | "cyan" | "purple" | "violet">;
|
|
19
12
|
error?: boolean;
|
|
@@ -29,22 +22,15 @@ export declare const ToggleButton: import('styled-components').StyledComponent<i
|
|
|
29
22
|
isVisible: boolean;
|
|
30
23
|
}, never>;
|
|
31
24
|
declare const _default: {
|
|
32
|
-
ToggleButton: import('styled-components').StyledComponent<import('react').ForwardRefExoticComponent<Omit<
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
onClick?: React.MouseEventHandler<HTMLElement>;
|
|
36
|
-
} & import('antd/lib/button/button').BaseButtonProps & Omit<import('react').AnchorHTMLAttributes<any>, "onClick" | "type"> & {
|
|
37
|
-
htmlType?: import('antd/lib/button/button').ButtonHTMLType;
|
|
38
|
-
onClick?: React.MouseEventHandler<HTMLElement>;
|
|
39
|
-
} & Omit<import('react').ButtonHTMLAttributes<any>, "onClick" | "type">>, "type" | "ghost"> & {
|
|
40
|
-
type?: import('@synerise/ds-utils').LiteralStringUnion<import('@synerise/ds-button/dist/Button.types').ButtonType>;
|
|
41
|
-
mode?: import('@synerise/ds-utils').LiteralStringUnion<"single-icon" | "split" | "two-icons" | "label-icon" | "icon-label">;
|
|
25
|
+
ToggleButton: import('styled-components').StyledComponent<import('react').ForwardRefExoticComponent<Omit<import('@synerise/ds-button/dist/BaseButton.types').BaseButtonProps, "type"> & {
|
|
26
|
+
type?: import('@synerise/ds-button').ButtonType;
|
|
27
|
+
mode?: import('@synerise/ds-utils').LiteralStringUnion<import('@synerise/ds-button/dist/Button.types').ButtonMode>;
|
|
42
28
|
color?: import('@synerise/ds-utils').LiteralStringUnion<"blue" | "grey" | "red" | "green" | "yellow" | "pink" | "mars" | "orange" | "fern" | "cyan" | "purple" | "violet">;
|
|
43
29
|
groupVariant?: import('@synerise/ds-utils').LiteralStringUnion<"left-rounded" | "squared" | "right-rounded">;
|
|
44
|
-
justifyContent?: string;
|
|
45
30
|
loading?: boolean | {
|
|
46
31
|
delay?: number;
|
|
47
32
|
};
|
|
33
|
+
icon?: import('react').ReactNode;
|
|
48
34
|
onClick?: (event: import('react').MouseEvent<HTMLElement>) => void;
|
|
49
35
|
iconColor?: import('@synerise/ds-utils').LiteralStringUnion<"blue" | "grey" | "red" | "green" | "yellow" | "pink" | "mars" | "orange" | "fern" | "cyan" | "purple" | "violet">;
|
|
50
36
|
error?: boolean;
|
|
@@ -1,21 +1,14 @@
|
|
|
1
|
-
export declare const FilterButtonGroup: import('styled-components').StyledComponent<({ className, children, title, description, size, fullWidth, buttonsPosition, disabled, splitMode, compact, error, }: import('@synerise/ds-button-group').ButtonGroupProps) => React.JSX.Element, any, {}, never>;
|
|
1
|
+
export declare const FilterButtonGroup: import('styled-components').StyledComponent<({ className, style, children, title, description, size, fullWidth, buttonsPosition, disabled, splitMode, compact, error, }: import('@synerise/ds-button-group').ButtonGroupProps) => React.JSX.Element, any, {}, never>;
|
|
2
2
|
export declare const FilterButtonLabel: import('styled-components').StyledComponent<"span", any, {}, never>;
|
|
3
|
-
export declare const FilterButton: import('styled-components').StyledComponent<import('react').ForwardRefExoticComponent<Omit<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
onClick?: React.MouseEventHandler<HTMLElement>;
|
|
7
|
-
} & import('antd/lib/button/button').BaseButtonProps & Omit<import('react').AnchorHTMLAttributes<any>, "onClick" | "type"> & {
|
|
8
|
-
htmlType?: import('antd/lib/button/button').ButtonHTMLType;
|
|
9
|
-
onClick?: React.MouseEventHandler<HTMLElement>;
|
|
10
|
-
} & Omit<import('react').ButtonHTMLAttributes<any>, "onClick" | "type">>, "type" | "ghost"> & {
|
|
11
|
-
type?: import('@synerise/ds-utils').LiteralStringUnion<import('@synerise/ds-button/dist/Button.types').ButtonType>;
|
|
12
|
-
mode?: import('@synerise/ds-utils').LiteralStringUnion<"single-icon" | "split" | "two-icons" | "label-icon" | "icon-label">;
|
|
3
|
+
export declare const FilterButton: import('styled-components').StyledComponent<import('react').ForwardRefExoticComponent<Omit<import('@synerise/ds-button/dist/BaseButton.types').BaseButtonProps, "type"> & {
|
|
4
|
+
type?: import('@synerise/ds-button').ButtonType;
|
|
5
|
+
mode?: import('@synerise/ds-utils').LiteralStringUnion<import('@synerise/ds-button/dist/Button.types').ButtonMode>;
|
|
13
6
|
color?: import('@synerise/ds-utils').LiteralStringUnion<"blue" | "grey" | "red" | "green" | "yellow" | "pink" | "mars" | "orange" | "fern" | "cyan" | "purple" | "violet">;
|
|
14
7
|
groupVariant?: import('@synerise/ds-utils').LiteralStringUnion<"left-rounded" | "squared" | "right-rounded">;
|
|
15
|
-
justifyContent?: string;
|
|
16
8
|
loading?: boolean | {
|
|
17
9
|
delay?: number;
|
|
18
10
|
};
|
|
11
|
+
icon?: import('react').ReactNode;
|
|
19
12
|
onClick?: (event: import('react').MouseEvent<HTMLElement>) => void;
|
|
20
13
|
iconColor?: import('@synerise/ds-utils').LiteralStringUnion<"blue" | "grey" | "red" | "green" | "yellow" | "pink" | "mars" | "orange" | "fern" | "cyan" | "purple" | "violet">;
|
|
21
14
|
error?: boolean;
|
|
@@ -31,22 +24,15 @@ export declare const FilterButton: import('styled-components').StyledComponent<i
|
|
|
31
24
|
opened: boolean;
|
|
32
25
|
selected?: object;
|
|
33
26
|
}, never>;
|
|
34
|
-
export declare const ClearButton: import('styled-components').StyledComponent<import('react').ForwardRefExoticComponent<Omit<
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
onClick?: React.MouseEventHandler<HTMLElement>;
|
|
38
|
-
} & import('antd/lib/button/button').BaseButtonProps & Omit<import('react').AnchorHTMLAttributes<any>, "onClick" | "type"> & {
|
|
39
|
-
htmlType?: import('antd/lib/button/button').ButtonHTMLType;
|
|
40
|
-
onClick?: React.MouseEventHandler<HTMLElement>;
|
|
41
|
-
} & Omit<import('react').ButtonHTMLAttributes<any>, "onClick" | "type">>, "type" | "ghost"> & {
|
|
42
|
-
type?: import('@synerise/ds-utils').LiteralStringUnion<import('@synerise/ds-button/dist/Button.types').ButtonType>;
|
|
43
|
-
mode?: import('@synerise/ds-utils').LiteralStringUnion<"single-icon" | "split" | "two-icons" | "label-icon" | "icon-label">;
|
|
27
|
+
export declare const ClearButton: import('styled-components').StyledComponent<import('react').ForwardRefExoticComponent<Omit<import('@synerise/ds-button/dist/BaseButton.types').BaseButtonProps, "type"> & {
|
|
28
|
+
type?: import('@synerise/ds-button').ButtonType;
|
|
29
|
+
mode?: import('@synerise/ds-utils').LiteralStringUnion<import('@synerise/ds-button/dist/Button.types').ButtonMode>;
|
|
44
30
|
color?: import('@synerise/ds-utils').LiteralStringUnion<"blue" | "grey" | "red" | "green" | "yellow" | "pink" | "mars" | "orange" | "fern" | "cyan" | "purple" | "violet">;
|
|
45
31
|
groupVariant?: import('@synerise/ds-utils').LiteralStringUnion<"left-rounded" | "squared" | "right-rounded">;
|
|
46
|
-
justifyContent?: string;
|
|
47
32
|
loading?: boolean | {
|
|
48
33
|
delay?: number;
|
|
49
34
|
};
|
|
35
|
+
icon?: import('react').ReactNode;
|
|
50
36
|
onClick?: (event: import('react').MouseEvent<HTMLElement>) => void;
|
|
51
37
|
iconColor?: import('@synerise/ds-utils').LiteralStringUnion<"blue" | "grey" | "red" | "green" | "yellow" | "pink" | "mars" | "orange" | "fern" | "cyan" | "purple" | "violet">;
|
|
52
38
|
error?: boolean;
|
|
@@ -59,22 +45,15 @@ export declare const ClearButton: import('styled-components').StyledComponent<im
|
|
|
59
45
|
Star: (props: import('@synerise/ds-button').StarButtonProps) => React.ReactElement;
|
|
60
46
|
Checkbox: (props: import('@synerise/ds-button').CheckboxButtonProps) => React.ReactElement;
|
|
61
47
|
}, any, {}, never>;
|
|
62
|
-
export declare const ListButton: import('styled-components').StyledComponent<import('react').ForwardRefExoticComponent<Omit<
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
onClick?: React.MouseEventHandler<HTMLElement>;
|
|
66
|
-
} & import('antd/lib/button/button').BaseButtonProps & Omit<import('react').AnchorHTMLAttributes<any>, "onClick" | "type"> & {
|
|
67
|
-
htmlType?: import('antd/lib/button/button').ButtonHTMLType;
|
|
68
|
-
onClick?: React.MouseEventHandler<HTMLElement>;
|
|
69
|
-
} & Omit<import('react').ButtonHTMLAttributes<any>, "onClick" | "type">>, "type" | "ghost"> & {
|
|
70
|
-
type?: import('@synerise/ds-utils').LiteralStringUnion<import('@synerise/ds-button/dist/Button.types').ButtonType>;
|
|
71
|
-
mode?: import('@synerise/ds-utils').LiteralStringUnion<"single-icon" | "split" | "two-icons" | "label-icon" | "icon-label">;
|
|
48
|
+
export declare const ListButton: import('styled-components').StyledComponent<import('react').ForwardRefExoticComponent<Omit<import('@synerise/ds-button/dist/BaseButton.types').BaseButtonProps, "type"> & {
|
|
49
|
+
type?: import('@synerise/ds-button').ButtonType;
|
|
50
|
+
mode?: import('@synerise/ds-utils').LiteralStringUnion<import('@synerise/ds-button/dist/Button.types').ButtonMode>;
|
|
72
51
|
color?: import('@synerise/ds-utils').LiteralStringUnion<"blue" | "grey" | "red" | "green" | "yellow" | "pink" | "mars" | "orange" | "fern" | "cyan" | "purple" | "violet">;
|
|
73
52
|
groupVariant?: import('@synerise/ds-utils').LiteralStringUnion<"left-rounded" | "squared" | "right-rounded">;
|
|
74
|
-
justifyContent?: string;
|
|
75
53
|
loading?: boolean | {
|
|
76
54
|
delay?: number;
|
|
77
55
|
};
|
|
56
|
+
icon?: import('react').ReactNode;
|
|
78
57
|
onClick?: (event: import('react').MouseEvent<HTMLElement>) => void;
|
|
79
58
|
iconColor?: import('@synerise/ds-utils').LiteralStringUnion<"blue" | "grey" | "red" | "green" | "yellow" | "pink" | "mars" | "orange" | "fern" | "cyan" | "purple" | "violet">;
|
|
80
59
|
error?: boolean;
|
|
@@ -1,19 +1,12 @@
|
|
|
1
|
-
export declare const GroupAddItemButton: import('styled-components').StyledComponent<import('react').ForwardRefExoticComponent<Omit<
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
onClick?: React.MouseEventHandler<HTMLElement>;
|
|
5
|
-
} & import('antd/lib/button/button').BaseButtonProps & Omit<import('react').AnchorHTMLAttributes<any>, "onClick" | "type"> & {
|
|
6
|
-
htmlType?: import('antd/lib/button/button').ButtonHTMLType;
|
|
7
|
-
onClick?: React.MouseEventHandler<HTMLElement>;
|
|
8
|
-
} & Omit<import('react').ButtonHTMLAttributes<any>, "onClick" | "type">>, "type" | "ghost"> & {
|
|
9
|
-
type?: import('@synerise/ds-utils').LiteralStringUnion<import('@synerise/ds-button/dist/Button.types').ButtonType>;
|
|
10
|
-
mode?: import('@synerise/ds-utils').LiteralStringUnion<"single-icon" | "split" | "two-icons" | "label-icon" | "icon-label">;
|
|
1
|
+
export declare const GroupAddItemButton: import('styled-components').StyledComponent<import('react').ForwardRefExoticComponent<Omit<import('@synerise/ds-button/dist/BaseButton.types').BaseButtonProps, "type"> & {
|
|
2
|
+
type?: import('@synerise/ds-button').ButtonType;
|
|
3
|
+
mode?: import('@synerise/ds-utils').LiteralStringUnion<import('@synerise/ds-button/dist/Button.types').ButtonMode>;
|
|
11
4
|
color?: import('@synerise/ds-utils').LiteralStringUnion<"blue" | "grey" | "red" | "green" | "yellow" | "pink" | "mars" | "orange" | "fern" | "cyan" | "purple" | "violet">;
|
|
12
5
|
groupVariant?: import('@synerise/ds-utils').LiteralStringUnion<"left-rounded" | "squared" | "right-rounded">;
|
|
13
|
-
justifyContent?: string;
|
|
14
6
|
loading?: boolean | {
|
|
15
7
|
delay?: number;
|
|
16
8
|
};
|
|
9
|
+
icon?: import('react').ReactNode;
|
|
17
10
|
onClick?: (event: import('react').MouseEvent<HTMLElement>) => void;
|
|
18
11
|
iconColor?: import('@synerise/ds-utils').LiteralStringUnion<"blue" | "grey" | "red" | "green" | "yellow" | "pink" | "mars" | "orange" | "fern" | "cyan" | "purple" | "violet">;
|
|
19
12
|
error?: boolean;
|
|
@@ -1,19 +1,12 @@
|
|
|
1
|
-
export declare const OffsetButton: import('styled-components').StyledComponent<import('react').ForwardRefExoticComponent<Omit<
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
onClick?: React.MouseEventHandler<HTMLElement>;
|
|
5
|
-
} & import('antd/lib/button/button').BaseButtonProps & Omit<import('react').AnchorHTMLAttributes<any>, "onClick" | "type"> & {
|
|
6
|
-
htmlType?: import('antd/lib/button/button').ButtonHTMLType;
|
|
7
|
-
onClick?: React.MouseEventHandler<HTMLElement>;
|
|
8
|
-
} & Omit<import('react').ButtonHTMLAttributes<any>, "onClick" | "type">>, "type" | "ghost"> & {
|
|
9
|
-
type?: import('@synerise/ds-utils').LiteralStringUnion<import('@synerise/ds-button/dist/Button.types').ButtonType>;
|
|
10
|
-
mode?: import('@synerise/ds-utils').LiteralStringUnion<"single-icon" | "split" | "two-icons" | "label-icon" | "icon-label">;
|
|
1
|
+
export declare const OffsetButton: import('styled-components').StyledComponent<import('react').ForwardRefExoticComponent<Omit<import('@synerise/ds-button/dist/BaseButton.types').BaseButtonProps, "type"> & {
|
|
2
|
+
type?: import('@synerise/ds-button').ButtonType;
|
|
3
|
+
mode?: import('@synerise/ds-utils').LiteralStringUnion<import('@synerise/ds-button/dist/Button.types').ButtonMode>;
|
|
11
4
|
color?: import('@synerise/ds-utils').LiteralStringUnion<"blue" | "grey" | "red" | "green" | "yellow" | "pink" | "mars" | "orange" | "fern" | "cyan" | "purple" | "violet">;
|
|
12
5
|
groupVariant?: import('@synerise/ds-utils').LiteralStringUnion<"left-rounded" | "squared" | "right-rounded">;
|
|
13
|
-
justifyContent?: string;
|
|
14
6
|
loading?: boolean | {
|
|
15
7
|
delay?: number;
|
|
16
8
|
};
|
|
9
|
+
icon?: import('react').ReactNode;
|
|
17
10
|
onClick?: (event: import('react').MouseEvent<HTMLElement>) => void;
|
|
18
11
|
iconColor?: import('@synerise/ds-utils').LiteralStringUnion<"blue" | "grey" | "red" | "green" | "yellow" | "pink" | "mars" | "orange" | "fern" | "cyan" | "purple" | "violet">;
|
|
19
12
|
error?: boolean;
|
|
@@ -29,22 +22,15 @@ export declare const OffsetButton: import('styled-components').StyledComponent<i
|
|
|
29
22
|
isSticky?: boolean;
|
|
30
23
|
}, never>;
|
|
31
24
|
declare const _default: {
|
|
32
|
-
OffsetButton: import('styled-components').StyledComponent<import('react').ForwardRefExoticComponent<Omit<
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
onClick?: React.MouseEventHandler<HTMLElement>;
|
|
36
|
-
} & import('antd/lib/button/button').BaseButtonProps & Omit<import('react').AnchorHTMLAttributes<any>, "onClick" | "type"> & {
|
|
37
|
-
htmlType?: import('antd/lib/button/button').ButtonHTMLType;
|
|
38
|
-
onClick?: React.MouseEventHandler<HTMLElement>;
|
|
39
|
-
} & Omit<import('react').ButtonHTMLAttributes<any>, "onClick" | "type">>, "type" | "ghost"> & {
|
|
40
|
-
type?: import('@synerise/ds-utils').LiteralStringUnion<import('@synerise/ds-button/dist/Button.types').ButtonType>;
|
|
41
|
-
mode?: import('@synerise/ds-utils').LiteralStringUnion<"single-icon" | "split" | "two-icons" | "label-icon" | "icon-label">;
|
|
25
|
+
OffsetButton: import('styled-components').StyledComponent<import('react').ForwardRefExoticComponent<Omit<import('@synerise/ds-button/dist/BaseButton.types').BaseButtonProps, "type"> & {
|
|
26
|
+
type?: import('@synerise/ds-button').ButtonType;
|
|
27
|
+
mode?: import('@synerise/ds-utils').LiteralStringUnion<import('@synerise/ds-button/dist/Button.types').ButtonMode>;
|
|
42
28
|
color?: import('@synerise/ds-utils').LiteralStringUnion<"blue" | "grey" | "red" | "green" | "yellow" | "pink" | "mars" | "orange" | "fern" | "cyan" | "purple" | "violet">;
|
|
43
29
|
groupVariant?: import('@synerise/ds-utils').LiteralStringUnion<"left-rounded" | "squared" | "right-rounded">;
|
|
44
|
-
justifyContent?: string;
|
|
45
30
|
loading?: boolean | {
|
|
46
31
|
delay?: number;
|
|
47
32
|
};
|
|
33
|
+
icon?: import('react').ReactNode;
|
|
48
34
|
onClick?: (event: import('react').MouseEvent<HTMLElement>) => void;
|
|
49
35
|
iconColor?: import('@synerise/ds-utils').LiteralStringUnion<"blue" | "grey" | "red" | "green" | "yellow" | "pink" | "mars" | "orange" | "fern" | "cyan" | "purple" | "violet">;
|
|
50
36
|
error?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-table",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.10",
|
|
4
4
|
"description": "Table UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "synerise/synerise-design",
|
|
@@ -41,10 +41,10 @@
|
|
|
41
41
|
],
|
|
42
42
|
"types": "dist/index.d.ts",
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@synerise/ds-alert": "^1.1.
|
|
44
|
+
"@synerise/ds-alert": "^1.1.54",
|
|
45
45
|
"@synerise/ds-badge": "^1.0.52",
|
|
46
|
-
"@synerise/ds-button": "^1.5.
|
|
47
|
-
"@synerise/ds-button-group": "^1.1.
|
|
46
|
+
"@synerise/ds-button": "^1.5.27",
|
|
47
|
+
"@synerise/ds-button-group": "^1.1.52",
|
|
48
48
|
"@synerise/ds-checkbox": "^1.2.29",
|
|
49
49
|
"@synerise/ds-copy-icon": "^1.2.10",
|
|
50
50
|
"@synerise/ds-dropdown": "^1.3.11",
|
|
@@ -54,17 +54,17 @@
|
|
|
54
54
|
"@synerise/ds-input-number": "^1.2.43",
|
|
55
55
|
"@synerise/ds-list-item": "^1.4.19",
|
|
56
56
|
"@synerise/ds-loader": "^1.0.16",
|
|
57
|
-
"@synerise/ds-menu": "^1.4.
|
|
58
|
-
"@synerise/ds-modal": "^1.4.
|
|
59
|
-
"@synerise/ds-pagination": "^1.0.
|
|
60
|
-
"@synerise/ds-result": "^1.0.
|
|
57
|
+
"@synerise/ds-menu": "^1.4.23",
|
|
58
|
+
"@synerise/ds-modal": "^1.4.12",
|
|
59
|
+
"@synerise/ds-pagination": "^1.0.62",
|
|
60
|
+
"@synerise/ds-result": "^1.0.58",
|
|
61
61
|
"@synerise/ds-scrollbar": "^1.3.4",
|
|
62
|
-
"@synerise/ds-search": "^1.5.
|
|
62
|
+
"@synerise/ds-search": "^1.5.22",
|
|
63
63
|
"@synerise/ds-select": "^1.3.28",
|
|
64
64
|
"@synerise/ds-skeleton": "^1.0.53",
|
|
65
65
|
"@synerise/ds-status": "^1.3.26",
|
|
66
66
|
"@synerise/ds-tag": "^1.4.26",
|
|
67
|
-
"@synerise/ds-tags": "^1.5.
|
|
67
|
+
"@synerise/ds-tags": "^1.5.39",
|
|
68
68
|
"@synerise/ds-tooltip": "^1.4.18",
|
|
69
69
|
"@synerise/ds-typography": "^1.1.21",
|
|
70
70
|
"@synerise/ds-utils": "^1.8.1",
|
|
@@ -101,5 +101,5 @@
|
|
|
101
101
|
"styled-components": "^5.3.3",
|
|
102
102
|
"vitest": "4"
|
|
103
103
|
},
|
|
104
|
-
"gitHead": "
|
|
104
|
+
"gitHead": "0418fb6d3b67c35d3c8bacfe53ce01528c6b6153"
|
|
105
105
|
}
|