@gindow/element-go 1.0.6 → 1.0.8
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": "@gindow/element-go",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "基于 Element Plus 的桌面端扩展组件库",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"build": "vue-tsc --noEmit && vite build"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"@gindow/vue": "^1.0.
|
|
44
|
+
"@gindow/vue": "^1.0.4",
|
|
45
45
|
"@iconify/vue": "^5.0.0",
|
|
46
46
|
"@vueuse/core": "^12.0.0",
|
|
47
47
|
"axios": "^1.6.0",
|
|
@@ -129,12 +129,12 @@
|
|
|
129
129
|
"typescript": "^6.0.3",
|
|
130
130
|
"unplugin-auto-import": "^21.0.0",
|
|
131
131
|
"unplugin-vue-components": "^32.1.0",
|
|
132
|
-
"vite": "^8.1.
|
|
132
|
+
"vite": "^8.1.3",
|
|
133
133
|
"vite-plugin-dts": "^4.5.4",
|
|
134
134
|
"vue": "^3.5.39",
|
|
135
135
|
"vue-i18n": "^11.4.6",
|
|
136
136
|
"vue-request": "^2.0.4",
|
|
137
137
|
"vue-router": "^4.6.4",
|
|
138
|
-
"vue-tsc": "^3.3.
|
|
138
|
+
"vue-tsc": "^3.3.6"
|
|
139
139
|
}
|
|
140
140
|
}
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
<!-- 批量操作 -->
|
|
20
20
|
<el-space class="mt-5">
|
|
21
21
|
<el-checkbox v-if="sortable" v-model="sorting" :label="t('core.sort')" border />
|
|
22
|
-
<slot
|
|
22
|
+
<slot name="batch" />
|
|
23
23
|
</el-space>
|
|
24
24
|
<!-- 分页操作 -->
|
|
25
25
|
<ex-pagination v-if="pager && total" v-model:size="size" v-model:page="page" :total />
|
package/src/index.ts
CHANGED
|
@@ -20,7 +20,7 @@ import ExTable from './components/ExTable.vue'
|
|
|
20
20
|
import ExTableColumn from './components/ExTableColumn.vue'
|
|
21
21
|
import ExUpload from './components/ExUpload.vue'
|
|
22
22
|
import ExUploadAsset from './components/ExUploadAsset.vue'
|
|
23
|
-
|
|
23
|
+
import './styles/index.css'
|
|
24
24
|
|
|
25
25
|
export * from './types'
|
|
26
26
|
export { useMessage } from './hooks/useMessage'
|