@quidgest/ui 0.16.74 → 0.16.75
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/json/api.json +31 -1
- package/dist/ui.css +45 -5
- package/dist/ui.esm.js +6614 -6541
- package/dist/ui.js +25 -25
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +142 -137
- package/dist/ui.scss +50 -3
- package/esm/components/QCheckbox/QCheckbox.d.ts.map +1 -1
- package/esm/components/QCheckbox/QCheckbox.vue.js +18 -16
- package/esm/components/QCheckbox/index.d.ts +3 -0
- package/esm/components/QCheckbox/index.d.ts.map +1 -1
- package/esm/components/QCheckbox/types.d.ts +6 -0
- package/esm/components/QCheckbox/types.d.ts.map +1 -1
- package/esm/components/QCombobox/QCombobox.d.ts +2 -0
- package/esm/components/QCombobox/QCombobox.d.ts.map +1 -1
- package/esm/components/QCombobox/index.d.ts +1 -0
- package/esm/components/QCombobox/index.d.ts.map +1 -1
- package/esm/components/QDropdownMenu/QDropdownMenuContent.d.ts +2 -0
- package/esm/components/QDropdownMenu/QDropdownMenuContent.d.ts.map +1 -1
- package/esm/components/QList/QList.d.ts +2 -0
- package/esm/components/QList/QList.d.ts.map +1 -1
- package/esm/components/QList/QList.vue.js +17 -16
- package/esm/components/QList/QListItem.d.ts.map +1 -1
- package/esm/components/QList/QListItem.vue.js +50 -49
- package/esm/components/QList/index.d.ts +1 -0
- package/esm/components/QList/index.d.ts.map +1 -1
- package/esm/components/QList/types.d.ts +6 -0
- package/esm/components/QList/types.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.d.ts +154 -2
- package/esm/components/QSelect/QSelect.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.vue.js +410 -310
- package/esm/components/QSelect/index.d.ts +77 -1
- package/esm/components/QSelect/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -117,7 +117,81 @@ declare const QSelect: {
|
|
|
117
117
|
extras?(_: {}): any;
|
|
118
118
|
};
|
|
119
119
|
}) | null;
|
|
120
|
-
|
|
120
|
+
valueContainer: HTMLSpanElement;
|
|
121
|
+
hiddenItemsCountBadge: ({
|
|
122
|
+
$: import('vue').ComponentInternalInstance;
|
|
123
|
+
$data: {};
|
|
124
|
+
$props: {
|
|
125
|
+
readonly id?: string | undefined;
|
|
126
|
+
readonly class?: string | unknown[] | undefined;
|
|
127
|
+
readonly variant?: import('..').QBadgeVariant | undefined;
|
|
128
|
+
readonly color?: string | undefined;
|
|
129
|
+
readonly pill?: boolean | undefined;
|
|
130
|
+
readonly size?: import('..').QBadgeSize | undefined;
|
|
131
|
+
readonly disabled?: boolean | undefined;
|
|
132
|
+
readonly removable?: boolean | undefined;
|
|
133
|
+
readonly icons?: typeof import('../QBadge/constants').DEFAULT_ICONS | undefined;
|
|
134
|
+
readonly texts?: typeof import('../QBadge/constants').DEFAULT_TEXTS | undefined;
|
|
135
|
+
readonly "onClick:remove"?: (() => any) | undefined;
|
|
136
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
137
|
+
$attrs: {
|
|
138
|
+
[x: string]: unknown;
|
|
139
|
+
};
|
|
140
|
+
$refs: {
|
|
141
|
+
[x: string]: unknown;
|
|
142
|
+
};
|
|
143
|
+
$slots: Readonly<{
|
|
144
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
145
|
+
}>;
|
|
146
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
147
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
148
|
+
$host: Element | null;
|
|
149
|
+
$emit: (event: "click:remove") => void;
|
|
150
|
+
$el: any;
|
|
151
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QBadgeProps> & Readonly<{
|
|
152
|
+
"onClick:remove"?: (() => any) | undefined;
|
|
153
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
154
|
+
"click:remove": () => any;
|
|
155
|
+
}, string, {
|
|
156
|
+
size: import('..').QBadgeSize;
|
|
157
|
+
color: string;
|
|
158
|
+
variant: import('..').QBadgeVariant;
|
|
159
|
+
icons: typeof import('../QBadge/constants').DEFAULT_ICONS;
|
|
160
|
+
texts: typeof import('../QBadge/constants').DEFAULT_TEXTS;
|
|
161
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
162
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
163
|
+
created?: (() => void) | (() => void)[];
|
|
164
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
165
|
+
mounted?: (() => void) | (() => void)[];
|
|
166
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
167
|
+
updated?: (() => void) | (() => void)[];
|
|
168
|
+
activated?: (() => void) | (() => void)[];
|
|
169
|
+
deactivated?: (() => void) | (() => void)[];
|
|
170
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
171
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
172
|
+
destroyed?: (() => void) | (() => void)[];
|
|
173
|
+
unmounted?: (() => void) | (() => void)[];
|
|
174
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
175
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
176
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
177
|
+
};
|
|
178
|
+
$forceUpdate: () => void;
|
|
179
|
+
$nextTick: typeof import('vue').nextTick;
|
|
180
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
181
|
+
} & Readonly<{
|
|
182
|
+
size: import('..').QBadgeSize;
|
|
183
|
+
color: string;
|
|
184
|
+
variant: import('..').QBadgeVariant;
|
|
185
|
+
icons: typeof import('../QBadge/constants').DEFAULT_ICONS;
|
|
186
|
+
texts: typeof import('../QBadge/constants').DEFAULT_TEXTS;
|
|
187
|
+
}> & Omit<Readonly<import('..').QBadgeProps> & Readonly<{
|
|
188
|
+
"onClick:remove"?: (() => any) | undefined;
|
|
189
|
+
}>, "size" | "color" | "variant" | "icons" | "texts"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
190
|
+
$slots: {
|
|
191
|
+
default?(_: {}): any;
|
|
192
|
+
default?(_: {}): any;
|
|
193
|
+
};
|
|
194
|
+
}) | null;
|
|
121
195
|
allBadges: (({
|
|
122
196
|
$: import('vue').ComponentInternalInstance;
|
|
123
197
|
$data: {};
|
|
@@ -192,6 +266,7 @@ declare const QSelect: {
|
|
|
192
266
|
default?(_: {}): any;
|
|
193
267
|
};
|
|
194
268
|
}) | null)[];
|
|
269
|
+
allPlainTexts: HTMLSpanElement;
|
|
195
270
|
input: HTMLInputElement;
|
|
196
271
|
content: HTMLDivElement;
|
|
197
272
|
list: ({
|
|
@@ -236,6 +311,7 @@ declare const QSelect: {
|
|
|
236
311
|
readonly highlighted?: boolean | undefined;
|
|
237
312
|
readonly disabled?: boolean | undefined;
|
|
238
313
|
readonly icons?: typeof import('../QList/constants').DEFAULT_ICONS | undefined;
|
|
314
|
+
readonly checkboxless?: boolean | undefined;
|
|
239
315
|
readonly onClick?: (() => any) | undefined;
|
|
240
316
|
readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
241
317
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QSelect/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAO8tzB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QSelect/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAO8tzB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAPxzzB,CAAA;AAGzC,OAAO,EAAE,OAAO,EAAE,CAAA;AAGlB,cAAc,SAAS,CAAA"}
|