adtec-core-package 0.9.9 → 1.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adtec-core-package",
3
- "version": "0.9.9",
3
+ "version": "1.0.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "scripts": {
@@ -47,10 +47,10 @@ defineProps<{
47
47
  column: TableColumnCtx<any> // 列配置数据
48
48
  }>()
49
49
  const getSlotNameDefault=(name:any)=>{
50
- return name+'Default'
50
+ return name
51
51
  }
52
52
  const getSlotNameHeader=(name:any)=>{
53
- return name+'Header'
53
+ return name+'H'
54
54
  }
55
55
  const slots = useSlots()
56
56
  // 假设每一项都有一个唯一的 id 属性
@@ -12,7 +12,7 @@ import ElIcons from '../components/icon/ElIcons.vue'
12
12
  import ElIconBtn from '../components/icon/ElIconBtn.vue'
13
13
  import ElIconSearch from '../components/Search/ElIconSearch.vue'
14
14
  import ElTableColumnEdit from '../components/Table/ElTableColumnEdit.vue'
15
- import ElTableColumnDynamic from '@/components/Table/ElTableColumnDynamic.vue'
15
+ import ElTableColumnDynamic from '../components/Table/ElTableColumnDynamic.vue'
16
16
  import vKeydown from '../directives/vKeydown'
17
17
  import ElAutoToolTip from '../components/autoToolTip/ElAutoToolTip.vue'
18
18
  import userSelect from '../components/business/userSelect.vue'