base6-ui 2.0.28 → 2.0.30

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.
Files changed (170) hide show
  1. package/dist/App.vue.d.ts +2 -0
  2. package/dist/_constant/base.d.ts +3 -0
  3. package/dist/_hooks/boden-use-theme.d.ts +3 -0
  4. package/dist/_hooks/index.d.ts +1 -0
  5. package/dist/_internal/icons/ads.d.ts +2 -0
  6. package/dist/_internal/icons/arrow-right.d.ts +2 -0
  7. package/dist/_internal/icons/blink.d.ts +2 -0
  8. package/dist/_internal/icons/forge.d.ts +2 -0
  9. package/dist/_internal/icons/index.d.ts +7 -0
  10. package/dist/_internal/icons/omni.d.ts +2 -0
  11. package/dist/_internal/icons/robo.d.ts +2 -0
  12. package/dist/_internal/icons/studio.d.ts +2 -0
  13. package/dist/_mixins/use-theme.d.ts +3 -0
  14. package/dist/_utils/cssr.d.ts +4 -0
  15. package/dist/components/global-header/interface.d.ts +1 -1
  16. package/dist/components/global-header/title.vue.d.ts +1 -1
  17. package/dist/components/index.d.ts +1 -0
  18. package/dist/components/platform-header-navigation/index.d.ts +3 -0
  19. package/dist/components/platform-header-navigation/src/constant.d.ts +21 -0
  20. package/dist/components/platform-header-navigation/src/interface.d.ts +27 -0
  21. package/dist/components/platform-header-navigation/src/platform-header-navigation.d.ts +151 -0
  22. package/dist/components/platform-header-navigation/src/styles/index.cssr.d.ts +2 -0
  23. package/dist/components/platform-header-navigation/src/useCssVars.d.ts +12 -0
  24. package/dist/components/platform-navigation/index.d.ts +1 -1
  25. package/dist/components/platform-navigation/index.vue.d.ts +2 -1
  26. package/dist/components/platform-navigation/interface.d.ts +1 -16
  27. package/dist/config/themes/token/dark.d.ts +1 -0
  28. package/dist/config/themes/token/light.d.ts +1 -0
  29. package/dist/index.css +1 -1
  30. package/dist/index.umd.js +14 -3
  31. package/dist/locale/http/en-us.d.ts +2 -0
  32. package/dist/locale/lang/en-us.d.ts +2 -2
  33. package/dist/main.d.ts +0 -0
  34. package/es/App.vue.d.ts +2 -0
  35. package/es/_constant/base.d.ts +3 -0
  36. package/es/_constant/base.mjs +4 -0
  37. package/es/_hooks/boden-use-theme.d.ts +3 -0
  38. package/es/_hooks/boden-use-theme.mjs +13 -0
  39. package/es/_hooks/index.d.ts +1 -0
  40. package/es/_internal/icons/ads.d.ts +2 -0
  41. package/es/_internal/icons/ads.mjs +137 -0
  42. package/es/_internal/icons/arrow-right.d.ts +2 -0
  43. package/es/_internal/icons/arrow-right.mjs +28 -0
  44. package/es/_internal/icons/blink.d.ts +2 -0
  45. package/es/_internal/icons/blink.mjs +127 -0
  46. package/es/_internal/icons/forge.d.ts +2 -0
  47. package/es/_internal/icons/forge.mjs +125 -0
  48. package/es/_internal/icons/index.d.ts +7 -0
  49. package/es/_internal/icons/omni.d.ts +2 -0
  50. package/es/_internal/icons/omni.mjs +143 -0
  51. package/es/_internal/icons/robo.d.ts +2 -0
  52. package/es/_internal/icons/robo.mjs +135 -0
  53. package/es/_internal/icons/studio.d.ts +2 -0
  54. package/es/_internal/icons/studio.mjs +144 -0
  55. package/es/_mixins/use-theme.d.ts +3 -0
  56. package/es/_mixins/use-theme.mjs +8 -0
  57. package/es/_utils/cssr.d.ts +4 -0
  58. package/es/_utils/cssr.mjs +17 -0
  59. package/es/components/global-header/interface.d.ts +1 -1
  60. package/es/components/global-header/title.vue.d.ts +1 -1
  61. package/es/components/index.d.ts +1 -0
  62. package/es/components/platform-header-navigation/index.d.ts +3 -0
  63. package/es/components/platform-header-navigation/src/constant.d.ts +21 -0
  64. package/es/components/platform-header-navigation/src/constant.mjs +6 -0
  65. package/es/components/platform-header-navigation/src/interface.d.ts +27 -0
  66. package/es/components/platform-header-navigation/src/interface.mjs +18 -0
  67. package/es/components/platform-header-navigation/src/platform-header-navigation.d.ts +151 -0
  68. package/es/components/platform-header-navigation/src/platform-header-navigation.mjs +196 -0
  69. package/es/components/platform-header-navigation/src/styles/index.cssr.d.ts +2 -0
  70. package/es/components/platform-header-navigation/src/styles/index.cssr.mjs +81 -0
  71. package/es/components/platform-header-navigation/src/useCssVars.d.ts +12 -0
  72. package/es/components/platform-header-navigation/src/useCssVars.mjs +71 -0
  73. package/es/components/platform-navigation/index.d.ts +1 -1
  74. package/es/components/platform-navigation/index.vue.d.ts +2 -1
  75. package/es/components/platform-navigation/index.vue.mjs +1 -1
  76. package/es/components/platform-navigation/index.vue2.mjs +160 -106
  77. package/es/components/platform-navigation/interface.d.ts +1 -16
  78. package/es/config/themes/components/card/dark.mjs +1 -1
  79. package/es/config/themes/components/dialog/dark.mjs +1 -1
  80. package/es/config/themes/token/dark.d.ts +1 -0
  81. package/es/config/themes/token/dark.mjs +1 -0
  82. package/es/config/themes/token/light.d.ts +1 -0
  83. package/es/config/themes/token/light.mjs +2 -1
  84. package/es/index.css +1 -1
  85. package/es/index.mjs +92 -87
  86. package/es/locale/http/en-us.d.ts +2 -0
  87. package/es/locale/http/en-us.mjs +2 -0
  88. package/es/locale/http/zh-cn.mjs +2 -0
  89. package/es/locale/lang/en-us.d.ts +2 -2
  90. package/es/locale/lang/en-us.mjs +2 -2
  91. package/es/locale/lang/zh-cn.mjs +2 -2
  92. package/es/main.d.ts +0 -0
  93. package/es/node_modules/.pnpm/@css-render_plugin-bem@0.15.14_css-render@0.15.14/node_modules/@css-render/plugin-bem/esm/index.mjs +81 -0
  94. package/es/node_modules/.pnpm/@emotion_hash@0.8.0/node_modules/@emotion/hash/dist/hash.browser.esm.mjs +22 -0
  95. package/es/node_modules/.pnpm/css-render@0.15.14/node_modules/css-render/esm/CssRender.mjs +15 -0
  96. package/es/node_modules/.pnpm/css-render@0.15.14/node_modules/css-render/esm/c.mjs +30 -0
  97. package/es/node_modules/.pnpm/css-render@0.15.14/node_modules/css-render/esm/mount.mjs +39 -0
  98. package/es/node_modules/.pnpm/css-render@0.15.14/node_modules/css-render/esm/parse.mjs +59 -0
  99. package/es/node_modules/.pnpm/css-render@0.15.14/node_modules/css-render/esm/render.mjs +98 -0
  100. package/es/node_modules/.pnpm/css-render@0.15.14/node_modules/css-render/esm/utils.mjs +22 -0
  101. package/lib/App.vue.d.ts +2 -0
  102. package/lib/_constant/base.d.ts +3 -0
  103. package/lib/_constant/base.js +1 -0
  104. package/lib/_hooks/boden-use-theme.d.ts +3 -0
  105. package/lib/_hooks/boden-use-theme.js +1 -0
  106. package/lib/_hooks/index.d.ts +1 -0
  107. package/lib/_internal/icons/ads.d.ts +2 -0
  108. package/lib/_internal/icons/ads.js +1 -0
  109. package/lib/_internal/icons/arrow-right.d.ts +2 -0
  110. package/lib/_internal/icons/arrow-right.js +1 -0
  111. package/lib/_internal/icons/blink.d.ts +2 -0
  112. package/lib/_internal/icons/blink.js +1 -0
  113. package/lib/_internal/icons/forge.d.ts +2 -0
  114. package/lib/_internal/icons/forge.js +1 -0
  115. package/lib/_internal/icons/index.d.ts +7 -0
  116. package/lib/_internal/icons/omni.d.ts +2 -0
  117. package/lib/_internal/icons/omni.js +1 -0
  118. package/lib/_internal/icons/robo.d.ts +2 -0
  119. package/lib/_internal/icons/robo.js +1 -0
  120. package/lib/_internal/icons/studio.d.ts +2 -0
  121. package/lib/_internal/icons/studio.js +1 -0
  122. package/lib/_mixins/use-theme.d.ts +3 -0
  123. package/lib/_mixins/use-theme.js +1 -0
  124. package/lib/_utils/cssr.d.ts +4 -0
  125. package/lib/_utils/cssr.js +1 -0
  126. package/lib/components/global-header/interface.d.ts +1 -1
  127. package/lib/components/global-header/title.vue.d.ts +1 -1
  128. package/lib/components/index.d.ts +1 -0
  129. package/lib/components/platform-header-navigation/index.d.ts +3 -0
  130. package/lib/components/platform-header-navigation/src/constant.d.ts +21 -0
  131. package/lib/components/platform-header-navigation/src/constant.js +1 -0
  132. package/lib/components/platform-header-navigation/src/interface.d.ts +27 -0
  133. package/lib/components/platform-header-navigation/src/interface.js +1 -0
  134. package/lib/components/platform-header-navigation/src/platform-header-navigation.d.ts +151 -0
  135. package/lib/components/platform-header-navigation/src/platform-header-navigation.js +1 -0
  136. package/lib/components/platform-header-navigation/src/styles/index.cssr.d.ts +2 -0
  137. package/lib/components/platform-header-navigation/src/styles/index.cssr.js +1 -0
  138. package/lib/components/platform-header-navigation/src/useCssVars.d.ts +12 -0
  139. package/lib/components/platform-header-navigation/src/useCssVars.js +1 -0
  140. package/lib/components/platform-navigation/index.d.ts +1 -1
  141. package/lib/components/platform-navigation/index.vue.d.ts +2 -1
  142. package/lib/components/platform-navigation/index.vue.js +1 -1
  143. package/lib/components/platform-navigation/index.vue2.js +1 -1
  144. package/lib/components/platform-navigation/interface.d.ts +1 -16
  145. package/lib/config/themes/components/card/dark.js +1 -1
  146. package/lib/config/themes/components/dialog/dark.js +1 -1
  147. package/lib/config/themes/token/dark.d.ts +1 -0
  148. package/lib/config/themes/token/dark.js +1 -1
  149. package/lib/config/themes/token/light.d.ts +1 -0
  150. package/lib/config/themes/token/light.js +1 -1
  151. package/lib/index.css +1 -1
  152. package/lib/index.js +1 -1
  153. package/lib/locale/http/en-us.d.ts +2 -0
  154. package/lib/locale/http/en-us.js +1 -1
  155. package/lib/locale/http/zh-cn.js +1 -1
  156. package/lib/locale/lang/en-us.d.ts +2 -2
  157. package/lib/locale/lang/en-us.js +1 -1
  158. package/lib/locale/lang/zh-cn.js +1 -1
  159. package/lib/main.d.ts +0 -0
  160. package/lib/node_modules/.pnpm/@css-render_plugin-bem@0.15.14_css-render@0.15.14/node_modules/@css-render/plugin-bem/esm/index.js +1 -0
  161. package/lib/node_modules/.pnpm/@emotion_hash@0.8.0/node_modules/@emotion/hash/dist/hash.browser.esm.js +1 -0
  162. package/lib/node_modules/.pnpm/css-render@0.15.14/node_modules/css-render/esm/CssRender.js +1 -0
  163. package/lib/node_modules/.pnpm/css-render@0.15.14/node_modules/css-render/esm/c.js +1 -0
  164. package/lib/node_modules/.pnpm/css-render@0.15.14/node_modules/css-render/esm/mount.js +1 -0
  165. package/lib/node_modules/.pnpm/css-render@0.15.14/node_modules/css-render/esm/parse.js +1 -0
  166. package/lib/node_modules/.pnpm/css-render@0.15.14/node_modules/css-render/esm/render.js +12 -0
  167. package/lib/node_modules/.pnpm/css-render@0.15.14/node_modules/css-render/esm/utils.js +1 -0
  168. package/package.json +3 -1
  169. package/es/components/platform-navigation/interface.mjs +0 -5
  170. package/lib/components/platform-navigation/interface.js +0 -1
