@opentinyvue/vue-filter 2.27.0 → 2.29.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 +3 -3
- package/package.json +6 -6
package/lib/mobile-first.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { renderless as renderless$1, api as api$1 } from '@opentinyvue/vue-renderless/filter/vue';
|
|
2
2
|
import { defineComponent, setup, $props } from '@opentinyvue/vue-common';
|
|
3
|
-
import {
|
|
3
|
+
import { iconSubscript, IconUnfilter, IconChevronDown, IconChevronUp } from '@opentinyvue/vue-icon';
|
|
4
4
|
import { renderless, api } from '@opentinyvue/vue-renderless/filter/tag-group';
|
|
5
5
|
import FilterBar from '@opentinyvue/vue-filter-bar';
|
|
6
6
|
import Button from '@opentinyvue/vue-button';
|
|
@@ -47,7 +47,7 @@ function _extends() {
|
|
|
47
47
|
var __vue2_script$1 = defineComponent({
|
|
48
48
|
emits: ["click", "update:modelValue"],
|
|
49
49
|
components: {
|
|
50
|
-
|
|
50
|
+
IconSubscript: iconSubscript()
|
|
51
51
|
},
|
|
52
52
|
model: {
|
|
53
53
|
prop: "modelValue",
|
|
@@ -116,7 +116,7 @@ var render$1 = function render$12() {
|
|
|
116
116
|
style: {
|
|
117
117
|
width: _vm.state.tagWidth
|
|
118
118
|
}
|
|
119
|
-
}, [_vm.state.selected.indexOf(item.value) !== -1 && _vm.multiple ? _c("
|
|
119
|
+
}, [_vm.state.selected.indexOf(item.value) !== -1 && _vm.multiple ? _c("IconSubscript", {
|
|
120
120
|
staticClass: "absolute right-3 w-4 h-4 fill-color-icon-focus"
|
|
121
121
|
}) : _vm._e(), _c("span", {
|
|
122
122
|
class: ["h-full block p-2 text-center rounded-sm truncate cursor-pointer border-0.5 mr-3", _vm.state.selected.indexOf(item.value) !== -1 ? "border-current text-color-brand bg-color-info-primary-subtler" : "border-transparent bg-color-bg-3"],
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-filter",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.29.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib/index.js",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"type": "module",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@opentinyvue/vue-button": "~2.
|
|
11
|
-
"@opentinyvue/vue-common": "~2.
|
|
12
|
-
"@opentinyvue/vue-filter-bar": "~2.
|
|
13
|
-
"@opentinyvue/vue-renderless": "~3.
|
|
14
|
-
"@opentinyvue/vue-icon": "~2.
|
|
10
|
+
"@opentinyvue/vue-button": "~2.29.0",
|
|
11
|
+
"@opentinyvue/vue-common": "~2.29.0",
|
|
12
|
+
"@opentinyvue/vue-filter-bar": "~2.29.0",
|
|
13
|
+
"@opentinyvue/vue-renderless": "~3.29.0",
|
|
14
|
+
"@opentinyvue/vue-icon": "~2.29.0"
|
|
15
15
|
},
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"types": "index.d.ts",
|