@gx-design-vue/pro-utils 0.0.20 → 0.0.22
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/typings/index.d.ts +1 -0
- package/package.json +3 -2
package/dist/typings/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export declare type WithFalse<T> = T | false;
|
|
|
5
5
|
export declare type RecordType = Record<string, any>;
|
|
6
6
|
export declare type VueNode = VNodeChild | JSX.Element;
|
|
7
7
|
export declare type CustomRender = Slot | VNodeChild | VNode | ((...props: any[]) => Slot) | ((...props: any[]) => VNode) | ((...args: any[]) => VNode) | VNode[] | JSX.Element | string | null | undefined;
|
|
8
|
+
export declare type Breakpoint = 'xxl' | 'xl' | 'lg' | 'md' | 'sm' | 'xs';
|
|
8
9
|
export declare type SizeType = 'small' | 'middle' | 'large' | undefined;
|
|
9
10
|
export declare type AlignType = 'left' | 'center' | 'right';
|
|
10
11
|
export declare type BasicTablePageConfig = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gx-design-vue/pro-utils",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.22",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "vite",
|
|
6
6
|
"build": "vite build",
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
},
|
|
24
24
|
"./dist/style.css": "./dist/style.css",
|
|
25
25
|
"./dist/style.less": "./dist/style.less",
|
|
26
|
-
"./dist/proUtils.less": "./dist/proUtils.less"
|
|
26
|
+
"./dist/proUtils.less": "./dist/proUtils.less",
|
|
27
|
+
"./dist/components/LabelIconTip/index.less": "./dist/components/LabelIconTip/index.less"
|
|
27
28
|
},
|
|
28
29
|
"dependencies": {
|
|
29
30
|
"@vueuse/core": "^6.8.0",
|