package/es/index.mjs CHANGED
@@ -2,114 +2,119 @@ import "./_virtual/virtual_svg-icons-register.mjs";
2
2
  /* empty css */
3
3
  /* empty css */
4
4
  import { default as f } from "./components/app-provider/index.vue.mjs";
5
- import { default as s } from "./components/button/button.mjs";
5
+ import { default as p } from "./components/button/button.mjs";
6
6
  import { bodenButtonProps as m } from "./components/button/interface.mjs";
7
7
  import { default as l } from "./components/button-list/src/button-list.mjs";
8
- import { bodenButtonListProps as x } from "./components/button-list/src/interface.mjs";
8
+ import { bodenButtonListProps as u } from "./components/button-list/src/interface.mjs";
9
9
  import { default as i } from "./components/cascader/cascader.mjs";
10
10
  import { bodenCascaderProps as b } from "./components/cascader/types.mjs";
11
11
  import { default as T } from "./components/config-provider/config-provider.mjs";
12
- import { default as L } from "./components/data-table/data-table.mjs";
13
- import { bodenDataTableProps as N } from "./components/data-table/interface.mjs";
14
- import { default as c } from "./components/dialog/index.vue.mjs";
15
- import { default as C } from "./components/input-number/index.vue.mjs";
16
- import { default as v } from "./components/global-header/index.vue.mjs";
17
- import { default as H } from "./components/global-header/title.vue.mjs";
18
- import { default as D } from "./components/layout/index.vue.mjs";
12
+ import { default as N } from "./components/data-table/data-table.mjs";
13
+ import { bodenDataTableProps as L } from "./components/data-table/interface.mjs";
14
+ import { default as S } from "./components/dialog/index.vue.mjs";
15
+ import { default as E } from "./components/input-number/index.vue.mjs";
16
+ import { default as C } from "./components/global-header/index.vue.mjs";
17
+ import { default as O } from "./components/global-header/title.vue.mjs";
18
+ import { default as k } from "./components/layout/index.vue.mjs";
19
19
  import { default as y } from "./components/layout/header/index.vue.mjs";
