sprintify-ui 0.2.10 → 0.2.12

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.
Files changed (35) hide show
  1. package/dist/sprintify-ui.es.js +3731 -3727
  2. package/dist/types/src/components/BaseActionItem.vue.d.ts +27 -20
  3. package/dist/types/src/components/BaseActionItemButton.vue.d.ts +21 -28
  4. package/dist/types/src/components/BaseAddressForm.vue.d.ts +63 -50
  5. package/dist/types/src/components/BaseBadge.vue.d.ts +41 -40
  6. package/dist/types/src/components/BaseBoolean.vue.d.ts +9 -14
  7. package/dist/types/src/components/BaseCropper.vue.d.ts +42 -25
  8. package/dist/types/src/components/BaseCropperModal.vue.d.ts +18 -17
  9. package/dist/types/src/components/BaseDataIteratorSectionBox.vue.d.ts +11 -14
  10. package/dist/types/src/components/BaseDataIteratorSectionButton.vue.d.ts +12 -15
  11. package/dist/types/src/components/BaseDataIteratorSectionModal.vue.d.ts +20 -17
  12. package/dist/types/src/components/BaseDataTableRowAction.vue.d.ts +18 -15
  13. package/dist/types/src/components/BaseDatePicker.vue.d.ts +107 -74
  14. package/dist/types/src/components/BaseDraggable.vue.d.ts +35 -20
  15. package/dist/types/src/components/BaseFilePicker.vue.d.ts +43 -42
  16. package/dist/types/src/components/BaseFilePickerCrop.vue.d.ts +43 -40
  17. package/dist/types/src/components/BaseFileUploader.vue.d.ts +83 -62
  18. package/dist/types/src/components/BaseGantt.vue.d.ts +424 -0
  19. package/dist/types/src/components/BaseHeader.vue.d.ts +81 -66
  20. package/dist/types/src/components/BaseIconPicker.vue.d.ts +27 -34
  21. package/dist/types/src/components/BaseLayoutNotificationItemContent.vue.d.ts +18 -15
  22. package/dist/types/src/components/BaseSideNavigation.vue.d.ts +11 -26
  23. package/dist/types/src/components/BaseSideNavigationItem.vue.d.ts +27 -32
  24. package/dist/types/src/components/BaseTabItem.vue.d.ts +27 -32
  25. package/dist/types/src/components/BaseTabs.vue.d.ts +11 -26
  26. package/dist/types/src/services/gantt/format.d.ts +24 -0
  27. package/dist/types/src/services/gantt/timescale.d.ts +26 -0
  28. package/dist/types/src/services/gantt/types.d.ts +67 -0
  29. package/package.json +1 -1
  30. package/src/components/BaseGantt.stories.js +130 -0
  31. package/src/components/BaseGantt.vue +333 -0
  32. package/src/components/BaseNumber.vue +37 -23
  33. package/src/services/gantt/format.ts +113 -0
  34. package/src/services/gantt/timescale.ts +243 -0
  35. package/src/services/gantt/types.ts +75 -0
