sohelp-eleplus 1.1.17 → 1.1.18
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/package.json +1 -1
- package/sohelp-grid/index.vue +1 -1
- package/sohelp-grid-view/filter/config/grid-filter-field.vue +1 -1
- package/sohelp-grid-view/filter/config/grid-filter-keywords.vue +1 -1
- package/sohelp-grid-view/filter/config/grid-filter-list.vue +1 -1
- package/sohelp-grid-view/filter/config/grid-filter-sort.vue +1 -1
- package/sohelp-icon-select/index.vue +1 -1
- package/sohelp-vxe-grid/index.vue +1 -1
- package/sohelp-vxe-table/index.vue +1 -1
package/package.json
CHANGED
package/sohelp-grid/index.vue
CHANGED
|
@@ -20,7 +20,7 @@ import { useSohelpGridConfig } from "./js/useSohelpGridConfig.js";
|
|
|
20
20
|
import { useI18n } from "vue-i18n";
|
|
21
21
|
import SohelpEntityForm from "../sohelp-entity-form/index.vue";
|
|
22
22
|
import * as ElementPlusIcons from '@element-plus/icons-vue';
|
|
23
|
-
import * as EleAdminPlusIcons from '
|
|
23
|
+
import * as EleAdminPlusIcons from '../sohelp-icon-select/icons';
|
|
24
24
|
|
|
25
25
|
const { initial, isConfigDone } = useSohelpGridConfig();
|
|
26
26
|
const { t } = useI18n();
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
import { ref, watch, computed, toRaw } from 'vue';
|
|
164
164
|
import VueDraggable from 'vuedraggable';
|
|
165
165
|
import { ArrowLeft, ArrowRight } from '@element-plus/icons-vue';
|
|
166
|
-
import { DragOutlined } from '
|
|
166
|
+
import { DragOutlined } from '../../../sohelp-icon-select/icons';
|
|
167
167
|
|
|
168
168
|
const CondictionOptions = [
|
|
169
169
|
{
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
import { ref, watch, computed } from 'vue';
|
|
164
164
|
import VueDraggable from 'vuedraggable';
|
|
165
165
|
import { ArrowLeft, ArrowRight } from '@element-plus/icons-vue';
|
|
166
|
-
import { DragOutlined } from '
|
|
166
|
+
import { DragOutlined } from '../../../sohelp-icon-select/icons';
|
|
167
167
|
|
|
168
168
|
const props = defineProps({
|
|
169
169
|
modelValue: {
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
import { ref, watch, computed } from 'vue';
|
|
166
166
|
import VueDraggable from 'vuedraggable';
|
|
167
167
|
import { ArrowLeft, ArrowRight } from '@element-plus/icons-vue';
|
|
168
|
-
import { DragOutlined } from '
|
|
168
|
+
import { DragOutlined } from '../../../sohelp-icon-select/icons';
|
|
169
169
|
|
|
170
170
|
const props = defineProps({
|
|
171
171
|
modelValue: {
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
import { ref, watch, computed } from 'vue';
|
|
164
164
|
import VueDraggable from 'vuedraggable';
|
|
165
165
|
import { ArrowLeft, ArrowRight } from '@element-plus/icons-vue';
|
|
166
|
-
import { DragOutlined } from '
|
|
166
|
+
import { DragOutlined } from '../../../sohelp-icon-select/icons';
|
|
167
167
|
|
|
168
168
|
const props = defineProps({
|
|
169
169
|
modelValue: {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
<script setup>
|
|
41
41
|
import { ref } from 'vue';
|
|
42
42
|
import * as ElementPlusIcons from '@element-plus/icons-vue';
|
|
43
|
-
import * as EleAdminPlusIcons from '
|
|
43
|
+
import * as EleAdminPlusIcons from './icons';
|
|
44
44
|
import { VxeIcon } from './vxeui-icon.js';
|
|
45
45
|
const modelValue = defineModel('modelValue');
|
|
46
46
|
const iconData = ref([]);
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
|
|
50
50
|
<script>
|
|
51
51
|
import { EleMessage } from '@/components/ele-admin-plus/components';
|
|
52
|
-
import { DragOutlined } from '
|
|
52
|
+
import { DragOutlined } from '../sohelp-icon-select/icons';
|
|
53
53
|
import { reactive, ref, nextTick, watch, computed } from 'vue';
|
|
54
54
|
import DefaultProps from './DefaultProps';
|
|
55
55
|
import initial from './SohelpGridConfig';
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
<script>
|
|
31
31
|
import { reactive, ref, nextTick } from 'vue';
|
|
32
32
|
import { EleMessage } from '@/components/ele-admin-plus/components';
|
|
33
|
-
import { DragOutlined } from '
|
|
33
|
+
import { DragOutlined } from '../sohelp-icon-select/icons';
|
|
34
34
|
import Sortable from 'sortablejs';
|
|
35
35
|
import {moduleCache} from '../cache/ModuleCache';
|
|
36
36
|
|