@cobre-npm/ds-v3 0.79.6 → 0.79.8
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.
|
@@ -1025,6 +1025,7 @@
|
|
|
1025
1025
|
--cobre-table-headless-row-hover-bg: var(--cobre-primary-10);
|
|
1026
1026
|
--cobre-table-headless-empty-bg: var(--cobre-primary-10);
|
|
1027
1027
|
--cobre-table-headless-empty-radius: var(--cobre-radius-S);
|
|
1028
|
+
--cobre-table-headless-scrollbar-color: var(--cobre-primary-10) var(--cobre-white);
|
|
1028
1029
|
}
|
|
1029
1030
|
|
|
1030
1031
|
/**
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
type IconType =
|
|
1
|
+
type IconType = "danger" | "success" | "warning" | "info" | null;
|
|
2
2
|
interface Props {
|
|
3
3
|
type?: IconType;
|
|
4
4
|
content?: string;
|
|
5
5
|
title?: string;
|
|
6
6
|
src?: string;
|
|
7
7
|
hasCloseButton?: boolean;
|
|
8
|
+
customIcon?: string;
|
|
8
9
|
}
|
|
9
10
|
declare function __VLS_template(): {
|
|
10
11
|
attrs: Partial<{}>;
|
|
@@ -7,6 +7,8 @@ interface Props {
|
|
|
7
7
|
labelOptional?: string;
|
|
8
8
|
disabled?: boolean;
|
|
9
9
|
noArrow?: boolean;
|
|
10
|
+
noOptionsText?: string;
|
|
11
|
+
noOptionsIcon?: string;
|
|
10
12
|
}
|
|
11
13
|
declare function __VLS_template(): {
|
|
12
14
|
attrs: Partial<{}>;
|
|
@@ -55,6 +57,8 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {},
|
|
|
55
57
|
errorMsg: string;
|
|
56
58
|
labelTooltip: string;
|
|
57
59
|
labelOptional: string;
|
|
60
|
+
noOptionsText: string;
|
|
61
|
+
noOptionsIcon: string;
|
|
58
62
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
59
63
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
60
64
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cobre-npm/ds-v3",
|
|
3
|
-
"version": "0.79.
|
|
3
|
+
"version": "0.79.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -21,8 +21,7 @@
|
|
|
21
21
|
"storybook": "storybook dev -p 6006 --ci",
|
|
22
22
|
"storybook-server": "storybook dev -p 8080",
|
|
23
23
|
"build-storybook": "storybook build",
|
|
24
|
-
"test": "test-storybook"
|
|
25
|
-
"prepare": "echo 'Preparing project: installing Husky hooks...' && husky"
|
|
24
|
+
"test": "test-storybook"
|
|
26
25
|
},
|
|
27
26
|
"dependencies": {
|
|
28
27
|
"@popperjs/core": "^2.11.8",
|
|
@@ -57,7 +56,6 @@
|
|
|
57
56
|
"eslint": "^8.57.0",
|
|
58
57
|
"eslint-plugin-storybook": "^0.12.0",
|
|
59
58
|
"eslint-plugin-vue": "^9.22.0",
|
|
60
|
-
"husky": "^9.0.11",
|
|
61
59
|
"npm-run-all": "^4.1.5",
|
|
62
60
|
"prettier": "^3.3.2",
|
|
63
61
|
"standard": "^17.1.0",
|