@@ -0,0 +1,424 @@
1
+ import { GanttRow } from '@/services/gantt/types';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
3
+ maxHeight: {
4
+ type: import("vue").PropType<number>;
5
+ default: undefined;
6
+ };
7
+ rows: {
8
+ type: import("vue").PropType<GanttRow[]>;
9
+ required: true;
10
+ };
11
+ rowHeight: {
12
+ type: import("vue").PropType<number>;
13
+ default: number;
14
+ };
15
+ rowPadding: {
16
+ type: import("vue").PropType<number>;
17
+ default: number;
18
+ };
19
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "item:click"[], "item:click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
20
+ maxHeight: {
21
+ type: import("vue").PropType<number>;
22
+ default: undefined;
23
+ };
24
+ rows: {
25
+ type: import("vue").PropType<GanttRow[]>;
26
+ required: true;
27
+ };
28
+ rowHeight: {
29
+ type: import("vue").PropType<number>;
30
+ default: number;
31
+ };
32
+ rowPadding: {
33
+ type: import("vue").PropType<number>;
34
+ default: number;
35
+ };
36
+ }>> & {
37
+ "onItem:click"?: ((...args: any[]) => any) | undefined;
38
+ }, {
39
+ maxHeight: number;
40
+ rowHeight: number;
41
+ rowPadding: number;
42
+ }, {}>, {
43
+ sidebarItem?(_: {
44
+ row: {
45
+ id: number;
46
+ name: string;
47
+ meta?: Record<string, unknown> | undefined;
48
+ items: {
49
+ id: number;
50
+ start: {
51
+ get: (unit: keyof import("luxon").DateTime) => number;
52
+ readonly isValid: boolean;
53
+ readonly invalidReason: string | null;
54
+ readonly invalidExplanation: string | null;
55
+ readonly locale: string | null;
56
+ readonly numberingSystem: string | null;
57
+ readonly outputCalendar: string | null;
58
+ readonly zone: {
59
+ readonly type: string;
60
+ readonly name: string;
61
+ readonly isUniversal: boolean;
62
+ offsetName: (ts: number, options: import("luxon").ZoneOffsetOptions) => string | null;
63
+ formatOffset: (ts: number, format: import("luxon").ZoneOffsetFormat) => string;
64
+ offset: (ts: number) => number;
65
+ equals: (other: import("luxon").Zone) => boolean;
66
+ readonly isValid: boolean;
67
+ };
68
+ readonly zoneName: string | null;
69
+ readonly year: number;
70
+ readonly quarter: number;
71
+ readonly month: number;
72
+ readonly day: number;
73
+ readonly hour: number;
74
+ readonly minute: number;
75
+ readonly second: number;
76
+ readonly millisecond: number;
77
+ readonly weekYear: number;
78
+ readonly weekNumber: number;
79
+ readonly weekday: number;
80
+ readonly ordinal: number;
81
+ readonly monthShort: string | null;
82
+ readonly monthLong: string | null;
83
+ readonly weekdayShort: string | null;
84
+ readonly weekdayLong: string | null;
85
+ readonly offset: number;
86
+ readonly offsetNameShort: string | null;
87
+ readonly offsetNameLong: string | null;
88
+ readonly isOffsetFixed: boolean | null;
89
+ readonly isInDST: boolean;
90
+ readonly isInLeapYear: boolean;
91
+ readonly daysInMonth: import("luxon").PossibleDaysInMonth | undefined;
92
+ readonly daysInYear: number;
93
+ readonly weeksInWeekYear: number;
94
+ resolvedLocaleOptions: (opts?: Intl.DateTimeFormatOptions | import("luxon").LocaleOptions | undefined) => Required<import("luxon").LocaleOptions>;
95
+ toUTC: (offset?: number | undefined, opts?: import("luxon").ZoneOptions | undefined) => import("luxon").DateTime;
96
+ toLocal: () => import("luxon").DateTime;
97
+ setZone: (zone?: string | import("luxon").Zone | undefined, opts?: import("luxon").ZoneOptions | undefined) => import("luxon").DateTime;
98
+ reconfigure: (properties: import("luxon").LocaleOptions) => import("luxon").DateTime;
99
+ setLocale: (locale: string) => import("luxon").DateTime;
100
+ set: (values: import("luxon").DateObjectUnits) => import("luxon").DateTime;
101
+ plus: (duration: import("luxon").DurationLike) => import("luxon").DateTime;
102
+ minus: (duration: import("luxon").DurationLike) => import("luxon").DateTime;
103
+ startOf: (unit: import("luxon").DateTimeUnit) => import("luxon").DateTime;
104
+ endOf: (unit: import("luxon").DateTimeUnit) => import("luxon").DateTime;
105
+ toFormat: (fmt: string, opts?: import("luxon").LocaleOptions | undefined) => string;
106
+ toLocaleString: (formatOpts?: Intl.DateTimeFormatOptions | undefined, opts?: import("luxon").LocaleOptions | undefined) => string;
107
+ toLocaleParts: (opts?: Intl.DateTimeFormatOptions | undefined) => [] | Intl.DateTimeFormatPart[];
108
+ toISO: (opts?: import("luxon").ToISOTimeOptions | undefined) => string | null;
109
+ toISODate: (opts?: import("luxon").ToISODateOptions | undefined) => string | null;
110
+ toISOWeekDate: () => string | null;
111
+ toISOTime: (opts?: import("luxon").ToISOTimeOptions | undefined) => string | null;
112
+ toRFC2822: () => string | null;
113
+ toHTTP: () => string | null;
114
+ toSQLDate: () => string | null;
115
+ toSQLTime: (opts?: import("luxon").ToSQLOptions | undefined) => string | null;
116
+ toSQL: (opts?: import("luxon").ToSQLOptions | undefined) => string | null;
117
+ toString: () => string;
118
+ valueOf: () => number;
119
+ toMillis: () => number;
120
+ toSeconds: () => number;
121
+ toUnixInteger: () => number;
122
+ toJSON: () => string | null;
123
+ toBSON: () => Date;
124
+ toObject: <IncludeConfig extends boolean | undefined>(opts?: {
125
+ includeConfig?: IncludeConfig | undefined;
126
+ } | undefined) => Partial<import("luxon")._ToObjectOutput<IncludeConfig>>;
127
+ toJSDate: () => Date;
128
+ diff: (otherDateTime: import("luxon").DateTime, unit?: import("luxon").DurationUnits | undefined, opts?: import("luxon").DiffOptions | undefined) => import("luxon").Duration;
129
+ diffNow: (unit?: import("luxon").DurationUnits | undefined, opts?: import("luxon").DiffOptions | undefined) => import("luxon").Duration;
130
+ until: (otherDateTime: import("luxon").DateTime) => import("luxon").Interval;
131
+ hasSame: (otherDateTime: import("luxon").DateTime, unit: import("luxon").DateTimeUnit) => boolean;
132
+ equals: (other: import("luxon").DateTime) => boolean;
133
+ toRelative: (options?: import("luxon").ToRelativeOptions | undefined) => string | null;
134
+ toRelativeCalendar: (options?: import("luxon").ToRelativeCalendarOptions | undefined) => string | null;
135
+ };
136
+ end: {
137
+ get: (unit: keyof import("luxon").DateTime) => number;
138
+ readonly isValid: boolean;
139
+ readonly invalidReason: string | null;
140
+ readonly invalidExplanation: string | null;
141
+ readonly locale: string | null;
142
+ readonly numberingSystem: string | null;
143
+ readonly outputCalendar: string | null;
144
+ readonly zone: {
145
+ readonly type: string;
146
+ readonly name: string;
147
+ readonly isUniversal: boolean;
148
+ offsetName: (ts: number, options: import("luxon").ZoneOffsetOptions) => string | null;
149
+ formatOffset: (ts: number, format: import("luxon").ZoneOffsetFormat) => string;
150
+ offset: (ts: number) => number;
151
+ equals: (other: import("luxon").Zone) => boolean;
152
+ readonly isValid: boolean;
153
+ };
154
+ readonly zoneName: string | null;
155
+ readonly year: number;
156
+ readonly quarter: number;
157
+ readonly month: number;
158
+ readonly day: number;
159
+ readonly hour: number;
160
+ readonly minute: number;
161
+ readonly second: number;
162
+ readonly millisecond: number;
163
+ readonly weekYear: number;
164
+ readonly weekNumber: number;
165
+ readonly weekday: number;
166
+ readonly ordinal: number;
167
+ readonly monthShort: string | null;
168
+ readonly monthLong: string | null;
169
+ readonly weekdayShort: string | null;
170
+ readonly weekdayLong: string | null;
171
+ readonly offset: number;
172
+ readonly offsetNameShort: string | null;
173
+ readonly offsetNameLong: string | null;
174
+ readonly isOffsetFixed: boolean | null;
175
+ readonly isInDST: boolean;
176
+ readonly isInLeapYear: boolean;
177
+ readonly daysInMonth: import("luxon").PossibleDaysInMonth | undefined;
178
+ readonly daysInYear: number;
179
+ readonly weeksInWeekYear: number;
180
+ resolvedLocaleOptions: (opts?: Intl.DateTimeFormatOptions | import("luxon").LocaleOptions | undefined) => Required<import("luxon").LocaleOptions>;
181
+ toUTC: (offset?: number | undefined, opts?: import("luxon").ZoneOptions | undefined) => import("luxon").DateTime;
182
+ toLocal: () => import("luxon").DateTime;
183
+ setZone: (zone?: string | import("luxon").Zone | undefined, opts?: import("luxon").ZoneOptions | undefined) => import("luxon").DateTime;
184
+ reconfigure: (properties: import("luxon").LocaleOptions) => import("luxon").DateTime;
185
+ setLocale: (locale: string) => import("luxon").DateTime;
186
+ set: (values: import("luxon").DateObjectUnits) => import("luxon").DateTime;
187
+ plus: (duration: import("luxon").DurationLike) => import("luxon").DateTime;
188
+ minus: (duration: import("luxon").DurationLike) => import("luxon").DateTime;
189
+ startOf: (unit: import("luxon").DateTimeUnit) => import("luxon").DateTime;
190
+ endOf: (unit: import("luxon").DateTimeUnit) => import("luxon").DateTime;
191
+ toFormat: (fmt: string, opts?: import("luxon").LocaleOptions | undefined) => string;
192
+ toLocaleString: (formatOpts?: Intl.DateTimeFormatOptions | undefined, opts?: import("luxon").LocaleOptions | undefined) => string;
193
+ toLocaleParts: (opts?: Intl.DateTimeFormatOptions | undefined) => [] | Intl.DateTimeFormatPart[];
194
+ toISO: (opts?: import("luxon").ToISOTimeOptions | undefined) => string | null;
195
+ toISODate: (opts?: import("luxon").ToISODateOptions | undefined) => string | null;
196
+ toISOWeekDate: () => string | null;
197
+ toISOTime: (opts?: import("luxon").ToISOTimeOptions | undefined) => string | null;
198
+ toRFC2822: () => string | null;
199
+ toHTTP: () => string | null;
200
+ toSQLDate: () => string | null;
201
+ toSQLTime: (opts?: import("luxon").ToSQLOptions | undefined) => string | null;
202
+ toSQL: (opts?: import("luxon").ToSQLOptions | undefined) => string | null;
203
+ toString: () => string;
204
+ valueOf: () => number;
205
+ toMillis: () => number;
206
+ toSeconds: () => number;
207
+ toUnixInteger: () => number;
208
+ toJSON: () => string | null;
209
+ toBSON: () => Date;
210
+ toObject: <IncludeConfig extends boolean | undefined>(opts?: {
211
+ includeConfig?: IncludeConfig | undefined;
212
+ } | undefined) => Partial<import("luxon")._ToObjectOutput<IncludeConfig>>;
213
+ toJSDate: () => Date;
214
+ diff: (otherDateTime: import("luxon").DateTime, unit?: import("luxon").DurationUnits | undefined, opts?: import("luxon").DiffOptions | undefined) => import("luxon").Duration;
215
+ diffNow: (unit?: import("luxon").DurationUnits | undefined, opts?: import("luxon").DiffOptions | undefined) => import("luxon").Duration;
216
+ until: (otherDateTime: import("luxon").DateTime) => import("luxon").Interval;
217
+ hasSame: (otherDateTime: import("luxon").DateTime, unit: import("luxon").DateTimeUnit) => boolean;
218
+ equals: (other: import("luxon").DateTime) => boolean;
219
+ toRelative: (options?: import("luxon").ToRelativeOptions | undefined) => string | null;
220
+ toRelativeCalendar: (options?: import("luxon").ToRelativeCalendarOptions | undefined) => string | null;
221
+ };
222
+ name: string;
223
+ meta?: Record<string, unknown> | undefined;
224
+ color: string;
225
+ milliseconds: number;
226
+ x: number;
227
+ y: number;
228
+ width: number;
229
+ height: number;
230
+ }[];
231
+ };
232
+ }): any;
233
+ item?(_: {
234
+ item: {
235
+ id: number;
236
+ start: {
237
+ get: (unit: keyof import("luxon").DateTime) => number;
238
+ readonly isValid: boolean;
239
+ readonly invalidReason: string | null;
240
+ readonly invalidExplanation: string | null;
241
+ readonly locale: string | null;
242
+ readonly numberingSystem: string | null;
243
+ readonly outputCalendar: string | null;
244
+ readonly zone: {
245
+ readonly type: string;
246
+ readonly name: string;
247
+ readonly isUniversal: boolean;
248
+ offsetName: (ts: number, options: import("luxon").ZoneOffsetOptions) => string | null;
249
+ formatOffset: (ts: number, format: import("luxon").ZoneOffsetFormat) => string;
250
+ offset: (ts: number) => number;
251
+ equals: (other: import("luxon").Zone) => boolean;
252
+ readonly isValid: boolean;
253
+ };
254
+ readonly zoneName: string | null;
255
+ readonly year: number;
256
+ readonly quarter: number;
257
+ readonly month: number;
258
+ readonly day: number;
259
+ readonly hour: number;
260
+ readonly minute: number;
261
+ readonly second: number;
262
+ readonly millisecond: number;
263
+ readonly weekYear: number;
264
+ readonly weekNumber: number;
265
+ readonly weekday: number;
266
+ readonly ordinal: number;
267
+ readonly monthShort: string | null;
268
+ readonly monthLong: string | null;
269
+ readonly weekdayShort: string | null;
270
+ readonly weekdayLong: string | null;
271
+ readonly offset: number;
272
+ readonly offsetNameShort: string | null;
273
+ readonly offsetNameLong: string | null;
274
+ readonly isOffsetFixed: boolean | null;
275
+ readonly isInDST: boolean;
276
+ readonly isInLeapYear: boolean;
277
+ readonly daysInMonth: import("luxon").PossibleDaysInMonth | undefined;
278
+ readonly daysInYear: number;
279
+ readonly weeksInWeekYear: number;
280
+ resolvedLocaleOptions: (opts?: Intl.DateTimeFormatOptions | import("luxon").LocaleOptions | undefined) => Required<import("luxon").LocaleOptions>;
281
+ toUTC: (offset?: number | undefined, opts?: import("luxon").ZoneOptions | undefined) => import("luxon").DateTime;
282
+ toLocal: () => import("luxon").DateTime;
283
+ setZone: (zone?: string | import("luxon").Zone | undefined, opts?: import("luxon").ZoneOptions | undefined) => import("luxon").DateTime;
284
+ reconfigure: (properties: import("luxon").LocaleOptions) => import("luxon").DateTime;
285
+ setLocale: (locale: string) => import("luxon").DateTime;
286
+ set: (values: import("luxon").DateObjectUnits) => import("luxon").DateTime;
287
+ plus: (duration: import("luxon").DurationLike) => import("luxon").DateTime;
288
+ minus: (duration: import("luxon").DurationLike) => import("luxon").DateTime;
289
+ startOf: (unit: import("luxon").DateTimeUnit) => import("luxon").DateTime;
290
+ endOf: (unit: import("luxon").DateTimeUnit) => import("luxon").DateTime;
291
+ toFormat: (fmt: string, opts?: import("luxon").LocaleOptions | undefined) => string;
292
+ toLocaleString: (formatOpts?: Intl.DateTimeFormatOptions | undefined, opts?: import("luxon").LocaleOptions | undefined) => string;
293
+ toLocaleParts: (opts?: Intl.DateTimeFormatOptions | undefined) => [] | Intl.DateTimeFormatPart[];
294
+ toISO: (opts?: import("luxon").ToISOTimeOptions | undefined) => string | null;
295
+ toISODate: (opts?: import("luxon").ToISODateOptions | undefined) => string | null;
296
+ toISOWeekDate: () => string | null;
297
+ toISOTime: (opts?: import("luxon").ToISOTimeOptions | undefined) => string | null;
298
+ toRFC2822: () => string | null;
299
+ toHTTP: () => string | null;
300
+ toSQLDate: () => string | null;
301
+ toSQLTime: (opts?: import("luxon").ToSQLOptions | undefined) => string | null;
302
+ toSQL: (opts?: import("luxon").ToSQLOptions | undefined) => string | null;
303
+ toString: () => string;
304
+ valueOf: () => number;
305
+ toMillis: () => number;
306
+ toSeconds: () => number;
307
+ toUnixInteger: () => number;
308
+ toJSON: () => string | null;
309
+ toBSON: () => Date;
310
+ toObject: <IncludeConfig extends boolean | undefined>(opts?: {
311
+ includeConfig?: IncludeConfig | undefined;
312
+ } | undefined) => Partial<import("luxon")._ToObjectOutput<IncludeConfig>>;
313
+ toJSDate: () => Date;
314
+ diff: (otherDateTime: import("luxon").DateTime, unit?: import("luxon").DurationUnits | undefined, opts?: import("luxon").DiffOptions | undefined) => import("luxon").Duration;
315
+ diffNow: (unit?: import("luxon").DurationUnits | undefined, opts?: import("luxon").DiffOptions | undefined) => import("luxon").Duration;
316
+ until: (otherDateTime: import("luxon").DateTime) => import("luxon").Interval;
317
+ hasSame: (otherDateTime: import("luxon").DateTime, unit: import("luxon").DateTimeUnit) => boolean;
318
+ equals: (other: import("luxon").DateTime) => boolean;
319
+ toRelative: (options?: import("luxon").ToRelativeOptions | undefined) => string | null;
320
+ toRelativeCalendar: (options?: import("luxon").ToRelativeCalendarOptions | undefined) => string | null;
321
+ };
322
+ end: {
323
+ get: (unit: keyof import("luxon").DateTime) => number;
324
+ readonly isValid: boolean;
325
+ readonly invalidReason: string | null;
326
+ readonly invalidExplanation: string | null;
327
+ readonly locale: string | null;
328
+ readonly numberingSystem: string | null;
329
+ readonly outputCalendar: string | null;
330
+ readonly zone: {
331
+ readonly type: string;
332
+ readonly name: string;
333
+ readonly isUniversal: boolean;
334
+ offsetName: (ts: number, options: import("luxon").ZoneOffsetOptions) => string | null;
335
+ formatOffset: (ts: number, format: import("luxon").ZoneOffsetFormat) => string;
336
+ offset: (ts: number) => number;
337
+ equals: (other: import("luxon").Zone) => boolean;
338
+ readonly isValid: boolean;
339
+ };
340
+ readonly zoneName: string | null;
341
+ readonly year: number;
342
+ readonly quarter: number;
343
+ readonly month: number;
344
+ readonly day: number;
345
+ readonly hour: number;
346
+ readonly minute: number;
347
+ readonly second: number;
348
+ readonly millisecond: number;
349
+ readonly weekYear: number;
350
+ readonly weekNumber: number;
351
+ readonly weekday: number;
352
+ readonly ordinal: number;
353
+ readonly monthShort: string | null;
354
+ readonly monthLong: string | null;
355
+ readonly weekdayShort: string | null;
356
+ readonly weekdayLong: string | null;
357
+ readonly offset: number;
358
+ readonly offsetNameShort: string | null;
359
+ readonly offsetNameLong: string | null;
360
+ readonly isOffsetFixed: boolean | null;
361
+ readonly isInDST: boolean;
362
+ readonly isInLeapYear: boolean;
363
+ readonly daysInMonth: import("luxon").PossibleDaysInMonth | undefined;
364
+ readonly daysInYear: number;
365
+ readonly weeksInWeekYear: number;
366
+ resolvedLocaleOptions: (opts?: Intl.DateTimeFormatOptions | import("luxon").LocaleOptions | undefined) => Required<import("luxon").LocaleOptions>;
367
+ toUTC: (offset?: number | undefined, opts?: import("luxon").ZoneOptions | undefined) => import("luxon").DateTime;
368
+ toLocal: () => import("luxon").DateTime;
369
+ setZone: (zone?: string | import("luxon").Zone | undefined, opts?: import("luxon").ZoneOptions | undefined) => import("luxon").DateTime;
370
+ reconfigure: (properties: import("luxon").LocaleOptions) => import("luxon").DateTime;
371
+ setLocale: (locale: string) => import("luxon").DateTime;
372
+ set: (values: import("luxon").DateObjectUnits) => import("luxon").DateTime;
373
+ plus: (duration: import("luxon").DurationLike) => import("luxon").DateTime;
374
+ minus: (duration: import("luxon").DurationLike) => import("luxon").DateTime;
375
+ startOf: (unit: import("luxon").DateTimeUnit) => import("luxon").DateTime;
376
+ endOf: (unit: import("luxon").DateTimeUnit) => import("luxon").DateTime;
377
+ toFormat: (fmt: string, opts?: import("luxon").LocaleOptions | undefined) => string;
378
+ toLocaleString: (formatOpts?: Intl.DateTimeFormatOptions | undefined, opts?: import("luxon").LocaleOptions | undefined) => string;
379
+ toLocaleParts: (opts?: Intl.DateTimeFormatOptions | undefined) => [] | Intl.DateTimeFormatPart[];
380
+ toISO: (opts?: import("luxon").ToISOTimeOptions | undefined) => string | null;
381
+ toISODate: (opts?: import("luxon").ToISODateOptions | undefined) => string | null;
382
+ toISOWeekDate: () => string | null;
383
+ toISOTime: (opts?: import("luxon").ToISOTimeOptions | undefined) => string | null;
384
+ toRFC2822: () => string | null;
385
+ toHTTP: () => string | null;
386
+ toSQLDate: () => string | null;
387
+ toSQLTime: (opts?: import("luxon").ToSQLOptions | undefined) => string | null;
388
+ toSQL: (opts?: import("luxon").ToSQLOptions | undefined) => string | null;
389
+ toString: () => string;
390
+ valueOf: () => number;
391
+ toMillis: () => number;
392
+ toSeconds: () => number;
393
+ toUnixInteger: () => number;
394
+ toJSON: () => string | null;
395
+ toBSON: () => Date;
396
+ toObject: <IncludeConfig extends boolean | undefined>(opts?: {
397
+ includeConfig?: IncludeConfig | undefined;
398
+ } | undefined) => Partial<import("luxon")._ToObjectOutput<IncludeConfig>>;
399
+ toJSDate: () => Date;
400
+ diff: (otherDateTime: import("luxon").DateTime, unit?: import("luxon").DurationUnits | undefined, opts?: import("luxon").DiffOptions | undefined) => import("luxon").Duration;
401
+ diffNow: (unit?: import("luxon").DurationUnits | undefined, opts?: import("luxon").DiffOptions | undefined) => import("luxon").Duration;
402
+ until: (otherDateTime: import("luxon").DateTime) => import("luxon").Interval;
403
+ hasSame: (otherDateTime: import("luxon").DateTime, unit: import("luxon").DateTimeUnit) => boolean;
404
+ equals: (other: import("luxon").DateTime) => boolean;
405
+ toRelative: (options?: import("luxon").ToRelativeOptions | undefined) => string | null;
406
+ toRelativeCalendar: (options?: import("luxon").ToRelativeCalendarOptions | undefined) => string | null;
407
+ };
408
+ name: string;
409
+ meta?: Record<string, unknown> | undefined;
410
+ color: string;
411
+ milliseconds: number;
412
+ x: number;
413
+ y: number;
414
+ width: number;
415
+ height: number;
416
+ };
417
+ }): any;
418
+ }>;
419
+ export default _default;
420
+ type __VLS_WithTemplateSlots<T, S> = T & {
421
+ new (): {
422
+ $slots: S;
423
+ };
424
+ };
@@ -1,53 +1,85 @@
1
1
  import { ActionItem, Breadcrumb } from '@/types';
