@fastkit/vui 0.16.28 → 0.16.30
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/vui.d.ts +100 -52
- package/dist/vui.mjs.map +1 -1
- package/package.json +26 -26
- package/src/components/VButton/VButton.scss +4 -2
- package/src/components/VCard/VCard.scss +1 -1
- package/src/components/VCheckbox/VCheckbox.scss +3 -1
- package/src/components/VControlField/VControlField.scss +2 -1
- package/src/components/VDataTable/VDataTable.scss +3 -1
- package/src/components/VListTile/VListTile.scss +3 -2
- package/src/components/VRadio/VRadio.scss +3 -1
- package/src/components/VSwitch/VSwitch.scss +6 -3
- package/src/styles/core/functions.scss +4 -2
package/dist/vui.d.ts
CHANGED
|
@@ -906,6 +906,18 @@ declare const VDialog: vue.DefineComponent<{
|
|
|
906
906
|
type: vue.PropType<_fastkit_vue_stack.VStackAction[]>;
|
|
907
907
|
default: () => never[];
|
|
908
908
|
};
|
|
909
|
+
} & {
|
|
910
|
+
onChange: vue.PropType<(modelValue: boolean) => any>;
|
|
911
|
+
"onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
|
|
912
|
+
onPayload: vue.PropType<(value: any) => any>;
|
|
913
|
+
onShow: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
|
|
914
|
+
onClose: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
|
|
915
|
+
onBeforeEnter: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
916
|
+
onAfterEnter: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
917
|
+
onEnterCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
918
|
+
onBeforeLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
919
|
+
onAfterLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
920
|
+
onLeaveCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
909
921
|
}, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
910
922
|
[key: string]: any;
|
|
911
923
|
}>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
@@ -1010,19 +1022,19 @@ declare const VDialog: vue.DefineComponent<{
|
|
|
1010
1022
|
type: vue.PropType<_fastkit_vue_stack.VStackAction[]>;
|
|
1011
1023
|
default: () => never[];
|
|
1012
1024
|
};
|
|
1013
|
-
}
|
|
1014
|
-
onChange
|
|
1015
|
-
"onUpdate:modelValue"
|
|
1016
|
-
onPayload
|
|
1017
|
-
onShow
|
|
1018
|
-
onClose
|
|
1019
|
-
onBeforeEnter
|
|
1020
|
-
onAfterEnter
|
|
1021
|
-
onEnterCancelled
|
|
1022
|
-
onBeforeLeave
|
|
1023
|
-
onAfterLeave
|
|
1024
|
-
onLeaveCancelled
|
|
1025
|
-
}
|
|
1025
|
+
} & {
|
|
1026
|
+
onChange: vue.PropType<(modelValue: boolean) => any>;
|
|
1027
|
+
"onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
|
|
1028
|
+
onPayload: vue.PropType<(value: any) => any>;
|
|
1029
|
+
onShow: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1030
|
+
onClose: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1031
|
+
onBeforeEnter: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1032
|
+
onAfterEnter: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1033
|
+
onEnterCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1034
|
+
onBeforeLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1035
|
+
onAfterLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1036
|
+
onLeaveCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1037
|
+
}>>, {
|
|
1026
1038
|
modelValue: boolean;
|
|
1027
1039
|
lazyBoot: boolean;
|
|
1028
1040
|
transition: _fastkit_vue_stack.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions__.JavaScriptTransition>;
|
|
@@ -1142,6 +1154,18 @@ declare const VSnackbar: vue.DefineComponent<{
|
|
|
1142
1154
|
type: vue.PropType<_fastkit_vue_stack.VStackAction[]>;
|
|
1143
1155
|
default: () => never[];
|
|
1144
1156
|
};
|
|
1157
|
+
} & {
|
|
1158
|
+
onChange: vue.PropType<(modelValue: boolean) => any>;
|
|
1159
|
+
"onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
|
|
1160
|
+
onPayload: vue.PropType<(value: any) => any>;
|
|
1161
|
+
onShow: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1162
|
+
onClose: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1163
|
+
onBeforeEnter: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1164
|
+
onAfterEnter: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1165
|
+
onEnterCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1166
|
+
onBeforeLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1167
|
+
onAfterLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1168
|
+
onLeaveCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1145
1169
|
}, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
1146
1170
|
[key: string]: any;
|
|
1147
1171
|
}>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
@@ -1249,19 +1273,19 @@ declare const VSnackbar: vue.DefineComponent<{
|
|
|
1249
1273
|
type: vue.PropType<_fastkit_vue_stack.VStackAction[]>;
|
|
1250
1274
|
default: () => never[];
|
|
1251
1275
|
};
|
|
1252
|
-
}
|
|
1253
|
-
onChange
|
|
1254
|
-
"onUpdate:modelValue"
|
|
1255
|
-
onPayload
|
|
1256
|
-
onShow
|
|
1257
|
-
onClose
|
|
1258
|
-
onBeforeEnter
|
|
1259
|
-
onAfterEnter
|
|
1260
|
-
onEnterCancelled
|
|
1261
|
-
onBeforeLeave
|
|
1262
|
-
onAfterLeave
|
|
1263
|
-
onLeaveCancelled
|
|
1264
|
-
}
|
|
1276
|
+
} & {
|
|
1277
|
+
onChange: vue.PropType<(modelValue: boolean) => any>;
|
|
1278
|
+
"onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
|
|
1279
|
+
onPayload: vue.PropType<(value: any) => any>;
|
|
1280
|
+
onShow: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1281
|
+
onClose: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1282
|
+
onBeforeEnter: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1283
|
+
onAfterEnter: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1284
|
+
onEnterCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1285
|
+
onBeforeLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1286
|
+
onAfterLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1287
|
+
onLeaveCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1288
|
+
}>>, {
|
|
1265
1289
|
modelValue: boolean;
|
|
1266
1290
|
lazyBoot: boolean;
|
|
1267
1291
|
transition: _fastkit_vue_stack.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions__.JavaScriptTransition>;
|
|
@@ -1396,6 +1420,18 @@ declare const VMenu: vue.DefineComponent<{
|
|
|
1396
1420
|
color: vue.PropType<ScopeName>;
|
|
1397
1421
|
textColor: vue.PropType<PaletteName>;
|
|
1398
1422
|
borderColor: vue.PropType<PaletteName>;
|
|
1423
|
+
} & {
|
|
1424
|
+
onChange: vue.PropType<(modelValue: boolean) => any>;
|
|
1425
|
+
"onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
|
|
1426
|
+
onPayload: vue.PropType<(value: any) => any>;
|
|
1427
|
+
onShow: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1428
|
+
onClose: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1429
|
+
onBeforeEnter: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1430
|
+
onAfterEnter: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1431
|
+
onEnterCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1432
|
+
onBeforeLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1433
|
+
onAfterLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1434
|
+
onLeaveCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1399
1435
|
}, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
1400
1436
|
[key: string]: any;
|
|
1401
1437
|
}>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
@@ -1515,19 +1551,19 @@ declare const VMenu: vue.DefineComponent<{
|
|
|
1515
1551
|
color: vue.PropType<ScopeName>;
|
|
1516
1552
|
textColor: vue.PropType<PaletteName>;
|
|
1517
1553
|
borderColor: vue.PropType<PaletteName>;
|
|
1518
|
-
}
|
|
1519
|
-
onChange
|
|
1520
|
-
"onUpdate:modelValue"
|
|
1521
|
-
onPayload
|
|
1522
|
-
onShow
|
|
1523
|
-
onClose
|
|
1524
|
-
onBeforeEnter
|
|
1525
|
-
onAfterEnter
|
|
1526
|
-
onEnterCancelled
|
|
1527
|
-
onBeforeLeave
|
|
1528
|
-
onAfterLeave
|
|
1529
|
-
onLeaveCancelled
|
|
1530
|
-
}
|
|
1554
|
+
} & {
|
|
1555
|
+
onChange: vue.PropType<(modelValue: boolean) => any>;
|
|
1556
|
+
"onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
|
|
1557
|
+
onPayload: vue.PropType<(value: any) => any>;
|
|
1558
|
+
onShow: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1559
|
+
onClose: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1560
|
+
onBeforeEnter: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1561
|
+
onAfterEnter: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1562
|
+
onEnterCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1563
|
+
onBeforeLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1564
|
+
onAfterLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1565
|
+
onLeaveCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
1566
|
+
}>>, {
|
|
1531
1567
|
modelValue: boolean;
|
|
1532
1568
|
lazyBoot: boolean;
|
|
1533
1569
|
transition: _fastkit_vue_stack.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions__.JavaScriptTransition>;
|
|
@@ -2085,6 +2121,18 @@ declare const VTooltip: vue.DefineComponent<{
|
|
|
2085
2121
|
color: vue.PropType<ScopeName>;
|
|
2086
2122
|
textColor: vue.PropType<PaletteName>;
|
|
2087
2123
|
borderColor: vue.PropType<PaletteName>;
|
|
2124
|
+
} & {
|
|
2125
|
+
onChange: vue.PropType<(modelValue: boolean) => any>;
|
|
2126
|
+
"onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
|
|
2127
|
+
onPayload: vue.PropType<(value: any) => any>;
|
|
2128
|
+
onShow: vue.PropType<(control: _fastkit_vue_stack__.VStackControl) => any>;
|
|
2129
|
+
onClose: vue.PropType<(control: _fastkit_vue_stack__.VStackControl) => any>;
|
|
2130
|
+
onBeforeEnter: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => any>;
|
|
2131
|
+
onAfterEnter: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => any>;
|
|
2132
|
+
onEnterCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => any>;
|
|
2133
|
+
onBeforeLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => any>;
|
|
2134
|
+
onAfterLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => any>;
|
|
2135
|
+
onLeaveCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => any>;
|
|
2088
2136
|
}, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
2089
2137
|
[key: string]: any;
|
|
2090
2138
|
}>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
@@ -2204,19 +2252,19 @@ declare const VTooltip: vue.DefineComponent<{
|
|
|
2204
2252
|
color: vue.PropType<ScopeName>;
|
|
2205
2253
|
textColor: vue.PropType<PaletteName>;
|
|
2206
2254
|
borderColor: vue.PropType<PaletteName>;
|
|
2207
|
-
}
|
|
2208
|
-
onChange
|
|
2209
|
-
"onUpdate:modelValue"
|
|
2210
|
-
onPayload
|
|
2211
|
-
onShow
|
|
2212
|
-
onClose
|
|
2213
|
-
onBeforeEnter
|
|
2214
|
-
onAfterEnter
|
|
2215
|
-
onEnterCancelled
|
|
2216
|
-
onBeforeLeave
|
|
2217
|
-
onAfterLeave
|
|
2218
|
-
onLeaveCancelled
|
|
2219
|
-
}
|
|
2255
|
+
} & {
|
|
2256
|
+
onChange: vue.PropType<(modelValue: boolean) => any>;
|
|
2257
|
+
"onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
|
|
2258
|
+
onPayload: vue.PropType<(value: any) => any>;
|
|
2259
|
+
onShow: vue.PropType<(control: _fastkit_vue_stack__.VStackControl) => any>;
|
|
2260
|
+
onClose: vue.PropType<(control: _fastkit_vue_stack__.VStackControl) => any>;
|
|
2261
|
+
onBeforeEnter: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => any>;
|
|
2262
|
+
onAfterEnter: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => any>;
|
|
2263
|
+
onEnterCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => any>;
|
|
2264
|
+
onBeforeLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => any>;
|
|
2265
|
+
onAfterLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => any>;
|
|
2266
|
+
onLeaveCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => any>;
|
|
2267
|
+
}>>, {
|
|
2220
2268
|
modelValue: boolean;
|
|
2221
2269
|
lazyBoot: boolean;
|
|
2222
2270
|
transition: _fastkit_vue_stack__.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions__.JavaScriptTransition>;
|