cosey 0.10.17 → 0.10.19
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/copy/copy.d.ts +1 -1
- package/components/copy/index.d.ts +3 -3
- package/components/editor/contents/widget-popover.d.ts +203 -265
- package/components/field/components/remote-select/remote-select.api.d.ts +3 -3
- package/components/field/components/remote-select/remote-select.d.ts +5 -5
- package/components/field/field.api.d.ts +5 -5
- package/components/form/form-item.api.d.ts +9 -44
- package/components/form/form-item.vue.js +2 -2
- package/components/form/form.api.d.ts +9 -58
- package/components/form/form.d.ts +24 -122
- package/components/form/index.d.ts +54 -201
- package/components/form-dialog/form-dialog.api.d.ts +17 -108
- package/components/form-dialog/form-dialog.d.ts +36 -218
- package/components/form-drawer/form-drawer.api.d.ts +24 -133
- package/components/form-drawer/form-drawer.d.ts +53 -271
- package/components/form-drawer/index.d.ts +102 -423
- package/components/form-group/form-group.api.d.ts +6 -27
- package/components/form-group/form-group.d.ts +13 -55
- package/components/form-group/index.d.ts +24 -87
- package/components/form-list/form-list.api.d.ts +9 -44
- package/components/form-list/form-list.vue.js +2 -2
- package/components/form-list/index.d.ts +9 -9
- package/components/form-query/form-query.api.d.ts +9 -58
- package/components/form-query/form-query.d.ts +24 -122
- package/components/form-query/index.d.ts +45 -192
- package/components/image-card/image-card.api.d.ts +12 -68
- package/components/image-card/image-card.d.ts +27 -139
- package/components/image-card/index.d.ts +45 -213
- package/components/remote-select/index.d.ts +144 -614
- package/components/remote-select/remote-select.api.d.ts +33 -158
- package/components/remote-select/remote-select.d.ts +69 -318
- package/components/remote-select/remote-select.js +1 -1
- package/components/remote-select/remote-select.style.js +3 -1
- package/components/stack-dialog/index.d.ts +81 -396
- package/components/stack-dialog/stack-dialog.api.d.ts +17 -122
- package/components/stack-dialog/stack-dialog.d.ts +44 -254
- package/components/table/index.d.ts +72 -170
- package/components/table/table-column/table-column.api.d.ts +13 -13
- package/components/table/table-column/table-column.d.ts +7 -7
- package/components/table/table-export/table-export.api.d.ts +17 -108
- package/components/table/table-export/table-export.d.ts +36 -218
- package/components/table/table-footer/index.d.ts +3 -3
- package/components/table/table-query/table-query.api.d.ts +9 -58
- package/components/table/table-query/table-query.d.ts +24 -122
- package/components/table/table.d.ts +18 -18
- package/components/table/table.vue.d.ts +36 -36
- package/components/week-range-picker/index.d.ts +331 -466
- package/components/week-range-picker/week-range-picker.api.d.ts +106 -151
- package/components/week-range-picker/week-range-picker.d.ts +212 -302
- package/layout/layout-menu/layout-menu.vue.js +4 -3
- package/layout/layout-menu/style/index.js +3 -0
- package/locale/lang/ar.d.ts +6 -0
- package/locale/lang/en.d.ts +6 -0
- package/locale/lang/zh-cn.d.ts +9 -3
- package/package.json +10 -3
|
@@ -58,13 +58,14 @@ var stdin_default = /* @__PURE__ */defineComponent({
|
|
|
58
58
|
function renderMenu(menuItems) {
|
|
59
59
|
function renderSubMenu(menuItems2) {
|
|
60
60
|
return menuItems2.map(item => {
|
|
61
|
-
const iconVNode = () => item.icon && createVNode(
|
|
62
|
-
"name": item.icon,
|
|
61
|
+
const iconVNode = () => item.icon && createVNode("div", {
|
|
63
62
|
"class": `${prefixCls.value}-icon`,
|
|
64
63
|
"style": {
|
|
65
64
|
margin: collapse.value ? 0 : void 0
|
|
66
65
|
}
|
|
67
|
-
},
|
|
66
|
+
}, [createVNode(_Icon, {
|
|
67
|
+
"name": item.icon
|
|
68
|
+
}, null)]);
|
|
68
69
|
const titleVNode = () => {
|
|
69
70
|
const title = t(item.title ?? "");
|
|
70
71
|
return createVNode("span", {
|
|
@@ -13,6 +13,9 @@ var stdin_default = getSimpleStyleHook("CoLayoutMenu", (token) => {
|
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
[`${componentCls}-icon`]: {
|
|
16
|
+
display: "inline-flex",
|
|
17
|
+
justifyContent: "center",
|
|
18
|
+
alignItems: "center",
|
|
16
19
|
marginInlineEnd: token.marginXXS,
|
|
17
20
|
width: "var(--el-menu-icon-width)",
|
|
18
21
|
flex: "none",
|
package/locale/lang/ar.d.ts
CHANGED
|
@@ -141,6 +141,12 @@ declare const _default: {
|
|
|
141
141
|
defaultLabel: string;
|
|
142
142
|
description: string;
|
|
143
143
|
alphaLabel: string;
|
|
144
|
+
alphaDescription: string;
|
|
145
|
+
hueLabel: string;
|
|
146
|
+
hueDescription: string;
|
|
147
|
+
svLabel: string;
|
|
148
|
+
svDescription: string;
|
|
149
|
+
predefineDescription: string;
|
|
144
150
|
};
|
|
145
151
|
datepicker: {
|
|
146
152
|
now: string;
|
package/locale/lang/en.d.ts
CHANGED
|
@@ -141,6 +141,12 @@ declare const _default: {
|
|
|
141
141
|
defaultLabel: string;
|
|
142
142
|
description: string;
|
|
143
143
|
alphaLabel: string;
|
|
144
|
+
alphaDescription: string;
|
|
145
|
+
hueLabel: string;
|
|
146
|
+
hueDescription: string;
|
|
147
|
+
svLabel: string;
|
|
148
|
+
svDescription: string;
|
|
149
|
+
predefineDescription: string;
|
|
144
150
|
};
|
|
145
151
|
datepicker: {
|
|
146
152
|
now: string;
|
package/locale/lang/zh-cn.d.ts
CHANGED
|
@@ -141,6 +141,12 @@ declare const _default: {
|
|
|
141
141
|
defaultLabel: string;
|
|
142
142
|
description: string;
|
|
143
143
|
alphaLabel: string;
|
|
144
|
+
alphaDescription: string;
|
|
145
|
+
hueLabel: string;
|
|
146
|
+
hueDescription: string;
|
|
147
|
+
svLabel: string;
|
|
148
|
+
svDescription: string;
|
|
149
|
+
predefineDescription: string;
|
|
144
150
|
};
|
|
145
151
|
datepicker: {
|
|
146
152
|
now: string;
|
|
@@ -218,12 +224,12 @@ declare const _default: {
|
|
|
218
224
|
noData: string;
|
|
219
225
|
placeholder: string;
|
|
220
226
|
};
|
|
221
|
-
dropdown: {
|
|
222
|
-
toggleDropdown: string;
|
|
223
|
-
};
|
|
224
227
|
mention: {
|
|
225
228
|
loading: string;
|
|
226
229
|
};
|
|
230
|
+
dropdown: {
|
|
231
|
+
toggleDropdown: string;
|
|
232
|
+
};
|
|
227
233
|
cascader: {
|
|
228
234
|
noMatch: string;
|
|
229
235
|
loading: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cosey",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.19",
|
|
4
4
|
"description": "基于 Vue3 + vite 的后台管理系统框架",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"csstype": "^3.1.3",
|
|
62
62
|
"dayjs": "^1.11.13",
|
|
63
63
|
"echarts": "^5.6.0",
|
|
64
|
-
"element-plus": "^2.
|
|
64
|
+
"element-plus": "^2.11.4",
|
|
65
65
|
"is-hotkey": "^0.2.0",
|
|
66
66
|
"jszip": "^3.10.1",
|
|
67
67
|
"katex": "^0.16.22",
|
|
@@ -81,9 +81,16 @@
|
|
|
81
81
|
"type": "git",
|
|
82
82
|
"url": "git+https://github.com/sutras/cosey.git"
|
|
83
83
|
},
|
|
84
|
+
"homepage": "https://docs.cosey.wzt.zone/",
|
|
84
85
|
"author": "wuzhitao",
|
|
85
86
|
"license": "MIT",
|
|
86
87
|
"dependencies": {
|
|
87
88
|
"@cosey/icons": "^0.1.8"
|
|
88
|
-
}
|
|
89
|
+
},
|
|
90
|
+
"keywords": [
|
|
91
|
+
"admin",
|
|
92
|
+
"backstage management system",
|
|
93
|
+
"vue3",
|
|
94
|
+
"vite"
|
|
95
|
+
]
|
|
89
96
|
}
|