@comercti/web-components-hmg 0.22.2 → 0.22.4
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 +6 -6
- package/comerc-style-guide.es.js +3645 -3499
- package/comerc-style-guide.umd.js +5 -5
- package/index.d.ts +4 -1
- package/package.json +2 -3
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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comercti/web-components-hmg",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.4",
|
|
4
4
|
"types": "index.d.ts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "private",
|
|
@@ -21,8 +21,7 @@
|
|
|
21
21
|
"react-dom": "^17.0.2",
|
|
22
22
|
"veaury": "^2.6.2",
|
|
23
23
|
"vitest-sonar-reporter": "^2.0.0",
|
|
24
|
-
"vue": "^3.5.13"
|
|
25
|
-
"vue3-otp-input": "^0.5.40"
|
|
24
|
+
"vue": "^3.5.13"
|
|
26
25
|
},
|
|
27
26
|
"peerDependencies": {
|
|
28
27
|
"vue": ">=3.2.0"
|