@opentinyvue/vue-base-select 2.22.1 → 2.22.2
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 +16 -16
- package/lib/pc.js +19 -19
- package/package.json +1 -1
package/lib/mobile-first.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { renderless, api } from '@opentinyvue/vue-renderless/select/vue';
|
|
2
2
|
import { defineComponent, directive, props, setup } from '@opentinyvue/vue-common';
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
3
|
+
import TinyTag from '@opentinyvue/vue-tag';
|
|
4
|
+
import TinyInput from '@opentinyvue/vue-input';
|
|
5
|
+
import TinyOption from '@opentinyvue/vue-option';
|
|
6
|
+
import TinyScrollbar from '@opentinyvue/vue-scrollbar';
|
|
7
|
+
import TinySelectDropdown from '@opentinyvue/vue-select-dropdown';
|
|
8
8
|
import { Clickoutside } from '@opentinyvue/vue-directive';
|
|
9
9
|
import { iconClose, iconCopy, iconHalfselect, iconCheck, iconCheckedSur, iconLoading, iconChevronRight } from '@opentinyvue/vue-icon';
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import
|
|
10
|
+
import TinyTree from '@opentinyvue/vue-tree';
|
|
11
|
+
import TinyTooltip from '@opentinyvue/vue-tooltip';
|
|
12
|
+
import TinyFilterBox from '@opentinyvue/vue-filter-box';
|
|
13
13
|
import RecycleScroller from '@opentinyvue/vue-recycle-scroller';
|
|
14
14
|
|
|
15
15
|
function normalizeComponent(scriptExports, render, staticRenderFns, functionalTemplate, injectStyles, scopeId, moduleIdentifier, shadowMode) {
|
|
@@ -737,16 +737,16 @@ var __vue2_script = defineComponent({
|
|
|
737
737
|
}
|
|
738
738
|
}),
|
|
739
739
|
components: {
|
|
740
|
-
TinyTag
|
|
741
|
-
TinyInput
|
|
742
|
-
TinyOption
|
|
743
|
-
TinyTree
|
|
744
|
-
TinyScrollbar
|
|
745
|
-
TinyFilterBox
|
|
746
|
-
TinyTooltip
|
|
740
|
+
TinyTag,
|
|
741
|
+
TinyInput,
|
|
742
|
+
TinyOption,
|
|
743
|
+
TinyTree,
|
|
744
|
+
TinyScrollbar,
|
|
745
|
+
TinyFilterBox,
|
|
746
|
+
TinyTooltip,
|
|
747
747
|
IconClose: iconClose(),
|
|
748
748
|
IconCopy: iconCopy(),
|
|
749
|
-
TinySelectDropdown
|
|
749
|
+
TinySelectDropdown,
|
|
750
750
|
IconHalfselect: iconHalfselect(),
|
|
751
751
|
IconCheck: iconCheck(),
|
|
752
752
|
IconCheckedSur: iconCheckedSur(),
|
package/lib/pc.js
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { renderless, api } from '@opentinyvue/vue-renderless/base-select/vue';
|
|
2
2
|
import { defineComponent, directive, props, setup } from '@opentinyvue/vue-common';
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
3
|
+
import TinyTag from '@opentinyvue/vue-tag';
|
|
4
|
+
import TinyInput from '@opentinyvue/vue-input';
|
|
5
|
+
import TinyOption from '@opentinyvue/vue-option';
|
|
6
|
+
import TinyScrollbar from '@opentinyvue/vue-scrollbar';
|
|
7
|
+
import TinySelectDropdown from '@opentinyvue/vue-select-dropdown';
|
|
8
|
+
import TinyButton from '@opentinyvue/vue-button';
|
|
9
9
|
import { Clickoutside } from '@opentinyvue/vue-directive';
|
|
10
10
|
import { IconClose, IconCopy, iconAddCircle, iconLoadingShadow, IconHalfselect, IconCheck, IconCheckedSur, IconSearch, IconDeltaDown, IconEllipsis, IconChevronUp } from '@opentinyvue/vue-icon';
|
|
11
|
-
import
|
|
12
|
-
import
|
|
11
|
+
import TinyTooltip from '@opentinyvue/vue-tooltip';
|
|
12
|
+
import TinyFilterBox from '@opentinyvue/vue-filter-box';
|
|
13
13
|
import RecycleScroller from '@opentinyvue/vue-recycle-scroller';
|
|
14
|
-
import
|
|
14
|
+
import TinyCheckbox from '@opentinyvue/vue-checkbox';
|
|
15
15
|
import '@opentinyvue/vue-theme/select/index.css';
|
|
16
16
|
import '@opentinyvue/vue-theme/base-select/index.css';
|
|
17
17
|
|
|
@@ -71,27 +71,27 @@ var __vue2_script = defineComponent({
|
|
|
71
71
|
}
|
|
72
72
|
}),
|
|
73
73
|
components: {
|
|
74
|
-
TinyTag
|
|
75
|
-
TinyInput
|
|
76
|
-
TinyOption
|
|
77
|
-
TinyButton
|
|
74
|
+
TinyTag,
|
|
75
|
+
TinyInput,
|
|
76
|
+
TinyOption,
|
|
77
|
+
TinyButton,
|
|
78
78
|
IconClose: IconClose(),
|
|
79
|
-
TinyScrollbar
|
|
79
|
+
TinyScrollbar,
|
|
80
80
|
IconCopy: IconCopy(),
|
|
81
81
|
IconAddCircle: iconAddCircle(),
|
|
82
82
|
IconLoadingShadow: iconLoadingShadow(),
|
|
83
|
-
TinySelectDropdown
|
|
83
|
+
TinySelectDropdown,
|
|
84
84
|
IconHalfselect: IconHalfselect(),
|
|
85
85
|
IconCheck: IconCheck(),
|
|
86
86
|
IconCheckedSur: IconCheckedSur(),
|
|
87
|
-
TinyFilterBox
|
|
88
|
-
TinyTooltip
|
|
87
|
+
TinyFilterBox,
|
|
88
|
+
TinyTooltip,
|
|
89
89
|
TinyRecycleScroller: RecycleScroller,
|
|
90
90
|
// tiny 新增,
|
|
91
91
|
IconSearch: IconSearch(),
|
|
92
92
|
IconDeltaDown: IconDeltaDown(),
|
|
93
93
|
// 默认下拉图标
|
|
94
|
-
TinyCheckbox
|
|
94
|
+
TinyCheckbox,
|
|
95
95
|
IconEllipsis: IconEllipsis(),
|
|
96
96
|
IconChevronUp: IconChevronUp()
|
|
97
97
|
},
|
|
@@ -804,7 +804,7 @@ var render = function render2() {
|
|
|
804
804
|
}
|
|
805
805
|
}
|
|
806
806
|
}, [_vm._t("dropdown"), _vm.multiple && _vm.showCheck && _vm.showAlloption && !_vm.state.multipleLimit && !_vm.state.query && !_vm.remote ? _c("li", {
|
|
807
|
-
staticClass: "tiny-option tiny-select-dropdown__item",
|
|
807
|
+
staticClass: "tiny-option tiny-option_all tiny-select-dropdown__item",
|
|
808
808
|
class: [{
|
|
809
809
|
hover: _vm.state.hoverIndex === -9 && _vm.state.selectCls !== "checked-sur"
|
|
810
810
|
}, {
|