20
- import { default as I } from "./components/layout/aside/index.vue.mjs";
21
- import { default as F } from "./components/layout/aside-menu/aside-menu.mjs";
20
+ import { default as R } from "./components/layout/aside/index.vue.mjs";
21
+ import { default as G } from "./components/layout/aside-menu/aside-menu.mjs";
22
22
  import { bodenAsideMenuProps as j } from "./components/layout/aside-menu/props.mjs";
23
23
  import { default as z } from "./components/logo/index.vue.mjs";
24
24
  import { default as Z } from "./components/nav-icon/index.vue.mjs";
25
25
  import { default as J } from "./components/radio/index.vue.mjs";
26
- import { default as V } from "./components/platform-navigation/index.vue.mjs";
27
- import { BODEN_PLATFORM_ENUM as X, BODEN_PLATFORM_NAME_ENUM as Y } from "./components/platform-navigation/interface.mjs";
28
- import { default as ee } from "./components/progress/index.mjs";
29
- import { default as re } from "./components/select/src/select.mjs";
30
- import { bodenSelectProps as ae } from "./components/select/src/interface.mjs";
31
- import { default as de } from "./components/shape-button/src/shape-button.mjs";
32
- import { bodenShapeButtonProps as pe } from "./components/shape-button/src/interface.mjs";
33
- import { default as ne } from "./components/slider/index.vue.mjs";
34
- import { default as ue } from "./components/steps/steps.mjs";
35
- import { default as Be } from "./components/switch/index.vue.mjs";
36
- import { default as he } from "./components/system-actions/index.vue.mjs";
37
- import { default as Pe, bodenTabsProps as Te } from "./components/tabs/tabs.mjs";
38
- import { configProviderInjectionKey as Le } from "./config/themes/index.mjs";
39
- import { LOCALE_LANG as Ne } from "./enum/locale.mjs";
40
- import { useAnimationHook as ce } from "./hooks/useAnimationHook.mjs";
41
- import { useBodenHttpMessage as Ce } from "./hooks/useBodenHttpMessage.mjs";
42
- import { default as ve } from "./locale/lang/en-us.mjs";
43
- import { default as He } from "./locale/lang/zh-cn.mjs";
44
- import { default as De } from "./locale/http/en-us.mjs";
45
- import { default as ye } from "./locale/http/zh-cn.mjs";
46
- import { default as Ie } from "./globalMethods/index.mjs";
47
- import { renderStepsFinishIcon as Fe } from "./utils/render.mjs";
48
- import { default as je } from "./config/themes/token/dark.mjs";
49
- import { default as ze } from "./config/themes/token/light.mjs";
50
- import { default as Ze } from "./config/themes/color/dark.mjs";
51
- import { default as Je } from "./config/themes/color/light.mjs";
52
- import { default as Ve } from "./globalMethods/modules/message.mjs";
53
- import { default as Xe } from "./globalMethods/modules/confirmTip.mjs";
54
- import { lightThemeOverrides as $e } from "./config/themes/light.mjs";
55
- import { darkThemeOverrides as oo } from "./config/themes/dark.mjs";
56
- import { ChartsThemeDark as to } from "./config/themes/components/charts/dark.mjs";
57
- import { ChartsThemeLight as fo } from "./config/themes/components/charts/light.mjs";
26
+ import { default as V } from "./components/platform-header-navigation/src/platform-header-navigation.mjs";
27
+ import { BODEN_PLATFORM_ENUM as X, BODEN_PLATFORM_FEATURE as Y, BODEN_PLATFORM_NAME_ENUM as $ } from "./components/platform-header-navigation/src/constant.mjs";
28
+ import { bodenPlatformHeaderNavigationProps as eo } from "./components/platform-header-navigation/src/interface.mjs";
29
+ import { default as to } from "./components/platform-navigation/index.vue.mjs";
30
+ import { default as fo } from "./components/progress/index.mjs";
31
+ import { default as so } from "./components/select/src/select.mjs";
32
+ import { bodenSelectProps as no } from "./components/select/src/interface.mjs";
33
+ import { default as xo } from "./components/shape-button/src/shape-button.mjs";
34
+ import { bodenShapeButtonProps as Bo } from "./components/shape-button/src/interface.mjs";
35
+ import { default as Po } from "./components/slider/index.vue.mjs";
36
+ import { default as ho } from "./components/steps/steps.mjs";
37
+ import { default as go } from "./components/switch/index.vue.mjs";
38
+ import { default as Ao } from "./components/system-actions/index.vue.mjs";
39
+ import { default as Mo, bodenTabsProps as So } from "./components/tabs/tabs.mjs";
40
+ import { configProviderInjectionKey as Eo } from "./config/themes/index.mjs";
41
+ import { LOCALE_LANG as Co } from "./enum/locale.mjs";
42
+ import { useAnimationHook as Oo } from "./hooks/useAnimationHook.mjs";
43
+ import { useBodenHttpMessage as ko } from "./hooks/useBodenHttpMessage.mjs";
44
+ import { default as yo } from "./locale/lang/en-us.mjs";
45
+ import { default as Ro } from "./locale/lang/zh-cn.mjs";
46
+ import { default as Go } from "./locale/http/en-us.mjs";
47
+ import { default as jo } from "./locale/http/zh-cn.mjs";
48
+ import { default as zo } from "./globalMethods/index.mjs";
49
+ import { renderStepsFinishIcon as Zo } from "./utils/render.mjs";
50
+ import { default as Jo } from "./config/themes/token/dark.mjs";
51
+ import { default as Vo } from "./config/themes/token/light.mjs";
52
+ import { default as Xo } from "./config/themes/color/dark.mjs";
53
+ import { default as $o } from "./config/themes/color/light.mjs";
54
+ import { default as ee } from "./globalMethods/modules/message.mjs";
55
+ import { default as te } from "./globalMethods/modules/confirmTip.mjs";
56
+ import { lightThemeOverrides as fe } from "./config/themes/light.mjs";
57
+ import { darkThemeOverrides as pe } from "./config/themes/dark.mjs";
58
+ import { ChartsThemeDark as me } from "./config/themes/components/charts/dark.mjs";
59
+ import { ChartsThemeLight as le } from "./config/themes/components/charts/light.mjs";
58
60
  export {
59
61
  X as BODEN_PLATFORM_ENUM,
60
- Y as BODEN_PLATFORM_NAME_ENUM,
62
+ Y as BODEN_PLATFORM_FEATURE,
63
+ $ as BODEN_PLATFORM_NAME_ENUM,
61
64
  f as BodenAppProvider,
62
- F as BodenAsideMenu,
63
- s as BodenButton,
65
+ G as BodenAsideMenu,
66
+ p as BodenButton,
64
67
  l as BodenButtonList,
65
68
  i as BodenCascader,
66
69
  T as BodenConfigProvider,
67
- L as BodenDataTable,
68
- c as BodenDialog,
69
- v as BodenGlobalHeader,
70
- H as BodenGlobalHeaderTitle,
71
- C as BodenInputNumber,
72
- D as BodenLayout,
73
- I as BodenLayoutAside,
70
+ N as BodenDataTable,
71
+ S as BodenDialog,
72
+ C as BodenGlobalHeader,
73
+ O as BodenGlobalHeaderTitle,
74
+ E as BodenInputNumber,
75
+ k as BodenLayout,
76
+ R as BodenLayoutAside,
74
77
  y as BodenLayoutHeader,
75
78
  z as BodenLogo,
76
79
  Z as BodenNavIcon,
77
- V as BodenPlatformNavigation,
78
- ee as BodenProgress,
80
+ V as BodenPlatformHeaderNavigation,
81
+ to as BodenPlatformNavigation,
82
+ fo as BodenProgress,
79
83
  J as BodenRadio,
80
- re as BodenSelect,
81
- de as BodenShapeButton,
82
- ne as BodenSlider,
83
- ue as BodenSteps,
84
- Be as BodenSwitch,
85
- he as BodenSystemActions,
86
- Pe as BodenTabs,
87
- to as ChartsThemeDark,
88
- fo as ChartsThemeLight,
89
- De as HttpEnUS,
90
- ye as HttpZhCN,
91
- Ne as LOCALE_LANG,
84
+ so as BodenSelect,
85
+ xo as BodenShapeButton,
86
+ Po as BodenSlider,
87
+ ho as BodenSteps,
88
+ go as BodenSwitch,
89
+ Ao as BodenSystemActions,
90
+ Mo as BodenTabs,
91
+ me as ChartsThemeDark,
92
+ le as ChartsThemeLight,
93
+ Go as HttpEnUS,
94
+ jo as HttpZhCN,
95
+ Co as LOCALE_LANG,
92
96
  j as bodenAsideMenuProps,
93
- x as bodenButtonListProps,
97
+ u as bodenButtonListProps,
94
98
  m as bodenButtonProps,
95
99
  b as bodenCascaderProps,
96
- N as bodenDataTableProps,
97
- ae as bodenSelectProps,
98
- pe as bodenShapeButtonProps,
99
- Te as bodenTabsProps,
100
- Le as configProviderInjectionKey,
101
- Ze as darkBase,
102
- oo as darkThemeOverrides,
103
- je as darkToken,
104
- ve as enUS,
105
- Je as lightBase,
106
- $e as lightThemeOverrides,
107
- ze as lightToken,
108
- Ie as registerBodenGlobalMethods,
109
- Fe as renderStepsFinishIcon,
110
- ce as useAnimationHook,
111
- Ce as useBodenHttpMessage,
112
- Xe as useConfirmTip,
113
- Ve as useMessage,
114
- He as zhCN
100
+ L as bodenDataTableProps,
101
+ eo as bodenPlatformHeaderNavigationProps,
102
+ no as bodenSelectProps,
103
+ Bo as bodenShapeButtonProps,
104
+ So as bodenTabsProps,
105
+ Eo as configProviderInjectionKey,
106
+ Xo as darkBase,
107
+ pe as darkThemeOverrides,
108
+ Jo as darkToken,
109
+ yo as enUS,
110
+ $o as lightBase,
111
+ fe as lightThemeOverrides,
112
+ Vo as lightToken,
113
+ zo as registerBodenGlobalMethods,
114
+ Zo as renderStepsFinishIcon,
115
+ Oo as useAnimationHook,
116
+ ko as useBodenHttpMessage,
117
+ te as useConfirmTip,
118
+ ee as useMessage,
119
+ Ro as zhCN
115
120
  };
