@quidgest/ui 0.17.0 → 0.17.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/json/api.json +1 -1
- package/dist/ui.css +9 -11
- package/dist/ui.esm.js +3717 -3582
- package/dist/ui.js +28 -28
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +272 -225
- package/dist/ui.scss +16 -17
- package/esm/components/QCombobox/QCombobox.d.ts.map +1 -1
- package/esm/components/QCombobox/index.d.ts.map +1 -1
- package/esm/components/QDateTimePicker/QDateTimePicker.d.ts +439 -0
- package/esm/components/QDateTimePicker/QDateTimePicker.d.ts.map +1 -1
- package/esm/components/QDateTimePicker/QDateTimePicker.vue.js +754 -627
- package/esm/components/QDateTimePicker/index.d.ts +219 -0
- package/esm/components/QDateTimePicker/index.d.ts.map +1 -1
- package/esm/components/QDropdownMenu/QDropdownMenuContent.d.ts.map +1 -1
- package/esm/components/QIcon/InlineSvg.d.ts.map +1 -1
- package/esm/components/QIcon/InlineSvg.js +2 -2
- package/esm/components/QList/QList.d.ts.map +1 -1
- package/esm/components/QList/index.d.ts.map +1 -1
- package/esm/components/QPasswordField/QPasswordField.d.ts.map +1 -1
- package/esm/components/QPasswordField/index.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.d.ts.map +1 -1
- package/esm/components/QSelect/index.d.ts.map +1 -1
- package/esm/components/QSidebar/QSidebarAnchor.d.ts.map +1 -1
- package/esm/components/QTextField/QTextField.d.ts.map +1 -1
- package/esm/components/QTextField/index.d.ts.map +1 -1
- package/esm/composables/useInputMask/index.js +9 -9
- package/esm/utils/date.d.ts +6 -0
- package/esm/utils/date.d.ts.map +1 -1
- package/esm/utils/date.js +139 -131
- package/esm/utils/index.js +19 -18
- package/package.json +7 -12
package/dist/ui.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Quidgest UI v0.17.
|
|
2
|
+
* Quidgest UI v0.17.2
|
|
3
3
|
* (c) 2026 Quidgest - Consultores de Gestão, S.A.
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
box-sizing: border-box;
|
|
13
13
|
}
|
|
14
14
|
html {
|
|
15
|
-
font-family:
|
|
15
|
+
font-family:
|
|
16
|
+
system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji',
|
|
16
17
|
'Segoe UI Emoji';
|
|
17
18
|
line-height: 1.15;
|
|
18
19
|
-webkit-text-size-adjust: 100%;
|
|
@@ -471,8 +472,8 @@ $transition-duration: 0.2s !default;
|
|
|
471
472
|
font-size: 0.75rem;
|
|
472
473
|
line-height: 1;
|
|
473
474
|
position: relative;
|
|
474
|
-
transition-property:
|
|
475
|
-
fill, stroke;
|
|
475
|
+
transition-property:
|
|
476
|
+
color, background-color, border-color, box-shadow, text-decoration-color, fill, stroke;
|
|
476
477
|
transition-duration: 0.15s;
|
|
477
478
|
&__underlay {
|
|
478
479
|
position: absolute;
|
|
@@ -697,8 +698,8 @@ $transition-duration: 0.2s !default;
|
|
|
697
698
|
margin: 0;
|
|
698
699
|
text-decoration: none;
|
|
699
700
|
white-space: nowrap;
|
|
700
|
-
transition-property:
|
|
701
|
-
fill, stroke;
|
|
701
|
+
transition-property:
|
|
702
|
+
color, background-color, border-color, box-shadow, text-decoration-color, fill, stroke;
|
|
702
703
|
transition-duration: 0.15s;
|
|
703
704
|
&#{$this}--labeled {
|
|
704
705
|
padding: 0.4rem 0.8rem;
|
|
@@ -1207,7 +1208,7 @@ $q-carousel-height-md: 300px;
|
|
|
1207
1208
|
padding: 0;
|
|
1208
1209
|
margin: -1px;
|
|
1209
1210
|
overflow: hidden;
|
|
1210
|
-
clip:
|
|
1211
|
+
clip-path: inset(50%);
|
|
1211
1212
|
white-space: nowrap;
|
|
1212
1213
|
border: 0;
|
|
1213
1214
|
}
|
|
@@ -1395,7 +1396,7 @@ $q-carousel-height-md: 300px;
|
|
|
1395
1396
|
$this: &;
|
|
1396
1397
|
display: flex;
|
|
1397
1398
|
flex-direction: column;
|
|
1398
|
-
|
|
1399
|
+
overflow-wrap: break-word;
|
|
1399
1400
|
background-color: var(--q-theme-container);
|
|
1400
1401
|
border-width: 1px;
|
|
1401
1402
|
border-radius: var(--border-radius);
|
|
@@ -1615,10 +1616,9 @@ $q-carousel-height-md: 300px;
|
|
|
1615
1616
|
gap: $space-base;
|
|
1616
1617
|
.q-button {
|
|
1617
1618
|
font-weight: 600;
|
|
1618
|
-
|
|
1619
|
+
padding: 0.5rem 0.6rem;
|
|
1619
1620
|
&--labeled {
|
|
1620
1621
|
flex: 1;
|
|
1621
|
-
font-size: 100%;
|
|
1622
1622
|
}
|
|
1623
1623
|
}
|
|
1624
1624
|
}
|
|
@@ -2039,10 +2039,9 @@ $q-carousel-height-md: 300px;
|
|
|
2039
2039
|
gap: $space-base;
|
|
2040
2040
|
}
|
|
2041
2041
|
&__file-name {
|
|
2042
|
-
word-wrap: break-word;
|
|
2043
2042
|
overflow-wrap: break-word;
|
|
2044
2043
|
hyphens: auto;
|
|
2045
|
-
word-break:
|
|
2044
|
+
word-break: normal;
|
|
2046
2045
|
white-space: normal;
|
|
2047
2046
|
color: var(--q-theme-neutral-dark);
|
|
2048
2047
|
}
|
|
@@ -2201,7 +2200,7 @@ $q-carousel-height-md: 300px;
|
|
|
2201
2200
|
.q-group-box {
|
|
2202
2201
|
$this: &;
|
|
2203
2202
|
display: inline-block;
|
|
2204
|
-
|
|
2203
|
+
overflow-wrap: break-word;
|
|
2205
2204
|
background-color: var(--q-theme-container);
|
|
2206
2205
|
border-width: 1px;
|
|
2207
2206
|
border-bottom: $group-border-bottom;
|
|
@@ -2478,7 +2477,7 @@ $q-line-loader-color: var(--q-line-loader-color);
|
|
|
2478
2477
|
padding: $space-base * 1.5 $space-base * 2;
|
|
2479
2478
|
list-style: none;
|
|
2480
2479
|
line-height: 15px;
|
|
2481
|
-
|
|
2480
|
+
overflow-wrap: break-word;
|
|
2482
2481
|
-webkit-touch-callout: none;
|
|
2483
2482
|
width: inherit;
|
|
2484
2483
|
border-radius: var(--border-radius);
|
|
@@ -2731,7 +2730,7 @@ $arrow-tip-radius: 0.1rem;
|
|
|
2731
2730
|
line-height: 1.5;
|
|
2732
2731
|
word-break: normal;
|
|
2733
2732
|
word-spacing: normal;
|
|
2734
|
-
|
|
2733
|
+
overflow-wrap: break-word;
|
|
2735
2734
|
white-space: normal;
|
|
2736
2735
|
line-break: auto;
|
|
2737
2736
|
}
|
|
@@ -3498,7 +3497,7 @@ $spinner-color: var(--q-theme-primary);
|
|
|
3498
3497
|
.q-switch:not(.q-switch--disabled) {
|
|
3499
3498
|
.q-switch__input:hover ~ .q-switch__labels .q-switch__label--on,
|
|
3500
3499
|
.q-switch__input:hover ~ .q-switch__labels .q-switch__label--off {
|
|
3501
|
-
background:
|
|
3500
|
+
background: rgb(
|
|
3502
3501
|
var(--q-theme-background-rgb, 255, 255, 255),
|
|
3503
3502
|
var(--q-switch-hover-background-opacity)
|
|
3504
3503
|
);
|
|
@@ -3773,7 +3772,7 @@ $q-toast-slide-distance: clamp(1rem, 3vw, 1.5rem) !default;
|
|
|
3773
3772
|
text-transform: none;
|
|
3774
3773
|
line-height: 1.5;
|
|
3775
3774
|
line-break: auto;
|
|
3776
|
-
|
|
3775
|
+
overflow-wrap: break-word;
|
|
3777
3776
|
word-break: normal;
|
|
3778
3777
|
word-spacing: normal;
|
|
3779
3778
|
white-space: normal;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QCombobox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/QCombobox.vue"],"names":[],"mappings":"AA6HA;AAslBC,OAAO,EAAE,aAAa,EAAiB,MAAM,aAAa,CAAA;AAY1D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,GAAG,CAAA;AAGvC,OAAO,EAAY,QAAQ,EAAyB,MAAM,KAAK,CAAA;AAE/D,KAAK,WAAW,GAAG,cAAc,CAAC;AAodnC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACjB,GAAG,WAAW,CAAC;AAOhB,iBAAS,cAAc;WAuVT,OAAO,IAA6B;;iCAvBZ,GAAG;gCACJ,GAAG;yBACV,GAAG;wBACJ,GAAG;wBACH,GAAG;gCACK,GAAG;;;YACb,GAAG;+BACM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"QCombobox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/QCombobox.vue"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { DEFAULT_ICONS, DEFAULT_TEXTS } from './constants';
|
|
2
|
+
import { QButtonVariant } from '../QButton';
|
|
2
3
|
import { QDateTimePickerProps } from '.';
|
|
3
4
|
import { nextTick } from 'vue';
|
|
4
5
|
type __VLS_Props = QDateTimePickerProps;
|
|
@@ -207,6 +208,225 @@ declare function __VLS_template(): {
|
|
|
207
208
|
}) | null;
|
|
208
209
|
menu: HTMLDivElement;
|
|
209
210
|
calendar: HTMLDivElement;
|
|
211
|
+
monthHeader: ({
|
|
212
|
+
$: import('vue').ComponentInternalInstance;
|
|
213
|
+
$data: {};
|
|
214
|
+
$props: {
|
|
215
|
+
readonly id?: string | undefined;
|
|
216
|
+
readonly class?: string | unknown[] | undefined;
|
|
217
|
+
readonly label?: string | undefined;
|
|
218
|
+
readonly variant?: QButtonVariant | undefined;
|
|
219
|
+
readonly color?: string | undefined;
|
|
220
|
+
readonly borderless?: boolean | undefined;
|
|
221
|
+
readonly elevated?: boolean | undefined;
|
|
222
|
+
readonly block?: boolean | undefined;
|
|
223
|
+
readonly size?: import('..').QButtonSize | undefined;
|
|
224
|
+
readonly iconPos?: import('..').QButtonIconPosition | undefined;
|
|
225
|
+
readonly pill?: boolean | undefined;
|
|
226
|
+
readonly disabled?: boolean | undefined;
|
|
227
|
+
readonly loading?: boolean | undefined;
|
|
228
|
+
readonly onClick?: ((event: Event) => any) | undefined;
|
|
229
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
230
|
+
$attrs: import('vue').Attrs;
|
|
231
|
+
$refs: {
|
|
232
|
+
[x: string]: unknown;
|
|
233
|
+
};
|
|
234
|
+
$slots: Readonly<{
|
|
235
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
236
|
+
}>;
|
|
237
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
238
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
239
|
+
$host: Element | null;
|
|
240
|
+
$emit: (event: "click", event: Event) => void;
|
|
241
|
+
$el: HTMLButtonElement;
|
|
242
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QButtonProps> & Readonly<{
|
|
243
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
244
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
245
|
+
click: (event: Event) => any;
|
|
246
|
+
}, string, {
|
|
247
|
+
size: import('..').QButtonSize;
|
|
248
|
+
variant: QButtonVariant;
|
|
249
|
+
color: string;
|
|
250
|
+
iconPos: import('..').QButtonIconPosition;
|
|
251
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
252
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
253
|
+
created?: (() => void) | (() => void)[];
|
|
254
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
255
|
+
mounted?: (() => void) | (() => void)[];
|
|
256
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
257
|
+
updated?: (() => void) | (() => void)[];
|
|
258
|
+
activated?: (() => void) | (() => void)[];
|
|
259
|
+
deactivated?: (() => void) | (() => void)[];
|
|
260
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
261
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
262
|
+
destroyed?: (() => void) | (() => void)[];
|
|
263
|
+
unmounted?: (() => void) | (() => void)[];
|
|
264
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
265
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
266
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
267
|
+
};
|
|
268
|
+
$forceUpdate: () => void;
|
|
269
|
+
$nextTick: typeof nextTick;
|
|
270
|
+
$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;
|
|
271
|
+
} & Readonly<{
|
|
272
|
+
size: import('..').QButtonSize;
|
|
273
|
+
variant: QButtonVariant;
|
|
274
|
+
color: string;
|
|
275
|
+
iconPos: import('..').QButtonIconPosition;
|
|
276
|
+
}> & Omit<Readonly<import('..').QButtonProps> & Readonly<{
|
|
277
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
278
|
+
}>, "size" | "variant" | "color" | "iconPos"> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
279
|
+
$slots: {
|
|
280
|
+
default?(_: {}): any;
|
|
281
|
+
append?(_: {}): any;
|
|
282
|
+
};
|
|
283
|
+
}) | null;
|
|
284
|
+
yearHeader: ({
|
|
285
|
+
$: import('vue').ComponentInternalInstance;
|
|
286
|
+
$data: {};
|
|
287
|
+
$props: {
|
|
288
|
+
readonly id?: string | undefined;
|
|
289
|
+
readonly class?: string | unknown[] | undefined;
|
|
290
|
+
readonly label?: string | undefined;
|
|
291
|
+
readonly variant?: QButtonVariant | undefined;
|
|
292
|
+
readonly color?: string | undefined;
|
|
293
|
+
readonly borderless?: boolean | undefined;
|
|
294
|
+
readonly elevated?: boolean | undefined;
|
|
295
|
+
readonly block?: boolean | undefined;
|
|
296
|
+
readonly size?: import('..').QButtonSize | undefined;
|
|
297
|
+
readonly iconPos?: import('..').QButtonIconPosition | undefined;
|
|
298
|
+
readonly pill?: boolean | undefined;
|
|
299
|
+
readonly disabled?: boolean | undefined;
|
|
300
|
+
readonly loading?: boolean | undefined;
|
|
301
|
+
readonly onClick?: ((event: Event) => any) | undefined;
|
|
302
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
303
|
+
$attrs: import('vue').Attrs;
|
|
304
|
+
$refs: {
|
|
305
|
+
[x: string]: unknown;
|
|
306
|
+
};
|
|
307
|
+
$slots: Readonly<{
|
|
308
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
309
|
+
}>;
|
|
310
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
311
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
312
|
+
$host: Element | null;
|
|
313
|
+
$emit: (event: "click", event: Event) => void;
|
|
314
|
+
$el: HTMLButtonElement;
|
|
315
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QButtonProps> & Readonly<{
|
|
316
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
317
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
318
|
+
click: (event: Event) => any;
|
|
319
|
+
}, string, {
|
|
320
|
+
size: import('..').QButtonSize;
|
|
321
|
+
variant: QButtonVariant;
|
|
322
|
+
color: string;
|
|
323
|
+
iconPos: import('..').QButtonIconPosition;
|
|
324
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
325
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
326
|
+
created?: (() => void) | (() => void)[];
|
|
327
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
328
|
+
mounted?: (() => void) | (() => void)[];
|
|
329
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
330
|
+
updated?: (() => void) | (() => void)[];
|
|
331
|
+
activated?: (() => void) | (() => void)[];
|
|
332
|
+
deactivated?: (() => void) | (() => void)[];
|
|
333
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
334
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
335
|
+
destroyed?: (() => void) | (() => void)[];
|
|
336
|
+
unmounted?: (() => void) | (() => void)[];
|
|
337
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
338
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
339
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
340
|
+
};
|
|
341
|
+
$forceUpdate: () => void;
|
|
342
|
+
$nextTick: typeof nextTick;
|
|
343
|
+
$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;
|
|
344
|
+
} & Readonly<{
|
|
345
|
+
size: import('..').QButtonSize;
|
|
346
|
+
variant: QButtonVariant;
|
|
347
|
+
color: string;
|
|
348
|
+
iconPos: import('..').QButtonIconPosition;
|
|
349
|
+
}> & Omit<Readonly<import('..').QButtonProps> & Readonly<{
|
|
350
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
351
|
+
}>, "size" | "variant" | "color" | "iconPos"> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
352
|
+
$slots: {
|
|
353
|
+
default?(_: {}): any;
|
|
354
|
+
append?(_: {}): any;
|
|
355
|
+
};
|
|
356
|
+
}) | null;
|
|
357
|
+
toggleTime: ({
|
|
358
|
+
$: import('vue').ComponentInternalInstance;
|
|
359
|
+
$data: {};
|
|
360
|
+
$props: {
|
|
361
|
+
readonly id?: string | undefined;
|
|
362
|
+
readonly class?: string | unknown[] | undefined;
|
|
363
|
+
readonly label?: string | undefined;
|
|
364
|
+
readonly variant?: QButtonVariant | undefined;
|
|
365
|
+
readonly color?: string | undefined;
|
|
366
|
+
readonly borderless?: boolean | undefined;
|
|
367
|
+
readonly elevated?: boolean | undefined;
|
|
368
|
+
readonly block?: boolean | undefined;
|
|
369
|
+
readonly size?: import('..').QButtonSize | undefined;
|
|
370
|
+
readonly iconPos?: import('..').QButtonIconPosition | undefined;
|
|
371
|
+
readonly pill?: boolean | undefined;
|
|
372
|
+
readonly disabled?: boolean | undefined;
|
|
373
|
+
readonly loading?: boolean | undefined;
|
|
374
|
+
readonly onClick?: ((event: Event) => any) | undefined;
|
|
375
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
376
|
+
$attrs: import('vue').Attrs;
|
|
377
|
+
$refs: {
|
|
378
|
+
[x: string]: unknown;
|
|
379
|
+
};
|
|
380
|
+
$slots: Readonly<{
|
|
381
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
382
|
+
}>;
|
|
383
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
384
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
385
|
+
$host: Element | null;
|
|
386
|
+
$emit: (event: "click", event: Event) => void;
|
|
387
|
+
$el: HTMLButtonElement;
|
|
388
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QButtonProps> & Readonly<{
|
|
389
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
390
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
391
|
+
click: (event: Event) => any;
|
|
392
|
+
}, string, {
|
|
393
|
+
size: import('..').QButtonSize;
|
|
394
|
+
variant: QButtonVariant;
|
|
395
|
+
color: string;
|
|
396
|
+
iconPos: import('..').QButtonIconPosition;
|
|
397
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
398
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
399
|
+
created?: (() => void) | (() => void)[];
|
|
400
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
401
|
+
mounted?: (() => void) | (() => void)[];
|
|
402
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
403
|
+
updated?: (() => void) | (() => void)[];
|
|
404
|
+
activated?: (() => void) | (() => void)[];
|
|
405
|
+
deactivated?: (() => void) | (() => void)[];
|
|
406
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
407
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
408
|
+
destroyed?: (() => void) | (() => void)[];
|
|
409
|
+
unmounted?: (() => void) | (() => void)[];
|
|
410
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
411
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
412
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
413
|
+
};
|
|
414
|
+
$forceUpdate: () => void;
|
|
415
|
+
$nextTick: typeof nextTick;
|
|
416
|
+
$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;
|
|
417
|
+
} & Readonly<{
|
|
418
|
+
size: import('..').QButtonSize;
|
|
419
|
+
variant: QButtonVariant;
|
|
420
|
+
color: string;
|
|
421
|
+
iconPos: import('..').QButtonIconPosition;
|
|
422
|
+
}> & Omit<Readonly<import('..').QButtonProps> & Readonly<{
|
|
423
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
424
|
+
}>, "size" | "variant" | "color" | "iconPos"> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
425
|
+
$slots: {
|
|
426
|
+
default?(_: {}): any;
|
|
427
|
+
append?(_: {}): any;
|
|
428
|
+
};
|
|
429
|
+
}) | null;
|
|
210
430
|
};
|
|
211
431
|
rootEl: any;
|
|
212
432
|
};
|
|
@@ -417,6 +637,225 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
417
637
|
}) | null;
|
|
418
638
|
menu: HTMLDivElement;
|
|
419
639
|
calendar: HTMLDivElement;
|
|
640
|
+
monthHeader: ({
|
|
641
|
+
$: import('vue').ComponentInternalInstance;
|
|
642
|
+
$data: {};
|
|
643
|
+
$props: {
|
|
644
|
+
readonly id?: string | undefined;
|
|
645
|
+
readonly class?: string | unknown[] | undefined;
|
|
646
|
+
readonly label?: string | undefined;
|
|
647
|
+
readonly variant?: QButtonVariant | undefined;
|
|
648
|
+
readonly color?: string | undefined;
|
|
649
|
+
readonly borderless?: boolean | undefined;
|
|
650
|
+
readonly elevated?: boolean | undefined;
|
|
651
|
+
readonly block?: boolean | undefined;
|
|
652
|
+
readonly size?: import('..').QButtonSize | undefined;
|
|
653
|
+
readonly iconPos?: import('..').QButtonIconPosition | undefined;
|
|
654
|
+
readonly pill?: boolean | undefined;
|
|
655
|
+
readonly disabled?: boolean | undefined;
|
|
656
|
+
readonly loading?: boolean | undefined;
|
|
657
|
+
readonly onClick?: ((event: Event) => any) | undefined;
|
|
658
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
659
|
+
$attrs: import('vue').Attrs;
|
|
660
|
+
$refs: {
|
|
661
|
+
[x: string]: unknown;
|
|
662
|
+
};
|
|
663
|
+
$slots: Readonly<{
|
|
664
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
665
|
+
}>;
|
|
666
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
667
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
668
|
+
$host: Element | null;
|
|
669
|
+
$emit: (event: "click", event: Event) => void;
|
|
670
|
+
$el: HTMLButtonElement;
|
|
671
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QButtonProps> & Readonly<{
|
|
672
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
673
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
674
|
+
click: (event: Event) => any;
|
|
675
|
+
}, string, {
|
|
676
|
+
size: import('..').QButtonSize;
|
|
677
|
+
variant: QButtonVariant;
|
|
678
|
+
color: string;
|
|
679
|
+
iconPos: import('..').QButtonIconPosition;
|
|
680
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
681
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
682
|
+
created?: (() => void) | (() => void)[];
|
|
683
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
684
|
+
mounted?: (() => void) | (() => void)[];
|
|
685
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
686
|
+
updated?: (() => void) | (() => void)[];
|
|
687
|
+
activated?: (() => void) | (() => void)[];
|
|
688
|
+
deactivated?: (() => void) | (() => void)[];
|
|
689
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
690
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
691
|
+
destroyed?: (() => void) | (() => void)[];
|
|
692
|
+
unmounted?: (() => void) | (() => void)[];
|
|
693
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
694
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
695
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
696
|
+
};
|
|
697
|
+
$forceUpdate: () => void;
|
|
698
|
+
$nextTick: typeof nextTick;
|
|
699
|
+
$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;
|
|
700
|
+
} & Readonly<{
|
|
701
|
+
size: import('..').QButtonSize;
|
|
702
|
+
variant: QButtonVariant;
|
|
703
|
+
color: string;
|
|
704
|
+
iconPos: import('..').QButtonIconPosition;
|
|
705
|
+
}> & Omit<Readonly<import('..').QButtonProps> & Readonly<{
|
|
706
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
707
|
+
}>, "size" | "variant" | "color" | "iconPos"> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
708
|
+
$slots: {
|
|
709
|
+
default?(_: {}): any;
|
|
710
|
+
append?(_: {}): any;
|
|
711
|
+
};
|
|
712
|
+
}) | null;
|
|
713
|
+
yearHeader: ({
|
|
714
|
+
$: import('vue').ComponentInternalInstance;
|
|
715
|
+
$data: {};
|
|
716
|
+
$props: {
|
|
717
|
+
readonly id?: string | undefined;
|
|
718
|
+
readonly class?: string | unknown[] | undefined;
|
|
719
|
+
readonly label?: string | undefined;
|
|
720
|
+
readonly variant?: QButtonVariant | undefined;
|
|
721
|
+
readonly color?: string | undefined;
|
|
722
|
+
readonly borderless?: boolean | undefined;
|
|
723
|
+
readonly elevated?: boolean | undefined;
|
|
724
|
+
readonly block?: boolean | undefined;
|
|
725
|
+
readonly size?: import('..').QButtonSize | undefined;
|
|
726
|
+
readonly iconPos?: import('..').QButtonIconPosition | undefined;
|
|
727
|
+
readonly pill?: boolean | undefined;
|
|
728
|
+
readonly disabled?: boolean | undefined;
|
|
729
|
+
readonly loading?: boolean | undefined;
|
|
730
|
+
readonly onClick?: ((event: Event) => any) | undefined;
|
|
731
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
732
|
+
$attrs: import('vue').Attrs;
|
|
733
|
+
$refs: {
|
|
734
|
+
[x: string]: unknown;
|
|
735
|
+
};
|
|
736
|
+
$slots: Readonly<{
|
|
737
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
738
|
+
}>;
|
|
739
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
740
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
741
|
+
$host: Element | null;
|
|
742
|
+
$emit: (event: "click", event: Event) => void;
|
|
743
|
+
$el: HTMLButtonElement;
|
|
744
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QButtonProps> & Readonly<{
|
|
745
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
746
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
747
|
+
click: (event: Event) => any;
|
|
748
|
+
}, string, {
|
|
749
|
+
size: import('..').QButtonSize;
|
|
750
|
+
variant: QButtonVariant;
|
|
751
|
+
color: string;
|
|
752
|
+
iconPos: import('..').QButtonIconPosition;
|
|
753
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
754
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
755
|
+
created?: (() => void) | (() => void)[];
|
|
756
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
757
|
+
mounted?: (() => void) | (() => void)[];
|
|
758
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
759
|
+
updated?: (() => void) | (() => void)[];
|
|
760
|
+
activated?: (() => void) | (() => void)[];
|
|
761
|
+
deactivated?: (() => void) | (() => void)[];
|
|
762
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
763
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
764
|
+
destroyed?: (() => void) | (() => void)[];
|
|
765
|
+
unmounted?: (() => void) | (() => void)[];
|
|
766
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
767
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
768
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
769
|
+
};
|
|
770
|
+
$forceUpdate: () => void;
|
|
771
|
+
$nextTick: typeof nextTick;
|
|
772
|
+
$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;
|
|
773
|
+
} & Readonly<{
|
|
774
|
+
size: import('..').QButtonSize;
|
|
775
|
+
variant: QButtonVariant;
|
|
776
|
+
color: string;
|
|
777
|
+
iconPos: import('..').QButtonIconPosition;
|
|
778
|
+
}> & Omit<Readonly<import('..').QButtonProps> & Readonly<{
|
|
779
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
780
|
+
}>, "size" | "variant" | "color" | "iconPos"> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
781
|
+
$slots: {
|
|
782
|
+
default?(_: {}): any;
|
|
783
|
+
append?(_: {}): any;
|
|
784
|
+
};
|
|
785
|
+
}) | null;
|
|
786
|
+
toggleTime: ({
|
|
787
|
+
$: import('vue').ComponentInternalInstance;
|
|
788
|
+
$data: {};
|
|
789
|
+
$props: {
|
|
790
|
+
readonly id?: string | undefined;
|
|
791
|
+
readonly class?: string | unknown[] | undefined;
|
|
792
|
+
readonly label?: string | undefined;
|
|
793
|
+
readonly variant?: QButtonVariant | undefined;
|
|
794
|
+
readonly color?: string | undefined;
|
|
795
|
+
readonly borderless?: boolean | undefined;
|
|
796
|
+
readonly elevated?: boolean | undefined;
|
|
797
|
+
readonly block?: boolean | undefined;
|
|
798
|
+
readonly size?: import('..').QButtonSize | undefined;
|
|
799
|
+
readonly iconPos?: import('..').QButtonIconPosition | undefined;
|
|
800
|
+
readonly pill?: boolean | undefined;
|
|
801
|
+
readonly disabled?: boolean | undefined;
|
|
802
|
+
readonly loading?: boolean | undefined;
|
|
803
|
+
readonly onClick?: ((event: Event) => any) | undefined;
|
|
804
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
805
|
+
$attrs: import('vue').Attrs;
|
|
806
|
+
$refs: {
|
|
807
|
+
[x: string]: unknown;
|
|
808
|
+
};
|
|
809
|
+
$slots: Readonly<{
|
|
810
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
811
|
+
}>;
|
|
812
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
813
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
814
|
+
$host: Element | null;
|
|
815
|
+
$emit: (event: "click", event: Event) => void;
|
|
816
|
+
$el: HTMLButtonElement;
|
|
817
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QButtonProps> & Readonly<{
|
|
818
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
819
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
820
|
+
click: (event: Event) => any;
|
|
821
|
+
}, string, {
|
|
822
|
+
size: import('..').QButtonSize;
|
|
823
|
+
variant: QButtonVariant;
|
|
824
|
+
color: string;
|
|
825
|
+
iconPos: import('..').QButtonIconPosition;
|
|
826
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
827
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
828
|
+
created?: (() => void) | (() => void)[];
|
|
829
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
830
|
+
mounted?: (() => void) | (() => void)[];
|
|
831
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
832
|
+
updated?: (() => void) | (() => void)[];
|
|
833
|
+
activated?: (() => void) | (() => void)[];
|
|
834
|
+
deactivated?: (() => void) | (() => void)[];
|
|
835
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
836
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
837
|
+
destroyed?: (() => void) | (() => void)[];
|
|
838
|
+
unmounted?: (() => void) | (() => void)[];
|
|
839
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
840
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
841
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
842
|
+
};
|
|
843
|
+
$forceUpdate: () => void;
|
|
844
|
+
$nextTick: typeof nextTick;
|
|
845
|
+
$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;
|
|
846
|
+
} & Readonly<{
|
|
847
|
+
size: import('..').QButtonSize;
|
|
848
|
+
variant: QButtonVariant;
|
|
849
|
+
color: string;
|
|
850
|
+
iconPos: import('..').QButtonIconPosition;
|
|
851
|
+
}> & Omit<Readonly<import('..').QButtonProps> & Readonly<{
|
|
852
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
853
|
+
}>, "size" | "variant" | "color" | "iconPos"> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
854
|
+
$slots: {
|
|
855
|
+
default?(_: {}): any;
|
|
856
|
+
append?(_: {}): any;
|
|
857
|
+
};
|
|
858
|
+
}) | null;
|
|
420
859
|
}, any>;
|
|
421
860
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
422
861
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QDateTimePicker.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QDateTimePicker/QDateTimePicker.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"QDateTimePicker.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QDateTimePicker/QDateTimePicker.vue"],"names":[],"mappings":"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"}
|