@comercti/web-components-hmg 0.9.9 → 0.10.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.
- package/comerc-style-guide.cjs.js +29 -29
- package/comerc-style-guide.es.js +2833 -2699
- package/comerc-style-guide.umd.js +29 -29
- package/index.d.ts +18 -18
- package/package.json +3 -1
package/index.d.ts
CHANGED
|
@@ -69,11 +69,11 @@ declare module 'vue' {
|
|
|
69
69
|
|
|
70
70
|
declare module 'vue' {
|
|
71
71
|
interface GlobalComponents {
|
|
72
|
-
'ce-
|
|
73
|
-
'ce-
|
|
74
|
-
'ce-
|
|
75
|
-
'ce-
|
|
76
|
-
'ce-
|
|
72
|
+
'ce-menu-sidebar': typeof MenuSidebarComponent;
|
|
73
|
+
'ce-menu-header': typeof MenuHeaderComponent;
|
|
74
|
+
'ce-breadcrumbs': typeof BreadcrumbsComponent;
|
|
75
|
+
'ce-tab': typeof TabComponent;
|
|
76
|
+
'ce-tab-item': typeof TabItemComponent;
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
79
|
|
|
@@ -93,30 +93,30 @@ declare module 'vue' {
|
|
|
93
93
|
|
|
94
94
|
declare module 'vue' {
|
|
95
95
|
interface GlobalComponents {
|
|
96
|
-
'ce-
|
|
97
|
-
'ce-
|
|
98
|
-
'ce-
|
|
99
|
-
'ce-
|
|
100
|
-
'ce-
|
|
96
|
+
'ce-banners': typeof BannersComponent;
|
|
97
|
+
'ce-modal': typeof ModalComponent;
|
|
98
|
+
'ce-toast': typeof ToastComponent;
|
|
99
|
+
'ce-tooltip': typeof TooltipComponent;
|
|
100
|
+
'ce-loading': typeof LoadingComponent;
|
|
101
101
|
}
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
|
|
105
105
|
declare module 'vue' {
|
|
106
106
|
interface GlobalComponents {
|
|
107
|
-
'ce-
|
|
108
|
-
'ce-
|
|
109
|
-
'ce-
|
|
107
|
+
'ce-pagination': typeof PaginationComponent;
|
|
108
|
+
'ce-progress-indicator': typeof ProgressIndicatorComponent;
|
|
109
|
+
'ce-progress-steps': typeof ProgressStepsComponent;
|
|
110
|
+
'ce-data-table': typeof DataTableComponent;
|
|
111
|
+
'ce-items-per-page': typeof ItemsPerPageComponent;
|
|
110
112
|
}
|
|
111
113
|
}
|
|
112
114
|
|
|
113
115
|
|
|
114
116
|
declare module 'vue' {
|
|
115
117
|
interface GlobalComponents {
|
|
116
|
-
'ce-
|
|
117
|
-
'ce-
|
|
118
|
-
'ce-
|
|
119
|
-
'ce-data-table': typeof DataTableComponent;
|
|
120
|
-
'ce-items-per-page': typeof ItemsPerPageComponent;
|
|
118
|
+
'ce-avatar': typeof AvatarComponent;
|
|
119
|
+
'ce-filter-group': typeof FilterGroupComponent;
|
|
120
|
+
'ce-badge': typeof BadgeComponent;
|
|
121
121
|
}
|
|
122
122
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comercti/web-components-hmg",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.1",
|
|
4
4
|
"types": "index.d.ts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "private",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"@storybook/addon-onboarding": "8.5.5",
|
|
31
31
|
"@storybook/addon-postcss": "^2.0.0",
|
|
32
32
|
"@storybook/addon-viewport": "^8.5.5",
|
|
33
|
+
"@storybook/addons": "^7.6.17",
|
|
33
34
|
"@storybook/blocks": "8.5.5",
|
|
34
35
|
"@storybook/manager-api": "^8.5.5",
|
|
35
36
|
"@storybook/test": "8.5.5",
|
|
@@ -62,6 +63,7 @@
|
|
|
62
63
|
"prettier": "^3.5.1",
|
|
63
64
|
"storybook": "8.5.5",
|
|
64
65
|
"storybook-addon-vue-mdx": "^1.0.6",
|
|
66
|
+
"storybook-dark-mode": "^4.0.2",
|
|
65
67
|
"tailwindcss": "^3.4.17",
|
|
66
68
|
"typescript": "~5.7.3",
|
|
67
69
|
"vite": "^6.1.0",
|