sohelp-eleplus 1.1.26 → 1.1.27
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/icons/flag/README.md +2 -2
- package/icons/flag/index.js +0 -1
- package/package.json +2 -2
- package/sohelp-country-select/index.vue +1 -1
- package/sohelp-cry-input/index.vue +1 -1
- package/sohelp-grid/index.vue +2210 -2215
- package/sohelp-grid/js/useSohelpGridConfig.js +642 -643
- package/sohelp-workflow-drawer/components/table.vue +158 -152
package/icons/flag/README.md
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
</template>
|
|
17
17
|
|
|
18
18
|
<script setup>
|
|
19
|
-
import { UsaFlag, ChinaFlag, EuropeFlag } from '
|
|
19
|
+
import { UsaFlag, ChinaFlag, EuropeFlag } from 'sohelp-eleplus/icons/flag';
|
|
20
20
|
</script>
|
|
21
21
|
```
|
|
22
22
|
|
|
@@ -24,7 +24,7 @@ import { UsaFlag, ChinaFlag, EuropeFlag } from '@/components/sohelp-eleplus/icon
|
|
|
24
24
|
|
|
25
25
|
```vue
|
|
26
26
|
<script setup>
|
|
27
|
-
import * as FlagIcons from '
|
|
27
|
+
import * as FlagIcons from 'sohelp-eleplus/icons/flag';
|
|
28
28
|
</script>
|
|
29
29
|
|
|
30
30
|
<template>
|
package/icons/flag/index.js
CHANGED
|
@@ -6,7 +6,6 @@ export { default as JapanFlag } from './JapanFlag.vue';
|
|
|
6
6
|
export { default as KoreaFlag } from './KoreaFlag.vue';
|
|
7
7
|
export { default as HongkongFlag } from './HongkongFlag.vue';
|
|
8
8
|
export { default as SingaporeFlag } from './SingaporeFlag.vue';
|
|
9
|
-
export { default as AustraliaFlag } from './AustraliaFlag.vue';
|
|
10
9
|
export { default as CanadaFlag } from './CanadaFlag.vue';
|
|
11
10
|
export { default as SwitzerlandFlag } from './SwitzerlandFlag.vue';
|
|
12
11
|
export { default as SwedenFlag } from './SwedenFlag.vue';
|
package/package.json
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
|
|
21
21
|
<script setup>
|
|
22
22
|
import { ref, defineAsyncComponent, watch, computed } from 'vue';
|
|
23
|
-
import { FlagMap, CountryCodeToCurrency, CountryNameMap } from '
|
|
23
|
+
import { FlagMap, CountryCodeToCurrency, CountryNameMap } from '../icons/flag';
|
|
24
24
|
|
|
25
25
|
// Props 定义
|
|
26
26
|
const props = defineProps({
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
<script setup>
|
|
12
12
|
import { ref, computed, watch, defineAsyncComponent, onMounted, nextTick } from 'vue';
|
|
13
|
-
import { FlagMap } from '
|
|
13
|
+
import { FlagMap } from '../icons/flag';
|
|
14
14
|
|
|
15
15
|
// 组件属性定义
|
|
16
16
|
const props = defineProps({
|