@central-design-system/components 3.2.0 → 3.2.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/dist/cds.css +1 -1
- package/dist/cds.es.js +1044 -1042
- package/dist/cds.es.js.map +1 -1
- package/dist/cds.umd.js +4 -4
- package/dist/cds.umd.js.map +1 -1
- package/dist/utils/helpers.d.ts +5 -0
- package/package.json +2 -2
package/dist/utils/helpers.d.ts
CHANGED
|
@@ -133,6 +133,11 @@ export declare function convertRemToPx(value: string): number;
|
|
|
133
133
|
*/
|
|
134
134
|
export declare function clamp(value: number, min?: number, max?: number): number;
|
|
135
135
|
export declare function createRange(length: number, start?: number): number[];
|
|
136
|
+
/**
|
|
137
|
+
* Is value an like event
|
|
138
|
+
* @param key
|
|
139
|
+
*/
|
|
140
|
+
export declare const onRE: RegExp;
|
|
136
141
|
export declare const isOn: (key: string) => boolean;
|
|
137
142
|
export declare const EventProp: PropType<EventProp>;
|
|
138
143
|
export declare function isComponentInstance(obj: any): obj is ComponentPublicInstance;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@central-design-system/components",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"description": "Central Design System on the Vue 3.0 and TypeScript",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "magersoft",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"nuxt.js"
|
|
40
40
|
],
|
|
41
41
|
"engines": {
|
|
42
|
-
"node": ">=
|
|
42
|
+
"node": ">= 18"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
45
|
"build": "rimraf dist && npm run type-check && vite build",
|