bk-magic-vue 2.3.2-beta.6 → 2.3.2-beta.7
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/bk-magic-vue.js +1 -1
- package/dist/bk-magic-vue.min.js +1 -1
- package/dist/bk-magic-vue.min.js.gz +0 -0
- package/dist/bk-magic-vue.min.js.map +1 -1
- package/lib/directives/tooltips.js +1 -1
- package/lib/form-item.js +1 -1
- package/lib/slider.js +1 -1
- package/lib/tag-input.js +1 -1
- package/package.json +1 -1
|
@@ -3025,7 +3025,7 @@
|
|
|
3025
3025
|
if (!el._tippy) {
|
|
3026
3026
|
el.tippyInstance = createTippy$1(el, binding);
|
|
3027
3027
|
} else {
|
|
3028
|
-
if (_typeof(value) === 'object' && binding.value.allowHtml) {
|
|
3028
|
+
if (_typeof(value) === 'object' && (binding.value.allowHtml || binding.value.allowHTML)) {
|
|
3029
3029
|
el.tippyInstance = createTippy$1(el, binding);
|
|
3030
3030
|
} else {
|
|
3031
3031
|
el._tippy.setContent(content);
|
package/lib/form-item.js
CHANGED
|
@@ -4203,7 +4203,7 @@
|
|
|
4203
4203
|
if (!el._tippy) {
|
|
4204
4204
|
el.tippyInstance = createTippy$1(el, binding);
|
|
4205
4205
|
} else {
|
|
4206
|
-
if (_typeof(value) === 'object' && binding.value.allowHtml) {
|
|
4206
|
+
if (_typeof(value) === 'object' && (binding.value.allowHtml || binding.value.allowHTML)) {
|
|
4207
4207
|
el.tippyInstance = createTippy$1(el, binding);
|
|
4208
4208
|
} else {
|
|
4209
4209
|
el._tippy.setContent(content);
|
package/lib/slider.js
CHANGED
|
@@ -3868,7 +3868,7 @@
|
|
|
3868
3868
|
if (!el._tippy) {
|
|
3869
3869
|
el.tippyInstance = createTippy$1(el, binding);
|
|
3870
3870
|
} else {
|
|
3871
|
-
if (_typeof(value) === 'object' && binding.value.allowHtml) {
|
|
3871
|
+
if (_typeof(value) === 'object' && (binding.value.allowHtml || binding.value.allowHTML)) {
|
|
3872
3872
|
el.tippyInstance = createTippy$1(el, binding);
|
|
3873
3873
|
} else {
|
|
3874
3874
|
el._tippy.setContent(content);
|
package/lib/tag-input.js
CHANGED
|
@@ -4961,7 +4961,7 @@
|
|
|
4961
4961
|
if (!el._tippy) {
|
|
4962
4962
|
el.tippyInstance = createTippy$1(el, binding);
|
|
4963
4963
|
} else {
|
|
4964
|
-
if (_typeof(value) === 'object' && binding.value.allowHtml) {
|
|
4964
|
+
if (_typeof(value) === 'object' && (binding.value.allowHtml || binding.value.allowHTML)) {
|
|
4965
4965
|
el.tippyInstance = createTippy$1(el, binding);
|
|
4966
4966
|
} else {
|
|
4967
4967
|
el._tippy.setContent(content);
|