@fkui/vue 6.12.0 → 6.13.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/index.cjs.js +67 -66
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/esm/index.esm.js +67 -66
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/index.d.ts +37 -29
- package/htmlvalidate/elements/components.js +9 -0
- package/package.json +6 -6
package/dist/types/index.d.ts
CHANGED
|
@@ -55,16 +55,16 @@ import { WeekdayNaming } from '@fkui/date';
|
|
|
55
55
|
|
|
56
56
|
declare const __VLS_1: {};
|
|
57
57
|
|
|
58
|
-
declare const __VLS_10: {
|
|
58
|
+
declare const __VLS_10: {};
|
|
59
|
+
|
|
60
|
+
declare const __VLS_11: {
|
|
59
61
|
isOpen: boolean;
|
|
60
62
|
header: "header";
|
|
61
63
|
footer: "footer";
|
|
62
64
|
content: "content";
|
|
63
65
|
};
|
|
64
66
|
|
|
65
|
-
declare const
|
|
66
|
-
|
|
67
|
-
declare const __VLS_12: {
|
|
67
|
+
declare const __VLS_13: {
|
|
68
68
|
isOpen: boolean;
|
|
69
69
|
};
|
|
70
70
|
|
|
@@ -72,9 +72,9 @@ declare const __VLS_1_2: {
|
|
|
72
72
|
headingSlotClass: string;
|
|
73
73
|
};
|
|
74
74
|
|
|
75
|
-
declare const
|
|
75
|
+
declare const __VLS_25: {};
|
|
76
76
|
|
|
77
|
-
declare const
|
|
77
|
+
declare const __VLS_27: {
|
|
78
78
|
hasError: boolean;
|
|
79
79
|
validationMessage: string;
|
|
80
80
|
};
|
|
@@ -84,15 +84,15 @@ declare const __VLS_3: {
|
|
|
84
84
|
validationMessage: string;
|
|
85
85
|
};
|
|
86
86
|
|
|
87
|
-
declare const __VLS_5: {};
|
|
88
|
-
|
|
89
|
-
declare const __VLS_5_2: {};
|
|
90
|
-
|
|
91
87
|
declare const __VLS_6: {};
|
|
92
88
|
|
|
89
|
+
declare const __VLS_6_2: {};
|
|
90
|
+
|
|
93
91
|
declare const __VLS_7: {};
|
|
94
92
|
|
|
95
|
-
declare const
|
|
93
|
+
declare const __VLS_8: {};
|
|
94
|
+
|
|
95
|
+
declare const __VLS_8_2: {};
|
|
96
96
|
|
|
97
97
|
declare const __VLS_9: {};
|
|
98
98
|
|
|
@@ -444,31 +444,31 @@ onClose?: (() => any) | undefined;
|
|
|
444
444
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
445
445
|
|
|
446
446
|
declare type __VLS_PrettifyLocal<T> = {
|
|
447
|
-
[K in keyof T]: T[K];
|
|
447
|
+
[K in keyof T as K]: T[K];
|
|
448
448
|
} & {};
|
|
449
449
|
|
|
450
450
|
declare type __VLS_PrettifyLocal_2<T> = {
|
|
451
|
-
[K in keyof T]: T[K];
|
|
451
|
+
[K in keyof T as K]: T[K];
|
|
452
452
|
} & {};
|
|
453
453
|
|
|
454
454
|
declare type __VLS_PrettifyLocal_3<T> = {
|
|
455
|
-
[K in keyof T]: T[K];
|
|
455
|
+
[K in keyof T as K]: T[K];
|
|
456
456
|
} & {};
|
|
457
457
|
|
|
458
458
|
declare type __VLS_PrettifyLocal_4<T> = {
|
|
459
|
-
[K in keyof T]: T[K];
|
|
459
|
+
[K in keyof T as K]: T[K];
|
|
460
460
|
} & {};
|
|
461
461
|
|
|
462
462
|
declare type __VLS_PrettifyLocal_5<T> = {
|
|
463
|
-
[K in keyof T]: T[K];
|
|
463
|
+
[K in keyof T as K]: T[K];
|
|
464
464
|
} & {};
|
|
465
465
|
|
|
466
466
|
declare type __VLS_PrettifyLocal_6<T> = {
|
|
467
|
-
[K in keyof T]: T[K];
|
|
467
|
+
[K in keyof T as K]: T[K];
|
|
468
468
|
} & {};
|
|
469
469
|
|
|
470
470
|
declare type __VLS_PrettifyLocal_7<T> = {
|
|
471
|
-
[K in keyof T]: T[K];
|
|
471
|
+
[K in keyof T as K]: T[K];
|
|
472
472
|
} & {};
|
|
473
473
|
|
|
474
474
|
declare type __VLS_Props = {
|
|
@@ -478,6 +478,12 @@ declare type __VLS_Props = {
|
|
|
478
478
|
* Default value of `fkui.minimizable-panel.context`.
|
|
479
479
|
*/
|
|
480
480
|
context?: string;
|
|
481
|
+
/**
|
|
482
|
+
* Start in initial state.
|
|
483
|
+
*
|
|
484
|
+
* Default is `expanded`.
|
|
485
|
+
*/
|
|
486
|
+
initial?: "minimized" | "expanded";
|
|
481
487
|
};
|
|
482
488
|
|
|
483
489
|
declare type __VLS_Props_2 = {
|
|
@@ -534,9 +540,9 @@ declare type __VLS_Slots_2 = {} & {
|
|
|
534
540
|
} & {
|
|
535
541
|
'error-message'?: (props: typeof __VLS_3) => any;
|
|
536
542
|
} & {
|
|
537
|
-
default?: (props: typeof
|
|
543
|
+
default?: (props: typeof __VLS_25) => any;
|
|
538
544
|
} & {
|
|
539
|
-
footer?: (props: typeof
|
|
545
|
+
footer?: (props: typeof __VLS_27) => any;
|
|
540
546
|
};
|
|
541
547
|
|
|
542
548
|
declare type __VLS_Slots_3 = {} & {
|
|
@@ -544,31 +550,31 @@ declare type __VLS_Slots_3 = {} & {
|
|
|
544
550
|
};
|
|
545
551
|
|
|
546
552
|
declare type __VLS_Slots_4 = {} & {
|
|
547
|
-
default?: (props: typeof
|
|
553
|
+
default?: (props: typeof __VLS_7) => any;
|
|
548
554
|
};
|
|
549
555
|
|
|
550
556
|
declare type __VLS_Slots_5 = {} & {
|
|
551
|
-
default?: (props: typeof
|
|
557
|
+
default?: (props: typeof __VLS_11) => any;
|
|
552
558
|
} & {
|
|
553
|
-
icon?: (props: typeof
|
|
559
|
+
icon?: (props: typeof __VLS_13) => any;
|
|
554
560
|
};
|
|
555
561
|
|
|
556
562
|
declare type __VLS_Slots_6 = {} & {
|
|
557
|
-
default?: (props: typeof
|
|
563
|
+
default?: (props: typeof __VLS_10) => any;
|
|
558
564
|
};
|
|
559
565
|
|
|
560
566
|
declare type __VLS_Slots_7 = {} & {
|
|
561
|
-
default?: (props: typeof
|
|
567
|
+
default?: (props: typeof __VLS_6) => any;
|
|
562
568
|
} & {
|
|
563
|
-
default?: (props: typeof
|
|
569
|
+
default?: (props: typeof __VLS_8) => any;
|
|
564
570
|
};
|
|
565
571
|
|
|
566
572
|
declare type __VLS_Slots_8 = {} & {
|
|
567
|
-
default?: (props: typeof
|
|
573
|
+
default?: (props: typeof __VLS_8_2) => any;
|
|
568
574
|
};
|
|
569
575
|
|
|
570
576
|
declare type __VLS_Slots_9 = {} & {
|
|
571
|
-
default?: (props: typeof
|
|
577
|
+
default?: (props: typeof __VLS_6_2) => any;
|
|
572
578
|
};
|
|
573
579
|
|
|
574
580
|
declare type __VLS_WithSlots<T, S> = T & {
|
|
@@ -9097,7 +9103,9 @@ type: StringConstructor;
|
|
|
9097
9103
|
required: false;
|
|
9098
9104
|
default: string;
|
|
9099
9105
|
};
|
|
9100
|
-
}>, {
|
|
9106
|
+
}>, {
|
|
9107
|
+
isMounted: Ref<boolean, boolean>;
|
|
9108
|
+
}, FNavigationMenuData, {
|
|
9101
9109
|
items(): MenuItem[];
|
|
9102
9110
|
overflowItems(): MenuItem[];
|
|
9103
9111
|
hasOverflow(): boolean;
|
|
@@ -340,7 +340,13 @@ module.exports = defineMetadata({
|
|
|
340
340
|
flow: true,
|
|
341
341
|
phrasing: true,
|
|
342
342
|
requiredAttributes: ["items"],
|
|
343
|
+
aria: {
|
|
344
|
+
naming: "allowed",
|
|
345
|
+
},
|
|
343
346
|
attributes: {
|
|
347
|
+
"aria-label": {
|
|
348
|
+
enum: ["/.+/"],
|
|
349
|
+
},
|
|
344
350
|
selectable: ["/^[a-zA-Z][\\w\\d-_.:]+$/", "", "false", "true"],
|
|
345
351
|
value: ["/.*/"],
|
|
346
352
|
"key-attribute": ["/.+/"],
|
|
@@ -454,6 +460,9 @@ module.exports = defineMetadata({
|
|
|
454
460
|
context: {
|
|
455
461
|
enum: ["/.+/"],
|
|
456
462
|
},
|
|
463
|
+
initial: {
|
|
464
|
+
enum: ["expanded", "minimized"],
|
|
465
|
+
},
|
|
457
466
|
},
|
|
458
467
|
slots: ["default", "icon"],
|
|
459
468
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fkui/vue",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.13.0",
|
|
4
4
|
"description": "Vue implementation of FKUI components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fkui",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"scripts": {
|
|
47
47
|
"prebuild": "run-s clean",
|
|
48
48
|
"build": "run-s build:lib build:pageobjects build:dts build:api",
|
|
49
|
-
"build:api": "
|
|
49
|
+
"build:api": "fk-api-extractor --patch-augmentations --patch-declare-var-vls api-extractor.*.json",
|
|
50
50
|
"build:dts": "vue-tsc -b",
|
|
51
51
|
"build:lib": "fk-build-vue-lib",
|
|
52
52
|
"build:pageobjects": "node build-pageobjects.mjs",
|
|
@@ -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.13.0",
|
|
64
|
+
"@fkui/design": "^6.13.0",
|
|
65
|
+
"@fkui/logic": "^6.13.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": "15534e9b913041fd573a064252a987c8d9df94b7"
|
|
83
83
|
}
|