@tplc/business 0.0.15 → 0.0.16
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/components/lcb-filter/components/ActionView/index.vue +8 -0
- package/components/lcb-filter/components/ComponentGroup/index.vue +9 -0
- package/components/lcb-filter/components/ComponentGroup/type.ts +1 -1
- package/components/lcb-filter/components/FilterSelect/index.vue +8 -0
- package/components/lcb-filter/components/FilterSlider/index.vue +8 -1
- package/components/lcb-filter/components/SelectTagView/index.vue +8 -0
- package/components/lcb-filter/components/TagSelect/index.vue +8 -0
- package/components/lcb-filter/components/TreeSelect/index.vue +8 -0
- package/components/lcb-filter/components/TreeSelect/type.ts +1 -1
- package/index.ts +2 -3
- package/package.json +1 -1
- package/types/components/lcb-filter/components/ComponentGroup/type.d.ts +1 -1
- package/types/components/lcb-filter/components/TreeSelect/type.d.ts +1 -1
|
@@ -24,6 +24,15 @@ import { ComponentGroupProps } from './type'
|
|
|
24
24
|
import FilterSlider from '../FilterSlider/index.vue'
|
|
25
25
|
import TagSelect from '../TagSelect/index.vue'
|
|
26
26
|
import ActionView from '../ActionView/index.vue'
|
|
27
|
+
defineOptions({
|
|
28
|
+
name: 'ComponentGroup',
|
|
29
|
+
options: {
|
|
30
|
+
addGlobalClass: true,
|
|
31
|
+
virtualHost: true,
|
|
32
|
+
styleIsolation: 'shared',
|
|
33
|
+
},
|
|
34
|
+
})
|
|
35
|
+
|
|
27
36
|
const props = defineProps<ComponentGroupProps>()
|
|
28
37
|
const emits = defineEmits(['submit'])
|
|
29
38
|
const innerFilter = ref<Record<string, any>>({})
|
|
@@ -17,6 +17,14 @@
|
|
|
17
17
|
import { FilterSelectProps } from './type'
|
|
18
18
|
import useSelect from '../../hooks/useSelect'
|
|
19
19
|
import { watch, watchEffect } from 'vue'
|
|
20
|
+
defineOptions({
|
|
21
|
+
name: 'FilterSelect',
|
|
22
|
+
options: {
|
|
23
|
+
addGlobalClass: true,
|
|
24
|
+
virtualHost: true,
|
|
25
|
+
styleIsolation: 'shared',
|
|
26
|
+
},
|
|
27
|
+
})
|
|
20
28
|
const props = defineProps<FilterSelectProps>()
|
|
21
29
|
const model = defineModel<string | string[]>()
|
|
22
30
|
const modelTitle = defineModel<string>('title')
|
|
@@ -18,7 +18,14 @@
|
|
|
18
18
|
import { FilterSliderProps } from './types'
|
|
19
19
|
import SelectTagView from '../SelectTagView/index.vue'
|
|
20
20
|
import { ref, watch } from 'vue'
|
|
21
|
-
|
|
21
|
+
defineOptions({
|
|
22
|
+
name: 'FilterSlider',
|
|
23
|
+
options: {
|
|
24
|
+
addGlobalClass: true,
|
|
25
|
+
virtualHost: true,
|
|
26
|
+
styleIsolation: 'shared',
|
|
27
|
+
},
|
|
28
|
+
})
|
|
22
29
|
const props = defineProps<FilterSliderProps>()
|
|
23
30
|
const model = defineModel<number[]>()
|
|
24
31
|
const innerValue = ref<number[]>()
|
|
@@ -8,6 +8,14 @@
|
|
|
8
8
|
</template>
|
|
9
9
|
|
|
10
10
|
<script setup lang="ts">
|
|
11
|
+
defineOptions({
|
|
12
|
+
name: 'SelectTagView',
|
|
13
|
+
options: {
|
|
14
|
+
addGlobalClass: true,
|
|
15
|
+
virtualHost: true,
|
|
16
|
+
styleIsolation: 'shared',
|
|
17
|
+
},
|
|
18
|
+
})
|
|
11
19
|
defineProps<{ title: string; checked?: boolean; size?: 'small' | 'normal' }>()
|
|
12
20
|
</script>
|
|
13
21
|
<style lang="scss" scoped>
|
|
@@ -44,6 +44,14 @@ import useSelect from '../../hooks/useSelect'
|
|
|
44
44
|
import { ref, watchEffect, nextTick } from 'vue'
|
|
45
45
|
import SelectTagView from '../SelectTagView/index.vue'
|
|
46
46
|
import { Option } from '../../types'
|
|
47
|
+
defineOptions({
|
|
48
|
+
name: 'TagSelect',
|
|
49
|
+
options: {
|
|
50
|
+
addGlobalClass: true,
|
|
51
|
+
virtualHost: true,
|
|
52
|
+
styleIsolation: 'shared',
|
|
53
|
+
},
|
|
54
|
+
})
|
|
47
55
|
const props = defineProps<TagSelectProps>()
|
|
48
56
|
const model = defineModel<string | string[]>()
|
|
49
57
|
const modelTitle = defineModel<string>('title')
|
|
@@ -56,6 +56,14 @@ import { TreeSelectProps } from './type'
|
|
|
56
56
|
import useSelect from '../../hooks/useSelect'
|
|
57
57
|
import SelectTagView from '../SelectTagView/index.vue'
|
|
58
58
|
import ActionView from '../ActionView/index.vue'
|
|
59
|
+
defineOptions({
|
|
60
|
+
name: 'TreeSelect',
|
|
61
|
+
options: {
|
|
62
|
+
addGlobalClass: true,
|
|
63
|
+
virtualHost: true,
|
|
64
|
+
styleIsolation: 'shared',
|
|
65
|
+
},
|
|
66
|
+
})
|
|
59
67
|
const props = defineProps<TreeSelectProps>()
|
|
60
68
|
const model = defineModel<string | string[]>()
|
|
61
69
|
const modelTitle = defineModel<string>('title')
|
package/index.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { LcbGlobal } from 'action'
|
|
2
2
|
|
|
3
|
-
export const $lcb: LcbGlobal = {}
|
|
4
|
-
|
|
3
|
+
export const $lcb: LcbGlobal = {} as LcbGlobal
|
|
4
|
+
uni.$lcb = $lcb
|
|
5
5
|
// #ifdef H5
|
|
6
6
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
7
7
|
// @ts-ignore
|
|
@@ -21,7 +21,6 @@ for (const key in importFn) {
|
|
|
21
21
|
}
|
|
22
22
|
// #endif
|
|
23
23
|
const install = (Vue) => {
|
|
24
|
-
uni.$lcb = $lcb
|
|
25
24
|
// #ifdef H5
|
|
26
25
|
components.forEach(function (component) {
|
|
27
26
|
Vue.component(component.name, component)
|
package/package.json
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { FilterItemProps } from '
|
|
1
|
+
import { FilterItemProps } from '../../types'
|
|
2
2
|
export interface TreeSelectProps extends FilterItemProps {}
|