fit2cloud-ui-plus 1.2.3 → 1.2.4-beta.0
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/README.md +1 -1
- package/lib/fit2cloud-ui-plus.es.js +64 -49
- package/lib/fit2cloud-ui-plus.umd.js +1 -1
- package/package.json +5 -1
- package/src/components/table/table-operations/FuTableOperations.vue +11 -3
- package/types/examples/pages/search/attributes.d.ts +57 -0
- package/types/examples/pages/search/demo/BaseSearchbar.vue.d.ts +66 -0
- package/types/examples/pages/search/demo/ComplexComponentsDemo.vue.d.ts +60 -0
- package/types/examples/pages/search/demo/ComplexSearchDemo.vue.d.ts +84 -0
- package/types/examples/pages/search/demo/CustomComponentsDemo.vue.d.ts +50 -0
- package/types/examples/pages/search/demo/EchoConditionsDemo.vue.d.ts +52 -0
- package/types/examples/pages/search/demo/QuickSearchDemo.vue.d.ts +18 -0
- package/types/examples/pages/search/demo/SearchBarButtonDemo.vue.d.ts +54 -0
- package/types/examples/pages/search/index.vue.d.ts +150 -0
- package/types/src/components/ steps/FuHorizontalNavigation.vue.d.ts +13 -0
- package/types/src/components/ steps/FuHorizontalSteps.vue.d.ts +6 -0
- package/types/src/components/ steps/FuStep.vue.d.ts +2 -0
- package/types/src/components/ steps/FuStepButton.vue.d.ts +2 -0
- package/types/src/components/ steps/FuSteps.vue.d.ts +12 -0
- package/types/src/components/ steps/FuStepsFooter.d.ts +6 -0
- package/types/src/components/ steps/FuVerticalNavigation.vue.d.ts +14 -0
- package/types/src/components/ steps/FuVerticalSteps.vue.d.ts +6 -0
- package/types/src/components/ steps/Stepper.d.ts +39 -0
- package/types/src/components/ steps/index.d.ts +2 -0
- package/types/src/components/ steps/types.d.ts +27 -0
- package/types/src/components/filter-bar/FuSearchInput.vue.d.ts +17 -0
- package/types/src/components/search-bar/complex-components/index.d.ts +0 -0
- package/types/src/components/search-bar/complex-components/mixins.d.ts +6 -0
- package/types/src/components/table/FuTableBody-backup.d.ts +3 -0
- package/types/src/components/table/table-operations/FuTableOperations.vue.d.ts +18 -0
- package/types/src/components/table/types.d.ts +2 -0
- package/types/src/tools/utils.d.ts +2 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { StepperOptions, StepOptions } from './types';
|
|
2
|
+
export declare class Stepper implements StepperOptions {
|
|
3
|
+
steps: [Step];
|
|
4
|
+
index: number;
|
|
5
|
+
activeSet: any;
|
|
6
|
+
isLoading: boolean;
|
|
7
|
+
onCancelButtonText: string;
|
|
8
|
+
onFinishButtonText: string;
|
|
9
|
+
prevButtonText: string;
|
|
10
|
+
nextButtonText: string;
|
|
11
|
+
buttonSize: string;
|
|
12
|
+
footerAlign: string;
|
|
13
|
+
showCancel: any;
|
|
14
|
+
beforeActive: Function;
|
|
15
|
+
beforeLeave: Function;
|
|
16
|
+
height: string;
|
|
17
|
+
constructor(options?: StepperOptions);
|
|
18
|
+
isFirst(index: number): boolean;
|
|
19
|
+
isLast(index: number): boolean;
|
|
20
|
+
isActive(index: number): boolean;
|
|
21
|
+
isCurrent(index: number): boolean;
|
|
22
|
+
active(index: number): Promise<void>;
|
|
23
|
+
next(): void;
|
|
24
|
+
prev(): void;
|
|
25
|
+
getStep(index: number): Step | undefined;
|
|
26
|
+
executeBeforeLeave(index: number, forward: boolean): any;
|
|
27
|
+
executeBeforeActive(index: number, forward: boolean): any;
|
|
28
|
+
}
|
|
29
|
+
export declare class Step implements StepOptions {
|
|
30
|
+
id?: string;
|
|
31
|
+
index: number;
|
|
32
|
+
beforeActive?: Function;
|
|
33
|
+
beforeLeave?: Function;
|
|
34
|
+
title?: string;
|
|
35
|
+
description?: string;
|
|
36
|
+
icon?: string;
|
|
37
|
+
status?: string;
|
|
38
|
+
constructor(options?: StepOptions);
|
|
39
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { Step } from "@/components/ steps/Stepper";
|
|
2
|
+
export interface StepperOptions {
|
|
3
|
+
steps: [Step];
|
|
4
|
+
index: number;
|
|
5
|
+
activeSet: any;
|
|
6
|
+
isLoading?: boolean;
|
|
7
|
+
onCancelButtonText: string;
|
|
8
|
+
onFinishButtonText: string;
|
|
9
|
+
prevButtonText: string;
|
|
10
|
+
nextButtonText: string;
|
|
11
|
+
buttonSize: string;
|
|
12
|
+
footerAlign: string;
|
|
13
|
+
showCancel: any;
|
|
14
|
+
beforeActive: Function;
|
|
15
|
+
beforeLeave: Function;
|
|
16
|
+
height: string;
|
|
17
|
+
}
|
|
18
|
+
export interface StepOptions {
|
|
19
|
+
id?: string;
|
|
20
|
+
index: number;
|
|
21
|
+
beforeActive?: Function;
|
|
22
|
+
beforeLeave?: Function;
|
|
23
|
+
title?: string;
|
|
24
|
+
description?: string;
|
|
25
|
+
icon?: string;
|
|
26
|
+
status?: string;
|
|
27
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
size: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
validator: (val: string) => val is string;
|
|
5
|
+
};
|
|
6
|
+
value: StringConstructor;
|
|
7
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "input")[], "input" | "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
|
+
size: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
validator: (val: string) => val is string;
|
|
11
|
+
};
|
|
12
|
+
value: StringConstructor;
|
|
13
|
+
}>> & {
|
|
14
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
15
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
16
|
+
}, {}>;
|
|
17
|
+
export default _default;
|
|
File without changes
|
|
@@ -18,6 +18,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18
18
|
default: string;
|
|
19
19
|
validator: (value: string) => boolean;
|
|
20
20
|
};
|
|
21
|
+
maxHeight: {
|
|
22
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
trigger: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
21
29
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
30
|
align: {
|
|
23
31
|
type: StringConstructor;
|
|
@@ -38,9 +46,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
38
46
|
default: string;
|
|
39
47
|
validator: (value: string) => boolean;
|
|
40
48
|
};
|
|
49
|
+
maxHeight: {
|
|
50
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
53
|
+
trigger: {
|
|
54
|
+
type: StringConstructor;
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
41
57
|
}>>, {
|
|
42
58
|
type: string;
|
|
43
59
|
align: string;
|
|
60
|
+
trigger: string;
|
|
44
61
|
ellipsis: number;
|
|
62
|
+
maxHeight: string | number;
|
|
45
63
|
}>;
|
|
46
64
|
export default _default;
|