@@ -67,12 +67,14 @@ declare const enUS: {
67
67
  30303: string;
68
68
  30304: string;
69
69
  30305: string;
70
+ 30306: string;
70
71
  /** 30400~30499 数据集使用相关异常 */
71
72
  30400: string;
72
73
  30401: string;
73
74
  30402: string;
74
75
  30403: string;
75
76
  30404: string;
77
+ 30405: string;
76
78
  /** 30500~30599 任务使用相关异常 */
77
79
  30500: string;
78
80
  30501: string;
@@ -67,12 +67,14 @@ const e = {
67
67
  30303: "Multiple Subcontract Nodes Are Not Allowed in Workflow",
68
68
  30304: "Workflow task node configuration lacks required information",
69
69
  30305: "Workflow Failed to Retrieve Annotation Information",
70
+ 30306: "The node is already bound to a workflow and cannot be deleted",
70
71
  /** 30400~30499 数据集使用相关异常 */
71
72
  30400: "Unknown data source type",
72
73
  30401: "Someone is currently adding a dataset to the project. Please try again later",
73
74
  30402: "Dataset does not exist",
74
75
  30403: "The dataset lacks the required {modal} data modalities",
75
76
  30404: "The dataset lacks required information",
77
+ 30405: "Someone in the current project is using the dataset generation task. Please try again later",
76
78
  /** 30500~30599 任务使用相关异常 */
77
79
  30500: "Task does not exist",
78
80
  30501: "Task cannot be transferred to a non-task node",
@@ -66,12 +66,14 @@ const e = {
66
66
  30303: "工作流不允许配置多个分包节点",
67
67
  30304: "工作流任务节点配置缺少必要信息",
68
68
  30305: "工作流未获取到标注信息",
69
+ 30306: "该节点已绑定工作流,无法删除",
69
70
  /** 30400~30499 数据集使用相关异常 */
70
71
  30400: "未知的数据源类型",
71
72
  30401: "当前项目有成员正在添加数据集,请稍后重试",
72
73
  30402: "数据集不存在",
73
74
  30403: "数据集缺少{modal}必要数据模态",
74
75
  30404: "数据集缺少必要信息",
76
+ 30405: "当前项目有成员正在使用数据集生成任务,请稍后重试",
75
77
  /** 30500~30599 任务使用相关异常 */
76
78
  30500: "任务不存在",
77
79
  30501: "任务无法流转至非任务节点",
@@ -27,8 +27,8 @@ declare const enUS: {
27
27
  BricPlatformDescription: string;
28
28
  RoboPlatform: string;
29
29
  RoboPlatformDescription: string;
30
- PsPlatform: string;
31
- PsPlatformDescription: string;
30
+ ForgePlatform: string;
31
+ ForgePlatformDescription: string;
32
32
  };
33
33
  };
34
34
  };
@@ -29,8 +29,8 @@ const o = {
29
29
  BricPlatformDescription: "专业数据采集,汇聚海量基石,奠定智能根基",
30
30
  RoboPlatform: "具身智能采集 - BRIC Robo",
31
31
  RoboPlatformDescription: "专为具身智能研发打造,支持道场场景管理与多类型机器人组网(机器臂/人形)。提供从任务下发、现场采集到数据包审核的全链路工作流,内置遥操作与示教工具,高效沉淀高价值训练数据。",
32
- PsPlatform: "图片采集 - BRIC Image",
33
- PsPlatformDescription: "一站式数据采集与编辑平台,支持源图下发与任务化管理,采集人员可基于源图按规范完成图像编辑与蒙版制作。平台提供流程管控、结果回收与质量校验能力,保障数据一致性与交付质量。"
32
+ ForgePlatform: "图片采集 - BRIC Forge",
33
+ ForgePlatformDescription: "一站式数据采集与编辑平台,支持源图下发与任务化管理,采集人员可基于源图按规范完成图像编辑与蒙版制作。平台提供流程管控、结果回收与质量校验能力,保障数据一致性与交付质量。"
34
34
  }
35
35
  }
