aloha-vue 2.48.0 → 2.49.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/CHANGELOG.md +10 -0
- package/dist/aloha-vue.es.js +14 -1
- package/dist/aloha-vue.umd.js +5 -5
- package/package.json +2 -2
- package/src/AModal/AModal.js +6 -1
- package/src/AModalForm/AModalForm.js +6 -0
- package/src/plugins/AModalPlugin.js +1 -0
- package/src/ui/ASelect/ASelect.js +178 -177
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@
|
|
|
7
7
|
---
|
|
8
8
|
# Versions
|
|
9
9
|
|
|
10
|
+
## 2.49.0
|
|
11
|
+
|
|
12
|
+
- Feature: Add `teleportSelector` prop to `AModal` and `AModalForm` for customizable teleport target with default plugin option.
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## 2.48.1
|
|
16
|
+
|
|
17
|
+
- Fix: Add `class` binding to `ASelect` for dynamic class support.
|
|
18
|
+
|
|
19
|
+
|
|
10
20
|
## 2.48.0
|
|
11
21
|
|
|
12
22
|
- Feature: Enhance `ADatepicker` placeholder logic with `isInputFocused` state and improved `PlaceholderAPI` integration. Adjust default `isLabelFloat` prop to `true`.
|
package/dist/aloha-vue.es.js
CHANGED
|
@@ -26394,6 +26394,7 @@ const he = {
|
|
|
26394
26394
|
...this.$attrs,
|
|
26395
26395
|
id: this.htmlIdLocal,
|
|
26396
26396
|
alwaysTranslate: this.alwaysTranslate,
|
|
26397
|
+
class: this.class,
|
|
26397
26398
|
excludeRenderAttributes: this.excludeRenderAttributes,
|
|
26398
26399
|
extra: this.extra,
|
|
26399
26400
|
helpText: this.helpText,
|
|
@@ -40003,6 +40004,7 @@ const $e = D({
|
|
|
40003
40004
|
selectorCloseIds: void 0,
|
|
40004
40005
|
size: void 0,
|
|
40005
40006
|
textRequired: void 0,
|
|
40007
|
+
teleportSelector: "body",
|
|
40006
40008
|
useEscape: !0
|
|
40007
40009
|
}
|
|
40008
40010
|
}), Zat = {
|
|
@@ -40211,6 +40213,11 @@ const $e = D({
|
|
|
40211
40213
|
type: Boolean,
|
|
40212
40214
|
required: !1
|
|
40213
40215
|
},
|
|
40216
|
+
teleportSelector: {
|
|
40217
|
+
type: String,
|
|
40218
|
+
required: !1,
|
|
40219
|
+
default: () => $e.value.propsDefault.teleportSelector
|
|
40220
|
+
},
|
|
40214
40221
|
useEscape: {
|
|
40215
40222
|
type: Boolean,
|
|
40216
40223
|
required: !1,
|
|
@@ -40341,7 +40348,7 @@ const $e = D({
|
|
|
40341
40348
|
])
|
|
40342
40349
|
]);
|
|
40343
40350
|
return d(Pa, {
|
|
40344
|
-
to:
|
|
40351
|
+
to: this.teleportSelector
|
|
40345
40352
|
}, [
|
|
40346
40353
|
d("div", {
|
|
40347
40354
|
ref: "modalWrapperRef",
|
|
@@ -40722,6 +40729,11 @@ const mC = {
|
|
|
40722
40729
|
type: Boolean,
|
|
40723
40730
|
required: !1
|
|
40724
40731
|
},
|
|
40732
|
+
teleportSelector: {
|
|
40733
|
+
type: String,
|
|
40734
|
+
required: !1,
|
|
40735
|
+
default: () => $e.value.propsDefault.teleportSelector
|
|
40736
|
+
},
|
|
40725
40737
|
textErrorHeader: {
|
|
40726
40738
|
type: String,
|
|
40727
40739
|
required: !1,
|
|
@@ -40820,6 +40832,7 @@ const mC = {
|
|
|
40820
40832
|
selectorCloseIds: this.selectorCloseIds,
|
|
40821
40833
|
size: this.size,
|
|
40822
40834
|
stop: this.stop,
|
|
40835
|
+
teleportSelector: this.teleportSelector,
|
|
40823
40836
|
useEscape: this.useEscape,
|
|
40824
40837
|
useFocusOnStart: this.useFocusOnStart,
|
|
40825
40838
|
zIndex: this.zIndex,
|