2
- declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
- title: string;
4
- subtitle?: string | undefined;
5
- attributes?: {
6
- icon: string;
7
- label: string;
8
- }[] | undefined;
9
- actions?: ActionItem[] | undefined;
10
- badge?: {
11
- icon: string;
12
- label: string;
13
- color: string;
14
- } | undefined;
15
- layout?: "default" | "compact" | undefined;
16
- breadcrumbs?: Breadcrumb[] | undefined;
17
- maxActions?: number | undefined;
18
- }>, {
19
- subtitle: undefined;
20
- attributes: undefined;
21
- actions: undefined;
22
- badge: undefined;
23
- layout: string;
24
- breadcrumbs: undefined;
25
- maxActions: number;
26
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
27
- title: string;
28
- subtitle?: string | undefined;
29
- attributes?: {
30
- icon: string;
31
- label: string;
32
- }[] | undefined;
33
- actions?: ActionItem[] | undefined;
34
- badge?: {
35
- icon: string;
36
- label: string;
37
- color: string;
38
- } | undefined;
39
- layout?: "default" | "compact" | undefined;
40
- breadcrumbs?: Breadcrumb[] | undefined;
41
- maxActions?: number | undefined;
42
- }>, {
43
- subtitle: undefined;
44
- attributes: undefined;
45
- actions: undefined;
46
- badge: undefined;
47
- layout: string;
48
- breadcrumbs: undefined;
49
- maxActions: number;
50
- }>>>, {
2
+ declare const _default: import("vue").DefineComponent<{
3
+ title: {
4
+ type: import("vue").PropType<string>;
5
+ required: true;
6
+ };
7
+ actions: {
8
+ type: import("vue").PropType<ActionItem[]>;
9
+ default: undefined;
10
+ };
11
+ attributes: {
12
+ type: import("vue").PropType<{
13
+ icon: string;
14
+ label: string;
15
+ }[]>;
16
+ default: undefined;
17
+ };
18
+ breadcrumbs: {
19
+ type: import("vue").PropType<Breadcrumb[]>;
20
+ default: undefined;
21
+ };
22
+ layout: {
23
+ type: import("vue").PropType<"default" | "compact">;
24
+ default: string;
25
+ };
26
+ subtitle: {
27
+ type: import("vue").PropType<string>;
28
+ default: undefined;
29
+ };
30
+ badge: {
31
+ type: import("vue").PropType<{
32
+ icon: string;
33
+ label: string;
34
+ color: string;
35
+ }>;
36
+ default: undefined;
37
+ };
38
+ maxActions: {
39
+ type: import("vue").PropType<number>;
40
+ default: number;
41
+ };
42
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
43
+ title: {
44
+ type: import("vue").PropType<string>;
45
+ required: true;
46
+ };
47
+ actions: {
48
+ type: import("vue").PropType<ActionItem[]>;
49
+ default: undefined;
50
+ };
51
+ attributes: {
52
+ type: import("vue").PropType<{
53
+ icon: string;
54
+ label: string;
55
+ }[]>;
56
+ default: undefined;
57
+ };
58
+ breadcrumbs: {
59
+ type: import("vue").PropType<Breadcrumb[]>;
60
+ default: undefined;
61
+ };
62
+ layout: {
63
+ type: import("vue").PropType<"default" | "compact">;
64
+ default: string;
65
+ };
66
+ subtitle: {
67
+ type: import("vue").PropType<string>;
68
+ default: undefined;
69
+ };
70
+ badge: {
71
+ type: import("vue").PropType<{
72
+ icon: string;
73
+ label: string;
74
+ color: string;
75
+ }>;
76
+ default: undefined;
77
+ };
78
+ maxActions: {
79
+ type: import("vue").PropType<number>;
80
+ default: number;
81
+ };
82
+ }>>, {
51
83
  actions: ActionItem[];
52
84
  attributes: {
53
85
  icon: string;
@@ -64,20 +96,3 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
64
96
  maxActions: number;
65
97
  }, {}>;
66
98
  export default _default;
67
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
68
- type __VLS_TypePropsToRuntimeProps<T> = {
69
- [K in keyof T]-?: {} extends Pick<T, K> ? {
70
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
71
- } : {
72
- type: import('vue').PropType<T[K]>;
73
- required: true;
74
- };
75
- };
76
- type __VLS_WithDefaults<P, D> = {
77
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
78
- default: D[K];
79
- }> : P[K];
80
- };
81
- type __VLS_Prettify<T> = {
82
- [K in keyof T]: T[K];
83
- } & {};
@@ -1,20 +1,30 @@
1
- declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
- modelValue?: string | null | undefined;
3
- collection?: string | undefined;
4
- maxWidth?: string | undefined;
5
- }>, {
6
- modelValue: null;
7
- collection: string;
8
- maxWidth: string;
9
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
10
- modelValue?: string | null | undefined;
11
- collection?: string | undefined;
12
- maxWidth?: string | undefined;
13
- }>, {
14
- modelValue: null;
15
- collection: string;
16
- maxWidth: string;
17
- }>>> & {
1
+ declare const _default: import("vue").DefineComponent<{
2
+ modelValue: {
3
+ type: import("vue").PropType<string | null>;
4
+ default: null;
5
+ };
6
+ maxWidth: {
7
+ type: import("vue").PropType<string>;
8
+ default: string;
9
+ };
10
+ collection: {
11
+ type: import("vue").PropType<string>;
12
+ default: string;
13
+ };
14
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
15
+ modelValue: {
16
+ type: import("vue").PropType<string | null>;
17
+ default: null;
18
+ };
19
+ maxWidth: {
20
+ type: import("vue").PropType<string>;
21
+ default: string;
22
+ };
23
+ collection: {
24
+ type: import("vue").PropType<string>;
25
+ default: string;
26
+ };
27
+ }>> & {
18
28
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
19
29
  }, {
20
30
  modelValue: string | null;
@@ -22,20 +32,3 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
22
32
  collection: string;
23
33
  }, {}>;
24
34
  export default _default;
25
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
26
- type __VLS_TypePropsToRuntimeProps<T> = {
27
- [K in keyof T]-?: {} extends Pick<T, K> ? {
28
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
29
- } : {
30
- type: import('vue').PropType<T[K]>;
31
- required: true;
32
- };
33
- };
34
- type __VLS_WithDefaults<P, D> = {
35
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
36
- default: D[K];
37
- }> : P[K];
38
- };
39
- type __VLS_Prettify<T> = {
40
- [K in keyof T]: T[K];
41
- } & {};