36
36
  };
@@ -29,8 +29,8 @@ const o = {
29
29
  BricPlatformDescription: "专业数据采集,汇聚海量基石,奠定智能根基",
30
30
  RoboPlatform: "具身智能采集 - BRIC Robo",
31
31
  RoboPlatformDescription: "专为具身智能研发打造,支持道场场景管理与多类型机器人组网(机器臂/人形)。提供从任务下发、现场采集到数据包审核的全链路工作流,内置遥操作与示教工具,高效沉淀高价值训练数据。",
32
- PsPlatform: "图片采集 - BRIC Image",
33
- PsPlatformDescription: "一站式数据采集与编辑平台,支持源图下发与任务化管理,采集人员可基于源图按规范完成图像编辑与蒙版制作。平台提供流程管控、结果回收与质量校验能力,保障数据一致性与交付质量。"
32
+ ForgePlatform: "图片采集 - BRIC Forge",
33
+ ForgePlatformDescription: "一站式数据采集与编辑平台,支持源图下发与任务化管理,采集人员可基于源图按规范完成图像编辑与蒙版制作。平台提供流程管控、结果回收与质量校验能力,保障数据一致性与交付质量。"
34
34
  }
35
35
  }
36
36
  };
package/es/main.d.ts ADDED
File without changes
@@ -0,0 +1,81 @@
1
+ function w(u) {
2
+ let m = ".", f = "__", r = "--", b;
3
+ if (u) {
4
+ let e = u.blockPrefix;
5
+ e && (m = e), e = u.elementPrefix, e && (f = e), e = u.modifierPrefix, e && (r = e);
6
+ }
7
+ const s = {
8
+ install(e) {
9
+ b = e.c;
10
+ const n = e.context;
11
+ n.bem = {}, n.bem.b = null, n.bem.els = null;
12
+ }
13
+ };
14
+ function $(e) {
15
+ let n, l;
16
+ return {
17
+ before(i) {
18
+ n = i.bem.b, l = i.bem.els, i.bem.els = null;
19
+ },
20
+ after(i) {
21
+ i.bem.b = n, i.bem.els = l;
22
+ },
23
+ $({ context: i, props: t }) {
24
+ return e = typeof e == "string" ? e : e({ context: i, props: t }), i.bem.b = e, `${t?.bPrefix || m}${i.bem.b}`;
25
+ }
26
+ };
27
+ }
28
+ function c(e) {
29
+ let n;
30
+ return {
31
+ before(l) {
32
+ n = l.bem.els;
33
+ },
34
+ after(l) {
35
+ l.bem.els = n;
36
+ },
37
+ $({ context: l, props: i }) {
38
+ return e = typeof e == "string" ? e : e({ context: l, props: i }), l.bem.els = e.split(",").map((t) => t.trim()), l.bem.els.map((t) => `${i?.bPrefix || m}${l.bem.b}${f}${t}`).join(", ");
39
+ }
40
+ };
41
+ }
42
+ function v(e) {
43
+ return {
44
+ $({ context: n, props: l }) {
45
+ e = typeof e == "string" ? e : e({ context: n, props: l });
46
+ const i = e.split(",").map((o) => o.trim());
47
+ function t(o) {
48
+ return i.map((P) => `&${l?.bPrefix || m}${n.bem.b}${o !== void 0 ? `${f}${o}` : ""}${r}${P}`).join(", ");
49
+ }
50
+ const d = n.bem.els;
51
+ if (d !== null) {
52
+ if (process.env.NODE_ENV !== "production" && d.length >= 2)
53
+ throw Error(`[css-render/plugin-bem]: m(${e}) is invalid, using modifier inside multiple elements is not allowed`);
54
+ return t(d[0]);
55
+ } else
56
+ return t();
57
+ }
58
+ };
59
+ }
60
+ function E(e) {
61
+ return {
62
+ $({ context: n, props: l }) {
63
+ e = typeof e == "string" ? e : e({ context: n, props: l });
64
+ const i = n.bem.els;
65
+ if (process.env.NODE_ENV !== "production" && i !== null && i.length >= 2)
66
+ throw Error(`[css-render/plugin-bem]: notM(${e}) is invalid, using modifier inside multiple elements is not allowed`);
67
+ return `&:not(${l?.bPrefix || m}${n.bem.b}${i !== null && i.length > 0 ? `${f}${i[0]}` : ""}${r}${e})`;
68
+ }
69
+ };
70
+ }
71
+ return Object.assign(s, {
72
+ cB: ((...e) => b($(e[0]), e[1], e[2])),
73
+ cE: ((...e) => b(c(e[0]), e[1], e[2])),
74
+ cM: ((...e) => b(v(e[0]), e[1], e[2])),
75
+ cNotM: ((...e) => b(E(e[0]), e[1], e[2]))
76
+ }), s;
77
+ }
78
+ export {
79
+ w as default,
80
+ w as plugin
81
+ };
@@ -0,0 +1,22 @@
1
+ function c(e) {
2
+ for (var f = 0, x, a = 0, d = e.length; d >= 4; ++a, d -= 4)
3
+ x = e.charCodeAt(a) & 255 | (e.charCodeAt(++a) & 255) << 8 | (e.charCodeAt(++a) & 255) << 16 | (e.charCodeAt(++a) & 255) << 24, x = /* Math.imul(k, m): */
4
+ (x & 65535) * 1540483477 + ((x >>> 16) * 59797 << 16), x ^= /* k >>> r: */
5
+ x >>> 24, f = /* Math.imul(k, m): */
6
+ (x & 65535) * 1540483477 + ((x >>> 16) * 59797 << 16) ^ /* Math.imul(h, m): */
7
+ (f & 65535) * 1540483477 + ((f >>> 16) * 59797 << 16);
8
+ switch (d) {
9
+ case 3:
10
+ f ^= (e.charCodeAt(a + 2) & 255) << 16;
11
+ case 2:
12
+ f ^= (e.charCodeAt(a + 1) & 255) << 8;
13
+ case 1:
14
+ f ^= e.charCodeAt(a) & 255, f = /* Math.imul(h, m): */
15
+ (f & 65535) * 1540483477 + ((f >>> 16) * 59797 << 16);
16
+ }
17
+ return f ^= f >>> 13, f = /* Math.imul(h, m): */
18
+ (f & 65535) * 1540483477 + ((f >>> 16) * 59797 << 16), ((f ^ f >>> 15) >>> 0).toString(36);
19
+ }
20
+ export {
21
+ c as default
22
+ };
@@ -0,0 +1,15 @@
1
+ import { c as o } from "./c.mjs";
2
+ import { queryElement as s } from "./utils.mjs";
3
+ function m(e = {}) {
4
+ const r = {
5
+ c: ((...t) => o(r, ...t)),
6
+ use: (t, ...n) => t.install(r, ...n),
7
+ find: s,
8
+ context: {},
9
+ config: e
10
+ };
11
+ return r;
12
+ }
13
+ export {
14
+ m as CssRender
15
+ };
@@ -0,0 +1,30 @@
1
+ import { render as l } from "./render.mjs";
2
+ import { unmount as c, mount as f } from "./mount.mjs";
3
+ function m(r) {
4
+ return l(this, this.instance, r);
5
+ }
6
+ function d(r = {}) {
7
+ const { id: n, ssr: t, props: e, head: o = !1, force: a = !1, anchorMetaName: i, parent: s } = r;
8
+ return f(this.instance, this, n, e, o, a, i, s, t);
9
+ }
10
+ function h(r = {}) {
11
+ const { id: n, parent: t } = r;
12
+ c(this.instance, this, n, t);
13
+ }
14
+ const u = function(r, n, t, e) {
15
+ return {
16
+ instance: r,
17
+ $: n,
18
+ props: t,
19
+ children: e,
20
+ els: [],
21
+ render: m,
22
+ mount: d,
23
+ unmount: h
24
+ };
25
+ }, w = function(r, n, t, e) {
26
+ return Array.isArray(n) ? u(r, { $: null }, null, n) : Array.isArray(t) ? u(r, n, null, t) : Array.isArray(e) ? u(r, n, t, e) : u(r, n, t, null);
27
+ };
28
+ export {
29
+ w as c
30
+ };
@@ -0,0 +1,39 @@
1
+ import { removeElement as y, queryElement as a, createElement as h } from "./utils.mjs";
2
+ import q from "../../../../@emotion_hash@0.8.0/node_modules/@emotion/hash/dist/hash.browser.esm.mjs";
3
+ typeof window < "u" && (window.__cssrContext = {});
4
+ function v(c, e, n, f) {
5
+ const { els: o } = e;
6
+ if (n === void 0)
7
+ o.forEach(y), e.els = [];
8
+ else {
9
+ const u = a(n, f);
10
+ u && o.includes(u) && (y(u), e.els = o.filter((s) => s !== u));
11
+ }
12
+ }
13
+ function E(c, e) {
14
+ c.push(e);
15
+ }
16
+ function x(c, e, n, f, o, u, s, t, m) {
17
+ let i;
18
+ if (n === void 0 && (i = e.render(f), n = q(i)), m) {
19
+ m.adapter(n, i ?? e.render(f));
20
+ return;
21
+ }
22
+ t === void 0 && (t = document.head);
23
+ const l = a(n, t);
24
+ if (l !== null && !u)
25
+ return l;
26
+ const r = l ?? h(n);
27
+ if (i === void 0 && (i = e.render(f)), r.textContent = i, l !== null)
28
+ return l;
29
+ if (s) {
30
+ const d = t.querySelector(`meta[name="${s}"]`);
31
+ if (d)
32
+ return t.insertBefore(r, d), E(e.els, r), r;
33
+ }
34
+ return o ? t.insertBefore(r, t.querySelector("style, link")) : t.appendChild(r), E(e.els, r), r;
35
+ }
36
+ export {
37
+ x as mount,
38
+ v as unmount
39
+ };
@@ -0,0 +1,59 @@
1
+ function i(t) {
2
+ let n = 0;
3
+ for (let e = 0; e < t.length; ++e)
4
+ t[e] === "&" && ++n;
5
+ return n;
6
+ }
7
+ const h = /\s*,(?![^(]*\))\s*/g, p = /\s+/g;
8
+ function a(t, n) {
9
+ const e = [];
10
+ return n.split(h).forEach((f) => {
11
+ let o = i(f);
12
+ if (o) {
13
+ if (o === 1) {
14
+ t.forEach((r) => {
15
+ e.push(f.replace("&", r));
16
+ });
17
+ return;
18
+ }
19
+ } else {
20
+ t.forEach((r) => {
21
+ e.push(
22
+ // eslint-disable-next-line @typescript-eslint/strict-boolean-expressions
23
+ (r && r + " ") + f
24
+ );
25
+ });
26
+ return;
27
+ }
28
+ let u = [
29
+ f
30
+ ];
31
+ for (; o--; ) {
32
+ const r = [];
33
+ u.forEach((c) => {
34
+ t.forEach((s) => {
35
+ r.push(c.replace("&", s));
36
+ });
37
+ }), u = r;
38
+ }
39
+ u.forEach((r) => e.push(r));
40
+ }), e;
41
+ }
42
+ function x(t, n) {
43
+ const e = [];
44
+ return n.split(h).forEach((f) => {
45
+ t.forEach((o) => {
46
+ e.push((o && o + " ") + f);
47
+ });
48
+ }), e;
49
+ }
50
+ function E(t) {
51
+ let n = [""];
52
+ return t.forEach((e) => {
53
+ e = e && e.trim(), // eslint-disable-next-line @typescript-eslint/strict-boolean-expressions
54
+ e && (e.includes("&") ? n = a(n, e) : n = x(n, e));
55
+ }), n.join(", ").replace(p, " ");
56
+ }
57
+ export {
58
+ E as parseSelectorPath
59
+ };
@@ -0,0 +1,98 @@
1
+ import { parseSelectorPath as b } from "./parse.mjs";
2
+ import { isMediaOrSupports as c } from "./utils.mjs";
3
+ const h = /[A-Z]/g;
4
+ function x(e) {
5
+ return e.replace(h, (t) => "-" + t.toLowerCase());
6
+ }
7
+ function j(e, t = " ") {
8
+ return typeof e == "object" && e !== null ? ` {
9
+ ` + Object.entries(e).map((r) => t + ` ${x(r[0])}: ${r[1]};`).join(`
10
+ `) + `
11
+ ` + t + "}" : `: ${e};`;
12
+ }
13
+ function w(e, t, r) {
14
+ return typeof e == "function" ? e({
15
+ context: t.context,
16
+ props: r
17
+ }) : e;
18
+ }
19
+ function y(e, t, r, f) {
20
+ if (!t)
21
+ return "";
22
+ const o = w(t, r, f);
23
+ if (!o)
24
+ return "";
25
+ if (typeof o == "string")
26
+ return `${e} {
27
+ ${o}
28
+ }`;
29
+ const n = Object.keys(o);
30
+ if (n.length === 0)
31
+ return r.config.keepEmptyBlock ? e + ` {
32
+ }` : "";
33
+ const i = e ? [
34
+ e + " {"
35
+ ] : [];
36
+ return n.forEach((p) => {
37
+ const s = o[p];
38
+ if (p === "raw") {
39
+ i.push(`
40
+ ` + s + `
41
+ `);
42
+ return;
43
+ }
44
+ p = x(p), s != null && i.push(` ${p}${j(s)}`);
45
+ }), e && i.push("}"), i.join(`
46
+ `);
47
+ }
48
+ function $(e, t, r) {
49
+ e && e.forEach((f) => {
50
+ if (Array.isArray(f))
51
+ $(f, t, r);
52
+ else if (typeof f == "function") {
53
+ const o = f(t);
54
+ Array.isArray(o) ? $(o, t, r) : o && r(o);
55
+ } else f && r(f);
56
+ });
57
+ }
58
+ function g(e, t, r, f, o) {
59
+ const n = e.$;
60
+ let i = "";
61
+ if (!n || typeof n == "string")
62
+ c(n) ? i = n : t.push(n);
63
+ else if (typeof n == "function") {
64
+ const u = n({
65
+ context: f.context,
66
+ props: o
67
+ });
68
+ c(u) ? i = u : t.push(u);
69
+ } else if (n.before && n.before(f.context), !n.$ || typeof n.$ == "string")
70
+ c(n.$) ? i = n.$ : t.push(n.$);
71
+ else if (n.$) {
72
+ const u = n.$({
73
+ context: f.context,
74
+ props: o
75
+ });
76
+ c(u) ? i = u : t.push(u);
77
+ }
78
+ const p = b(t), s = y(p, e.props, f, o);
79
+ i ? r.push(`${i} {`) : s.length && r.push(s), e.children && $(e.children, {
80
+ context: f.context,
81
+ props: o
82
+ }, (u) => {
83
+ if (typeof u == "string") {
84
+ const l = y(p, { raw: u }, f, o);
85
+ r.push(l);
86
+ } else
87
+ g(u, t, r, f, o);
88
+ }), t.pop(), i && r.push("}"), n && n.after && n.after(f.context);
89
+ }
90
+ function k(e, t, r) {
91
+ const f = [];
92
+ return g(e, [], f, t, r), f.join(`
93
+
94
+ `);
95
+ }
96
+ export {
97
+ k as render
98
+ };