@reviewpush/rp-treeselect 0.0.7 → 0.0.9
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/rp-treeselect.cjs.js +3 -7
- package/dist/rp-treeselect.cjs.js.map +1 -1
- package/dist/rp-treeselect.cjs.min.js +1 -1
- package/dist/rp-treeselect.cjs.min.js.map +1 -1
- package/dist/rp-treeselect.umd.js +3 -7
- package/dist/rp-treeselect.umd.js.map +1 -1
- package/dist/rp-treeselect.umd.min.js +1 -1
- package/dist/rp-treeselect.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/HiddenFields.vue +1 -0
- package/src/components/MenuPortal.vue +6 -3
- package/src/components/Option.vue +5 -1
- package/src/components/Treeselect.vue +2 -4
|
@@ -523,6 +523,7 @@ function stringifyValue(value) {
|
|
|
523
523
|
render: function render() {
|
|
524
524
|
var _this = this;
|
|
525
525
|
var h = arguments[0];
|
|
526
|
+
console.log(this);
|
|
526
527
|
if (!this.instance.name || this.instance.disabled || !this.instance.hasValue) return null;
|
|
527
528
|
var stringifiedValues = this.instance.internalValue.map(stringifyValue);
|
|
528
529
|
if (this.instance.multiple && this.instance.joinValues) stringifiedValues = [stringifiedValues.join(this.instance.delimiter)];
|
|
@@ -993,9 +994,6 @@ var Placeholder_component = normalizeComponent(
|
|
|
993
994
|
|
|
994
995
|
)
|
|
995
996
|
|
|
996
|
-
/* hot reload */
|
|
997
|
-
if (false) { var Placeholder_api; }
|
|
998
|
-
Placeholder_component.options.__file = "src/components/Placeholder.vue"
|
|
999
997
|
/* harmony default export */ var Placeholder = (Placeholder_component.exports);
|
|
1000
998
|
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./src/components/SingleValue.vue?vue&type=script&lang=js
|
|
1001
999
|
|
|
@@ -2334,9 +2332,6 @@ function getErrorMessage(err) {
|
|
|
2334
2332
|
var instanceId = 0;
|
|
2335
2333
|
/* harmony default export */ var Treeselectvue_type_script_lang_js = ({
|
|
2336
2334
|
name: 'rp-treeselect',
|
|
2337
|
-
setup: function setup() {
|
|
2338
|
-
Object(external_vue_["provide"])('instance', this);
|
|
2339
|
-
},
|
|
2340
2335
|
props: {
|
|
2341
2336
|
allowClearingDisabled: {
|
|
2342
2337
|
type: Boolean,
|
|
@@ -2774,6 +2769,7 @@ var instanceId = 0;
|
|
|
2774
2769
|
created: function created() {
|
|
2775
2770
|
this.verifyProps();
|
|
2776
2771
|
this.resetFlags();
|
|
2772
|
+
Object(external_vue_["provide"])('instance', this);
|
|
2777
2773
|
},
|
|
2778
2774
|
mounted: function mounted() {
|
|
2779
2775
|
if (this.autoFocus) this.focusInput();
|
|
@@ -3686,7 +3682,7 @@ var style = __webpack_require__(15);
|
|
|
3686
3682
|
/* harmony default export */ var src = __webpack_exports__["default"] = (Treeselect);
|
|
3687
3683
|
|
|
3688
3684
|
|
|
3689
|
-
var VERSION = "0.0.
|
|
3685
|
+
var VERSION = "0.0.8";
|
|
3690
3686
|
|
|
3691
3687
|
/***/ })
|
|
3692
3688
|
/******/ ]);
|