@comercti/web-components 0.21.0 → 0.23.0
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/comerc-style-guide.cjs.js +29 -29
- package/comerc-style-guide.es.js +4071 -3568
- package/comerc-style-guide.umd.js +30 -30
- package/index.d.ts +14 -9
- package/package.json +2 -1
package/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { IData } from './toast/interfaces';
|
|
2
1
|
import { Ref } from 'vue';
|
|
3
2
|
|
|
4
3
|
export declare const activateCeLoading: () => void;
|
|
@@ -7,6 +6,10 @@ export declare const addCeToast: (title: string, message: string, type: "success
|
|
|
7
6
|
|
|
8
7
|
export declare const disableCeLoading: () => void;
|
|
9
8
|
|
|
9
|
+
declare interface IData<T = unknown> {
|
|
10
|
+
[key: string]: T;
|
|
11
|
+
}
|
|
12
|
+
|
|
10
13
|
export declare const isMobile: Ref<boolean, boolean>;
|
|
11
14
|
|
|
12
15
|
export declare const removeCeToast: (id: number) => void;
|
|
@@ -55,26 +58,27 @@ declare module 'vue' {
|
|
|
55
58
|
'ce-button-wrapper': typeof ButtonWrapperComponent;
|
|
56
59
|
'ce-button-pagination': typeof ButtonPaginationComponent;
|
|
57
60
|
'ce-textarea': typeof TextareaComponent;
|
|
61
|
+
'ce-code-input': typeof CodeInputComponent;
|
|
58
62
|
}
|
|
59
63
|
}
|
|
60
64
|
|
|
61
65
|
|
|
62
66
|
declare module 'vue' {
|
|
63
67
|
interface GlobalComponents {
|
|
64
|
-
'ce-
|
|
65
|
-
'ce-
|
|
66
|
-
'ce-
|
|
68
|
+
'ce-menu-sidebar': typeof MenuSidebarComponent;
|
|
69
|
+
'ce-menu-header': typeof MenuHeaderComponent;
|
|
70
|
+
'ce-breadcrumbs': typeof BreadcrumbsComponent;
|
|
71
|
+
'ce-tab': typeof TabComponent;
|
|
72
|
+
'ce-tab-item': typeof TabItemComponent;
|
|
67
73
|
}
|
|
68
74
|
}
|
|
69
75
|
|
|
70
76
|
|
|
71
77
|
declare module 'vue' {
|
|
72
78
|
interface GlobalComponents {
|
|
73
|
-
'ce-
|
|
74
|
-
'ce-
|
|
75
|
-
'ce-
|
|
76
|
-
'ce-tab': typeof TabComponent;
|
|
77
|
-
'ce-tab-item': typeof TabItemComponent;
|
|
79
|
+
'ce-col': typeof ColComponent;
|
|
80
|
+
'ce-row': typeof RowComponent;
|
|
81
|
+
'ce-container': typeof ContainerComponent;
|
|
78
82
|
}
|
|
79
83
|
}
|
|
80
84
|
|
|
@@ -88,6 +92,7 @@ declare module 'vue' {
|
|
|
88
92
|
'ce-footer': typeof FooterComponent;
|
|
89
93
|
'ce-layout': typeof LayoutComponent;
|
|
90
94
|
'ce-section-footer': typeof SectionFooterComponent;
|
|
95
|
+
'ce-collapse': typeof CollapseComponent;
|
|
91
96
|
}
|
|
92
97
|
}
|
|
93
98
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comercti/web-components",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.23.0",
|
|
4
4
|
"types": "index.d.ts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "private",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"description": "",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@popperjs/core": "^2.11.8",
|
|
14
|
+
"@venegrad/vue3-code-input": "^1.0.8",
|
|
14
15
|
"@wdns/vue-code-block": "^2.3.5",
|
|
15
16
|
"date-fns": "^4.1.0",
|
|
16
17
|
"highlight.js": "^11.11.1",
|