@vuetify/nightly 3.6.9-master.2024-06-12 → 3.6.9-master.2024-06-15
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/CHANGELOG.md +9 -2
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +152 -152
- package/dist/json/web-types.json +2 -2
- package/dist/vuetify-labs.css +2859 -2859
- package/dist/vuetify-labs.esm.js +35 -17
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +35 -17
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +882 -882
- package/dist/vuetify.d.ts +49 -49
- package/dist/vuetify.esm.js +35 -17
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +35 -17
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -6
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanel.mjs +23 -11
- package/lib/components/VExpansionPanel/VExpansionPanel.mjs.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs +13 -5
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +49 -49
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.9-master.2024-06-
|
2
|
+
* Vuetify v3.6.9-master.2024-06-15
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -22588,6 +22588,7 @@
|
|
22588
22588
|
expandIcon: props.expandIcon,
|
22589
22589
|
readonly: props.readonly
|
22590
22590
|
}));
|
22591
|
+
const icon = vue.computed(() => expansionPanel.isSelected.value ? props.collapseIcon : props.expandIcon);
|
22591
22592
|
useRender(() => vue.withDirectives(vue.createVNode("button", {
|
22592
22593
|
"class": ['v-expansion-panel-title', {
|
22593
22594
|
'v-expansion-panel-title--active': expansionPanel.isSelected.value,
|
@@ -22602,11 +22603,17 @@
|
|
22602
22603
|
"onClick": !props.readonly ? expansionPanel.toggle : undefined
|
22603
22604
|
}, [vue.createVNode("span", {
|
22604
22605
|
"class": "v-expansion-panel-title__overlay"
|
22605
|
-
}, null), slots.default?.(slotProps.value), !props.hideActions && vue.createVNode(
|
22606
|
-
"
|
22607
|
-
|
22608
|
-
|
22609
|
-
|
22606
|
+
}, null), slots.default?.(slotProps.value), !props.hideActions && vue.createVNode(VDefaultsProvider, {
|
22607
|
+
"defaults": {
|
22608
|
+
VIcon: {
|
22609
|
+
icon: icon.value
|
22610
|
+
}
|
22611
|
+
}
|
22612
|
+
}, {
|
22613
|
+
default: () => [vue.createVNode("span", {
|
22614
|
+
"class": "v-expansion-panel-title__icon"
|
22615
|
+
}, [slots.actions?.(slotProps.value) ?? vue.createVNode(VIcon, null, null)])]
|
22616
|
+
})]), [[vue.resolveDirective("ripple"), props.ripple]]));
|
22610
22617
|
return {};
|
22611
22618
|
}
|
22612
22619
|
});
|
@@ -22673,15 +22680,26 @@
|
|
22673
22680
|
}, {
|
22674
22681
|
default: () => [vue.createVNode("div", {
|
22675
22682
|
"class": ['v-expansion-panel__shadow', ...elevationClasses.value]
|
22676
|
-
}, null),
|
22677
|
-
"
|
22678
|
-
|
22679
|
-
|
22680
|
-
|
22681
|
-
|
22682
|
-
|
22683
|
-
|
22684
|
-
|
22683
|
+
}, null), vue.createVNode(VDefaultsProvider, {
|
22684
|
+
"defaults": {
|
22685
|
+
VExpansionPanelTitle: {
|
22686
|
+
...expansionPanelTitleProps
|
22687
|
+
},
|
22688
|
+
VExpansionPanelText: {
|
22689
|
+
...expansionPanelTextProps
|
22690
|
+
}
|
22691
|
+
}
|
22692
|
+
}, {
|
22693
|
+
default: () => [hasTitle && vue.createVNode(VExpansionPanelTitle, {
|
22694
|
+
"key": "title"
|
22695
|
+
}, {
|
22696
|
+
default: () => [slots.title ? slots.title() : props.title]
|
22697
|
+
}), hasText && vue.createVNode(VExpansionPanelText, {
|
22698
|
+
"key": "text"
|
22699
|
+
}, {
|
22700
|
+
default: () => [slots.text ? slots.text() : props.text]
|
22701
|
+
}), slots.default?.()]
|
22702
|
+
})]
|
22685
22703
|
});
|
22686
22704
|
});
|
22687
22705
|
return {
|
@@ -28078,7 +28096,7 @@
|
|
28078
28096
|
goTo
|
28079
28097
|
};
|
28080
28098
|
}
|
28081
|
-
const version$1 = "3.6.9-master.2024-06-
|
28099
|
+
const version$1 = "3.6.9-master.2024-06-15";
|
28082
28100
|
createVuetify$1.version = version$1;
|
28083
28101
|
|
28084
28102
|
// Vue's inject() can only be used in setup
|
@@ -28103,7 +28121,7 @@
|
|
28103
28121
|
...options
|
28104
28122
|
});
|
28105
28123
|
};
|
28106
|
-
const version = "3.6.9-master.2024-06-
|
28124
|
+
const version = "3.6.9-master.2024-06-15";
|
28107
28125
|
createVuetify.version = version;
|
28108
28126
|
|
28109
28127
|
exports.blueprints = index;
|