base6-ui 2.0.25 → 2.0.26
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/dist/config/themes/token/dark.d.ts +4 -0
- package/dist/config/themes/token/light.d.ts +5 -0
- package/dist/index.umd.js +3 -3
- package/es/components/dialog/index.vue.mjs +3 -3
- package/es/components/dialog/options.mjs +1 -1
- package/es/components/global-header/index.vue.mjs +3 -2
- package/es/config/themes/components/baseComponent/light.mjs +15 -14
- package/es/config/themes/components/card/light.mjs +3 -2
- package/es/config/themes/components/checkbox/light.mjs +3 -2
- package/es/config/themes/components/dataTable/light.mjs +3 -2
- package/es/config/themes/components/divider/light.mjs +4 -3
- package/es/config/themes/components/layout/light.mjs +3 -2
- package/es/config/themes/components/popover/light.mjs +3 -2
- package/es/config/themes/components/radio/light.mjs +3 -2
- package/es/config/themes/components/switch/light.mjs +5 -4
- package/es/config/themes/index.mjs +8 -6
- package/es/config/themes/token/dark.d.ts +4 -0
- package/es/config/themes/token/dark.mjs +8 -3
- package/es/config/themes/token/light.d.ts +5 -0
- package/es/config/themes/token/light.mjs +10 -5
- package/es/globalMethods/modules/confirmTip.mjs +12 -11
- package/es/locale/lang/en-us.mjs +1 -1
- package/es/locale/lang/zh-cn.mjs +1 -1
- package/es/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/compat/_internal/getSymbols.mjs +6 -0
- package/es/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/compat/_internal/getTag.mjs +6 -0
- package/es/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/compat/_internal/tags.mjs +25 -0
- package/es/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/object/cloneDeep.mjs +7 -0
- package/es/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/object/cloneDeepWith.mjs +127 -0
- package/es/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/predicate/isPrimitive.mjs +6 -0
- package/es/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/predicate/isTypedArray.mjs +6 -0
- package/lib/components/dialog/index.vue.js +1 -1
- package/lib/components/dialog/options.js +1 -1
- package/lib/components/global-header/index.vue.js +1 -1
- package/lib/config/themes/components/baseComponent/light.js +1 -1
- package/lib/config/themes/components/card/light.js +1 -1
- package/lib/config/themes/components/checkbox/light.js +1 -1
- package/lib/config/themes/components/dataTable/light.js +1 -1
- package/lib/config/themes/components/divider/light.js +1 -1
- package/lib/config/themes/components/layout/light.js +1 -1
- package/lib/config/themes/components/popover/light.js +1 -1
- package/lib/config/themes/components/radio/light.js +1 -1
- package/lib/config/themes/components/switch/light.js +1 -1
- package/lib/config/themes/index.js +1 -1
- package/lib/config/themes/token/dark.d.ts +4 -0
- package/lib/config/themes/token/dark.js +1 -1
- package/lib/config/themes/token/light.d.ts +5 -0
- package/lib/config/themes/token/light.js +1 -1
- package/lib/globalMethods/modules/confirmTip.js +1 -1
- package/lib/locale/lang/en-us.js +1 -1
- package/lib/locale/lang/zh-cn.js +1 -1
- package/lib/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/compat/_internal/getSymbols.js +1 -0
- package/lib/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/compat/_internal/getTag.js +1 -0
- package/lib/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/compat/_internal/tags.js +1 -0
- package/lib/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/object/cloneDeep.js +1 -0
- package/lib/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/object/cloneDeepWith.js +1 -0
- package/lib/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/predicate/isPrimitive.js +1 -0
- package/lib/node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/predicate/isTypedArray.js +1 -0
- package/package.json +1 -1
|
@@ -7,7 +7,7 @@ import { useLocale as R } from "../../hooks/useLocale.mjs";
|
|
|
7
7
|
const D = {
|
|
8
8
|
key: 1,
|
|
9
9
|
style: { margin: "0 auto" }
|
|
10
|
-
},
|
|
10
|
+
}, q = /* @__PURE__ */ P({
|
|
11
11
|
__name: "index",
|
|
12
12
|
props: /* @__PURE__ */ E({
|
|
13
13
|
visible: { type: Boolean },
|
|
@@ -46,7 +46,7 @@ const D = {
|
|
|
46
46
|
position: "fixed",
|
|
47
47
|
left: "50%",
|
|
48
48
|
top: `${n.top}`,
|
|
49
|
-
transform: "
|
|
49
|
+
transform: "translate(-50%, -50%)"
|
|
50
50
|
})), v = l(() => ({
|
|
51
51
|
lineHeight: "28px",
|
|
52
52
|
textAlign: `${n.center ? "center" : "left"}`
|
|
@@ -147,5 +147,5 @@ const D = {
|
|
|
147
147
|
}
|
|
148
148
|
});
|
|
149
149
|
export {
|
|
150
|
-
|
|
150
|
+
q as default
|
|
151
151
|
};
|
|
@@ -5,6 +5,7 @@ import L from "../system-actions/index.vue.mjs";
|
|
|
5
5
|
import "../layout/options.mjs";
|
|
6
6
|
/* empty css */
|
|
7
7
|
import P from "../layout/header/index.vue.mjs";
|
|
8
|
+
import "../../config/themes/token/dark.mjs";
|
|
8
9
|
import "../../config/themes/token/light.mjs";
|
|
9
10
|
import "../../config/themes/components/alert/light.mjs";
|
|
10
11
|
import "../../config/themes/components/button/light.mjs";
|
|
@@ -60,7 +61,7 @@ import "../../config/themes/components/charts/light.mjs";
|
|
|
60
61
|
/* empty css */
|
|
61
62
|
import b from "../layout/aside-menu/aside-menu.mjs";
|
|
62
63
|
import "../layout/aside-menu/props.mjs";
|
|
63
|
-
const
|
|
64
|
+
const Uo = /* @__PURE__ */ S({
|
|
64
65
|
name: "BodenGlobalHeader",
|
|
65
66
|
__name: "index",
|
|
66
67
|
props: {
|
|
@@ -152,5 +153,5 @@ const Oo = /* @__PURE__ */ S({
|
|
|
152
153
|
}
|
|
153
154
|
});
|
|
154
155
|
export {
|
|
155
|
-
|
|
156
|
+
Uo as default
|
|
156
157
|
};
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import o from "../../color/light.mjs";
|
|
2
2
|
import { commonBase as r } from "../../common.mjs";
|
|
3
|
+
import "../../token/dark.mjs";
|
|
3
4
|
import e from "../../token/light.mjs";
|
|
4
|
-
const
|
|
5
|
+
const c = {
|
|
5
6
|
borderRadius: r.borderRadiusMedium,
|
|
6
7
|
padding: r.paddingBase,
|
|
7
8
|
peers: {
|
|
@@ -10,7 +11,7 @@ const l = {
|
|
|
10
11
|
textColor: e["color-text-1"]
|
|
11
12
|
}
|
|
12
13
|
}
|
|
13
|
-
},
|
|
14
|
+
}, d = {
|
|
14
15
|
peers: {
|
|
15
16
|
Popover: {
|
|
16
17
|
borderRadius: "10px"
|
|
@@ -19,11 +20,11 @@ const l = {
|
|
|
19
20
|
fontSize: r.fontSizeMedium,
|
|
20
21
|
iconColor: o["color-primary-6"],
|
|
21
22
|
iconSize: r.iconSizeBase
|
|
22
|
-
},
|
|
23
|
+
}, n = {
|
|
23
24
|
arrowColor: o["color-gray-6"],
|
|
24
25
|
nodeTextColor: o["color-gray-10"],
|
|
25
26
|
lineColor: o["color-gray-5"]
|
|
26
|
-
},
|
|
27
|
+
}, m = {
|
|
27
28
|
// itemBorderDisabled: '0px solid transparent',
|
|
28
29
|
// itemBorderRadius: commonBase.borderRadiusMedium,
|
|
29
30
|
// itemTextColor: lightToken['color-text-1'],
|
|
@@ -172,7 +173,7 @@ const l = {
|
|
|
172
173
|
// selectMarginLarge: string;
|
|
173
174
|
// prefixMarginLarge: string;
|
|
174
175
|
// suffixMarginLarge: string;
|
|
175
|
-
},
|
|
176
|
+
}, g = {
|
|
176
177
|
fontSize: "20px",
|
|
177
178
|
/* 面包屑整体字体大小 */
|
|
178
179
|
// itemLineHeight: string; /* 面包屑项的行高 */
|
|
@@ -190,7 +191,7 @@ const l = {
|
|
|
190
191
|
// itemBorderRadius: string; /* 面包屑项的圆角大小 */
|
|
191
192
|
separatorColor: o["color-gray-4"]
|
|
192
193
|
/* 分隔符颜色(如 > 或 / 的颜色)*/
|
|
193
|
-
},
|
|
194
|
+
}, p = {
|
|
194
195
|
/* Line 类型文字颜色 */
|
|
195
196
|
tabTextColorLine: o["color-gray-8"],
|
|
196
197
|
/* 普通文字颜色 */
|
|
@@ -289,7 +290,7 @@ const l = {
|
|
|
289
290
|
/* 标签页圆角 */
|
|
290
291
|
tabRoundBorderRadius: r.tabRoundBorderRadius
|
|
291
292
|
// closeBorderRadius: commonBase.tabBorderRadius /* 关闭按钮圆角 */
|
|
292
|
-
},
|
|
293
|
+
}, s = {
|
|
293
294
|
indicatorColorProcess: o["color-primary-6"],
|
|
294
295
|
/* 进行状态指示器背景色 */
|
|
295
296
|
indicatorTextColorWait: o["color-gray-6"],
|
|
@@ -347,11 +348,11 @@ const l = {
|
|
|
347
348
|
/* 中尺寸指示器图标大小 */
|
|
348
349
|
};
|
|
349
350
|
export {
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
351
|
+
g as BreadcrumbThemeLight,
|
|
352
|
+
m as PaginationThemeLight,
|
|
353
|
+
d as PopconfirmThemeLight,
|
|
354
|
+
s as StepsThemeLight,
|
|
355
|
+
p as TabsThemeLight,
|
|
356
|
+
c as TooltipThemeLight,
|
|
357
|
+
n as TreeThemeLight
|
|
357
358
|
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import o from "../../color/light.mjs";
|
|
2
|
+
import "../../token/dark.mjs";
|
|
2
3
|
import r from "../../token/light.mjs";
|
|
3
|
-
const
|
|
4
|
+
const i = {
|
|
4
5
|
color: r["bg-color-3"],
|
|
5
6
|
paddingMedium: "16px 24px",
|
|
6
7
|
borderColor: o["color-gray-3"],
|
|
@@ -12,5 +13,5 @@ const t = {
|
|
|
12
13
|
colorModal: r["bg-color-3"]
|
|
13
14
|
};
|
|
14
15
|
export {
|
|
15
|
-
|
|
16
|
+
i as CardThemeLight
|
|
16
17
|
};
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import o from "../../color/light.mjs";
|
|
2
|
+
import "../../token/dark.mjs";
|
|
2
3
|
import r from "../../token/light.mjs";
|
|
3
4
|
import { CheckboxThemeCommon as e } from "./common.mjs";
|
|
4
|
-
const
|
|
5
|
+
const a = {
|
|
5
6
|
...e,
|
|
6
7
|
border: `1.5px solid ${o["color-gray-4"]}`,
|
|
7
8
|
borderChecked: `1.5px solid ${o["color-primary-6"]}`,
|
|
@@ -16,5 +17,5 @@ const d = {
|
|
|
16
17
|
textColorDisabled: o["color-gray-4"]
|
|
17
18
|
};
|
|
18
19
|
export {
|
|
19
|
-
|
|
20
|
+
a as CheckboxThemeLight
|
|
20
21
|
};
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import o from "../../color/light.mjs";
|
|
2
|
+
import "../../token/dark.mjs";
|
|
2
3
|
import r from "../../token/light.mjs";
|
|
3
4
|
import { DataTableThemeCommon as t } from "./common.mjs";
|
|
4
|
-
const
|
|
5
|
+
const m = {
|
|
5
6
|
...t,
|
|
6
7
|
tdColor: r["bg-color-2"],
|
|
7
8
|
tdColorStriped: o["color-gray-1"],
|
|
@@ -14,5 +15,5 @@ const g = {
|
|
|
14
15
|
borderColor: o["color-gray-3"]
|
|
15
16
|
};
|
|
16
17
|
export {
|
|
17
|
-
|
|
18
|
+
m as DataTableThemeLight
|
|
18
19
|
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import o from "../../color/light.mjs";
|
|
2
|
+
import "../../token/dark.mjs";
|
|
2
3
|
import r from "../../token/light.mjs";
|
|
3
|
-
const
|
|
4
|
+
const t = {
|
|
4
5
|
headerColor: r["bg-color-4"],
|
|
5
6
|
siderColor: r["bg-color-4"],
|
|
6
7
|
// 自定义
|
|
@@ -8,5 +9,5 @@ const i = {
|
|
|
8
9
|
siderFooterIconBgColor: o["color-gray-4"]
|
|
9
10
|
};
|
|
10
11
|
export {
|
|
11
|
-
|
|
12
|
+
t as LayoutThemeLight
|
|
12
13
|
};
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { PopoverThemeCommon as o } from "./common.mjs";
|
|
2
|
+
import "../../token/dark.mjs";
|
|
2
3
|
import r from "../../token/light.mjs";
|
|
3
|
-
import
|
|
4
|
+
import m from "../../color/light.mjs";
|
|
4
5
|
const l = {
|
|
5
6
|
...o,
|
|
6
7
|
color: r["bg-color-3"],
|
|
7
|
-
textColor:
|
|
8
|
+
textColor: m["color-gray-10"]
|
|
8
9
|
};
|
|
9
10
|
export {
|
|
10
11
|
l as PopoverThemeLight
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import o from "../../color/light.mjs";
|
|
2
|
+
import "../../token/dark.mjs";
|
|
2
3
|
import r from "../../token/light.mjs";
|
|
3
|
-
const
|
|
4
|
+
const e = {
|
|
4
5
|
boxShadow: `inset 0 0 0 1.5px ${o["color-gray-4"]}`,
|
|
5
6
|
boxShadowActive: `inset 0 0 0 1.5px ${o["color-primary-6"]}`,
|
|
6
7
|
boxShadowActiveDisabled: `inset 0 0 0 1.5px ${o["color-primary-3"]}`,
|
|
@@ -14,5 +15,5 @@ const a = {
|
|
|
14
15
|
dotColorDisabled: r["bg-color-2"]
|
|
15
16
|
};
|
|
16
17
|
export {
|
|
17
|
-
|
|
18
|
+
e as RadioThemeLight
|
|
18
19
|
};
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import o from "../../color/light.mjs";
|
|
2
|
+
import "../../token/dark.mjs";
|
|
2
3
|
import r from "../../token/light.mjs";
|
|
3
|
-
import { SwitchThemeCommon as
|
|
4
|
-
const
|
|
5
|
-
...
|
|
4
|
+
import { SwitchThemeCommon as i } from "./common.mjs";
|
|
5
|
+
const m = {
|
|
6
|
+
...i,
|
|
6
7
|
buttonColorActiveDisabled: r["bg-color-2"],
|
|
7
8
|
buttonColorDisabled: r["bg-color-2"],
|
|
8
9
|
railColor: o["color-gray-4"],
|
|
@@ -11,5 +12,5 @@ const a = {
|
|
|
11
12
|
railColorDisabled: o["color-gray-3"]
|
|
12
13
|
};
|
|
13
14
|
export {
|
|
14
|
-
|
|
15
|
+
m as SwitchThemeLight
|
|
15
16
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { default as _ } from "./token/
|
|
1
|
+
import { default as _ } from "./token/dark.mjs";
|
|
2
|
+
import { default as oo } from "./token/light.mjs";
|
|
2
3
|
import "./components/alert/light.mjs";
|
|
3
4
|
import "./components/button/light.mjs";
|
|
4
5
|
import "./components/card/light.mjs";
|
|
@@ -48,12 +49,13 @@ import "./components/tag/dark.mjs";
|
|
|
48
49
|
import "./components/transfer/dark.mjs";
|
|
49
50
|
import "./components/baseComponent/dark.mjs";
|
|
50
51
|
import "./common/dark.mjs";
|
|
51
|
-
import { ChartsThemeDark as
|
|
52
|
-
import { ChartsThemeLight as
|
|
52
|
+
import { ChartsThemeDark as to } from "./components/charts/dark.mjs";
|
|
53
|
+
import { ChartsThemeLight as mo } from "./components/charts/light.mjs";
|
|
53
54
|
const X = "n-config-provider";
|
|
54
55
|
export {
|
|
55
|
-
|
|
56
|
-
|
|
56
|
+
to as ChartsThemeDark,
|
|
57
|
+
mo as ChartsThemeLight,
|
|
57
58
|
X as configProviderInjectionKey,
|
|
58
|
-
_ as
|
|
59
|
+
_ as darkToken,
|
|
60
|
+
oo as lightToken
|
|
59
61
|
};
|
|
@@ -24,5 +24,9 @@ declare const darkToken: {
|
|
|
24
24
|
'color-error-disabled-opacity': string;
|
|
25
25
|
'color-success-disabled': string;
|
|
26
26
|
'color-warning-disabled': string;
|
|
27
|
+
'border-color-1': string;
|
|
28
|
+
'border-color-2': string;
|
|
29
|
+
'border-color-3': string;
|
|
30
|
+
'border-color-4': string;
|
|
27
31
|
};
|
|
28
32
|
export default darkToken;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import o from "../color/dark.mjs";
|
|
2
|
+
const l = {
|
|
2
3
|
"color-text-1": "#FFFFFF",
|
|
3
4
|
"color-text-2": "rgba(255, 255, 255, 0.7)",
|
|
4
5
|
"color-text-3": "rgba(255, 255, 255, 0.4)",
|
|
@@ -24,8 +25,12 @@ const o = {
|
|
|
24
25
|
"color-error-disabled": "#F76965",
|
|
25
26
|
"color-error-disabled-opacity": "rgba(247, 105, 101, 0.4)",
|
|
26
27
|
"color-success-disabled": "#4BDDAA",
|
|
27
|
-
"color-warning-disabled": "#FF9626"
|
|
28
|
+
"color-warning-disabled": "#FF9626",
|
|
29
|
+
"border-color-1": o["color-gray-3"],
|
|
30
|
+
"border-color-2": o["color-gray-4"],
|
|
31
|
+
"border-color-3": o["color-gray-5"],
|
|
32
|
+
"border-color-4": o["color-gray-6"]
|
|
28
33
|
};
|
|
29
34
|
export {
|
|
30
|
-
|
|
35
|
+
l as default
|
|
31
36
|
};
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
declare const lightToken: {
|
|
2
2
|
'color-text-1': string;
|
|
3
3
|
'color-text-2': string;
|
|
4
|
+
'color-text-3': string;
|
|
5
|
+
'color-text-4': string;
|
|
6
|
+
'color-text-5': string;
|
|
4
7
|
'color-text-6': string;
|
|
5
8
|
'bg-color-1': string;
|
|
6
9
|
'bg-color-2': string;
|
|
@@ -10,5 +13,7 @@ declare const lightToken: {
|
|
|
10
13
|
'fill-color-5': string;
|
|
11
14
|
'border-color-1': string;
|
|
12
15
|
'border-color-2': string;
|
|
16
|
+
'border-color-3': string;
|
|
17
|
+
'border-color-4': string;
|
|
13
18
|
};
|
|
14
19
|
export default lightToken;
|
|
@@ -1,17 +1,22 @@
|
|
|
1
1
|
import o from "../color/light.mjs";
|
|
2
|
-
const
|
|
2
|
+
const l = {
|
|
3
3
|
"color-text-1": "#FFFFFF",
|
|
4
4
|
"color-text-2": o["color-gray-8"],
|
|
5
|
-
"color-text-
|
|
5
|
+
"color-text-3": o["color-gray-6"],
|
|
6
|
+
"color-text-4": o["color-gray-5"],
|
|
7
|
+
"color-text-5": "#FFFFFF",
|
|
8
|
+
"color-text-6": o["color-primary-6"],
|
|
6
9
|
"bg-color-1": "#F0F2F6",
|
|
7
10
|
"bg-color-2": "#FFFFFF",
|
|
8
11
|
"bg-color-3": "#FFFFFF",
|
|
9
12
|
"bg-color-4": "#E1E9F4",
|
|
10
13
|
"fill-color-1": o["color-gray-2"],
|
|
11
14
|
"fill-color-5": "#FAFAFA",
|
|
12
|
-
"border-color-1": "
|
|
13
|
-
"border-color-2": "
|
|
15
|
+
"border-color-1": o["color-gray-3"],
|
|
16
|
+
"border-color-2": o["color-gray-4"],
|
|
17
|
+
"border-color-3": o["color-gray-5"],
|
|
18
|
+
"border-color-4": o["color-gray-6"]
|
|
14
19
|
};
|
|
15
20
|
export {
|
|
16
|
-
|
|
21
|
+
l as default
|
|
17
22
|
};
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { h as
|
|
2
|
-
import { merge as
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { h as p } from "vue";
|
|
2
|
+
import { merge as a } from "../../node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/object/merge.mjs";
|
|
3
|
+
import { cloneDeep as u } from "../../node_modules/.pnpm/es-toolkit@1.41.0/node_modules/es-toolkit/dist/object/cloneDeep.mjs";
|
|
4
|
+
function f(e) {
|
|
5
|
+
return p("span", {}, e || "Tip");
|
|
5
6
|
}
|
|
6
|
-
const
|
|
7
|
+
const l = {
|
|
7
8
|
closeOnEsc: !1,
|
|
8
9
|
closable: !0,
|
|
9
10
|
maskClosable: !1,
|
|
@@ -25,15 +26,15 @@ const f = {
|
|
|
25
26
|
justifyContent: "center"
|
|
26
27
|
}
|
|
27
28
|
};
|
|
28
|
-
function
|
|
29
|
-
return new Promise((
|
|
29
|
+
function g(e, t, o) {
|
|
30
|
+
return new Promise((n, r) => {
|
|
30
31
|
if (!window.$dialog) return;
|
|
31
|
-
const i =
|
|
32
|
+
const i = a(u(l), o || {}), s = window.$dialog.warning({
|
|
32
33
|
...i,
|
|
33
34
|
content: e,
|
|
34
|
-
title: () => typeof t == "function" ? t() :
|
|
35
|
+
title: () => typeof t == "function" ? t() : f(t),
|
|
35
36
|
onPositiveClick: () => {
|
|
36
|
-
|
|
37
|
+
n(s);
|
|
37
38
|
},
|
|
38
39
|
onNegativeClick: () => {
|
|
39
40
|
r(new Error());
|
|
@@ -42,5 +43,5 @@ function m(e, t, n) {
|
|
|
42
43
|
});
|
|
43
44
|
}
|
|
44
45
|
export {
|
|
45
|
-
|
|
46
|
+
g as default
|
|
46
47
|
};
|
package/es/locale/lang/en-us.mjs
CHANGED
|
@@ -19,7 +19,7 @@ const o = {
|
|
|
19
19
|
StudioPlatformDescription: "通用标注平台,支持图像、音频、文本、视频等多类型数据的标注与质检。具备灵活的可编排工作流能力,提供丰富的标注工具模板和算法辅助能力,适用于计算机视觉、语音识别、NLP。",
|
|
20
20
|
OmniPlatform: "多模态标注平台 - BASE Omni",
|
|
21
21
|
OmniPlatformDescription: "多模态标注平台是一套支持多源异构数据协同标注的智能系统,覆盖图像、视频、音频、文本、点云等多种模态数据类型,支持模态间时间同步与语义关联标注。帮助团队高效构建多模态融合训练数据集。",
|
|
22
|
-
BlinkPlatform: "
|
|
22
|
+
BlinkPlatform: "Blink 数据管理",
|
|
23
23
|
BlinkPlatformDescription: "贯通数据流转,集萃成品数据集,智启精准检索",
|
|
24
24
|
BlinkPlatformSpecific: "一站式数据资产运营与服务中枢,集三大核心能力于一体:数据流转管理、数据集市与智能检索,三者有机协同,打通“管—用—找”关键环节,助力组织高效释放数据价值。",
|
|
25
25
|
BlinkPlatformSpecificDescription: `数据流转:服务项目,提供从原始数据入库、清洗处理到成果出库的一站式流程支持。
|
package/es/locale/lang/zh-cn.mjs
CHANGED
|
@@ -19,7 +19,7 @@ const o = {
|
|
|
19
19
|
StudioPlatformDescription: "通用标注平台,支持图像、音频、文本、视频等多类型数据的标注与质检。具备灵活的可编排工作流能力,提供丰富的标注工具模板和算法辅助能力,适用于计算机视觉、语音识别、NLP。",
|
|
20
20
|
OmniPlatform: "多模态标注平台 - BASE Omni",
|
|
21
21
|
OmniPlatformDescription: "多模态标注平台是一套支持多源异构数据协同标注的智能系统,覆盖图像、视频、音频、文本、点云等多种模态数据类型,支持模态间时间同步与语义关联标注。帮助团队高效构建多模态融合训练数据集。",
|
|
22
|
-
BlinkPlatform: "
|
|
22
|
+
BlinkPlatform: "Blink 数据管理",
|
|
23
23
|
BlinkPlatformDescription: "贯通数据流转,集萃成品数据集,智启精准检索",
|
|
24
24
|
BlinkPlatformSpecific: "一站式数据资产运营与服务中枢,集三大核心能力于一体:数据流转管理、数据集市与智能检索,三者有机协同,打通“管—用—找”关键环节,助力组织高效释放数据价值。",
|
|
25
25
|
BlinkPlatformSpecificDescription: `数据流转:服务项目,提供从原始数据入库、清洗处理到成果出库的一站式流程支持。
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
const t = "[object RegExp]", a = "[object String]", o = "[object Number]", r = "[object Boolean]", c = "[object Arguments]", e = "[object Symbol]", n = "[object Date]", b = "[object Map]", g = "[object Set]", s = "[object Array]", j = "[object ArrayBuffer]", y = "[object Object]", T = "[object DataView]", A = "[object Uint8Array]", i = "[object Uint8ClampedArray]", l = "[object Uint16Array]", u = "[object Uint32Array]", m = "[object Int8Array]", p = "[object Int16Array]", f = "[object Int32Array]", d = "[object Float32Array]", U = "[object Float64Array]";
|
|
2
|
+
export {
|
|
3
|
+
c as argumentsTag,
|
|
4
|
+
j as arrayBufferTag,
|
|
5
|
+
s as arrayTag,
|
|
6
|
+
r as booleanTag,
|
|
7
|
+
T as dataViewTag,
|
|
8
|
+
n as dateTag,
|
|
9
|
+
d as float32ArrayTag,
|
|
10
|
+
U as float64ArrayTag,
|
|
11
|
+
p as int16ArrayTag,
|
|
12
|
+
f as int32ArrayTag,
|
|
13
|
+
m as int8ArrayTag,
|
|
14
|
+
b as mapTag,
|
|
15
|
+
o as numberTag,
|
|
16
|
+
y as objectTag,
|
|
17
|
+
t as regexpTag,
|
|
18
|
+
g as setTag,
|
|
19
|
+
a as stringTag,
|
|
20
|
+
e as symbolTag,
|
|
21
|
+
l as uint16ArrayTag,
|
|
22
|
+
u as uint32ArrayTag,
|
|
23
|
+
A as uint8ArrayTag,
|
|
24
|
+
i as uint8ClampedArrayTag
|
|
25
|
+
};
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
import { getSymbols as m } from "../compat/_internal/getSymbols.mjs";
|
|
2
|
+
import { getTag as e } from "../compat/_internal/getTag.mjs";
|
|
3
|
+
import { uint32ArrayTag as w, uint16ArrayTag as O, uint8ClampedArrayTag as A, uint8ArrayTag as b, symbolTag as h, stringTag as B, setTag as a, regexpTag as x, objectTag as S, numberTag as D, mapTag as P, int32ArrayTag as E, int16ArrayTag as F, int8ArrayTag as I, float64ArrayTag as M, float32ArrayTag as N, dateTag as R, booleanTag as L, dataViewTag as W, arrayBufferTag as q, arrayTag as z, argumentsTag as G } from "../compat/_internal/tags.mjs";
|
|
4
|
+
import { isPrimitive as H } from "../predicate/isPrimitive.mjs";
|
|
5
|
+
import { isTypedArray as J } from "../predicate/isTypedArray.mjs";
|
|
6
|
+
function c(r, n, s, i = /* @__PURE__ */ new Map(), g = void 0) {
|
|
7
|
+
const p = g?.(r, n, s, i);
|
|
8
|
+
if (p !== void 0)
|
|
9
|
+
return p;
|
|
10
|
+
if (H(r))
|
|
11
|
+
return r;
|
|
12
|
+
if (i.has(r))
|
|
13
|
+
return i.get(r);
|
|
14
|
+
if (Array.isArray(r)) {
|
|
15
|
+
const t = new Array(r.length);
|
|
16
|
+
i.set(r, t);
|
|
17
|
+
for (let f = 0; f < r.length; f++)
|
|
18
|
+
t[f] = c(r[f], f, s, i, g);
|
|
19
|
+
return Object.hasOwn(r, "index") && (t.index = r.index), Object.hasOwn(r, "input") && (t.input = r.input), t;
|
|
20
|
+
}
|
|
21
|
+
if (r instanceof Date)
|
|
22
|
+
return new Date(r.getTime());
|
|
23
|
+
if (r instanceof RegExp) {
|
|
24
|
+
const t = new RegExp(r.source, r.flags);
|
|
25
|
+
return t.lastIndex = r.lastIndex, t;
|
|
26
|
+
}
|
|
27
|
+
if (r instanceof Map) {
|
|
28
|
+
const t = /* @__PURE__ */ new Map();
|
|
29
|
+
i.set(r, t);
|
|
30
|
+
for (const [f, d] of r)
|
|
31
|
+
t.set(f, c(d, f, s, i, g));
|
|
32
|
+
return t;
|
|
33
|
+
}
|
|
34
|
+
if (r instanceof Set) {
|
|
35
|
+
const t = /* @__PURE__ */ new Set();
|
|
36
|
+
i.set(r, t);
|
|
37
|
+
for (const f of r)
|
|
38
|
+
t.add(c(f, void 0, s, i, g));
|
|
39
|
+
return t;
|
|
40
|
+
}
|
|
41
|
+
if (typeof Buffer < "u" && Buffer.isBuffer(r))
|
|
42
|
+
return r.subarray();
|
|
43
|
+
if (J(r)) {
|
|
44
|
+
const t = new (Object.getPrototypeOf(r)).constructor(r.length);
|
|
45
|
+
i.set(r, t);
|
|
46
|
+
for (let f = 0; f < r.length; f++)
|
|
47
|
+
t[f] = c(r[f], f, s, i, g);
|
|
48
|
+
return t;
|
|
49
|
+
}
|
|
50
|
+
if (r instanceof ArrayBuffer || typeof SharedArrayBuffer < "u" && r instanceof SharedArrayBuffer)
|
|
51
|
+
return r.slice(0);
|
|
52
|
+
if (r instanceof DataView) {
|
|
53
|
+
const t = new DataView(r.buffer.slice(0), r.byteOffset, r.byteLength);
|
|
54
|
+
return i.set(r, t), y(t, r, s, i, g), t;
|
|
55
|
+
}
|
|
56
|
+
if (typeof File < "u" && r instanceof File) {
|
|
57
|
+
const t = new File([r], r.name, {
|
|
58
|
+
type: r.type
|
|
59
|
+
});
|
|
60
|
+
return i.set(r, t), y(t, r, s, i, g), t;
|
|
61
|
+
}
|
|
62
|
+
if (typeof Blob < "u" && r instanceof Blob) {
|
|
63
|
+
const t = new Blob([r], { type: r.type });
|
|
64
|
+
return i.set(r, t), y(t, r, s, i, g), t;
|
|
65
|
+
}
|
|
66
|
+
if (r instanceof Error) {
|
|
67
|
+
const t = new r.constructor();
|
|
68
|
+
return i.set(r, t), t.message = r.message, t.name = r.name, t.stack = r.stack, t.cause = r.cause, y(t, r, s, i, g), t;
|
|
69
|
+
}
|
|
70
|
+
if (r instanceof Boolean) {
|
|
71
|
+
const t = new Boolean(r.valueOf());
|
|
72
|
+
return i.set(r, t), y(t, r, s, i, g), t;
|
|
73
|
+
}
|
|
74
|
+
if (r instanceof Number) {
|
|
75
|
+
const t = new Number(r.valueOf());
|
|
76
|
+
return i.set(r, t), y(t, r, s, i, g), t;
|
|
77
|
+
}
|
|
78
|
+
if (r instanceof String) {
|
|
79
|
+
const t = new String(r.valueOf());
|
|
80
|
+
return i.set(r, t), y(t, r, s, i, g), t;
|
|
81
|
+
}
|
|
82
|
+
if (typeof r == "object" && K(r)) {
|
|
83
|
+
const t = Object.create(Object.getPrototypeOf(r));
|
|
84
|
+
return i.set(r, t), y(t, r, s, i, g), t;
|
|
85
|
+
}
|
|
86
|
+
return r;
|
|
87
|
+
}
|
|
88
|
+
function y(r, n, s = r, i, g) {
|
|
89
|
+
const p = [...Object.keys(n), ...m(n)];
|
|
90
|
+
for (let t = 0; t < p.length; t++) {
|
|
91
|
+
const f = p[t], d = Object.getOwnPropertyDescriptor(r, f);
|
|
92
|
+
(d == null || d.writable) && (r[f] = c(n[f], f, s, i, g));
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
function K(r) {
|
|
96
|
+
switch (e(r)) {
|
|
97
|
+
case G:
|
|
98
|
+
case z:
|
|
99
|
+
case q:
|
|
100
|
+
case W:
|
|
101
|
+
case L:
|
|
102
|
+
case R:
|
|
103
|
+
case N:
|
|
104
|
+
case M:
|
|
105
|
+
case I:
|
|
106
|
+
case F:
|
|
107
|
+
case E:
|
|
108
|
+
case P:
|
|
109
|
+
case D:
|
|
110
|
+
case S:
|
|
111
|
+
case x:
|
|
112
|
+
case a:
|
|
113
|
+
case B:
|
|
114
|
+
case h:
|
|
115
|
+
case b:
|
|
116
|
+
case A:
|
|
117
|
+
case O:
|
|
118
|
+
case w:
|
|
119
|
+
return !0;
|
|
120
|
+
default:
|
|
121
|
+
return !1;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
export {
|
|
125
|
+
c as cloneDeepWithImpl,
|
|
126
|
+
y as copyProperties
|
|
127
|
+
};
|