cleek 2.10.17 → 2.10.19
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 +13 -55
- package/dist/main.cjs.js +43 -43
- package/dist/main.css +1 -1
- package/dist/main.es.js +34446 -34358
- package/dist/types/components/ck-select.vue.d.ts +24 -1
- package/dist/types/components/index.d.ts +1 -0
- package/dist/types/composables/use-scroll-listener.composable.d.ts +3 -0
- package/dist/types/utils/string-helpers.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
import { Align, AlignVertical, Icon, IconPack, Layout, WidthBreaks } from '../cleek-options/cleek-options.types';
|
|
1
|
+
import { Align, AlignVertical, Color, Icon, IconPack, Layout, WidthBreaks } from '../cleek-options/cleek-options.types';
|
|
2
2
|
|
|
3
3
|
type OptionValue = any;
|
|
4
4
|
type Option = any;
|
|
5
|
+
declare function focus(): void;
|
|
6
|
+
declare function blur(): void;
|
|
5
7
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
6
8
|
modelValue: {
|
|
7
9
|
required: true;
|
|
@@ -51,9 +53,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
51
53
|
};
|
|
52
54
|
placeholder: {
|
|
53
55
|
type: import('vue').PropType<string>;
|
|
56
|
+
default: string;
|
|
54
57
|
};
|
|
55
58
|
iconColor: {
|
|
56
59
|
type: import('vue').PropType<string>;
|
|
60
|
+
default: string;
|
|
57
61
|
};
|
|
58
62
|
optional: {
|
|
59
63
|
type: import('vue').PropType<boolean>;
|
|
@@ -63,6 +67,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
63
67
|
};
|
|
64
68
|
options: {
|
|
65
69
|
type: import('vue').PropType<any[]>;
|
|
70
|
+
required: true;
|
|
71
|
+
};
|
|
72
|
+
optionsLimit: {
|
|
73
|
+
type: import('vue').PropType<number>;
|
|
74
|
+
default: number;
|
|
66
75
|
};
|
|
67
76
|
reduceValueProp: {
|
|
68
77
|
type: import('vue').PropType<string>;
|
|
@@ -105,9 +114,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
105
114
|
};
|
|
106
115
|
emptyOptionsMsg: {
|
|
107
116
|
type: import('vue').PropType<string>;
|
|
117
|
+
default: string;
|
|
108
118
|
};
|
|
109
119
|
}>, {
|
|
110
120
|
focus: typeof focus;
|
|
121
|
+
blur: typeof blur;
|
|
111
122
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
112
123
|
click: (event: Event) => void;
|
|
113
124
|
change: (event: Event) => void;
|
|
@@ -160,9 +171,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
160
171
|
};
|
|
161
172
|
placeholder: {
|
|
162
173
|
type: import('vue').PropType<string>;
|
|
174
|
+
default: string;
|
|
163
175
|
};
|
|
164
176
|
iconColor: {
|
|
165
177
|
type: import('vue').PropType<string>;
|
|
178
|
+
default: string;
|
|
166
179
|
};
|
|
167
180
|
optional: {
|
|
168
181
|
type: import('vue').PropType<boolean>;
|
|
@@ -172,6 +185,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
172
185
|
};
|
|
173
186
|
options: {
|
|
174
187
|
type: import('vue').PropType<any[]>;
|
|
188
|
+
required: true;
|
|
189
|
+
};
|
|
190
|
+
optionsLimit: {
|
|
191
|
+
type: import('vue').PropType<number>;
|
|
192
|
+
default: number;
|
|
175
193
|
};
|
|
176
194
|
reduceValueProp: {
|
|
177
195
|
type: import('vue').PropType<string>;
|
|
@@ -214,13 +232,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
214
232
|
};
|
|
215
233
|
emptyOptionsMsg: {
|
|
216
234
|
type: import('vue').PropType<string>;
|
|
235
|
+
default: string;
|
|
217
236
|
};
|
|
218
237
|
}>> & Readonly<{
|
|
219
238
|
onClick?: (event: Event) => any;
|
|
220
239
|
onChange?: (event: Event) => any;
|
|
221
240
|
}>, {
|
|
241
|
+
placeholder: string;
|
|
242
|
+
iconColor: Color;
|
|
243
|
+
optionsLimit: number;
|
|
222
244
|
reduceValueProp: string;
|
|
223
245
|
reduceNameProp: string;
|
|
224
246
|
minWidth: string;
|
|
247
|
+
emptyOptionsMsg: string;
|
|
225
248
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
226
249
|
export default _default;
|
|
@@ -47,6 +47,7 @@ export declare class SelectedRows {
|
|
|
47
47
|
constructor(list: RowId[], settings?: {
|
|
48
48
|
toggleable: boolean;
|
|
49
49
|
});
|
|
50
|
+
getIdsAsArray(): any[];
|
|
50
51
|
isRowSelected(id: RowId): boolean;
|
|
51
52
|
isAnyRowsSelected(ids: RowId[]): boolean;
|
|
52
53
|
areAllRowsSelecteds(ids: RowId[]): boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function normalizeText(text: string): string;
|