@wikicasa-dev/components 0.1.0 → 0.1.2
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/UIKit/BaseAccordion.vue.d.ts +25 -0
- package/dist/UIKit/BaseAlert.vue.d.ts +16 -0
- package/dist/UIKit/BaseAutocomplete.vue.d.ts +103 -0
- package/dist/UIKit/BaseBadge.vue.d.ts +14 -0
- package/dist/UIKit/BaseButton.vue.d.ts +90 -0
- package/dist/UIKit/BaseCloseButton.vue.d.ts +2 -0
- package/dist/UIKit/BaseComplexToggle.vue.d.ts +83 -0
- package/dist/UIKit/BaseDropDown.vue.d.ts +78 -0
- package/dist/UIKit/BaseIcon.vue.d.ts +52 -0
- package/dist/UIKit/BaseNavItem.vue.d.ts +43 -0
- package/dist/UIKit/BasePagination.vue.d.ts +67 -0
- package/dist/UIKit/BasePaper.vue.d.ts +2 -0
- package/dist/UIKit/BaseSearchBox.vue.d.ts +4 -0
- package/dist/UIKit/BaseSelect.vue.d.ts +150 -0
- package/dist/UIKit/BaseSlider.vue.d.ts +42 -0
- package/dist/UIKit/BaseTab.vue.d.ts +60 -0
- package/dist/UIKit/BaseToggle.vue.d.ts +36 -0
- package/dist/UIKit/BaseTooltip.vue.d.ts +56 -0
- package/dist/UIKit/BaseUploadFile.vue.d.ts +37 -0
- package/dist/UIKit/Checkbox/CheckboxBtn.vue.d.ts +101 -0
- package/dist/UIKit/Checkbox/CheckboxGroup.vue.d.ts +55 -0
- package/dist/UIKit/Radio/RadioButton.vue.d.ts +26 -0
- package/dist/UIKit/Radio/RadioGroup.vue.d.ts +36 -0
- package/dist/components/base/StaticSpinner.vue.d.ts +23 -0
- package/dist/components.js +6574 -135
- package/dist/components.umd.cjs +14 -1
- package/dist/main.d.ts +27 -0
- package/dist/style.css +1 -1
- package/package.json +8 -8
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
interface IAccordion {
|
|
2
|
+
id?: string;
|
|
3
|
+
summary?: string;
|
|
4
|
+
}
|
|
5
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
6
|
+
items: {
|
|
7
|
+
type: import("vue").PropType<IAccordion>;
|
|
8
|
+
default: () => {};
|
|
9
|
+
};
|
|
10
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
+
items: {
|
|
12
|
+
type: import("vue").PropType<IAccordion>;
|
|
13
|
+
default: () => {};
|
|
14
|
+
};
|
|
15
|
+
}>>, {
|
|
16
|
+
items: IAccordion;
|
|
17
|
+
}, {}>, {
|
|
18
|
+
custom?(_: {}): any;
|
|
19
|
+
}>;
|
|
20
|
+
export default _default;
|
|
21
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
22
|
+
new (): {
|
|
23
|
+
$slots: S;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
text: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
};
|
|
5
|
+
alrtClass: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
};
|
|
8
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
9
|
+
text: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
};
|
|
12
|
+
alrtClass: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
};
|
|
15
|
+
}>>, {}, {}>;
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import { SelectOptions } from "@wikicasa-dev/types";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
border: {
|
|
4
|
+
type: BooleanConstructor;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
isValid: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
default: null;
|
|
10
|
+
};
|
|
11
|
+
theme: {
|
|
12
|
+
type: () => "bordered" | "all-bordered" | "all-bordered-thick";
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
modelValue: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
labelText: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
disableCb: {
|
|
24
|
+
type: BooleanConstructor;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
27
|
+
onInputChangeCb: {
|
|
28
|
+
type: FunctionConstructor;
|
|
29
|
+
required: true;
|
|
30
|
+
};
|
|
31
|
+
onOptionSelectedCb: {
|
|
32
|
+
type: FunctionConstructor;
|
|
33
|
+
default: null;
|
|
34
|
+
};
|
|
35
|
+
manualClose: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
}, unknown, {
|
|
40
|
+
curValue: string;
|
|
41
|
+
options: SelectOptions[];
|
|
42
|
+
debouncedCallback: any;
|
|
43
|
+
selection: boolean;
|
|
44
|
+
}, {
|
|
45
|
+
openDropdown(): boolean;
|
|
46
|
+
isAnyBorderedTheme(): boolean;
|
|
47
|
+
themeClasses(): string;
|
|
48
|
+
}, {
|
|
49
|
+
handleChangedValue(v: string): Promise<void>;
|
|
50
|
+
handleSelection(opt: SelectOptions): void;
|
|
51
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "update:modelValue" | "changed-value" | "dropdown-closed")[], "click" | "update:modelValue" | "changed-value" | "dropdown-closed", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
52
|
+
border: {
|
|
53
|
+
type: BooleanConstructor;
|
|
54
|
+
default: boolean;
|
|
55
|
+
};
|
|
56
|
+
isValid: {
|
|
57
|
+
type: BooleanConstructor;
|
|
58
|
+
default: null;
|
|
59
|
+
};
|
|
60
|
+
theme: {
|
|
61
|
+
type: () => "bordered" | "all-bordered" | "all-bordered-thick";
|
|
62
|
+
default: string;
|
|
63
|
+
};
|
|
64
|
+
modelValue: {
|
|
65
|
+
type: StringConstructor;
|
|
66
|
+
default: string;
|
|
67
|
+
};
|
|
68
|
+
labelText: {
|
|
69
|
+
type: StringConstructor;
|
|
70
|
+
default: string;
|
|
71
|
+
};
|
|
72
|
+
disableCb: {
|
|
73
|
+
type: BooleanConstructor;
|
|
74
|
+
default: boolean;
|
|
75
|
+
};
|
|
76
|
+
onInputChangeCb: {
|
|
77
|
+
type: FunctionConstructor;
|
|
78
|
+
required: true;
|
|
79
|
+
};
|
|
80
|
+
onOptionSelectedCb: {
|
|
81
|
+
type: FunctionConstructor;
|
|
82
|
+
default: null;
|
|
83
|
+
};
|
|
84
|
+
manualClose: {
|
|
85
|
+
type: BooleanConstructor;
|
|
86
|
+
default: boolean;
|
|
87
|
+
};
|
|
88
|
+
}>> & {
|
|
89
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
90
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
91
|
+
"onChanged-value"?: ((...args: any[]) => any) | undefined;
|
|
92
|
+
"onDropdown-closed"?: ((...args: any[]) => any) | undefined;
|
|
93
|
+
}, {
|
|
94
|
+
isValid: boolean;
|
|
95
|
+
labelText: string;
|
|
96
|
+
modelValue: string;
|
|
97
|
+
border: boolean;
|
|
98
|
+
manualClose: boolean;
|
|
99
|
+
theme: "bordered" | "all-bordered" | "all-bordered-thick";
|
|
100
|
+
disableCb: boolean;
|
|
101
|
+
onOptionSelectedCb: Function;
|
|
102
|
+
}, {}>;
|
|
103
|
+
export default _default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
badgeClass: {
|
|
3
|
+
type: () => "tw-badge-w-warning";
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
badgeClass: {
|
|
8
|
+
type: () => "tw-badge-w-warning";
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
}>>, {
|
|
12
|
+
badgeClass: "tw-badge-w-warning";
|
|
13
|
+
}, {}>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
lazyLoadIcon: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
6
|
+
btnClass: {
|
|
7
|
+
type: () => "tw-btn-w-primary" | "tw-btn-transparent" | "tw-btn-lg" | "tw-btn-sm" | "tw-btn-light" | "tw-btn-w-warning" | "tw-btn-w-danger" | "tw-btn-outline-w-danger" | "tw-btn-show-more" | "tw-btn-multi-selection" | "tw-btn-single-selection" | "tw-btn-facile" | string;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
iconName: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
iconNameHovering: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
iconClass: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
isEmpty: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
keepActive: {
|
|
27
|
+
type: BooleanConstructor;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
30
|
+
isLoading: {
|
|
31
|
+
type: BooleanConstructor;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
34
|
+
}, unknown, {
|
|
35
|
+
hover: boolean;
|
|
36
|
+
currentIcon: string;
|
|
37
|
+
}, {
|
|
38
|
+
cdn(): string;
|
|
39
|
+
}, {
|
|
40
|
+
handleMouseHover(): void;
|
|
41
|
+
handleMouseOut(): void;
|
|
42
|
+
changeIcon(newIconName: string): void;
|
|
43
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "mouseout" | "mouseover")[], "click" | "mouseout" | "mouseover", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
44
|
+
lazyLoadIcon: {
|
|
45
|
+
type: BooleanConstructor;
|
|
46
|
+
default: boolean;
|
|
47
|
+
};
|
|
48
|
+
btnClass: {
|
|
49
|
+
type: () => "tw-btn-w-primary" | "tw-btn-transparent" | "tw-btn-lg" | "tw-btn-sm" | "tw-btn-light" | "tw-btn-w-warning" | "tw-btn-w-danger" | "tw-btn-outline-w-danger" | "tw-btn-show-more" | "tw-btn-multi-selection" | "tw-btn-single-selection" | "tw-btn-facile" | string;
|
|
50
|
+
default: string;
|
|
51
|
+
};
|
|
52
|
+
iconName: {
|
|
53
|
+
type: StringConstructor;
|
|
54
|
+
default: string;
|
|
55
|
+
};
|
|
56
|
+
iconNameHovering: {
|
|
57
|
+
type: StringConstructor;
|
|
58
|
+
default: string;
|
|
59
|
+
};
|
|
60
|
+
iconClass: {
|
|
61
|
+
type: StringConstructor;
|
|
62
|
+
default: string;
|
|
63
|
+
};
|
|
64
|
+
isEmpty: {
|
|
65
|
+
type: BooleanConstructor;
|
|
66
|
+
default: boolean;
|
|
67
|
+
};
|
|
68
|
+
keepActive: {
|
|
69
|
+
type: BooleanConstructor;
|
|
70
|
+
default: boolean;
|
|
71
|
+
};
|
|
72
|
+
isLoading: {
|
|
73
|
+
type: BooleanConstructor;
|
|
74
|
+
default: boolean;
|
|
75
|
+
};
|
|
76
|
+
}>> & {
|
|
77
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
78
|
+
onMouseout?: ((...args: any[]) => any) | undefined;
|
|
79
|
+
onMouseover?: ((...args: any[]) => any) | undefined;
|
|
80
|
+
}, {
|
|
81
|
+
iconName: string;
|
|
82
|
+
iconClass: string;
|
|
83
|
+
lazyLoadIcon: boolean;
|
|
84
|
+
btnClass: string;
|
|
85
|
+
iconNameHovering: string;
|
|
86
|
+
isEmpty: boolean;
|
|
87
|
+
keepActive: boolean;
|
|
88
|
+
isLoading: boolean;
|
|
89
|
+
}, {}>;
|
|
90
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { Nullable, Icon } from "@wikicasa-dev/types";
|
|
2
|
+
type Buttons = "left-btn" | "right-btn";
|
|
3
|
+
type ToggleType = {
|
|
4
|
+
label: string;
|
|
5
|
+
icon?: Icon;
|
|
6
|
+
checked?: boolean;
|
|
7
|
+
};
|
|
8
|
+
type ComplexToggleType = {
|
|
9
|
+
leftToggle: ToggleType;
|
|
10
|
+
rightToggle: ToggleType;
|
|
11
|
+
};
|
|
12
|
+
declare const _default: import("vue").DefineComponent<{
|
|
13
|
+
labels: {
|
|
14
|
+
type: () => ComplexToggleType;
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
modelValue: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
type: {
|
|
22
|
+
type: () => "full" | "padded";
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
mode: {
|
|
26
|
+
type: () => "mobile";
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
29
|
+
btnBgColor: {
|
|
30
|
+
type: () => "tw-bg-w-black" | "tw-bg-w-primary" | "tw-bg-w-secondary" | "tw-bg-w-dark-primary" | "tw-bg-w-lavender-bordered" | "tw-bg-w-cultured-bordered" | "tw-bg-w-carbon" | "tw-bg-w-gray" | "tw-bg-w-warning" | "tw-bg-w-danger" | "tw-bg-facile";
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
borderContainerColor: {
|
|
34
|
+
type: () => "tw-border-w-primary";
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
}, unknown, {
|
|
38
|
+
texActiveToggleColor: string;
|
|
39
|
+
}, {
|
|
40
|
+
leftBtn(): Nullable<HTMLInputElement>;
|
|
41
|
+
rightBtn(): Nullable<HTMLInputElement>;
|
|
42
|
+
dynamicBg(): Nullable<HTMLInputElement>;
|
|
43
|
+
}, {
|
|
44
|
+
handleToggle(btn: Buttons): void;
|
|
45
|
+
moveDynamicBgToLeft(): void;
|
|
46
|
+
moveDynamicBgToRight(): void;
|
|
47
|
+
emitLeftLabel(): void;
|
|
48
|
+
emitRightLabel(): void;
|
|
49
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
50
|
+
labels: {
|
|
51
|
+
type: () => ComplexToggleType;
|
|
52
|
+
required: true;
|
|
53
|
+
};
|
|
54
|
+
modelValue: {
|
|
55
|
+
type: StringConstructor;
|
|
56
|
+
default: string;
|
|
57
|
+
};
|
|
58
|
+
type: {
|
|
59
|
+
type: () => "full" | "padded";
|
|
60
|
+
default: string;
|
|
61
|
+
};
|
|
62
|
+
mode: {
|
|
63
|
+
type: () => "mobile";
|
|
64
|
+
default: string;
|
|
65
|
+
};
|
|
66
|
+
btnBgColor: {
|
|
67
|
+
type: () => "tw-bg-w-black" | "tw-bg-w-primary" | "tw-bg-w-secondary" | "tw-bg-w-dark-primary" | "tw-bg-w-lavender-bordered" | "tw-bg-w-cultured-bordered" | "tw-bg-w-carbon" | "tw-bg-w-gray" | "tw-bg-w-warning" | "tw-bg-w-danger" | "tw-bg-facile";
|
|
68
|
+
default: string;
|
|
69
|
+
};
|
|
70
|
+
borderContainerColor: {
|
|
71
|
+
type: () => "tw-border-w-primary";
|
|
72
|
+
default: string;
|
|
73
|
+
};
|
|
74
|
+
}>> & {
|
|
75
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
76
|
+
}, {
|
|
77
|
+
type: "full" | "padded";
|
|
78
|
+
modelValue: string;
|
|
79
|
+
mode: "mobile";
|
|
80
|
+
btnBgColor: "tw-bg-w-black" | "tw-bg-w-primary" | "tw-bg-w-secondary" | "tw-bg-w-dark-primary" | "tw-bg-w-lavender-bordered" | "tw-bg-w-cultured-bordered" | "tw-bg-w-carbon" | "tw-bg-w-gray" | "tw-bg-w-warning" | "tw-bg-w-danger" | "tw-bg-facile";
|
|
81
|
+
borderContainerColor: "tw-border-w-primary";
|
|
82
|
+
}, {}>;
|
|
83
|
+
export default _default;
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
|
+
id: {
|
|
3
|
+
type: import("vue").PropType<string>;
|
|
4
|
+
required: true;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
dropdownClasses: {
|
|
8
|
+
type: import("vue").PropType<string>;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
iconName: {
|
|
12
|
+
type: import("vue").PropType<string>;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
containerDropdownClasses: {
|
|
16
|
+
type: import("vue").PropType<string>;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
iconClasses: {
|
|
20
|
+
type: import("vue").PropType<string>;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
btnClasses: {
|
|
24
|
+
type: import("vue").PropType<string>;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
withArrowIcon: {
|
|
28
|
+
type: import("vue").PropType<boolean>;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32
|
+
id: {
|
|
33
|
+
type: import("vue").PropType<string>;
|
|
34
|
+
required: true;
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
dropdownClasses: {
|
|
38
|
+
type: import("vue").PropType<string>;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
iconName: {
|
|
42
|
+
type: import("vue").PropType<string>;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
containerDropdownClasses: {
|
|
46
|
+
type: import("vue").PropType<string>;
|
|
47
|
+
default: string;
|
|
48
|
+
};
|
|
49
|
+
iconClasses: {
|
|
50
|
+
type: import("vue").PropType<string>;
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
53
|
+
btnClasses: {
|
|
54
|
+
type: import("vue").PropType<string>;
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
withArrowIcon: {
|
|
58
|
+
type: import("vue").PropType<boolean>;
|
|
59
|
+
default: boolean;
|
|
60
|
+
};
|
|
61
|
+
}>>, {
|
|
62
|
+
id: string;
|
|
63
|
+
dropdownClasses: string;
|
|
64
|
+
iconName: string;
|
|
65
|
+
containerDropdownClasses: string;
|
|
66
|
+
iconClasses: string;
|
|
67
|
+
btnClasses: string;
|
|
68
|
+
withArrowIcon: boolean;
|
|
69
|
+
}, {}>, {
|
|
70
|
+
btn_slot?(_: {}): any;
|
|
71
|
+
default?(_: {}): any;
|
|
72
|
+
}>;
|
|
73
|
+
export default _default;
|
|
74
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
75
|
+
new (): {
|
|
76
|
+
$slots: S;
|
|
77
|
+
};
|
|
78
|
+
};
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
lazyLoading: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
6
|
+
altAttribute: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
iconName: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
iconType: {
|
|
15
|
+
type: () => "icon-sm" | "icon-md" | "icon-lg" | "icon-xl" | "icon-xxl";
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
iconClass: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
}, unknown, unknown, {
|
|
23
|
+
cdn(): string;
|
|
24
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
25
|
+
lazyLoading: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
altAttribute: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
iconName: {
|
|
34
|
+
type: StringConstructor;
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
iconType: {
|
|
38
|
+
type: () => "icon-sm" | "icon-md" | "icon-lg" | "icon-xl" | "icon-xxl";
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
iconClass: {
|
|
42
|
+
type: StringConstructor;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
}>>, {
|
|
46
|
+
lazyLoading: boolean;
|
|
47
|
+
altAttribute: string;
|
|
48
|
+
iconName: string;
|
|
49
|
+
iconType: "icon-sm" | "icon-md" | "icon-lg" | "icon-xl" | "icon-xxl";
|
|
50
|
+
iconClass: string;
|
|
51
|
+
}, {}>;
|
|
52
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
text: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
};
|
|
5
|
+
iconName: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
};
|
|
8
|
+
iconClass: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
navItemCustomClass: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
};
|
|
15
|
+
isActive: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
|
+
text: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
};
|
|
23
|
+
iconName: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
};
|
|
26
|
+
iconClass: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
navItemCustomClass: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
};
|
|
33
|
+
isActive: {
|
|
34
|
+
type: BooleanConstructor;
|
|
35
|
+
default: boolean;
|
|
36
|
+
};
|
|
37
|
+
}>> & {
|
|
38
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
39
|
+
}, {
|
|
40
|
+
iconClass: string;
|
|
41
|
+
isActive: boolean;
|
|
42
|
+
}, {}>;
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
offset: {
|
|
3
|
+
type: NumberConstructor;
|
|
4
|
+
default: number;
|
|
5
|
+
};
|
|
6
|
+
count: {
|
|
7
|
+
type: NumberConstructor;
|
|
8
|
+
default: number;
|
|
9
|
+
};
|
|
10
|
+
limit: {
|
|
11
|
+
type: NumberConstructor;
|
|
12
|
+
default: number;
|
|
13
|
+
};
|
|
14
|
+
siblings: {
|
|
15
|
+
type: NumberConstructor;
|
|
16
|
+
default: number;
|
|
17
|
+
};
|
|
18
|
+
additionalCount: {
|
|
19
|
+
type: NumberConstructor;
|
|
20
|
+
default: number;
|
|
21
|
+
};
|
|
22
|
+
}, unknown, {
|
|
23
|
+
activeHoverOnLeftIcon: boolean;
|
|
24
|
+
activeHoverOnRightIcon: boolean;
|
|
25
|
+
}, {
|
|
26
|
+
cdn(): string;
|
|
27
|
+
}, {
|
|
28
|
+
handleHoverIcon(isHover: boolean, icon: string): void;
|
|
29
|
+
getPages(): number;
|
|
30
|
+
getFormattedPages(): string;
|
|
31
|
+
getCurrentPage(): number;
|
|
32
|
+
getPreviousPages(): Array<number>;
|
|
33
|
+
getNextPages(): Array<number>;
|
|
34
|
+
formatInteger(n: number): string;
|
|
35
|
+
selectPage(page: number): void;
|
|
36
|
+
getCount(): number;
|
|
37
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "new-pagination-offset"[], "new-pagination-offset", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
38
|
+
offset: {
|
|
39
|
+
type: NumberConstructor;
|
|
40
|
+
default: number;
|
|
41
|
+
};
|
|
42
|
+
count: {
|
|
43
|
+
type: NumberConstructor;
|
|
44
|
+
default: number;
|
|
45
|
+
};
|
|
46
|
+
limit: {
|
|
47
|
+
type: NumberConstructor;
|
|
48
|
+
default: number;
|
|
49
|
+
};
|
|
50
|
+
siblings: {
|
|
51
|
+
type: NumberConstructor;
|
|
52
|
+
default: number;
|
|
53
|
+
};
|
|
54
|
+
additionalCount: {
|
|
55
|
+
type: NumberConstructor;
|
|
56
|
+
default: number;
|
|
57
|
+
};
|
|
58
|
+
}>> & {
|
|
59
|
+
"onNew-pagination-offset"?: ((...args: any[]) => any) | undefined;
|
|
60
|
+
}, {
|
|
61
|
+
offset: number;
|
|
62
|
+
count: number;
|
|
63
|
+
limit: number;
|
|
64
|
+
siblings: number;
|
|
65
|
+
additionalCount: number;
|
|
66
|
+
}, {}>;
|
|
67
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
2
|
+
multiTypologyCheckboxValue: never[];
|
|
3
|
+
}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
4
|
+
export default _default;
|