@fkui/vue 6.5.0 → 6.6.0
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/cjs/cypress.cjs.js +136 -1
- package/dist/cjs/cypress.cjs.js.map +3 -3
- package/dist/cjs/index.cjs.js +4635 -4064
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/esm/cypress.esm.js +136 -1
- package/dist/esm/cypress.esm.js.map +3 -3
- package/dist/esm/index.esm.js +4641 -4070
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/cypress.d.ts +100 -1
- package/dist/types/index.d.ts +123 -20
- package/dist/types/tsdoc-metadata.json +1 -1
- package/htmlvalidate/elements/components.js +43 -0
- package/package.json +5 -5
package/dist/types/cypress.d.ts
CHANGED
|
@@ -205,6 +205,47 @@ export declare class FDatepickerFieldPageobject implements BasePageObject {
|
|
|
205
205
|
highlightedDay(): DefaultCypressChainable;
|
|
206
206
|
}
|
|
207
207
|
|
|
208
|
+
/**
|
|
209
|
+
* Cypress pageobject for`FDetailsPanel`.
|
|
210
|
+
*
|
|
211
|
+
* @public
|
|
212
|
+
*/
|
|
213
|
+
export declare class FDetailsPanelPageObject implements BasePageObject {
|
|
214
|
+
/** Base selector */
|
|
215
|
+
readonly selector: string;
|
|
216
|
+
protected constructor(selector: string);
|
|
217
|
+
/**
|
|
218
|
+
* Get a selector based on the panel name.
|
|
219
|
+
*/
|
|
220
|
+
protected static nameSelector(name: string): string;
|
|
221
|
+
/**
|
|
222
|
+
* Get details panel based on its `name` prop.
|
|
223
|
+
*
|
|
224
|
+
* @param name - Name given to panel.
|
|
225
|
+
*/
|
|
226
|
+
static fromName(name: string): FDetailsPanelPageObject;
|
|
227
|
+
/**
|
|
228
|
+
* Panel element.
|
|
229
|
+
*/
|
|
230
|
+
el(): DefaultCypressChainable;
|
|
231
|
+
/**
|
|
232
|
+
* Content in header slot (as defined by consumer).
|
|
233
|
+
*/
|
|
234
|
+
header(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
235
|
+
/**
|
|
236
|
+
* Content in content slot (as defined by consumer).
|
|
237
|
+
*/
|
|
238
|
+
content(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
239
|
+
/**
|
|
240
|
+
* Content in footer slot (as defined by consumer).
|
|
241
|
+
*/
|
|
242
|
+
footer(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
243
|
+
/**
|
|
244
|
+
* Default submit button.
|
|
245
|
+
*/
|
|
246
|
+
closeButton(): Cypress.Chainable<JQuery<HTMLButtonElement>>;
|
|
247
|
+
}
|
|
248
|
+
|
|
208
249
|
/**
|
|
209
250
|
* @public
|
|
210
251
|
*/
|
|
@@ -362,6 +403,30 @@ export declare class FInteractiveTablePageObject implements BasePageObject {
|
|
|
362
403
|
* @param selector - table selector.
|
|
363
404
|
*/
|
|
364
405
|
constructor(selector: string);
|
|
406
|
+
/**
|
|
407
|
+
* Get table cell (typically `<td>` but can be `<th>` if row headers are
|
|
408
|
+
* present).
|
|
409
|
+
*
|
|
410
|
+
* Both row and column are 1-indexed, i.e. 1:1 selects the first cell in the
|
|
411
|
+
* first row.
|
|
412
|
+
*
|
|
413
|
+
* Neither the marker for expandable rows or the checkbox for selectable
|
|
414
|
+
* rows are included in the column count, i.e. `1` always refers to the
|
|
415
|
+
* first column with content.
|
|
416
|
+
*
|
|
417
|
+
* For expandable rows the row count depend on whenever a row is expanded or
|
|
418
|
+
* not. If the first row is collapsed the second row refers to the next
|
|
419
|
+
* parent row while if the first row is expanded the second row refers to
|
|
420
|
+
* the first expanded row under the first row.
|
|
421
|
+
*
|
|
422
|
+
* @public
|
|
423
|
+
* @param descriptor - Row and column number of cell (1-indexed).
|
|
424
|
+
* @returns The cell element.
|
|
425
|
+
*/
|
|
426
|
+
cell(descriptor: {
|
|
427
|
+
row: number;
|
|
428
|
+
col: number;
|
|
429
|
+
}): Cypress.Chainable<JQuery<HTMLTableCellElement>>;
|
|
365
430
|
caption(): DefaultCypressChainable;
|
|
366
431
|
bodyRow(): DefaultCypressChainable;
|
|
367
432
|
row(index: number): DefaultCypressChainable;
|
|
@@ -481,6 +546,40 @@ export declare class FMessageBoxPageObject implements BasePageObject {
|
|
|
481
546
|
typeOfMessage(): Cypress.Chainable<string>;
|
|
482
547
|
}
|
|
483
548
|
|
|
549
|
+
/**
|
|
550
|
+
* Cypress pageobject for`FMinimizablePanel`.
|
|
551
|
+
*
|
|
552
|
+
* @public
|
|
553
|
+
*/
|
|
554
|
+
export declare class FMinimizablePanelPageObject implements BasePageObject {
|
|
555
|
+
/** Base selector */
|
|
556
|
+
readonly selector: string;
|
|
557
|
+
/**
|
|
558
|
+
* @param selector - panel selector.
|
|
559
|
+
*/
|
|
560
|
+
constructor(selector: string);
|
|
561
|
+
/**
|
|
562
|
+
* Panel element.
|
|
563
|
+
*/
|
|
564
|
+
el(): DefaultCypressChainable;
|
|
565
|
+
/**
|
|
566
|
+
* Content in header slot (as defined by consumer).
|
|
567
|
+
*/
|
|
568
|
+
header(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
569
|
+
/**
|
|
570
|
+
* Content in content slot (as defined by consumer).
|
|
571
|
+
*/
|
|
572
|
+
content(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
573
|
+
/**
|
|
574
|
+
* Content in footer slot (as defined by consumer).
|
|
575
|
+
*/
|
|
576
|
+
footer(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
577
|
+
/**
|
|
578
|
+
* Toggle button.
|
|
579
|
+
*/
|
|
580
|
+
toggleButton(): Cypress.Chainable<JQuery<HTMLButtonElement>>;
|
|
581
|
+
}
|
|
582
|
+
|
|
484
583
|
/**
|
|
485
584
|
* @public
|
|
486
585
|
*/
|
|
@@ -846,8 +945,8 @@ export declare class FWizardStepHeaderPageobject implements BasePageObject {
|
|
|
846
945
|
successIcon: () => DefaultCypressChainable;
|
|
847
946
|
stepNumber: () => Cypress.Chainable<string>;
|
|
848
947
|
stepOf: () => DefaultCypressChainable;
|
|
849
|
-
title: () => DefaultCypressChainable;
|
|
850
948
|
constructor(selector: string);
|
|
949
|
+
title(): DefaultCypressChainable;
|
|
851
950
|
}
|
|
852
951
|
|
|
853
952
|
/**
|
package/dist/types/index.d.ts
CHANGED
|
@@ -135,13 +135,15 @@ update: () => any;
|
|
|
135
135
|
onUpdate?: (() => any) | undefined;
|
|
136
136
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
137
137
|
|
|
138
|
-
declare const __VLS_component_4: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {
|
|
138
|
+
declare const __VLS_component_4: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
139
|
+
|
|
140
|
+
declare const __VLS_component_5: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {
|
|
139
141
|
min: string;
|
|
140
142
|
max: string;
|
|
141
143
|
initial: string;
|
|
142
144
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
143
145
|
|
|
144
|
-
declare const
|
|
146
|
+
declare const __VLS_component_6: DefineComponent<ExtractPropTypes< {
|
|
145
147
|
/**
|
|
146
148
|
* Unique (per-table) identifier. Typically set to the row
|
|
147
149
|
* property displayed but any unique string can be used.
|
|
@@ -319,7 +321,7 @@ rowHeader: boolean;
|
|
|
319
321
|
element: unknown;
|
|
320
322
|
}, any>;
|
|
321
323
|
|
|
322
|
-
declare const
|
|
324
|
+
declare const __VLS_component_7: DefineComponent<IPopupListboxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
323
325
|
close: () => any;
|
|
324
326
|
}, string, PublicProps, Readonly<IPopupListboxProps> & Readonly<{
|
|
325
327
|
onClose?: (() => any) | undefined;
|
|
@@ -349,11 +351,24 @@ declare type __VLS_PrettifyLocal_5<T> = {
|
|
|
349
351
|
[K in keyof T]: T[K];
|
|
350
352
|
} & {};
|
|
351
353
|
|
|
354
|
+
declare type __VLS_PrettifyLocal_6<T> = {
|
|
355
|
+
[K in keyof T]: T[K];
|
|
356
|
+
} & {};
|
|
357
|
+
|
|
352
358
|
declare type __VLS_Props = {
|
|
353
359
|
layout: string;
|
|
354
360
|
};
|
|
355
361
|
|
|
356
362
|
declare type __VLS_Props_2 = {
|
|
363
|
+
/**
|
|
364
|
+
* Screenreader context for toggle button.
|
|
365
|
+
*
|
|
366
|
+
* Default value of `fkui.minimizable-panel.context`.
|
|
367
|
+
*/
|
|
368
|
+
context?: string;
|
|
369
|
+
};
|
|
370
|
+
|
|
371
|
+
declare type __VLS_Props_3 = {
|
|
357
372
|
/**
|
|
358
373
|
* Minimal size of pane.
|
|
359
374
|
*
|
|
@@ -377,7 +392,7 @@ declare type __VLS_Props_2 = {
|
|
|
377
392
|
initial?: string;
|
|
378
393
|
};
|
|
379
394
|
|
|
380
|
-
declare type
|
|
395
|
+
declare type __VLS_Props_4 = {
|
|
381
396
|
id: string;
|
|
382
397
|
isOpen: boolean;
|
|
383
398
|
options: string[];
|
|
@@ -425,13 +440,30 @@ declare function __VLS_template_3(): {
|
|
|
425
440
|
declare function __VLS_template_4(): {
|
|
426
441
|
attrs: Partial<{}>;
|
|
427
442
|
slots: {
|
|
428
|
-
default?(_: {
|
|
443
|
+
default?(_: {
|
|
444
|
+
isOpen: boolean;
|
|
445
|
+
header: "header";
|
|
446
|
+
footer: "footer";
|
|
447
|
+
content: "content";
|
|
448
|
+
}): any;
|
|
449
|
+
icon?(_: {
|
|
450
|
+
isOpen: boolean;
|
|
451
|
+
}): any;
|
|
429
452
|
};
|
|
430
453
|
refs: {};
|
|
431
454
|
rootEl: any;
|
|
432
455
|
};
|
|
433
456
|
|
|
434
457
|
declare function __VLS_template_5(): {
|
|
458
|
+
attrs: Partial<{}>;
|
|
459
|
+
slots: {
|
|
460
|
+
default?(_: {}): any;
|
|
461
|
+
};
|
|
462
|
+
refs: {};
|
|
463
|
+
rootEl: any;
|
|
464
|
+
};
|
|
465
|
+
|
|
466
|
+
declare function __VLS_template_6(): {
|
|
435
467
|
attrs: Partial<{}>;
|
|
436
468
|
slots: {
|
|
437
469
|
default?(_: {}): any;
|
|
@@ -442,7 +474,7 @@ declare function __VLS_template_5(): {
|
|
|
442
474
|
rootEl: any;
|
|
443
475
|
};
|
|
444
476
|
|
|
445
|
-
declare function
|
|
477
|
+
declare function __VLS_template_7(): {
|
|
446
478
|
attrs: Partial<{}>;
|
|
447
479
|
slots: {
|
|
448
480
|
default?(_: {}): any;
|
|
@@ -467,6 +499,8 @@ declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
|
|
|
467
499
|
|
|
468
500
|
declare type __VLS_TemplateResult_6 = ReturnType<typeof __VLS_template_6>;
|
|
469
501
|
|
|
502
|
+
declare type __VLS_TemplateResult_7 = ReturnType<typeof __VLS_template_7>;
|
|
503
|
+
|
|
470
504
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
471
505
|
new (): {
|
|
472
506
|
$slots: S;
|
|
@@ -503,6 +537,12 @@ declare type __VLS_WithTemplateSlots_6<T, S> = T & {
|
|
|
503
537
|
};
|
|
504
538
|
};
|
|
505
539
|
|
|
540
|
+
declare type __VLS_WithTemplateSlots_7<T, S> = T & {
|
|
541
|
+
new (): {
|
|
542
|
+
$slots: S;
|
|
543
|
+
};
|
|
544
|
+
};
|
|
545
|
+
|
|
506
546
|
/* Excluded from this release type: actionFromKeyboardEvent */
|
|
507
547
|
|
|
508
548
|
/**
|
|
@@ -957,6 +997,14 @@ align: string;
|
|
|
957
997
|
export { _default as FValidationForm }
|
|
958
998
|
export { _default as IValidationForm }
|
|
959
999
|
|
|
1000
|
+
/**
|
|
1001
|
+
* @public
|
|
1002
|
+
*/
|
|
1003
|
+
export declare type DetailsPanelCloseCallback<T> = (data: {
|
|
1004
|
+
item: T;
|
|
1005
|
+
reason: string;
|
|
1006
|
+
}) => void;
|
|
1007
|
+
|
|
960
1008
|
/* Excluded from this release type: dispatchComponentUnmountEvent */
|
|
961
1009
|
|
|
962
1010
|
/**
|
|
@@ -5238,6 +5286,34 @@ highlight: boolean;
|
|
|
5238
5286
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
5239
5287
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
5240
5288
|
|
|
5289
|
+
export declare const FDetailsPanel: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_3<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
5290
|
+
props: __VLS_PrettifyLocal_3<Pick<Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, never> & {
|
|
5291
|
+
/**
|
|
5292
|
+
* Name of this panel. Used when referencing the panel in useDetailsPanel.
|
|
5293
|
+
*/
|
|
5294
|
+
name: string;
|
|
5295
|
+
/**
|
|
5296
|
+
* An optional identifier to prevent other panels with the same identifier
|
|
5297
|
+
* from being open at the same time.
|
|
5298
|
+
*/
|
|
5299
|
+
exclusive?: string;
|
|
5300
|
+
} & Partial<{}>> & PublicProps;
|
|
5301
|
+
expose(exposed: ShallowUnwrapRef< {}>): void;
|
|
5302
|
+
attrs: any;
|
|
5303
|
+
slots: {
|
|
5304
|
+
default?(_: {
|
|
5305
|
+
item: T;
|
|
5306
|
+
close: (reason?: string) => void;
|
|
5307
|
+
header: "header";
|
|
5308
|
+
footer: "footer";
|
|
5309
|
+
content: "content";
|
|
5310
|
+
}): any;
|
|
5311
|
+
};
|
|
5312
|
+
emit: {};
|
|
5313
|
+
}>) => VNode & {
|
|
5314
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
5315
|
+
};
|
|
5316
|
+
|
|
5241
5317
|
export declare const FDialogueTree: DefineComponent<ExtractPropTypes< {
|
|
5242
5318
|
/**
|
|
5243
5319
|
* Current dialogue question
|
|
@@ -7868,8 +7944,8 @@ export declare function findHTMLElementFromVueRef(ref: unknown): HTMLElement | u
|
|
|
7868
7944
|
*/
|
|
7869
7945
|
export declare function findParentByName(vm: ComponentPublicInstance | undefined | null, name: string): ComponentPublicInstance | undefined;
|
|
7870
7946
|
|
|
7871
|
-
export declare const FInteractiveTable: <T extends object, K extends keyof T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?:
|
|
7872
|
-
props:
|
|
7947
|
+
export declare const FInteractiveTable: <T extends object, K extends keyof T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_4<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
7948
|
+
props: __VLS_PrettifyLocal_4<Pick<Partial<{
|
|
7873
7949
|
modelValue: T[] | undefined;
|
|
7874
7950
|
scroll: TableScroll;
|
|
7875
7951
|
keyAttribute: string;
|
|
@@ -8298,8 +8374,8 @@ export declare interface FLayoutRightPanelInteface {
|
|
|
8298
8374
|
*/
|
|
8299
8375
|
export declare const FLayoutRightPanelService: FLayoutRightPanelInteface;
|
|
8300
8376
|
|
|
8301
|
-
export declare const FList: <T extends object>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?:
|
|
8302
|
-
props:
|
|
8377
|
+
export declare const FList: <T extends object>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_5<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
8378
|
+
props: __VLS_PrettifyLocal_5<Pick<Partial<{
|
|
8303
8379
|
elementId: string;
|
|
8304
8380
|
modelValue: T[] | undefined;
|
|
8305
8381
|
checkbox: boolean;
|
|
@@ -8588,9 +8664,9 @@ default: string;
|
|
|
8588
8664
|
validator(value: string): boolean;
|
|
8589
8665
|
};
|
|
8590
8666
|
}>> & Readonly<{}>, {
|
|
8667
|
+
layout: "standard" | "short";
|
|
8591
8668
|
banner: boolean;
|
|
8592
8669
|
provideScreenReaderContext: boolean;
|
|
8593
|
-
layout: "standard" | "short";
|
|
8594
8670
|
}, {}, {
|
|
8595
8671
|
FIcon: DefineComponent<ExtractPropTypes< {
|
|
8596
8672
|
name: {
|
|
@@ -8729,6 +8805,8 @@ align: string;
|
|
|
8729
8805
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
8730
8806
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
8731
8807
|
|
|
8808
|
+
export declare const FMinimizablePanel: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
8809
|
+
|
|
8732
8810
|
/**
|
|
8733
8811
|
* Level: Ready
|
|
8734
8812
|
*/
|
|
@@ -9910,9 +9988,9 @@ required: false;
|
|
|
9910
9988
|
default: typeof parseNumber;
|
|
9911
9989
|
};
|
|
9912
9990
|
}>> & Readonly<{}>, {
|
|
9991
|
+
decimals: number;
|
|
9913
9992
|
formatter: FormatFunction<number>;
|
|
9914
9993
|
parser: ParseFunction<number>;
|
|
9915
|
-
decimals: number;
|
|
9916
9994
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
9917
9995
|
|
|
9918
9996
|
/**
|
|
@@ -10542,6 +10620,13 @@ formatter: FormatFunction<string>;
|
|
|
10542
10620
|
*/
|
|
10543
10621
|
export declare type FormatFunction<TModel> = (modelValue: TModel) => string | undefined;
|
|
10544
10622
|
|
|
10623
|
+
/**
|
|
10624
|
+
* FormatPlugin: A Vue directive plugin for formatting text based on a provided format definition.
|
|
10625
|
+
*
|
|
10626
|
+
* @public
|
|
10627
|
+
*/
|
|
10628
|
+
export declare const FormatPlugin: Plugin_2;
|
|
10629
|
+
|
|
10545
10630
|
/**
|
|
10546
10631
|
* @public
|
|
10547
10632
|
*/
|
|
@@ -11266,9 +11351,9 @@ required: false;
|
|
|
11266
11351
|
default: typeof parsePercent;
|
|
11267
11352
|
};
|
|
11268
11353
|
}>> & Readonly<{}>, {
|
|
11354
|
+
decimals: number;
|
|
11269
11355
|
formatter: FormatFunction<number>;
|
|
11270
11356
|
parser: ParseFunction<number>;
|
|
11271
|
-
decimals: number;
|
|
11272
11357
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11273
11358
|
|
|
11274
11359
|
export declare const FPersonnummerTextField: DefineComponent<ExtractPropTypes< {
|
|
@@ -13341,7 +13426,7 @@ id: string;
|
|
|
13341
13426
|
disabled: boolean;
|
|
13342
13427
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
13343
13428
|
|
|
13344
|
-
export declare const FResizePane:
|
|
13429
|
+
export declare const FResizePane: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
13345
13430
|
|
|
13346
13431
|
export declare const FSearchTextField: DefineComponent<ExtractPropTypes< {
|
|
13347
13432
|
id: {
|
|
@@ -14156,8 +14241,8 @@ rotate: string;
|
|
|
14156
14241
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
14157
14242
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
14158
14243
|
|
|
14159
|
-
export declare const FSortFilterDataset: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?:
|
|
14160
|
-
props:
|
|
14244
|
+
export declare const FSortFilterDataset: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_6<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
14245
|
+
props: __VLS_PrettifyLocal_6<Pick<Partial<{
|
|
14161
14246
|
data: T[];
|
|
14162
14247
|
defaultSortAttribute: string;
|
|
14163
14248
|
showSort: boolean;
|
|
@@ -14314,7 +14399,7 @@ rotate: string;
|
|
|
14314
14399
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
14315
14400
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
14316
14401
|
|
|
14317
|
-
export declare const FTableColumn:
|
|
14402
|
+
export declare const FTableColumn: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
|
|
14318
14403
|
|
|
14319
14404
|
/**
|
|
14320
14405
|
* @public
|
|
@@ -16860,10 +16945,10 @@ rotate: string;
|
|
|
16860
16945
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
16861
16946
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
16862
16947
|
|
|
16863
|
-
export declare const IComboboxDropdown: DefineComponent<
|
|
16948
|
+
export declare const IComboboxDropdown: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
16864
16949
|
select: (option: string) => any;
|
|
16865
16950
|
close: () => any;
|
|
16866
|
-
}, string, PublicProps, Readonly<
|
|
16951
|
+
}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{
|
|
16867
16952
|
onSelect?: ((option: string) => any) | undefined;
|
|
16868
16953
|
onClose?: (() => any) | undefined;
|
|
16869
16954
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
@@ -17358,7 +17443,7 @@ export declare interface IPopupErrorData {
|
|
|
17358
17443
|
arrowOffset: number;
|
|
17359
17444
|
}
|
|
17360
17445
|
|
|
17361
|
-
export declare const IPopupListbox:
|
|
17446
|
+
export declare const IPopupListbox: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
|
|
17362
17447
|
|
|
17363
17448
|
declare interface IPopupListboxProps {
|
|
17364
17449
|
isOpen: boolean;
|
|
@@ -18214,6 +18299,24 @@ export declare function useCombobox(inputRef: Readonly<ShallowRef<HTMLInputEleme
|
|
|
18214
18299
|
closeDropdown: () => void;
|
|
18215
18300
|
};
|
|
18216
18301
|
|
|
18302
|
+
/**
|
|
18303
|
+
* @public
|
|
18304
|
+
*/
|
|
18305
|
+
export declare interface UseDetailsPanel<T = unknown> {
|
|
18306
|
+
open(item: T, options?: {
|
|
18307
|
+
onClose?: DetailsPanelCloseCallback<T>;
|
|
18308
|
+
}): void;
|
|
18309
|
+
close(): void;
|
|
18310
|
+
}
|
|
18311
|
+
|
|
18312
|
+
/**
|
|
18313
|
+
* Get a API object to access details panels (FDetailsPanel).
|
|
18314
|
+
*
|
|
18315
|
+
* @public
|
|
18316
|
+
* @param name - Name of panel.
|
|
18317
|
+
*/
|
|
18318
|
+
export declare function useDetailsPanel<T = unknown>(name: string): UseDetailsPanel<T>;
|
|
18319
|
+
|
|
18217
18320
|
/**
|
|
18218
18321
|
* Composable to get access to modal functions.
|
|
18219
18322
|
*
|
|
@@ -186,6 +186,24 @@ module.exports = defineMetadata({
|
|
|
186
186
|
inherit: "f-text-field#tooltip",
|
|
187
187
|
},
|
|
188
188
|
|
|
189
|
+
"f-details-panel": {
|
|
190
|
+
flow: true,
|
|
191
|
+
attributes: {
|
|
192
|
+
name: {
|
|
193
|
+
required: true,
|
|
194
|
+
enum: ["/.+/"],
|
|
195
|
+
},
|
|
196
|
+
exclude: {
|
|
197
|
+
enum: ["/.+/"],
|
|
198
|
+
},
|
|
199
|
+
},
|
|
200
|
+
slots: ["default", "icon"],
|
|
201
|
+
},
|
|
202
|
+
|
|
203
|
+
"f-details-panel#icon": {
|
|
204
|
+
permittedContent: ["f-icon"],
|
|
205
|
+
},
|
|
206
|
+
|
|
189
207
|
"f-calendar": {
|
|
190
208
|
flow: true,
|
|
191
209
|
slots: ["default"],
|
|
@@ -430,6 +448,31 @@ module.exports = defineMetadata({
|
|
|
430
448
|
inherit: "f-label#description",
|
|
431
449
|
},
|
|
432
450
|
|
|
451
|
+
"f-minimizable-panel": {
|
|
452
|
+
flow: true,
|
|
453
|
+
attributes: {
|
|
454
|
+
context: {
|
|
455
|
+
enum: ["/.+/"],
|
|
456
|
+
},
|
|
457
|
+
},
|
|
458
|
+
slots: ["default", "icon"],
|
|
459
|
+
},
|
|
460
|
+
|
|
461
|
+
"ce-minimizable-panel": {
|
|
462
|
+
flow: true,
|
|
463
|
+
attributes: {
|
|
464
|
+
context: {
|
|
465
|
+
enum: ["/.+/"],
|
|
466
|
+
},
|
|
467
|
+
openPrefix: {
|
|
468
|
+
enum: ["/.+/"],
|
|
469
|
+
},
|
|
470
|
+
closePrefix: {
|
|
471
|
+
enum: ["/.+/"],
|
|
472
|
+
},
|
|
473
|
+
},
|
|
474
|
+
},
|
|
475
|
+
|
|
433
476
|
"f-page-layout": {
|
|
434
477
|
flow: true,
|
|
435
478
|
attributes: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fkui/vue",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.6.0",
|
|
4
4
|
"description": "Vue implementation of FKUI components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fkui",
|
|
@@ -60,9 +60,9 @@
|
|
|
60
60
|
"unit:watch": "jest --watch"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
|
-
"@fkui/date": "^6.
|
|
64
|
-
"@fkui/design": "^6.
|
|
65
|
-
"@fkui/logic": "^6.
|
|
63
|
+
"@fkui/date": "^6.6.0",
|
|
64
|
+
"@fkui/design": "^6.6.0",
|
|
65
|
+
"@fkui/logic": "^6.6.0",
|
|
66
66
|
"fk-icons": "^4.30.1",
|
|
67
67
|
"html-validate": ">= 7.9.0",
|
|
68
68
|
"vue": "^3.5.0"
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"node": ">= 20",
|
|
80
80
|
"npm": ">= 7"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "1db311c19765c07c3804cf2b034399cdbb419f46"
|
|
83
83
|
}
|