@fkui/vue 5.41.0 → 5.42.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 +5317 -3908
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/esm/index.esm.js +5318 -3909
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/index.d.ts +43 -3
- package/htmlvalidate/elements/internal-components.js +22 -0
- package/package.json +2 -2
package/dist/types/index.d.ts
CHANGED
|
@@ -86,6 +86,16 @@ inverted: boolean;
|
|
|
86
86
|
|
|
87
87
|
declare const __VLS_component_2: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
88
88
|
|
|
89
|
+
declare const __VLS_component_3: DefineComponent<IPopupListboxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
90
|
+
close: () => any;
|
|
91
|
+
}, string, PublicProps, Readonly<IPopupListboxProps> & Readonly<{
|
|
92
|
+
onClose?: (() => any) | undefined;
|
|
93
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
94
|
+
popup: HTMLDivElement;
|
|
95
|
+
wrapper: HTMLDivElement;
|
|
96
|
+
content: HTMLDivElement;
|
|
97
|
+
}, any>;
|
|
98
|
+
|
|
89
99
|
declare function __VLS_template(): {
|
|
90
100
|
attrs: Partial<{}>;
|
|
91
101
|
slots: {
|
|
@@ -108,10 +118,25 @@ declare function __VLS_template_2(): {
|
|
|
108
118
|
rootEl: HTMLDivElement;
|
|
109
119
|
};
|
|
110
120
|
|
|
121
|
+
declare function __VLS_template_3(): {
|
|
122
|
+
attrs: Partial<{}>;
|
|
123
|
+
slots: {
|
|
124
|
+
default?(_: {}): any;
|
|
125
|
+
};
|
|
126
|
+
refs: {
|
|
127
|
+
popup: HTMLDivElement;
|
|
128
|
+
wrapper: HTMLDivElement;
|
|
129
|
+
content: HTMLDivElement;
|
|
130
|
+
};
|
|
131
|
+
rootEl: any;
|
|
132
|
+
};
|
|
133
|
+
|
|
111
134
|
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
112
135
|
|
|
113
136
|
declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
|
|
114
137
|
|
|
138
|
+
declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
|
|
139
|
+
|
|
115
140
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
116
141
|
new (): {
|
|
117
142
|
$slots: S;
|
|
@@ -124,6 +149,12 @@ declare type __VLS_WithTemplateSlots_2<T, S> = T & {
|
|
|
124
149
|
};
|
|
125
150
|
};
|
|
126
151
|
|
|
152
|
+
declare type __VLS_WithTemplateSlots_3<T, S> = T & {
|
|
153
|
+
new (): {
|
|
154
|
+
$slots: S;
|
|
155
|
+
};
|
|
156
|
+
};
|
|
157
|
+
|
|
127
158
|
/* Excluded from this release type: actionFromKeyboardEvent */
|
|
128
159
|
|
|
129
160
|
/**
|
|
@@ -17009,9 +17040,9 @@ validator(value: string): value is FTableColumnType;
|
|
|
17009
17040
|
type: "text" | "date" | "action" | "numeric";
|
|
17010
17041
|
description: string;
|
|
17011
17042
|
shrink: boolean;
|
|
17043
|
+
expand: boolean;
|
|
17012
17044
|
visible: boolean;
|
|
17013
17045
|
rowHeader: boolean;
|
|
17014
|
-
expand: boolean;
|
|
17015
17046
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
17016
17047
|
|
|
17017
17048
|
/**
|
|
@@ -18438,8 +18469,8 @@ default(): AnimationCallback;
|
|
|
18438
18469
|
};
|
|
18439
18470
|
}>> & Readonly<{}>, {
|
|
18440
18471
|
animate: boolean;
|
|
18441
|
-
expanded: string | number | boolean;
|
|
18442
18472
|
useVShow: boolean;
|
|
18473
|
+
expanded: string | number | boolean;
|
|
18443
18474
|
opacity: boolean;
|
|
18444
18475
|
beforeAnimation: AnimationCallback;
|
|
18445
18476
|
afterAnimation: AnimationCallback;
|
|
@@ -19157,8 +19188,8 @@ default(): AnimationCallback;
|
|
|
19157
19188
|
};
|
|
19158
19189
|
}>> & Readonly<{}>, {
|
|
19159
19190
|
animate: boolean;
|
|
19160
|
-
expanded: string | number | boolean;
|
|
19161
19191
|
useVShow: boolean;
|
|
19192
|
+
expanded: string | number | boolean;
|
|
19162
19193
|
opacity: boolean;
|
|
19163
19194
|
beforeAnimation: AnimationCallback;
|
|
19164
19195
|
afterAnimation: AnimationCallback;
|
|
@@ -19962,6 +19993,15 @@ export declare interface IPopupErrorData {
|
|
|
19962
19993
|
arrowOffset: number;
|
|
19963
19994
|
}
|
|
19964
19995
|
|
|
19996
|
+
export declare const IPopupListbox: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
19997
|
+
|
|
19998
|
+
declare interface IPopupListboxProps {
|
|
19999
|
+
isOpen: boolean;
|
|
20000
|
+
anchor: HTMLElement | null;
|
|
20001
|
+
numOfItems: number;
|
|
20002
|
+
itemHeight?: number;
|
|
20003
|
+
}
|
|
20004
|
+
|
|
19965
20005
|
export declare const IPopupMenu: DefineComponent<ExtractPropTypes< {
|
|
19966
20006
|
/**
|
|
19967
20007
|
* Key of the currently selected and highlighted item.
|
|
@@ -228,4 +228,26 @@ module.exports = defineMetadata({
|
|
|
228
228
|
},
|
|
229
229
|
},
|
|
230
230
|
},
|
|
231
|
+
|
|
232
|
+
"i-popup-listbox": {
|
|
233
|
+
flow: true,
|
|
234
|
+
interactive: true,
|
|
235
|
+
permittedContent: ["@flow"],
|
|
236
|
+
permittedDescendants: [{ exclude: ["@interactive"] }],
|
|
237
|
+
attributes: {
|
|
238
|
+
"is-open": {
|
|
239
|
+
boolean: true,
|
|
240
|
+
required: true,
|
|
241
|
+
},
|
|
242
|
+
anchor: {
|
|
243
|
+
required: true,
|
|
244
|
+
},
|
|
245
|
+
numOfItems: {
|
|
246
|
+
required: true,
|
|
247
|
+
},
|
|
248
|
+
itemHeight: {
|
|
249
|
+
required: false,
|
|
250
|
+
},
|
|
251
|
+
},
|
|
252
|
+
},
|
|
231
253
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fkui/vue",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.42.0",
|
|
4
4
|
"description": "Vue implementation of FKUI components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fkui",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"node": ">= 20",
|
|
80
80
|
"npm": ">= 7"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "3cfa52273826f2e8eb802e2c769679e4269b13d8"
|
|
83
83
|
}
|