@selfeesas/shared-components 0.2.4 → 0.2.6
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/shared-components.cjs.js +1 -1
- package/dist/shared-components.css +1 -1
- package/dist/shared-components.d.ts +30 -13
- package/dist/shared-components.es.js +1486 -1501
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
.row[data-v-c5e3fee0]{width:100%;gap:8px}.smooth-rotate[data-v-
|
|
1
|
+
.row[data-v-c5e3fee0]{width:100%;gap:8px}.smooth-rotate[data-v-42c19597]{transition:transform .3s ease}
|
|
@@ -3,7 +3,6 @@ import { ComponentProvideOptions } from 'vue';
|
|
|
3
3
|
import { DefineComponent } from 'vue';
|
|
4
4
|
import { PublicProps } from 'vue';
|
|
5
5
|
import { QBreadcrumbsProps } from 'quasar';
|
|
6
|
-
import { QSelectProps } from 'quasar';
|
|
7
6
|
import { RouteLocationNormalizedLoaded } from 'vue-router';
|
|
8
7
|
import { RouteParamsRaw } from 'vue-router';
|
|
9
8
|
import { Router } from 'vue-router';
|
|
@@ -45,28 +44,23 @@ export declare const CheckboxFilter: DefineComponent<CheckboxFilterProps, {}, {}
|
|
|
45
44
|
"onUpdate:modelValue"?: ((value: CheckboxOption[]) => any) | undefined;
|
|
46
45
|
}>, {
|
|
47
46
|
label: string;
|
|
48
|
-
dense: boolean;
|
|
49
47
|
modelValue: CheckboxOption[];
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
hideDropdownIcon: boolean;
|
|
48
|
+
scrollAreaHeight: string;
|
|
49
|
+
scrollAreaWidth: string;
|
|
53
50
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
54
51
|
|
|
55
|
-
declare interface CheckboxFilterProps
|
|
56
|
-
options
|
|
52
|
+
declare interface CheckboxFilterProps {
|
|
53
|
+
options: CheckboxOption[];
|
|
57
54
|
label?: string;
|
|
58
55
|
modelValue?: CheckboxOption[];
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
hideDropdownIcon?: QSelectProps["hideDropdownIcon"];
|
|
62
|
-
class?: string;
|
|
63
|
-
style?: string;
|
|
56
|
+
scrollAreaHeight?: string;
|
|
57
|
+
scrollAreaWidth?: string;
|
|
64
58
|
}
|
|
65
59
|
|
|
66
60
|
declare interface CheckboxOption {
|
|
67
61
|
value: string | number;
|
|
68
62
|
label: string;
|
|
69
|
-
|
|
63
|
+
disabled?: boolean;
|
|
70
64
|
}
|
|
71
65
|
|
|
72
66
|
export declare interface Context {
|
|
@@ -107,6 +101,29 @@ export declare interface NavStore {
|
|
|
107
101
|
[key: string]: any;
|
|
108
102
|
}
|
|
109
103
|
|
|
104
|
+
declare interface SelectOption {
|
|
105
|
+
value: any;
|
|
106
|
+
label: string;
|
|
107
|
+
[key: string]: any;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
export declare const SelectSearch: DefineComponent<SelectSearchProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
111
|
+
"update:modelValue": (value: SelectOption | null) => any;
|
|
112
|
+
}, string, PublicProps, Readonly<SelectSearchProps> & Readonly<{
|
|
113
|
+
"onUpdate:modelValue"?: ((value: SelectOption | null) => any) | undefined;
|
|
114
|
+
}>, {
|
|
115
|
+
label: string;
|
|
116
|
+
options: SelectOption[];
|
|
117
|
+
modelValue: SelectOption | null;
|
|
118
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
119
|
+
|
|
120
|
+
declare interface SelectSearchProps {
|
|
121
|
+
options?: SelectOption[];
|
|
122
|
+
fetchOptions?: (inputValue: string) => Promise<SelectOption[]> | SelectOption[];
|
|
123
|
+
label?: string;
|
|
124
|
+
modelValue?: SelectOption | null;
|
|
125
|
+
}
|
|
126
|
+
|
|
110
127
|
export declare interface Store {
|
|
111
128
|
[key: string]: any;
|
|
112
129
|
}
|