bkui-vue 0.0.2-beta.90 → 0.0.2-beta.92
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/index.cjs.js +30 -30
- package/dist/index.esm.js +6420 -6359
- package/dist/index.umd.js +30 -30
- package/lib/checkbox/checkbox.d.ts +4 -2
- package/lib/checkbox/index.d.ts +13 -7
- package/lib/checkbox/index.js +7 -4
- package/lib/plugin-popover/index.js +277 -93
- package/lib/pop-confirm/index.js +2 -2
- package/lib/popover/index.js +277 -93
- package/lib/shared/index.js +275 -91
- package/lib/table/index.js +278 -94
- package/lib/tree/index.js +299 -100
- package/package.json +1 -1
package/lib/tree/index.js
CHANGED
@@ -6,8 +6,274 @@ import * as __WEBPACK_EXTERNAL_MODULE_vue_types_22de060a__ from "vue-types";
|
|
6
6
|
import * as __WEBPACK_EXTERNAL_MODULE__exception_12c197e0__ from "../exception";
|
7
7
|
import * as __WEBPACK_EXTERNAL_MODULE__checkbox_a57bcb84__ from "../checkbox";
|
8
8
|
import * as __WEBPACK_EXTERNAL_MODULE__icon_85385c3e__ from "../icon";
|
9
|
-
/******/
|
10
|
-
|
9
|
+
/******/ var __webpack_modules__ = ({
|
10
|
+
|
11
|
+
/***/ 8022:
|
12
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
13
|
+
|
14
|
+
var v1 = __webpack_require__(4481);
|
15
|
+
var v4 = __webpack_require__(6426);
|
16
|
+
|
17
|
+
var uuid = v4;
|
18
|
+
uuid.v1 = v1;
|
19
|
+
uuid.v4 = v4;
|
20
|
+
|
21
|
+
module.exports = uuid;
|
22
|
+
|
23
|
+
|
24
|
+
/***/ }),
|
25
|
+
|
26
|
+
/***/ 8725:
|
27
|
+
/***/ ((module) => {
|
28
|
+
|
29
|
+
/**
|
30
|
+
* Convert array of 16 byte values to UUID string format of the form:
|
31
|
+
* XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
|
32
|
+
*/
|
33
|
+
var byteToHex = [];
|
34
|
+
for (var i = 0; i < 256; ++i) {
|
35
|
+
byteToHex[i] = (i + 0x100).toString(16).substr(1);
|
36
|
+
}
|
37
|
+
|
38
|
+
function bytesToUuid(buf, offset) {
|
39
|
+
var i = offset || 0;
|
40
|
+
var bth = byteToHex;
|
41
|
+
// join used to fix memory issue caused by concatenation: https://bugs.chromium.org/p/v8/issues/detail?id=3175#c4
|
42
|
+
return ([
|
43
|
+
bth[buf[i++]], bth[buf[i++]],
|
44
|
+
bth[buf[i++]], bth[buf[i++]], '-',
|
45
|
+
bth[buf[i++]], bth[buf[i++]], '-',
|
46
|
+
bth[buf[i++]], bth[buf[i++]], '-',
|
47
|
+
bth[buf[i++]], bth[buf[i++]], '-',
|
48
|
+
bth[buf[i++]], bth[buf[i++]],
|
49
|
+
bth[buf[i++]], bth[buf[i++]],
|
50
|
+
bth[buf[i++]], bth[buf[i++]]
|
51
|
+
]).join('');
|
52
|
+
}
|
53
|
+
|
54
|
+
module.exports = bytesToUuid;
|
55
|
+
|
56
|
+
|
57
|
+
/***/ }),
|
58
|
+
|
59
|
+
/***/ 9157:
|
60
|
+
/***/ ((module) => {
|
61
|
+
|
62
|
+
// Unique ID creation requires a high quality random # generator. In the
|
63
|
+
// browser this is a little complicated due to unknown quality of Math.random()
|
64
|
+
// and inconsistent support for the `crypto` API. We do the best we can via
|
65
|
+
// feature-detection
|
66
|
+
|
67
|
+
// getRandomValues needs to be invoked in a context where "this" is a Crypto
|
68
|
+
// implementation. Also, find the complete implementation of crypto on IE11.
|
69
|
+
var getRandomValues = (typeof(crypto) != 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto)) ||
|
70
|
+
(typeof(msCrypto) != 'undefined' && typeof window.msCrypto.getRandomValues == 'function' && msCrypto.getRandomValues.bind(msCrypto));
|
71
|
+
|
72
|
+
if (getRandomValues) {
|
73
|
+
// WHATWG crypto RNG - http://wiki.whatwg.org/wiki/Crypto
|
74
|
+
var rnds8 = new Uint8Array(16); // eslint-disable-line no-undef
|
75
|
+
|
76
|
+
module.exports = function whatwgRNG() {
|
77
|
+
getRandomValues(rnds8);
|
78
|
+
return rnds8;
|
79
|
+
};
|
80
|
+
} else {
|
81
|
+
// Math.random()-based (RNG)
|
82
|
+
//
|
83
|
+
// If all else fails, use Math.random(). It's fast, but is of unspecified
|
84
|
+
// quality.
|
85
|
+
var rnds = new Array(16);
|
86
|
+
|
87
|
+
module.exports = function mathRNG() {
|
88
|
+
for (var i = 0, r; i < 16; i++) {
|
89
|
+
if ((i & 0x03) === 0) r = Math.random() * 0x100000000;
|
90
|
+
rnds[i] = r >>> ((i & 0x03) << 3) & 0xff;
|
91
|
+
}
|
92
|
+
|
93
|
+
return rnds;
|
94
|
+
};
|
95
|
+
}
|
96
|
+
|
97
|
+
|
98
|
+
/***/ }),
|
99
|
+
|
100
|
+
/***/ 4481:
|
101
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
102
|
+
|
103
|
+
var rng = __webpack_require__(9157);
|
104
|
+
var bytesToUuid = __webpack_require__(8725);
|
105
|
+
|
106
|
+
// **`v1()` - Generate time-based UUID**
|
107
|
+
//
|
108
|
+
// Inspired by https://github.com/LiosK/UUID.js
|
109
|
+
// and http://docs.python.org/library/uuid.html
|
110
|
+
|
111
|
+
var _nodeId;
|
112
|
+
var _clockseq;
|
113
|
+
|
114
|
+
// Previous uuid creation time
|
115
|
+
var _lastMSecs = 0;
|
116
|
+
var _lastNSecs = 0;
|
117
|
+
|
118
|
+
// See https://github.com/uuidjs/uuid for API details
|
119
|
+
function v1(options, buf, offset) {
|
120
|
+
var i = buf && offset || 0;
|
121
|
+
var b = buf || [];
|
122
|
+
|
123
|
+
options = options || {};
|
124
|
+
var node = options.node || _nodeId;
|
125
|
+
var clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq;
|
126
|
+
|
127
|
+
// node and clockseq need to be initialized to random values if they're not
|
128
|
+
// specified. We do this lazily to minimize issues related to insufficient
|
129
|
+
// system entropy. See #189
|
130
|
+
if (node == null || clockseq == null) {
|
131
|
+
var seedBytes = rng();
|
132
|
+
if (node == null) {
|
133
|
+
// Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1)
|
134
|
+
node = _nodeId = [
|
135
|
+
seedBytes[0] | 0x01,
|
136
|
+
seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]
|
137
|
+
];
|
138
|
+
}
|
139
|
+
if (clockseq == null) {
|
140
|
+
// Per 4.2.2, randomize (14 bit) clockseq
|
141
|
+
clockseq = _clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff;
|
142
|
+
}
|
143
|
+
}
|
144
|
+
|
145
|
+
// UUID timestamps are 100 nano-second units since the Gregorian epoch,
|
146
|
+
// (1582-10-15 00:00). JSNumbers aren't precise enough for this, so
|
147
|
+
// time is handled internally as 'msecs' (integer milliseconds) and 'nsecs'
|
148
|
+
// (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00.
|
149
|
+
var msecs = options.msecs !== undefined ? options.msecs : new Date().getTime();
|
150
|
+
|
151
|
+
// Per 4.2.1.2, use count of uuid's generated during the current clock
|
152
|
+
// cycle to simulate higher resolution clock
|
153
|
+
var nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1;
|
154
|
+
|
155
|
+
// Time since last uuid creation (in msecs)
|
156
|
+
var dt = (msecs - _lastMSecs) + (nsecs - _lastNSecs)/10000;
|
157
|
+
|
158
|
+
// Per 4.2.1.2, Bump clockseq on clock regression
|
159
|
+
if (dt < 0 && options.clockseq === undefined) {
|
160
|
+
clockseq = clockseq + 1 & 0x3fff;
|
161
|
+
}
|
162
|
+
|
163
|
+
// Reset nsecs if clock regresses (new clockseq) or we've moved onto a new
|
164
|
+
// time interval
|
165
|
+
if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) {
|
166
|
+
nsecs = 0;
|
167
|
+
}
|
168
|
+
|
169
|
+
// Per 4.2.1.2 Throw error if too many uuids are requested
|
170
|
+
if (nsecs >= 10000) {
|
171
|
+
throw new Error('uuid.v1(): Can\'t create more than 10M uuids/sec');
|
172
|
+
}
|
173
|
+
|
174
|
+
_lastMSecs = msecs;
|
175
|
+
_lastNSecs = nsecs;
|
176
|
+
_clockseq = clockseq;
|
177
|
+
|
178
|
+
// Per 4.1.4 - Convert from unix epoch to Gregorian epoch
|
179
|
+
msecs += 12219292800000;
|
180
|
+
|
181
|
+
// `time_low`
|
182
|
+
var tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000;
|
183
|
+
b[i++] = tl >>> 24 & 0xff;
|
184
|
+
b[i++] = tl >>> 16 & 0xff;
|
185
|
+
b[i++] = tl >>> 8 & 0xff;
|
186
|
+
b[i++] = tl & 0xff;
|
187
|
+
|
188
|
+
// `time_mid`
|
189
|
+
var tmh = (msecs / 0x100000000 * 10000) & 0xfffffff;
|
190
|
+
b[i++] = tmh >>> 8 & 0xff;
|
191
|
+
b[i++] = tmh & 0xff;
|
192
|
+
|
193
|
+
// `time_high_and_version`
|
194
|
+
b[i++] = tmh >>> 24 & 0xf | 0x10; // include version
|
195
|
+
b[i++] = tmh >>> 16 & 0xff;
|
196
|
+
|
197
|
+
// `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant)
|
198
|
+
b[i++] = clockseq >>> 8 | 0x80;
|
199
|
+
|
200
|
+
// `clock_seq_low`
|
201
|
+
b[i++] = clockseq & 0xff;
|
202
|
+
|
203
|
+
// `node`
|
204
|
+
for (var n = 0; n < 6; ++n) {
|
205
|
+
b[i + n] = node[n];
|
206
|
+
}
|
207
|
+
|
208
|
+
return buf ? buf : bytesToUuid(b);
|
209
|
+
}
|
210
|
+
|
211
|
+
module.exports = v1;
|
212
|
+
|
213
|
+
|
214
|
+
/***/ }),
|
215
|
+
|
216
|
+
/***/ 6426:
|
217
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
218
|
+
|
219
|
+
var rng = __webpack_require__(9157);
|
220
|
+
var bytesToUuid = __webpack_require__(8725);
|
221
|
+
|
222
|
+
function v4(options, buf, offset) {
|
223
|
+
var i = buf && offset || 0;
|
224
|
+
|
225
|
+
if (typeof(options) == 'string') {
|
226
|
+
buf = options === 'binary' ? new Array(16) : null;
|
227
|
+
options = null;
|
228
|
+
}
|
229
|
+
options = options || {};
|
230
|
+
|
231
|
+
var rnds = options.random || (options.rng || rng)();
|
232
|
+
|
233
|
+
// Per 4.4, set bits for version and `clock_seq_hi_and_reserved`
|
234
|
+
rnds[6] = (rnds[6] & 0x0f) | 0x40;
|
235
|
+
rnds[8] = (rnds[8] & 0x3f) | 0x80;
|
236
|
+
|
237
|
+
// Copy bytes to buffer, if provided
|
238
|
+
if (buf) {
|
239
|
+
for (var ii = 0; ii < 16; ++ii) {
|
240
|
+
buf[i + ii] = rnds[ii];
|
241
|
+
}
|
242
|
+
}
|
243
|
+
|
244
|
+
return buf || bytesToUuid(rnds);
|
245
|
+
}
|
246
|
+
|
247
|
+
module.exports = v4;
|
248
|
+
|
249
|
+
|
250
|
+
/***/ })
|
251
|
+
|
252
|
+
/******/ });
|
253
|
+
/************************************************************************/
|
254
|
+
/******/ // The module cache
|
255
|
+
/******/ var __webpack_module_cache__ = {};
|
256
|
+
/******/
|
257
|
+
/******/ // The require function
|
258
|
+
/******/ function __webpack_require__(moduleId) {
|
259
|
+
/******/ // Check if module is in cache
|
260
|
+
/******/ var cachedModule = __webpack_module_cache__[moduleId];
|
261
|
+
/******/ if (cachedModule !== undefined) {
|
262
|
+
/******/ return cachedModule.exports;
|
263
|
+
/******/ }
|
264
|
+
/******/ // Create a new module (and put it into the cache)
|
265
|
+
/******/ var module = __webpack_module_cache__[moduleId] = {
|
266
|
+
/******/ // no module.id needed
|
267
|
+
/******/ // no module.loaded needed
|
268
|
+
/******/ exports: {}
|
269
|
+
/******/ };
|
270
|
+
/******/
|
271
|
+
/******/ // Execute the module function
|
272
|
+
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
273
|
+
/******/
|
274
|
+
/******/ // Return the exports of the module
|
275
|
+
/******/ return module.exports;
|
276
|
+
/******/ }
|
11
277
|
/******/
|
12
278
|
/************************************************************************/
|
13
279
|
/******/ /* webpack/runtime/define property getters */
|
@@ -29,6 +295,8 @@ import * as __WEBPACK_EXTERNAL_MODULE__icon_85385c3e__ from "../icon";
|
|
29
295
|
/******/
|
30
296
|
/************************************************************************/
|
31
297
|
var __webpack_exports__ = {};
|
298
|
+
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
|
299
|
+
(() => {
|
32
300
|
|
33
301
|
// EXPORTS
|
34
302
|
__webpack_require__.d(__webpack_exports__, {
|
@@ -1202,7 +1470,10 @@ var use_node_action_this = undefined;
|
|
1202
1470
|
deepUpdateChildNode(chid, attr, value);
|
1203
1471
|
});
|
1204
1472
|
};
|
1205
|
-
var handleNodeItemCheckboxChange = function handleNodeItemCheckboxChange(item, value) {
|
1473
|
+
var handleNodeItemCheckboxChange = function handleNodeItemCheckboxChange(item, value, event) {
|
1474
|
+
event.preventDefault();
|
1475
|
+
event.stopImmediatePropagation();
|
1476
|
+
event.stopPropagation();
|
1206
1477
|
setNodeAttr(item, NODE_ATTRIBUTES.IS_CHECKED, !!value);
|
1207
1478
|
deepUpdateChildNode(item, [NODE_ATTRIBUTES.IS_CHECKED, NODE_ATTRIBUTES.IS_INDETERMINATE], [!!value, false]);
|
1208
1479
|
updateParentChecked(item, value);
|
@@ -1211,6 +1482,7 @@ var use_node_action_this = undefined;
|
|
1211
1482
|
}), flatData.data.filter(function (t) {
|
1212
1483
|
return isIndeterminate(t);
|
1213
1484
|
}));
|
1485
|
+
handleNodeContentClick(item, event);
|
1214
1486
|
};
|
1215
1487
|
var isIndeterminate = function isIndeterminate(item) {
|
1216
1488
|
return isNodeChecked(item) && getNodeAttr(item, NODE_ATTRIBUTES.IS_INDETERMINATE);
|
@@ -1219,14 +1491,16 @@ var use_node_action_this = undefined;
|
|
1219
1491
|
if (!props.showCheckbox) {
|
1220
1492
|
return null;
|
1221
1493
|
}
|
1222
|
-
return (0,external_vue_namespaceObject.createVNode)(
|
1494
|
+
return (0,external_vue_namespaceObject.createVNode)("span", {
|
1495
|
+
"onClick": handleNodeCheckboxClick
|
1496
|
+
}, [(0,external_vue_namespaceObject.createVNode)(external_checkbox_namespaceObject["default"], {
|
1223
1497
|
"size": "small",
|
1224
1498
|
"modelValue": isNodeChecked(item),
|
1225
1499
|
"indeterminate": isIndeterminate(item),
|
1226
|
-
"onChange": function onChange(val) {
|
1227
|
-
return handleNodeItemCheckboxChange(item, !!val);
|
1500
|
+
"onChange": function onChange(val, event) {
|
1501
|
+
return handleNodeItemCheckboxChange(item, !!val, event);
|
1228
1502
|
}
|
1229
|
-
}, null);
|
1503
|
+
}, null)]);
|
1230
1504
|
};
|
1231
1505
|
/**
|
1232
1506
|
* 设置指定节点是否展开
|
@@ -1320,7 +1594,7 @@ var use_node_action_this = undefined;
|
|
1320
1594
|
var handleTreeNodeClick = function handleTreeNodeClick(item, e) {
|
1321
1595
|
var isOpen = isItemOpen(item);
|
1322
1596
|
if (isOpen) {
|
1323
|
-
setNodeOpened(item, false, e);
|
1597
|
+
setNodeOpened(item, false, e, true);
|
1324
1598
|
return;
|
1325
1599
|
}
|
1326
1600
|
/** 如果是异步请求加载 */
|
@@ -1329,11 +1603,11 @@ var use_node_action_this = undefined;
|
|
1329
1603
|
registerNextLoop('setNodeOpenedAfterLoading', {
|
1330
1604
|
type: 'once',
|
1331
1605
|
fn: function fn() {
|
1332
|
-
return setNodeOpened(item, true, e);
|
1606
|
+
return setNodeOpened(item, true, e, true);
|
1333
1607
|
}
|
1334
1608
|
});
|
1335
1609
|
} else {
|
1336
|
-
setNodeOpened(item, true, e);
|
1610
|
+
setNodeOpened(item, true, e, true);
|
1337
1611
|
}
|
1338
1612
|
});
|
1339
1613
|
};
|
@@ -1508,6 +1782,10 @@ var use_node_action_this = undefined;
|
|
1508
1782
|
}
|
1509
1783
|
return extendNodeAttr(item);
|
1510
1784
|
};
|
1785
|
+
var handleNodeCheckboxClick = function handleNodeCheckboxClick(event) {
|
1786
|
+
event.stopImmediatePropagation();
|
1787
|
+
event.stopPropagation();
|
1788
|
+
};
|
1511
1789
|
/**
|
1512
1790
|
* 渲染节点函数
|
1513
1791
|
* @param item 当前节点
|
@@ -1837,94 +2115,8 @@ var use_search_this = undefined;
|
|
1837
2115
|
showChildNodes: showChildNodes
|
1838
2116
|
};
|
1839
2117
|
});
|
1840
|
-
|
1841
|
-
|
1842
|
-
/* harmony default export */ const esm_browser_native = ({
|
1843
|
-
randomUUID
|
1844
|
-
});
|
1845
|
-
;// CONCATENATED MODULE: ../../node_modules/uuid/dist/esm-browser/rng.js
|
1846
|
-
// Unique ID creation requires a high quality random # generator. In the browser we therefore
|
1847
|
-
// require the crypto API and do not support built-in fallback to lower quality random number
|
1848
|
-
// generators (like Math.random()).
|
1849
|
-
let getRandomValues;
|
1850
|
-
const rnds8 = new Uint8Array(16);
|
1851
|
-
function rng() {
|
1852
|
-
// lazy load so that environments that need to polyfill have a chance to do so
|
1853
|
-
if (!getRandomValues) {
|
1854
|
-
// getRandomValues needs to be invoked in a context where "this" is a Crypto implementation.
|
1855
|
-
getRandomValues = typeof crypto !== 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto);
|
1856
|
-
|
1857
|
-
if (!getRandomValues) {
|
1858
|
-
throw new Error('crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported');
|
1859
|
-
}
|
1860
|
-
}
|
1861
|
-
|
1862
|
-
return getRandomValues(rnds8);
|
1863
|
-
}
|
1864
|
-
;// CONCATENATED MODULE: ../../node_modules/uuid/dist/esm-browser/stringify.js
|
1865
|
-
|
1866
|
-
/**
|
1867
|
-
* Convert array of 16 byte values to UUID string format of the form:
|
1868
|
-
* XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
|
1869
|
-
*/
|
1870
|
-
|
1871
|
-
const byteToHex = [];
|
1872
|
-
|
1873
|
-
for (let i = 0; i < 256; ++i) {
|
1874
|
-
byteToHex.push((i + 0x100).toString(16).slice(1));
|
1875
|
-
}
|
1876
|
-
|
1877
|
-
function unsafeStringify(arr, offset = 0) {
|
1878
|
-
// Note: Be careful editing this code! It's been tuned for performance
|
1879
|
-
// and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434
|
1880
|
-
return byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]];
|
1881
|
-
}
|
1882
|
-
|
1883
|
-
function stringify(arr, offset = 0) {
|
1884
|
-
const uuid = unsafeStringify(arr, offset); // Consistency check for valid UUID. If this throws, it's likely due to one
|
1885
|
-
// of the following:
|
1886
|
-
// - One or more input array values don't map to a hex octet (leading to
|
1887
|
-
// "undefined" in the uuid)
|
1888
|
-
// - Invalid input values for the RFC `version` or `variant` fields
|
1889
|
-
|
1890
|
-
if (!validate(uuid)) {
|
1891
|
-
throw TypeError('Stringified UUID is invalid');
|
1892
|
-
}
|
1893
|
-
|
1894
|
-
return uuid;
|
1895
|
-
}
|
1896
|
-
|
1897
|
-
/* harmony default export */ const esm_browser_stringify = ((/* unused pure expression or super */ null && (stringify)));
|
1898
|
-
;// CONCATENATED MODULE: ../../node_modules/uuid/dist/esm-browser/v4.js
|
1899
|
-
|
1900
|
-
|
1901
|
-
|
1902
|
-
|
1903
|
-
function v4(options, buf, offset) {
|
1904
|
-
if (esm_browser_native.randomUUID && !buf && !options) {
|
1905
|
-
return esm_browser_native.randomUUID();
|
1906
|
-
}
|
1907
|
-
|
1908
|
-
options = options || {};
|
1909
|
-
const rnds = options.random || (options.rng || rng)(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`
|
1910
|
-
|
1911
|
-
rnds[6] = rnds[6] & 0x0f | 0x40;
|
1912
|
-
rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided
|
1913
|
-
|
1914
|
-
if (buf) {
|
1915
|
-
offset = offset || 0;
|
1916
|
-
|
1917
|
-
for (let i = 0; i < 16; ++i) {
|
1918
|
-
buf[offset + i] = rnds[i];
|
1919
|
-
}
|
1920
|
-
|
1921
|
-
return buf;
|
1922
|
-
}
|
1923
|
-
|
1924
|
-
return unsafeStringify(rnds);
|
1925
|
-
}
|
1926
|
-
|
1927
|
-
/* harmony default export */ const esm_browser_v4 = (v4);
|
2118
|
+
// EXTERNAL MODULE: ../../node_modules/uuid/index.js
|
2119
|
+
var uuid = __webpack_require__(8022);
|
1928
2120
|
;// CONCATENATED MODULE: ../../packages/tree/src/use-tree-init.tsx
|
1929
2121
|
|
1930
2122
|
|
@@ -2002,9 +2194,9 @@ var use_tree_init_this = undefined;
|
|
2002
2194
|
function getUid(item) {
|
2003
2195
|
var uid = null;
|
2004
2196
|
if (typeof props.nodeKey === 'string') {
|
2005
|
-
uid = item[props.nodeKey] ||
|
2197
|
+
uid = item[props.nodeKey] || (0,uuid.v4)();
|
2006
2198
|
}
|
2007
|
-
return uid || item[NODE_ATTRIBUTES.UUID] ||
|
2199
|
+
return uid || item[NODE_ATTRIBUTES.UUID] || (0,uuid.v4)();
|
2008
2200
|
}
|
2009
2201
|
/**
|
2010
2202
|
* 默认设置
|
@@ -2418,6 +2610,11 @@ var use_tree_init_this = undefined;
|
|
2418
2610
|
var getData = function getData() {
|
2419
2611
|
return flatData;
|
2420
2612
|
};
|
2613
|
+
(0,external_vue_namespaceObject.watch)(function () {
|
2614
|
+
return [props.checked];
|
2615
|
+
}, function () {
|
2616
|
+
setChecked(props.checked, true);
|
2617
|
+
});
|
2421
2618
|
ctx.expose({
|
2422
2619
|
handleTreeNodeClick: handleTreeNodeClick,
|
2423
2620
|
isNodeChecked: isNodeChecked,
|
@@ -2499,5 +2696,7 @@ var use_tree_init_this = undefined;
|
|
2499
2696
|
|
2500
2697
|
var BkTree = (0,external_shared_namespaceObject.withInstall)(tree);
|
2501
2698
|
/* harmony default export */ const src = (BkTree);
|
2699
|
+
})();
|
2700
|
+
|
2502
2701
|
var __webpack_exports__default = __webpack_exports__.Z;
|
2503
2702
|
export { __webpack_exports__default as default };
|