@a2simcode/ui 0.0.7 → 0.0.9
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/components/autocomplete/index.d.ts +6 -6
- package/dist/components/barcode/index.d.ts +6 -6
- package/dist/components/buttons/index.d.ts +12 -12
- package/dist/components/cascader-select/index.d.ts +6 -6
- package/dist/components/checkbox/index.d.ts +6 -6
- package/dist/components/code-mirror/index.d.ts +3 -3
- package/dist/components/comp/index.d.ts +6 -6
- package/dist/components/count/index.d.ts +73 -0
- package/dist/components/count/src/count.vue.d.ts +41 -0
- package/dist/components/count-up/index.d.ts +87 -0
- package/dist/components/count-up/src/count-up.vue.d.ts +43 -0
- package/dist/components/data-panel/index.d.ts +27 -0
- package/dist/components/data-panel/src/data-panel.vue.d.ts +24 -0
- package/dist/components/dialog/index.d.ts +6 -6
- package/dist/components/dialog-full/index.d.ts +6 -6
- package/dist/components/divider/index.d.ts +25 -0
- package/dist/components/divider/src/divider.vue.d.ts +29 -0
- package/dist/components/drawer/index.d.ts +6 -6
- package/dist/components/dynamic-layer/index.d.ts +3 -3
- package/dist/components/form/index.d.ts +3 -3
- package/dist/components/form-item/index.d.ts +6 -6
- package/dist/components/guid/index.d.ts +35 -0
- package/dist/components/guid/src/guid.vue.d.ts +28 -0
- package/dist/components/hpanel/index.d.ts +22 -0
- package/dist/components/hpanel/src/hpanel.vue.d.ts +19 -0
- package/dist/components/icon/index.d.ts +3 -3
- package/dist/components/index.d.ts +37 -1
- package/dist/components/input/index.d.ts +6 -6
- package/dist/components/input/src/input.vue.d.ts +1 -1
- package/dist/components/input-button/index.d.ts +65 -0
- package/dist/components/input-button/src/input-button.vue.d.ts +65 -0
- package/dist/components/input-code/index.d.ts +52 -0
- package/dist/components/input-code/src/input-code.vue.d.ts +41 -0
- package/dist/components/input-tag/index.d.ts +3 -3
- package/dist/components/layer/index.d.ts +6 -6
- package/dist/components/number/index.d.ts +3 -3
- package/dist/components/page/index.d.ts +6 -6
- package/dist/components/rate/index.d.ts +3 -3
- package/dist/components/select/index.d.ts +11 -11
- package/dist/components/slider/index.d.ts +3 -3
- package/dist/components/table/index.d.ts +18 -18
- package/dist/components/title/index.d.ts +37 -0
- package/dist/components/title/src/title.vue.d.ts +35 -0
- package/dist/core/utils/common.d.ts +26 -0
- package/dist/core/utils/is.d.ts +2 -0
- package/dist/simcode-ui.es.js +2325 -1703
- package/dist/simcode-ui.umd.js +16 -1
- package/dist/stats.html +1 -1
- package/dist/ui.css +1 -1
- package/package.json +3 -1
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
declare const JInputButton: {
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('..').InputButtonProps> & Readonly<{
|
|
3
|
+
"onUpdate:modelValue"?: ((value: string | Record<string, any> | undefined) => any) | undefined;
|
|
4
|
+
onChange?: ((data: {
|
|
5
|
+
value: string | Record<string, any> | undefined;
|
|
6
|
+
}) => any) | undefined;
|
|
7
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8
|
+
"update:modelValue": (value: string | Record<string, any> | undefined) => any;
|
|
9
|
+
change: (data: {
|
|
10
|
+
value: string | Record<string, any> | undefined;
|
|
11
|
+
}) => any;
|
|
12
|
+
}, import('vue').PublicProps, {
|
|
13
|
+
size: "large" | "default" | "small";
|
|
14
|
+
height: number;
|
|
15
|
+
width: string | number;
|
|
16
|
+
destroyOnClose: boolean;
|
|
17
|
+
btnText: string;
|
|
18
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
19
|
+
layerRef: unknown;
|
|
20
|
+
}, any, import('vue').ComponentProvideOptions, {
|
|
21
|
+
P: {};
|
|
22
|
+
B: {};
|
|
23
|
+
D: {};
|
|
24
|
+
C: {};
|
|
25
|
+
M: {};
|
|
26
|
+
Defaults: {};
|
|
27
|
+
}, Readonly<import('..').InputButtonProps> & Readonly<{
|
|
28
|
+
"onUpdate:modelValue"?: ((value: string | Record<string, any> | undefined) => any) | undefined;
|
|
29
|
+
onChange?: ((data: {
|
|
30
|
+
value: string | Record<string, any> | undefined;
|
|
31
|
+
}) => any) | undefined;
|
|
32
|
+
}>, {}, {}, {}, {}, {
|
|
33
|
+
size: "large" | "default" | "small";
|
|
34
|
+
height: number;
|
|
35
|
+
width: string | number;
|
|
36
|
+
destroyOnClose: boolean;
|
|
37
|
+
btnText: string;
|
|
38
|
+
}>;
|
|
39
|
+
__isFragment?: never;
|
|
40
|
+
__isTeleport?: never;
|
|
41
|
+
__isSuspense?: never;
|
|
42
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('..').InputButtonProps> & Readonly<{
|
|
43
|
+
"onUpdate:modelValue"?: ((value: string | Record<string, any> | undefined) => any) | undefined;
|
|
44
|
+
onChange?: ((data: {
|
|
45
|
+
value: string | Record<string, any> | undefined;
|
|
46
|
+
}) => any) | undefined;
|
|
47
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
48
|
+
"update:modelValue": (value: string | Record<string, any> | undefined) => any;
|
|
49
|
+
change: (data: {
|
|
50
|
+
value: string | Record<string, any> | undefined;
|
|
51
|
+
}) => any;
|
|
52
|
+
}, string, {
|
|
53
|
+
size: "large" | "default" | "small";
|
|
54
|
+
height: number;
|
|
55
|
+
width: string | number;
|
|
56
|
+
destroyOnClose: boolean;
|
|
57
|
+
btnText: string;
|
|
58
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
59
|
+
$slots: {
|
|
60
|
+
default?(_: {}): any;
|
|
61
|
+
};
|
|
62
|
+
}) & {
|
|
63
|
+
install: (app: import('vue').App) => void;
|
|
64
|
+
};
|
|
65
|
+
export default JInputButton;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
export interface InputButtonProps {
|
|
2
|
+
/** 输入值 */
|
|
3
|
+
modelValue?: string | Record<string, any>;
|
|
4
|
+
/** 按钮的类型,分为五种:主要按钮、幽灵按钮、虚框按钮、链接按钮、文字按钮、次要按钮 */
|
|
5
|
+
type?: 'primary' | 'ghost' | 'dashed' | 'link' | 'text' | 'default';
|
|
6
|
+
/** 弹窗类型,弹窗、全屏弹窗、抽屉 */
|
|
7
|
+
layerType?: 'model' | 'full' | 'drawer';
|
|
8
|
+
/** 设置按钮文字 */
|
|
9
|
+
btnText?: string;
|
|
10
|
+
/** 弹窗标题 */
|
|
11
|
+
title?: string;
|
|
12
|
+
/** 设置按钮大小 */
|
|
13
|
+
size?: 'large' | 'default' | 'small';
|
|
14
|
+
/** 宽度 */
|
|
15
|
+
width?: string | number;
|
|
16
|
+
/** 高度 */
|
|
17
|
+
height?: number;
|
|
18
|
+
/** 关闭时销毁抽屉内的元素 */
|
|
19
|
+
destroyOnClose?: boolean;
|
|
20
|
+
/** 弹窗打开回调 */
|
|
21
|
+
open?: (value?: string | Record<string, any>) => void;
|
|
22
|
+
/** 弹窗保存回调 */
|
|
23
|
+
ok?: () => Promise<string | Record<string, any>>;
|
|
24
|
+
/** 弹窗关闭前回调 */
|
|
25
|
+
beforeClose?: (value?: string | Record<string, any>) => boolean | Promise<boolean>;
|
|
26
|
+
/** 弹窗关闭后回调 */
|
|
27
|
+
closed?: () => void;
|
|
28
|
+
}
|
|
29
|
+
declare function __VLS_template(): {
|
|
30
|
+
attrs: Partial<{}>;
|
|
31
|
+
slots: {
|
|
32
|
+
default?(_: {}): any;
|
|
33
|
+
};
|
|
34
|
+
refs: {
|
|
35
|
+
layerRef: unknown;
|
|
36
|
+
};
|
|
37
|
+
rootEl: any;
|
|
38
|
+
};
|
|
39
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
40
|
+
declare const __VLS_component: import('vue').DefineComponent<InputButtonProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
41
|
+
"update:modelValue": (value: string | Record<string, any> | undefined) => any;
|
|
42
|
+
change: (data: {
|
|
43
|
+
value: string | Record<string, any> | undefined;
|
|
44
|
+
}) => any;
|
|
45
|
+
}, string, import('vue').PublicProps, Readonly<InputButtonProps> & Readonly<{
|
|
46
|
+
"onUpdate:modelValue"?: ((value: string | Record<string, any> | undefined) => any) | undefined;
|
|
47
|
+
onChange?: ((data: {
|
|
48
|
+
value: string | Record<string, any> | undefined;
|
|
49
|
+
}) => any) | undefined;
|
|
50
|
+
}>, {
|
|
51
|
+
size: "large" | "default" | "small";
|
|
52
|
+
height: number;
|
|
53
|
+
width: string | number;
|
|
54
|
+
destroyOnClose: boolean;
|
|
55
|
+
btnText: string;
|
|
56
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
57
|
+
layerRef: unknown;
|
|
58
|
+
}, any>;
|
|
59
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
60
|
+
export default _default;
|
|
61
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
62
|
+
new (): {
|
|
63
|
+
$slots: S;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
declare const JInputCode: {
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('..').InputCodeProps> & Readonly<{
|
|
3
|
+
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
4
|
+
onChange?: ((data: any) => any) | undefined;
|
|
5
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
6
|
+
"update:modelValue": (value: string | undefined) => any;
|
|
7
|
+
change: (data: any) => any;
|
|
8
|
+
}, import('vue').PublicProps, {
|
|
9
|
+
height: number;
|
|
10
|
+
mode: string;
|
|
11
|
+
width: string | number;
|
|
12
|
+
btnText: string;
|
|
13
|
+
example: string;
|
|
14
|
+
isHint: boolean;
|
|
15
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
16
|
+
P: {};
|
|
17
|
+
B: {};
|
|
18
|
+
D: {};
|
|
19
|
+
C: {};
|
|
20
|
+
M: {};
|
|
21
|
+
Defaults: {};
|
|
22
|
+
}, Readonly<import('..').InputCodeProps> & Readonly<{
|
|
23
|
+
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
24
|
+
onChange?: ((data: any) => any) | undefined;
|
|
25
|
+
}>, {}, {}, {}, {}, {
|
|
26
|
+
height: number;
|
|
27
|
+
mode: string;
|
|
28
|
+
width: string | number;
|
|
29
|
+
btnText: string;
|
|
30
|
+
example: string;
|
|
31
|
+
isHint: boolean;
|
|
32
|
+
}>;
|
|
33
|
+
__isFragment?: never;
|
|
34
|
+
__isTeleport?: never;
|
|
35
|
+
__isSuspense?: never;
|
|
36
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('..').InputCodeProps> & Readonly<{
|
|
37
|
+
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
38
|
+
onChange?: ((data: any) => any) | undefined;
|
|
39
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
40
|
+
"update:modelValue": (value: string | undefined) => any;
|
|
41
|
+
change: (data: any) => any;
|
|
42
|
+
}, string, {
|
|
43
|
+
height: number;
|
|
44
|
+
mode: string;
|
|
45
|
+
width: string | number;
|
|
46
|
+
btnText: string;
|
|
47
|
+
example: string;
|
|
48
|
+
isHint: boolean;
|
|
49
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
|
50
|
+
install: (app: import('vue').App) => void;
|
|
51
|
+
};
|
|
52
|
+
export default JInputCode;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
export interface InputCodeProps {
|
|
2
|
+
/** 输入值 */
|
|
3
|
+
modelValue?: string;
|
|
4
|
+
/** 按钮的类型,分为五种:主要按钮、幽灵按钮、虚框按钮、链接按钮、文字按钮、次要按钮 */
|
|
5
|
+
type?: 'primary' | 'ghost' | 'dashed' | 'link' | 'text' | 'default';
|
|
6
|
+
/** 脚本类型 */
|
|
7
|
+
mode?: string;
|
|
8
|
+
/** 按钮文字 */
|
|
9
|
+
btnText?: string;
|
|
10
|
+
/** 弹窗标题 */
|
|
11
|
+
title?: string;
|
|
12
|
+
/** 设置按钮大小 */
|
|
13
|
+
size?: 'large' | 'default' | 'small';
|
|
14
|
+
/** 宽度 */
|
|
15
|
+
width?: string | number;
|
|
16
|
+
/** 高度 */
|
|
17
|
+
height?: number;
|
|
18
|
+
/** 示例代码 */
|
|
19
|
+
example?: string;
|
|
20
|
+
/** 弹窗关闭前回调 */
|
|
21
|
+
beforeClose?: (code: string) => boolean | Promise<boolean>;
|
|
22
|
+
/** 是否开启自动补全 */
|
|
23
|
+
isHint?: boolean;
|
|
24
|
+
/** 自动补全方法 */
|
|
25
|
+
handleHint?: (...args: any[]) => any;
|
|
26
|
+
}
|
|
27
|
+
declare const _default: import('vue').DefineComponent<InputCodeProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
28
|
+
"update:modelValue": (value: string | undefined) => any;
|
|
29
|
+
change: (data: any) => any;
|
|
30
|
+
}, string, import('vue').PublicProps, Readonly<InputCodeProps> & Readonly<{
|
|
31
|
+
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
32
|
+
onChange?: ((data: any) => any) | undefined;
|
|
33
|
+
}>, {
|
|
34
|
+
height: number;
|
|
35
|
+
mode: string;
|
|
36
|
+
width: string | number;
|
|
37
|
+
btnText: string;
|
|
38
|
+
example: string;
|
|
39
|
+
isHint: boolean;
|
|
40
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
41
|
+
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const JInputTag: {
|
|
2
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('..').InputTagProps> & Readonly<{
|
|
3
3
|
onSearch?: ((value: any) => any) | undefined;
|
|
4
4
|
onSelect?: ((value: any) => any) | undefined;
|
|
5
5
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
@@ -28,7 +28,7 @@ export declare const JInputTag: {
|
|
|
28
28
|
C: {};
|
|
29
29
|
M: {};
|
|
30
30
|
Defaults: {};
|
|
31
|
-
}, Readonly<import('
|
|
31
|
+
}, Readonly<import('..').InputTagProps> & Readonly<{
|
|
32
32
|
onSearch?: ((value: any) => any) | undefined;
|
|
33
33
|
onSelect?: ((value: any) => any) | undefined;
|
|
34
34
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
@@ -47,7 +47,7 @@ export declare const JInputTag: {
|
|
|
47
47
|
__isFragment?: never;
|
|
48
48
|
__isTeleport?: never;
|
|
49
49
|
__isSuspense?: never;
|
|
50
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('
|
|
50
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('..').InputTagProps> & Readonly<{
|
|
51
51
|
onSearch?: ((value: any) => any) | undefined;
|
|
52
52
|
onSelect?: ((value: any) => any) | undefined;
|
|
53
53
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
@@ -46,7 +46,7 @@ export declare const JLayer: {
|
|
|
46
46
|
default: string;
|
|
47
47
|
};
|
|
48
48
|
buttons: {
|
|
49
|
-
type: import('vue').PropType<import('
|
|
49
|
+
type: import('vue').PropType<import('..').buttonItem[]>;
|
|
50
50
|
default: () => never[];
|
|
51
51
|
};
|
|
52
52
|
destroyOnClose: {
|
|
@@ -77,7 +77,7 @@ export declare const JLayer: {
|
|
|
77
77
|
}, import('vue').PublicProps, {
|
|
78
78
|
height: number;
|
|
79
79
|
width: number;
|
|
80
|
-
buttons: import('
|
|
80
|
+
buttons: import('..').buttonItem[];
|
|
81
81
|
destroyOnClose: boolean;
|
|
82
82
|
hasBtns: boolean;
|
|
83
83
|
hasSaveBtn: boolean;
|
|
@@ -143,7 +143,7 @@ export declare const JLayer: {
|
|
|
143
143
|
default: string;
|
|
144
144
|
};
|
|
145
145
|
buttons: {
|
|
146
|
-
type: import('vue').PropType<import('
|
|
146
|
+
type: import('vue').PropType<import('..').buttonItem[]>;
|
|
147
147
|
default: () => never[];
|
|
148
148
|
};
|
|
149
149
|
destroyOnClose: {
|
|
@@ -170,7 +170,7 @@ export declare const JLayer: {
|
|
|
170
170
|
}, {}, {}, {}, {
|
|
171
171
|
height: number;
|
|
172
172
|
width: number;
|
|
173
|
-
buttons: import('
|
|
173
|
+
buttons: import('..').buttonItem[];
|
|
174
174
|
destroyOnClose: boolean;
|
|
175
175
|
hasBtns: boolean;
|
|
176
176
|
hasSaveBtn: boolean;
|
|
@@ -231,7 +231,7 @@ export declare const JLayer: {
|
|
|
231
231
|
default: string;
|
|
232
232
|
};
|
|
233
233
|
buttons: {
|
|
234
|
-
type: import('vue').PropType<import('
|
|
234
|
+
type: import('vue').PropType<import('..').buttonItem[]>;
|
|
235
235
|
default: () => never[];
|
|
236
236
|
};
|
|
237
237
|
destroyOnClose: {
|
|
@@ -262,7 +262,7 @@ export declare const JLayer: {
|
|
|
262
262
|
}, string, {
|
|
263
263
|
height: number;
|
|
264
264
|
width: number;
|
|
265
|
-
buttons: import('
|
|
265
|
+
buttons: import('..').buttonItem[];
|
|
266
266
|
destroyOnClose: boolean;
|
|
267
267
|
hasBtns: boolean;
|
|
268
268
|
hasSaveBtn: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
declare const JNumber: {
|
|
2
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('..').NumberProps> & Readonly<{
|
|
3
3
|
onFocus?: (() => any) | undefined;
|
|
4
4
|
onBlur?: (() => any) | undefined;
|
|
5
5
|
"onUpdate:modelValue"?: ((value: number | undefined) => any) | undefined;
|
|
@@ -32,7 +32,7 @@ declare const JNumber: {
|
|
|
32
32
|
C: {};
|
|
33
33
|
M: {};
|
|
34
34
|
Defaults: {};
|
|
35
|
-
}, Readonly<import('
|
|
35
|
+
}, Readonly<import('..').NumberProps> & Readonly<{
|
|
36
36
|
onFocus?: (() => any) | undefined;
|
|
37
37
|
onBlur?: (() => any) | undefined;
|
|
38
38
|
"onUpdate:modelValue"?: ((value: number | undefined) => any) | undefined;
|
|
@@ -55,7 +55,7 @@ declare const JNumber: {
|
|
|
55
55
|
__isFragment?: never;
|
|
56
56
|
__isTeleport?: never;
|
|
57
57
|
__isSuspense?: never;
|
|
58
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('
|
|
58
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('..').NumberProps> & Readonly<{
|
|
59
59
|
onFocus?: (() => any) | undefined;
|
|
60
60
|
onBlur?: (() => any) | undefined;
|
|
61
61
|
"onUpdate:modelValue"?: ((value: number | undefined) => any) | undefined;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const JPage: {
|
|
2
2
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
3
3
|
schema: {
|
|
4
|
-
type: import('vue').PropType<import('
|
|
4
|
+
type: import('vue').PropType<import('..').PageSchemaConfig[]>;
|
|
5
5
|
default: () => never[];
|
|
6
6
|
};
|
|
7
7
|
noPadding: {
|
|
@@ -13,7 +13,7 @@ export declare const JPage: {
|
|
|
13
13
|
default: () => {};
|
|
14
14
|
};
|
|
15
15
|
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
16
|
-
schema: import('
|
|
16
|
+
schema: import('..').PageSchemaConfig[];
|
|
17
17
|
noPadding: boolean;
|
|
18
18
|
actions: Record<string, any>;
|
|
19
19
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
@@ -25,7 +25,7 @@ export declare const JPage: {
|
|
|
25
25
|
Defaults: {};
|
|
26
26
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
27
27
|
schema: {
|
|
28
|
-
type: import('vue').PropType<import('
|
|
28
|
+
type: import('vue').PropType<import('..').PageSchemaConfig[]>;
|
|
29
29
|
default: () => never[];
|
|
30
30
|
};
|
|
31
31
|
noPadding: {
|
|
@@ -37,7 +37,7 @@ export declare const JPage: {
|
|
|
37
37
|
default: () => {};
|
|
38
38
|
};
|
|
39
39
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
40
|
-
schema: import('
|
|
40
|
+
schema: import('..').PageSchemaConfig[];
|
|
41
41
|
noPadding: boolean;
|
|
42
42
|
actions: Record<string, any>;
|
|
43
43
|
}>;
|
|
@@ -46,7 +46,7 @@ export declare const JPage: {
|
|
|
46
46
|
__isSuspense?: never;
|
|
47
47
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
48
48
|
schema: {
|
|
49
|
-
type: import('vue').PropType<import('
|
|
49
|
+
type: import('vue').PropType<import('..').PageSchemaConfig[]>;
|
|
50
50
|
default: () => never[];
|
|
51
51
|
};
|
|
52
52
|
noPadding: {
|
|
@@ -58,7 +58,7 @@ export declare const JPage: {
|
|
|
58
58
|
default: () => {};
|
|
59
59
|
};
|
|
60
60
|
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
61
|
-
schema: import('
|
|
61
|
+
schema: import('..').PageSchemaConfig[];
|
|
62
62
|
noPadding: boolean;
|
|
63
63
|
actions: Record<string, any>;
|
|
64
64
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const JRate: {
|
|
2
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('..').RateProps> & Readonly<{
|
|
3
3
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
4
4
|
onChange?: ((value: {
|
|
5
5
|
value: number;
|
|
@@ -26,7 +26,7 @@ export declare const JRate: {
|
|
|
26
26
|
C: {};
|
|
27
27
|
M: {};
|
|
28
28
|
Defaults: {};
|
|
29
|
-
}, Readonly<import('
|
|
29
|
+
}, Readonly<import('..').RateProps> & Readonly<{
|
|
30
30
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
31
31
|
onChange?: ((value: {
|
|
32
32
|
value: number;
|
|
@@ -45,7 +45,7 @@ export declare const JRate: {
|
|
|
45
45
|
__isFragment?: never;
|
|
46
46
|
__isTeleport?: never;
|
|
47
47
|
__isSuspense?: never;
|
|
48
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('
|
|
48
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('..').RateProps> & Readonly<{
|
|
49
49
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
50
50
|
onChange?: ((value: {
|
|
51
51
|
value: number;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
declare const JSelect: {
|
|
2
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('..').SelectProps> & Readonly<{
|
|
3
3
|
"onUpdate:modelValue"?: ((value: string | number | (string | number)[] | undefined) => any) | undefined;
|
|
4
|
-
onChange?: ((value: import('
|
|
4
|
+
onChange?: ((value: import('..').SelectOption | import('..').SelectOption[] | undefined) => any) | undefined;
|
|
5
5
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
6
6
|
"update:modelValue": (value: string | number | (string | number)[] | undefined) => any;
|
|
7
|
-
change: (value: import('
|
|
7
|
+
change: (value: import('..').SelectOption | import('..').SelectOption[] | undefined) => any;
|
|
8
8
|
}, import('vue').PublicProps, {
|
|
9
9
|
size: "large" | "default" | "small";
|
|
10
10
|
disabled: boolean;
|
|
11
11
|
readonly: boolean;
|
|
12
12
|
placeholder: string;
|
|
13
13
|
clearable: boolean;
|
|
14
|
-
options: import('
|
|
14
|
+
options: import('..').SelectOption[];
|
|
15
15
|
teleported: boolean;
|
|
16
16
|
noBorder: boolean;
|
|
17
17
|
multiple: boolean;
|
|
@@ -31,16 +31,16 @@ declare const JSelect: {
|
|
|
31
31
|
C: {};
|
|
32
32
|
M: {};
|
|
33
33
|
Defaults: {};
|
|
34
|
-
}, Readonly<import('
|
|
34
|
+
}, Readonly<import('..').SelectProps> & Readonly<{
|
|
35
35
|
"onUpdate:modelValue"?: ((value: string | number | (string | number)[] | undefined) => any) | undefined;
|
|
36
|
-
onChange?: ((value: import('
|
|
36
|
+
onChange?: ((value: import('..').SelectOption | import('..').SelectOption[] | undefined) => any) | undefined;
|
|
37
37
|
}>, {}, {}, {}, {}, {
|
|
38
38
|
size: "large" | "default" | "small";
|
|
39
39
|
disabled: boolean;
|
|
40
40
|
readonly: boolean;
|
|
41
41
|
placeholder: string;
|
|
42
42
|
clearable: boolean;
|
|
43
|
-
options: import('
|
|
43
|
+
options: import('..').SelectOption[];
|
|
44
44
|
teleported: boolean;
|
|
45
45
|
noBorder: boolean;
|
|
46
46
|
multiple: boolean;
|
|
@@ -57,19 +57,19 @@ declare const JSelect: {
|
|
|
57
57
|
__isFragment?: never;
|
|
58
58
|
__isTeleport?: never;
|
|
59
59
|
__isSuspense?: never;
|
|
60
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('
|
|
60
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('..').SelectProps> & Readonly<{
|
|
61
61
|
"onUpdate:modelValue"?: ((value: string | number | (string | number)[] | undefined) => any) | undefined;
|
|
62
|
-
onChange?: ((value: import('
|
|
62
|
+
onChange?: ((value: import('..').SelectOption | import('..').SelectOption[] | undefined) => any) | undefined;
|
|
63
63
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
64
64
|
"update:modelValue": (value: string | number | (string | number)[] | undefined) => any;
|
|
65
|
-
change: (value: import('
|
|
65
|
+
change: (value: import('..').SelectOption | import('..').SelectOption[] | undefined) => any;
|
|
66
66
|
}, string, {
|
|
67
67
|
size: "large" | "default" | "small";
|
|
68
68
|
disabled: boolean;
|
|
69
69
|
readonly: boolean;
|
|
70
70
|
placeholder: string;
|
|
71
71
|
clearable: boolean;
|
|
72
|
-
options: import('
|
|
72
|
+
options: import('..').SelectOption[];
|
|
73
73
|
teleported: boolean;
|
|
74
74
|
noBorder: boolean;
|
|
75
75
|
multiple: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const JSlider: {
|
|
2
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('..').SliderProps> & Readonly<{
|
|
3
3
|
"onUpdate:modelValue"?: ((value: number | number[]) => any) | undefined;
|
|
4
4
|
onChange?: ((value: {
|
|
5
5
|
value: number | number[];
|
|
@@ -32,7 +32,7 @@ export declare const JSlider: {
|
|
|
32
32
|
C: {};
|
|
33
33
|
M: {};
|
|
34
34
|
Defaults: {};
|
|
35
|
-
}, Readonly<import('
|
|
35
|
+
}, Readonly<import('..').SliderProps> & Readonly<{
|
|
36
36
|
"onUpdate:modelValue"?: ((value: number | number[]) => any) | undefined;
|
|
37
37
|
onChange?: ((value: {
|
|
38
38
|
value: number | number[];
|
|
@@ -57,7 +57,7 @@ export declare const JSlider: {
|
|
|
57
57
|
__isFragment?: never;
|
|
58
58
|
__isTeleport?: never;
|
|
59
59
|
__isSuspense?: never;
|
|
60
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('
|
|
60
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('..').SliderProps> & Readonly<{
|
|
61
61
|
"onUpdate:modelValue"?: ((value: number | number[]) => any) | undefined;
|
|
62
62
|
onChange?: ((value: {
|
|
63
63
|
value: number | number[];
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
declare const JTable: {
|
|
2
2
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
3
3
|
columns: {
|
|
4
|
-
type: import('vue').PropType<import('
|
|
4
|
+
type: import('vue').PropType<import('..').TableColumn[]>;
|
|
5
5
|
required: true;
|
|
6
6
|
default: () => never[];
|
|
7
7
|
};
|
|
8
8
|
records: {
|
|
9
|
-
type: import('vue').PropType<import('
|
|
9
|
+
type: import('vue').PropType<import('..').TableRecord[]>;
|
|
10
10
|
required: true;
|
|
11
11
|
default: () => never[];
|
|
12
12
|
};
|
|
@@ -34,15 +34,15 @@ declare const JTable: {
|
|
|
34
34
|
onReady?: ((instance: any) => any) | undefined;
|
|
35
35
|
}>, {
|
|
36
36
|
getInstance: () => any;
|
|
37
|
-
setRecords: (records: import('
|
|
38
|
-
setColumns: (columns: import('
|
|
37
|
+
setRecords: (records: import('..').TableRecord[]) => void;
|
|
38
|
+
setColumns: (columns: import('..').TableColumn[]) => void;
|
|
39
39
|
refresh: () => void;
|
|
40
40
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
41
41
|
ready: (instance: any) => any;
|
|
42
42
|
}, import('vue').PublicProps, {
|
|
43
43
|
height: number;
|
|
44
|
-
columns: import('
|
|
45
|
-
records: import('
|
|
44
|
+
columns: import('..').TableColumn[];
|
|
45
|
+
records: import('..').TableRecord[];
|
|
46
46
|
widthMode: "standard" | "adaptive" | "autoWidth";
|
|
47
47
|
border: boolean;
|
|
48
48
|
stripe: boolean;
|
|
@@ -58,12 +58,12 @@ declare const JTable: {
|
|
|
58
58
|
Defaults: {};
|
|
59
59
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
60
60
|
columns: {
|
|
61
|
-
type: import('vue').PropType<import('
|
|
61
|
+
type: import('vue').PropType<import('..').TableColumn[]>;
|
|
62
62
|
required: true;
|
|
63
63
|
default: () => never[];
|
|
64
64
|
};
|
|
65
65
|
records: {
|
|
66
|
-
type: import('vue').PropType<import('
|
|
66
|
+
type: import('vue').PropType<import('..').TableRecord[]>;
|
|
67
67
|
required: true;
|
|
68
68
|
default: () => never[];
|
|
69
69
|
};
|
|
@@ -91,13 +91,13 @@ declare const JTable: {
|
|
|
91
91
|
onReady?: ((instance: any) => any) | undefined;
|
|
92
92
|
}>, {
|
|
93
93
|
getInstance: () => any;
|
|
94
|
-
setRecords: (records: import('
|
|
95
|
-
setColumns: (columns: import('
|
|
94
|
+
setRecords: (records: import('..').TableRecord[]) => void;
|
|
95
|
+
setColumns: (columns: import('..').TableColumn[]) => void;
|
|
96
96
|
refresh: () => void;
|
|
97
97
|
}, {}, {}, {}, {
|
|
98
98
|
height: number;
|
|
99
|
-
columns: import('
|
|
100
|
-
records: import('
|
|
99
|
+
columns: import('..').TableColumn[];
|
|
100
|
+
records: import('..').TableRecord[];
|
|
101
101
|
widthMode: "standard" | "adaptive" | "autoWidth";
|
|
102
102
|
border: boolean;
|
|
103
103
|
stripe: boolean;
|
|
@@ -108,12 +108,12 @@ declare const JTable: {
|
|
|
108
108
|
__isSuspense?: never;
|
|
109
109
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
110
110
|
columns: {
|
|
111
|
-
type: import('vue').PropType<import('
|
|
111
|
+
type: import('vue').PropType<import('..').TableColumn[]>;
|
|
112
112
|
required: true;
|
|
113
113
|
default: () => never[];
|
|
114
114
|
};
|
|
115
115
|
records: {
|
|
116
|
-
type: import('vue').PropType<import('
|
|
116
|
+
type: import('vue').PropType<import('..').TableRecord[]>;
|
|
117
117
|
required: true;
|
|
118
118
|
default: () => never[];
|
|
119
119
|
};
|
|
@@ -141,15 +141,15 @@ declare const JTable: {
|
|
|
141
141
|
onReady?: ((instance: any) => any) | undefined;
|
|
142
142
|
}>, {
|
|
143
143
|
getInstance: () => any;
|
|
144
|
-
setRecords: (records: import('
|
|
145
|
-
setColumns: (columns: import('
|
|
144
|
+
setRecords: (records: import('..').TableRecord[]) => void;
|
|
145
|
+
setColumns: (columns: import('..').TableColumn[]) => void;
|
|
146
146
|
refresh: () => void;
|
|
147
147
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
148
148
|
ready: (instance: any) => any;
|
|
149
149
|
}, string, {
|
|
150
150
|
height: number;
|
|
151
|
-
columns: import('
|
|
152
|
-
records: import('
|
|
151
|
+
columns: import('..').TableColumn[];
|
|
152
|
+
records: import('..').TableRecord[];
|
|
153
153
|
widthMode: "standard" | "adaptive" | "autoWidth";
|
|
154
154
|
border: boolean;
|
|
155
155
|
stripe: boolean;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
declare const JTitle: {
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('..').TitleProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
3
|
+
size: number | string;
|
|
4
|
+
color: string;
|
|
5
|
+
style: Record<string, any>;
|
|
6
|
+
title: string;
|
|
7
|
+
class: string;
|
|
8
|
+
weight: string | number;
|
|
9
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
10
|
+
P: {};
|
|
11
|
+
B: {};
|
|
12
|
+
D: {};
|
|
13
|
+
C: {};
|
|
14
|
+
M: {};
|
|
15
|
+
Defaults: {};
|
|
16
|
+
}, Readonly<import('..').TitleProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
17
|
+
size: number | string;
|
|
18
|
+
color: string;
|
|
19
|
+
style: Record<string, any>;
|
|
20
|
+
title: string;
|
|
21
|
+
class: string;
|
|
22
|
+
weight: string | number;
|
|
23
|
+
}>;
|
|
24
|
+
__isFragment?: never;
|
|
25
|
+
__isTeleport?: never;
|
|
26
|
+
__isSuspense?: never;
|
|
27
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('..').TitleProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
28
|
+
size: number | string;
|
|
29
|
+
color: string;
|
|
30
|
+
style: Record<string, any>;
|
|
31
|
+
title: string;
|
|
32
|
+
class: string;
|
|
33
|
+
weight: string | number;
|
|
34
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
|
35
|
+
install: (app: import('vue').App) => void;
|
|
36
|
+
};
|
|
37
|
+
export default JTitle;
|