vuetify 3.3.18 → 3.3.19
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/json/importMap.json +12 -12
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +6313 -6313
- package/dist/vuetify-labs.esm.js +14 -16
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +14 -16
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +5631 -5631
- package/dist/vuetify.d.ts +3 -3
- package/dist/vuetify.esm.js +12 -14
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +12 -14
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +5 -4
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VList/VListChildren.mjs +9 -11
- package/lib/components/VList/VListChildren.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +3 -3
- package/lib/labs/VDataTable/VDataTableRows.mjs +2 -2
- package/lib/labs/VDataTable/VDataTableRows.mjs.map +1 -1
- package/package.json +2 -2
package/dist/vuetify.d.ts
CHANGED
|
@@ -60640,16 +60640,16 @@ declare module '@vue/runtime-core' {
|
|
|
60640
60640
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
60641
60641
|
VChip: typeof import('vuetify/components')['VChip']
|
|
60642
60642
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
60643
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
60644
60643
|
VCode: typeof import('vuetify/components')['VCode']
|
|
60644
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
60645
60645
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
60646
60646
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
60647
60647
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
60648
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
|
60648
60649
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
60649
60650
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
60650
60651
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
60651
60652
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
60652
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
|
60653
60653
|
VField: typeof import('vuetify/components')['VField']
|
|
60654
60654
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
60655
60655
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
@@ -60678,8 +60678,8 @@ declare module '@vue/runtime-core' {
|
|
|
60678
60678
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
60679
60679
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
60680
60680
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
60681
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
60682
60681
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
60682
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
60683
60683
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
60684
60684
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
60685
60685
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
package/dist/vuetify.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.3.
|
|
2
|
+
* Vuetify v3.3.19
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -7930,25 +7930,23 @@ const VListChildren = genericComponent()({
|
|
|
7930
7930
|
let {
|
|
7931
7931
|
props: activatorProps
|
|
7932
7932
|
} = _ref3;
|
|
7933
|
+
const listItemProps = {
|
|
7934
|
+
...itemProps,
|
|
7935
|
+
...activatorProps,
|
|
7936
|
+
value: props.returnObject ? item : itemProps.value
|
|
7937
|
+
};
|
|
7933
7938
|
return slots.header ? slots.header({
|
|
7934
|
-
props:
|
|
7935
|
-
|
|
7936
|
-
...activatorProps
|
|
7937
|
-
}
|
|
7938
|
-
}) : createVNode(VListItem, mergeProps({
|
|
7939
|
-
"title": itemProps.title,
|
|
7940
|
-
"value": props.returnObject ? item : itemProps.value
|
|
7941
|
-
}, activatorProps), slotsWithItem);
|
|
7939
|
+
props: listItemProps
|
|
7940
|
+
}) : createVNode(VListItem, listItemProps, slotsWithItem);
|
|
7942
7941
|
},
|
|
7943
7942
|
default: () => createVNode(VListChildren, {
|
|
7944
7943
|
"items": children
|
|
7945
7944
|
}, slots)
|
|
7946
7945
|
}) : slots.item ? slots.item({
|
|
7947
7946
|
props: itemProps
|
|
7948
|
-
}) : createVNode(VListItem, {
|
|
7949
|
-
"title": itemProps.title,
|
|
7947
|
+
}) : createVNode(VListItem, mergeProps(itemProps, {
|
|
7950
7948
|
"value": props.returnObject ? item : itemProps.value
|
|
7951
|
-
}, slotsWithItem);
|
|
7949
|
+
}), slotsWithItem);
|
|
7952
7950
|
});
|
|
7953
7951
|
}
|
|
7954
7952
|
});
|
|
@@ -20413,7 +20411,7 @@ function createVuetify$1() {
|
|
|
20413
20411
|
date
|
|
20414
20412
|
};
|
|
20415
20413
|
}
|
|
20416
|
-
const version$1 = "3.3.
|
|
20414
|
+
const version$1 = "3.3.19";
|
|
20417
20415
|
createVuetify$1.version = version$1;
|
|
20418
20416
|
|
|
20419
20417
|
// Vue's inject() can only be used in setup
|
|
@@ -20438,7 +20436,7 @@ const createVuetify = function () {
|
|
|
20438
20436
|
...options
|
|
20439
20437
|
});
|
|
20440
20438
|
};
|
|
20441
|
-
const version = "3.3.
|
|
20439
|
+
const version = "3.3.19";
|
|
20442
20440
|
createVuetify.version = version;
|
|
20443
20441
|
|
|
20444
20442
|
export { components, createVuetify, directives, useDefaults, useDisplay, useLayout, useLocale, useRtl, useTheme, version };
|