@opentinyvue/vue-cascader 2.25.0 → 2.26.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/lib/mobile-first.js +4 -4
- package/lib/pc.js +4 -4
- package/package.json +14 -14
package/lib/mobile-first.js
CHANGED
|
@@ -325,9 +325,9 @@ function __vue2_injectStyles$1(context) {
|
|
|
325
325
|
this[o] = __cssModules$1[o];
|
|
326
326
|
}
|
|
327
327
|
}
|
|
328
|
-
var PcFirst = /* @__PURE__ */ function() {
|
|
328
|
+
var PcFirst = /* @__PURE__ */ (function() {
|
|
329
329
|
return __component__$1.exports;
|
|
330
|
-
}();
|
|
330
|
+
})();
|
|
331
331
|
var __vue2_script = defineComponent({
|
|
332
332
|
props: [].concat(props, ["modelValue", "options", "props", "size", "placeholder", "disabled", "clearable", "filterable", "filterMethod", "separator", "showAllLevels", "collapseTags", "debounce", "beforeFilter", "popperClass", "placement", "popperOptions", "visibleArrow", "offset", "boundariesPadding", "arrowOffset", "popperAppendToBody", "autoSize", "displayOnly", "shape", "label", "tip", "hoverExpand", "title", "showHeader", "levelTitle"]),
|
|
333
333
|
inheritAttrs: false,
|
|
@@ -457,8 +457,8 @@ function __vue2_injectStyles(context) {
|
|
|
457
457
|
this[o] = __cssModules[o];
|
|
458
458
|
}
|
|
459
459
|
}
|
|
460
|
-
var mobileFirst = /* @__PURE__ */ function() {
|
|
460
|
+
var mobileFirst = /* @__PURE__ */ (function() {
|
|
461
461
|
return __component__.exports;
|
|
462
|
-
}();
|
|
462
|
+
})();
|
|
463
463
|
|
|
464
464
|
export { mobileFirst as default };
|
package/lib/pc.js
CHANGED
|
@@ -7,7 +7,7 @@ import Scrollbar from '@opentinyvue/vue-scrollbar';
|
|
|
7
7
|
import CascaderPanel from '@opentinyvue/vue-cascader-panel';
|
|
8
8
|
import FilterBox from '@opentinyvue/vue-filter-box';
|
|
9
9
|
import Tooltip from '@opentinyvue/vue-tooltip';
|
|
10
|
-
import { iconClose,
|
|
10
|
+
import { iconClose, IconChevronDown, IconUpWard, iconYes } from '@opentinyvue/vue-icon';
|
|
11
11
|
import '@opentinyvue/vue-theme/cascader/index.css';
|
|
12
12
|
|
|
13
13
|
function normalizeComponent(scriptExports, render, staticRenderFns, functionalTemplate, injectStyles, scopeId, moduleIdentifier, shadowMode) {
|
|
@@ -69,7 +69,7 @@ var __vue2_script = defineComponent({
|
|
|
69
69
|
TinyFilterBox: FilterBox,
|
|
70
70
|
TinyCascaderPanel: CascaderPanel,
|
|
71
71
|
IconClose: iconClose(),
|
|
72
|
-
IconChevronDown:
|
|
72
|
+
IconChevronDown: IconChevronDown(),
|
|
73
73
|
IconChevronUp: IconUpWard(),
|
|
74
74
|
IconYes: iconYes(),
|
|
75
75
|
TinyTooltip: Tooltip
|
|
@@ -397,8 +397,8 @@ function __vue2_injectStyles(context) {
|
|
|
397
397
|
this[o] = __cssModules[o];
|
|
398
398
|
}
|
|
399
399
|
}
|
|
400
|
-
var pc = /* @__PURE__ */ function() {
|
|
400
|
+
var pc = /* @__PURE__ */ (function() {
|
|
401
401
|
return __component__.exports;
|
|
402
|
-
}();
|
|
402
|
+
})();
|
|
403
403
|
|
|
404
404
|
export { pc as default };
|
package/package.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-cascader",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.26.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"main": "./lib/index.js",
|
|
9
9
|
"module": "./lib/index.js",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@opentinyvue/vue-cascader-mobile": "~2.
|
|
12
|
-
"@opentinyvue/vue-cascader-panel": "~2.
|
|
13
|
-
"@opentinyvue/vue-common": "~2.
|
|
14
|
-
"@opentinyvue/vue-directive": "~2.
|
|
15
|
-
"@opentinyvue/vue-filter-box": "~2.
|
|
16
|
-
"@opentinyvue/vue-icon": "~2.
|
|
17
|
-
"@opentinyvue/vue-input": "~2.
|
|
18
|
-
"@opentinyvue/vue-locale": "~2.
|
|
19
|
-
"@opentinyvue/vue-renderless": "~3.
|
|
20
|
-
"@opentinyvue/vue-scrollbar": "~2.
|
|
21
|
-
"@opentinyvue/vue-tag": "~2.
|
|
22
|
-
"@opentinyvue/vue-theme": "~3.
|
|
23
|
-
"@opentinyvue/vue-tooltip": "~2.
|
|
11
|
+
"@opentinyvue/vue-cascader-mobile": "~2.26.0",
|
|
12
|
+
"@opentinyvue/vue-cascader-panel": "~2.26.0",
|
|
13
|
+
"@opentinyvue/vue-common": "~2.26.0",
|
|
14
|
+
"@opentinyvue/vue-directive": "~2.26.0",
|
|
15
|
+
"@opentinyvue/vue-filter-box": "~2.26.0",
|
|
16
|
+
"@opentinyvue/vue-icon": "~2.26.0",
|
|
17
|
+
"@opentinyvue/vue-input": "~2.26.0",
|
|
18
|
+
"@opentinyvue/vue-locale": "~2.26.0",
|
|
19
|
+
"@opentinyvue/vue-renderless": "~3.26.0",
|
|
20
|
+
"@opentinyvue/vue-scrollbar": "~2.26.0",
|
|
21
|
+
"@opentinyvue/vue-tag": "~2.26.0",
|
|
22
|
+
"@opentinyvue/vue-theme": "~3.26.0",
|
|
23
|
+
"@opentinyvue/vue-tooltip": "~2.26.0"
|
|
24
24
|
},
|
|
25
25
|
"types": "index.d.ts",
|
|
26
26
|
"scripts": {
|