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
@@ -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;
@@ -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
  };
package/dist/main.d.ts ADDED
File without changes
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,3 @@
1
+ export declare const prefix = "boden";
2
+ export declare const naiveConfigProviderInjectionKey = "n-config-provider";
3
+ export declare const bodenConfigProviderInjectionKey = "boden-config-provider";
@@ -0,0 +1,4 @@
1
+ const e = "boden";
2
+ export {
3
+ e as prefix
4
+ };
@@ -0,0 +1,3 @@
1
+ import { CNode } from 'css-render';
2
+ declare function BodenUseTheme(mountId: string, style: CNode | undefined, prefix: string, anchorMetaName: string): void;
3
+ export default BodenUseTheme;
@@ -0,0 +1,13 @@
1
+ import { onBeforeMount as u } from "vue";
2
+ function r(e, o, t, n) {
3
+ o && u(() => {
4
+ o.mount({
5
+ id: `${t}${e}`,
6
+ head: !0,
7
+ anchorMetaName: n
8
+ });
9
+ });
10
+ }
11
+ export {
12
+ r as default
13
+ };
@@ -0,0 +1 @@
1
+ export { default as BodenUseTheme } from './boden-use-theme';
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,137 @@
1
+ import { defineComponent as l, createVNode as e } from "vue";
2
+ const r = /* @__PURE__ */ l({
3
+ name: "AdsLogo",
4
+ render() {
5
+ return e("svg", {
6
+ width: "46",
7
+ height: "46",
8
+ viewBox: "0 0 46 46",
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg"
11
+ }, [e("g", {
12
+ filter: "url(#filter0_dd_11235_27025)"
13
+ }, [e("rect", {
14
+ x: "6.85693",
15
+ y: "1.14258",
16
+ width: "32",
17
+ height: "32",
18
+ rx: "8",
19
+ fill: "url(#paint0_linear_11235_27025)",
20
+ "shape-rendering": "crispEdges"
21
+ }, null), e("g", {
22
+ "clip-path": "url(#clip0_11235_27025)"
23
+ }, [e("g", {
24
+ "clip-path": "url(#clip1_11235_27025)"
25
+ }, [e("path", {
26
+ d: "M28.1901 13.1419V21.1419M26.8568 11.8086H18.8568M26.8568 22.4753H18.8568M17.5234 21.1419V13.1419",
27
+ stroke: "white",
28
+ "stroke-linecap": "round",
29
+ "stroke-linejoin": "round"
30
+ }, null), e("path", {
31
+ d: "M29.5236 11.8089C29.5236 12.5453 28.9266 13.1423 28.1903 13.1423C27.4539 13.1423 26.8569 12.5453 26.8569 11.8089C26.8569 11.0725 27.4539 10.4756 28.1903 10.4756C28.9266 10.4756 29.5236 11.0725 29.5236 11.8089Z",
32
+ stroke: "white"
33
+ }, null), e("path", {
34
+ d: "M18.8566 11.8089C18.8566 12.5453 18.2597 13.1423 17.5233 13.1423C16.7869 13.1423 16.1899 12.5453 16.1899 11.8089C16.1899 11.0725 16.7869 10.4756 17.5233 10.4756C18.2597 10.4756 18.8566 11.0725 18.8566 11.8089Z",
35
+ stroke: "white"
36
+ }, null), e("path", {
37
+ d: "M29.5236 22.4749C29.5236 23.2113 28.9266 23.8083 28.1903 23.8083C27.4539 23.8083 26.8569 23.2113 26.8569 22.4749C26.8569 21.7386 27.4539 21.1416 28.1903 21.1416C28.9266 21.1416 29.5236 21.7386 29.5236 22.4749Z",
38
+ stroke: "white"
39
+ }, null), e("path", {
40
+ d: "M18.8566 22.4749C18.8566 23.2113 18.2597 23.8083 17.5233 23.8083C16.7869 23.8083 16.1899 23.2113 16.1899 22.4749C16.1899 21.7386 16.7869 21.1416 17.5233 21.1416C18.2597 21.1416 18.8566 21.7386 18.8566 22.4749Z",
41
+ stroke: "white"
42
+ }, null)])])]), e("defs", null, [e("filter", {
43
+ id: "filter0_dd_11235_27025",
44
+ x: "-0.000209093",
45
+ y: "-0.000279188",
46
+ width: "45.7143",
47
+ height: "45.7143",
48
+ filterUnits: "userSpaceOnUse",
49
+ "color-interpolation-filters": "sRGB"
50
+ }, [e("feFlood", {
51
+ "flood-opacity": "0",
52
+ result: "BackgroundImageFix"
53
+ }, null), e("feColorMatrix", {
54
+ in: "SourceAlpha",
55
+ type: "matrix",
56
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
57
+ result: "hardAlpha"
58
+ }, null), e("feMorphology", {
59
+ radius: "2.28571",
60
+ operator: "erode",
61
+ in: "SourceAlpha",
62
+ result: "effect1_dropShadow_11235_27025"
63
+ }, null), e("feOffset", {
64
+ dy: "2.28571"
65
+ }, null), e("feGaussianBlur", {
66
+ stdDeviation: "1.71429"
67
+ }, null), e("feComposite", {
68
+ in2: "hardAlpha",
69
+ operator: "out"
70
+ }, null), e("feColorMatrix", {
71
+ type: "matrix",
72
+ values: "0 0 0 0 0.169333 0 0 0 0 0.498049 0 0 0 0 1 0 0 0 0.2 0"
73
+ }, null), e("feBlend", {
74
+ mode: "normal",
75
+ in2: "BackgroundImageFix",
76
+ result: "effect1_dropShadow_11235_27025"
77
+ }, null), e("feColorMatrix", {
78
+ in: "SourceAlpha",
79
+ type: "matrix",
80
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
81
+ result: "hardAlpha"
82
+ }, null), e("feMorphology", {
83
+ radius: "1.71429",
84
+ operator: "erode",
85
+ in: "SourceAlpha",
86
+ result: "effect2_dropShadow_11235_27025"
87
+ }, null), e("feOffset", {
88
+ dy: "5.71429"
89
+ }, null), e("feGaussianBlur", {
90
+ stdDeviation: "4.28571"
91
+ }, null), e("feComposite", {
92
+ in2: "hardAlpha",
93
+ operator: "out"
94
+ }, null), e("feColorMatrix", {
95
+ type: "matrix",
96
+ values: "0 0 0 0 0.169333 0 0 0 0 0.498049 0 0 0 0 1 0 0 0 0.2 0"
97
+ }, null), e("feBlend", {
98
+ mode: "normal",
99
+ in2: "effect1_dropShadow_11235_27025",
100
+ result: "effect2_dropShadow_11235_27025"
101
+ }, null), e("feBlend", {
102
+ mode: "normal",
103
+ in: "SourceGraphic",
104
+ in2: "effect2_dropShadow_11235_27025",
105
+ result: "shape"
106
+ }, null)]), e("linearGradient", {
107
+ id: "paint0_linear_11235_27025",
108
+ x1: "6.85693",
109
+ y1: "1.14258",
110
+ x2: "38.8569",
111
+ y2: "33.1426",
112
+ gradientUnits: "userSpaceOnUse"
113
+ }, [e("stop", {
114
+ "stop-color": "#2B7FFF"
115
+ }, null), e("stop", {
116
+ offset: "1",
117
+ "stop-color": "#155DFC"
118
+ }, null)]), e("clipPath", {
119
+ id: "clip0_11235_27025"
120
+ }, [e("rect", {
121
+ width: "16",
122
+ height: "16",
123
+ fill: "white",
124
+ transform: "translate(14.8569 9.14258)"
125
+ }, null)]), e("clipPath", {
126
+ id: "clip1_11235_27025"
127
+ }, [e("rect", {
128
+ width: "16",
129
+ height: "16",
130
+ fill: "white",
131
+ transform: "translate(14.8569 9.14258)"
132
+ }, null)])])]);
133
+ }
134
+ });
135
+ export {
136
+ r as default
137
+ };
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,28 @@
1
+ import { defineComponent as r, createVNode as o } from "vue";
2
+ const t = /* @__PURE__ */ r({
3
+ name: "ArrowRightIcon",
4
+ render() {
5
+ return o("svg", {
6
+ width: "24",
7
+ height: "24",
8
+ viewBox: "0 0 24 24",
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg"
11
+ }, [o("path", {
12
+ d: "M19.0002 12L4.00024 12",
13
+ stroke: "currentColor",
14
+ "stroke-width": "1.5",
15
+ "stroke-linecap": "round",
16
+ "stroke-linejoin": "round"
17
+ }, null), o("path", {
18
+ d: "M15 7L19.2929 11.2929C19.6262 11.6262 19.7929 11.7929 19.7929 12C19.7929 12.2071 19.6262 12.3738 19.2929 12.7071L15 17",
19
+ stroke: "currentColor",
20
+ "stroke-width": "1.5",
21
+ "stroke-linecap": "round",
22
+ "stroke-linejoin": "round"
23
+ }, null)]);
24
+ }
25
+ });
26
+ export {
27
+ t as default
28
+ };
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,127 @@
1
+ import { defineComponent as l, createVNode as e } from "vue";
2
+ const r = /* @__PURE__ */ l({
3
+ name: "BlinkLogo",
4
+ render() {
5
+ return e("svg", {
6
+ width: "46",
7
+ height: "46",
8
+ viewBox: "0 0 46 46",
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg"
11
+ }, [e("g", {
12
+ filter: "url(#filter0_dd_11235_27592)"
13
+ }, [e("rect", {
14
+ x: "6.85718",
15
+ y: "1.14258",
16
+ width: "32",
17
+ height: "32",
18
+ rx: "8",
19
+ fill: "url(#paint0_linear_11235_27592)",
20
+ "shape-rendering": "crispEdges"
21
+ }, null), e("g", {
22
+ "clip-path": "url(#clip0_11235_27592)"
23
+ }, [e("g", {
24
+ "clip-path": "url(#clip1_11235_27592)"
25
+ }, [e("path", {
26
+ "fill-rule": "evenodd",
27
+ "clip-rule": "evenodd",
28
+ d: "M22.8571 12.3096C22.1502 12.3096 21.5842 12.5282 20.2343 13.0682L18.362 13.8171C17.6884 14.0865 17.2216 14.274 16.9191 14.4326C16.8895 14.4481 16.8629 14.4626 16.8389 14.4762C16.8629 14.4898 16.8895 14.5044 16.9191 14.5199C17.2216 14.6785 17.6884 14.8659 18.362 15.1354L20.2343 15.8843C21.5842 16.4243 22.1502 16.6429 22.8571 16.6429C23.564 16.6429 24.13 16.4243 25.4799 15.8843L27.3522 15.1354C28.0258 14.8659 28.4926 14.6785 28.7951 14.5199C28.8247 14.5044 28.8513 14.4898 28.8753 14.4762C28.8513 14.4626 28.8247 14.4481 28.7951 14.4326C28.4926 14.274 28.0258 14.0865 27.3522 13.8171L25.4799 13.0682C24.13 12.5282 23.564 12.3096 22.8571 12.3096ZM19.94 12.1088C21.1912 11.6082 21.9376 11.3096 22.8571 11.3096C23.7766 11.3096 24.523 11.6082 25.7741 12.1088C25.7996 12.119 25.8253 12.1293 25.8513 12.1397L27.7538 12.9007C28.3902 13.1552 28.9056 13.3614 29.2595 13.5469C29.4385 13.6408 29.612 13.7472 29.7458 13.8755C29.8832 14.0074 30.0238 14.2073 30.0238 14.4762C30.0238 14.7452 29.8832 14.9451 29.7458 15.0769C29.612 15.2053 29.4385 15.3117 29.2595 15.4056C28.9056 15.5911 28.3902 15.7972 27.7538 16.0518L25.8513 16.8128C25.8253 16.8232 25.7996 16.8334 25.7741 16.8436C24.523 17.3443 23.7766 17.6429 22.8571 17.6429C21.9376 17.6429 21.1912 17.3443 19.94 16.8436C19.9146 16.8334 19.8889 16.8232 19.8629 16.8128L17.9604 16.0518C17.324 15.7972 16.8086 15.5911 16.4547 15.4056C16.2757 15.3117 16.1022 15.2053 15.9684 15.0769C15.831 14.9451 15.6904 14.7452 15.6904 14.4762C15.6904 14.2073 15.831 14.0074 15.9684 13.8755C16.1022 13.7472 16.2757 13.6408 16.4547 13.5469C16.8086 13.3614 17.324 13.1552 17.9604 12.9007L19.8629 12.1397C19.8888 12.1293 19.9146 12.119 19.94 12.1088ZM16.5231 16.7696L16.5255 16.7717C16.5284 16.7743 16.5339 16.779 16.5419 16.7856C16.5579 16.799 16.584 16.8203 16.6203 16.8483C16.6928 16.9044 16.8057 16.9871 16.959 17.0865C17.2655 17.2853 17.7332 17.5505 18.362 17.8021L20.2343 18.551C21.5842 19.0909 22.1502 19.3096 22.8571 19.3096C23.564 19.3096 24.13 19.0909 25.4799 18.551L27.3522 17.8021C27.981 17.5505 28.4487 17.2853 28.7552 17.0865C28.9085 16.9871 29.0214 16.9044 29.0939 16.8483C29.1301 16.8203 29.1563 16.799 29.1723 16.7856C29.1803 16.779 29.1858 16.7743 29.1887 16.7717L29.1901 16.7705C29.1904 16.7702 29.1908 16.7699 29.1911 16.7696C29.3967 16.5864 29.7119 16.6039 29.896 16.809C30.0803 17.0146 30.0632 17.3307 29.8576 17.5151L29.5238 17.1429C29.8576 17.5151 29.8577 17.515 29.8576 17.5151L29.8567 17.5159L29.8555 17.517L29.8525 17.5197L29.8433 17.5277C29.8359 17.5341 29.8259 17.5427 29.8132 17.5533C29.7878 17.5744 29.7519 17.6037 29.7054 17.6396C29.6124 17.7115 29.4771 17.8103 29.2993 17.9255C28.944 18.156 28.4187 18.4525 27.7236 18.7305L25.8513 19.4795C25.8253 19.4898 25.7996 19.5001 25.7741 19.5103C24.523 20.0109 23.7766 20.3096 22.8571 20.3096C21.9376 20.3096 21.1912 20.0109 19.94 19.5103C19.9146 19.5001 19.8889 19.4898 19.8629 19.4795L17.9906 18.7305C17.2955 18.4525 16.7702 18.156 16.4148 17.9255C16.2371 17.8103 16.1018 17.7115 16.0088 17.6396C15.9623 17.6037 15.9264 17.5744 15.901 17.5533C15.8883 17.5427 15.8783 17.5341 15.8709 17.5277L15.8617 17.5197L15.8586 17.517L15.8575 17.5159L15.8568 17.5153C15.8567 17.5152 15.8566 17.5151 16.1904 17.1429L15.8568 17.5153C15.6512 17.3309 15.6338 17.0146 15.8182 16.809C16.0023 16.6039 16.3175 16.5864 16.5231 16.7696ZM29.1902 19.4371C29.1905 19.4368 29.1908 19.4365 29.1911 19.4362C29.3967 19.2531 29.7119 19.2706 29.896 19.4757C30.0803 19.6812 30.0632 19.9974 29.8576 20.1818L29.5238 19.8096C29.8576 20.1818 29.8577 20.1817 29.8576 20.1818L29.8567 20.1826L29.8555 20.1836L29.8525 20.1864L29.8433 20.1943C29.8359 20.2008 29.8259 20.2093 29.8132 20.2199C29.7878 20.2411 29.7519 20.2703 29.7054 20.3063C29.6124 20.3781 29.4771 20.4769 29.2993 20.5922C28.944 20.8227 28.4187 21.1191 27.7236 21.3972L25.8513 22.1461C25.8253 22.1565 25.7996 22.1668 25.7741 22.177C24.523 22.6776 23.7766 22.9762 22.8571 22.9762C21.9376 22.9762 21.1912 22.6776 19.94 22.177C19.9146 22.1668 19.8889 22.1565 19.8629 22.1461L17.9906 21.3972C17.2955 21.1191 16.7702 20.8227 16.4148 20.5922C16.2371 20.4769 16.1018 20.3781 16.0088 20.3063C15.9623 20.2703 15.9264 20.2411 15.901 20.2199C15.8883 20.2093 15.8783 20.2008 15.8709 20.1943L15.8617 20.1864L15.8586 20.1836L15.8575 20.1826L15.8568 20.1819C15.8567 20.1819 15.8566 20.1818 16.1904 19.8096L15.8568 20.1819C15.6512 19.9976 15.6338 19.6812 15.8182 19.4757C16.0023 19.2706 16.3175 19.2531 16.523 19.4362C16.5229 19.4361 16.5232 19.4364 16.523 19.4362C16.5232 19.4364 16.5237 19.4368 16.5238 19.4369C16.5237 19.4368 16.5239 19.437 16.5238 19.4369L16.5255 19.4384C16.5284 19.4409 16.5339 19.4456 16.5419 19.4523C16.5579 19.4657 16.584 19.487 16.6203 19.515C16.6928 19.571 16.8057 19.6538 16.959 19.7532C17.2655 19.952 17.7332 20.2172 18.362 20.4687L20.2343 21.2176C21.5842 21.7576 22.1502 21.9762 22.8571 21.9762C23.564 21.9762 24.13 21.7576 25.4799 21.2176L27.3522 20.4687C27.981 20.2172 28.4487 19.952 28.7552 19.7532C28.9085 19.6538 29.0214 19.571 29.0939 19.515C29.1301 19.487 29.1563 19.4657 29.1723 19.4523C29.1803 19.4456 29.1858 19.4409 29.1887 19.4384L29.1902 19.4371Z",
29
+ fill: "white"
30
+ }, null)])])]), e("defs", null, [e("filter", {
31
+ id: "filter0_dd_11235_27592",
32
+ x: "3.50475e-05",
33
+ y: "-0.000279188",
34
+ width: "45.7143",
35
+ height: "45.7143",
36
+ filterUnits: "userSpaceOnUse",
37
+ "color-interpolation-filters": "sRGB"
38
+ }, [e("feFlood", {
39
+ "flood-opacity": "0",
40
+ result: "BackgroundImageFix"
41
+ }, null), e("feColorMatrix", {
42
+ in: "SourceAlpha",
43
+ type: "matrix",
44
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
45
+ result: "hardAlpha"
46
+ }, null), e("feMorphology", {
47
+ radius: "2.28571",
48
+ operator: "erode",
49
+ in: "SourceAlpha",
50
+ result: "effect1_dropShadow_11235_27592"
51
+ }, null), e("feOffset", {
52
+ dy: "2.28571"
53
+ }, null), e("feGaussianBlur", {
54
+ stdDeviation: "1.71429"
55
+ }, null), e("feComposite", {
56
+ in2: "hardAlpha",
57
+ operator: "out"
58
+ }, null), e("feColorMatrix", {
59
+ type: "matrix",
60
+ values: "0 0 0 0 0.169333 0 0 0 0 0.498049 0 0 0 0 1 0 0 0 0.2 0"
61
+ }, null), e("feBlend", {
62
+ mode: "normal",
63
+ in2: "BackgroundImageFix",
64
+ result: "effect1_dropShadow_11235_27592"
65
+ }, null), e("feColorMatrix", {
66
+ in: "SourceAlpha",
67
+ type: "matrix",
68
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
69
+ result: "hardAlpha"
70
+ }, null), e("feMorphology", {
71
+ radius: "1.71429",
72
+ operator: "erode",
73
+ in: "SourceAlpha",
74
+ result: "effect2_dropShadow_11235_27592"
75
+ }, null), e("feOffset", {
76
+ dy: "5.71429"
77
+ }, null), e("feGaussianBlur", {
78
+ stdDeviation: "4.28571"
79
+ }, null), e("feComposite", {
80
+ in2: "hardAlpha",
81
+ operator: "out"
82
+ }, null), e("feColorMatrix", {
83
+ type: "matrix",
84
+ values: "0 0 0 0 0.169333 0 0 0 0 0.498049 0 0 0 0 1 0 0 0 0.2 0"
85
+ }, null), e("feBlend", {
86
+ mode: "normal",
87
+ in2: "effect1_dropShadow_11235_27592",
88
+ result: "effect2_dropShadow_11235_27592"
89
+ }, null), e("feBlend", {
90
+ mode: "normal",
91
+ in: "SourceGraphic",
92
+ in2: "effect2_dropShadow_11235_27592",
93
+ result: "shape"
94
+ }, null)]), e("linearGradient", {
95
+ id: "paint0_linear_11235_27592",
96
+ x1: "6.85718",
97
+ y1: "1.14258",
98
+ x2: "38.8572",
99
+ y2: "33.1426",
100
+ gradientUnits: "userSpaceOnUse"
101
+ }, [e("stop", {
102
+ "stop-color": "#2B7FFF"
103
+ }, null), e("stop", {
104
+ offset: "1",
105
+ "stop-color": "#155DFC"
106
+ }, null)]), e("clipPath", {
107
+ id: "clip0_11235_27592"
108
+ }, [e("rect", {
109
+ width: "16",
110
+ height: "16",
111
+ fill: "white",
112
+ transform: "translate(14.8572 9.14258)"
113
+ }, null)]), e("clipPath", {
114
+ id: "clip1_11235_27592"
115
+ }, [e("rect", {
116
+ x: "14.8572",
117
+ y: "9.14258",
118
+ width: "16",
119
+ height: "16",
120
+ rx: "3.33333",
121
+ fill: "white"
122
+ }, null)])])]);
123
+ }
124
+ });
125
+ export {
126
+ r as default
127
+ };
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,125 @@
1
+ import { defineComponent as l, createVNode as e } from "vue";
2
+ const o = /* @__PURE__ */ l({
3
+ name: "ForgeLogo",
4
+ render() {
5
+ return e("svg", {
6
+ width: "46",
7
+ height: "46",
8
+ viewBox: "0 0 46 46",
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg"
11
+ }, [e("g", {
12
+ filter: "url(#filter0_dd_11235_27610)"
13
+ }, [e("rect", {
14
+ x: "6.85718",
15
+ y: "1.14258",
16
+ width: "32",
17
+ height: "32",
18
+ rx: "8",
19
+ fill: "url(#paint0_linear_11235_27610)",
20
+ "shape-rendering": "crispEdges"
21
+ }, null), e("g", {
22
+ "clip-path": "url(#clip0_11235_27610)"
23
+ }, [e("g", {
24
+ "clip-path": "url(#clip1_11235_27610)"
25
+ }, [e("path", {
26
+ "fill-rule": "evenodd",
27
+ "clip-rule": "evenodd",
28
+ d: "M22.8189 9.97559H22.8954C24.4343 9.97558 25.6404 9.97557 26.5814 10.1021C27.5445 10.2316 28.3045 10.5018 28.9011 11.0983C29.4976 11.6949 29.7678 12.4549 29.8973 13.4181C30.0238 14.359 30.0238 15.5651 30.0238 17.104V17.1805C30.0238 17.4771 30.0238 17.7614 30.0229 18.0337C30.0243 18.0553 30.0242 18.0772 30.0227 18.0993C30.0183 19.2103 29.9975 20.1214 29.8973 20.8664C29.7678 21.8296 29.4976 22.5896 28.9011 23.1862C28.3045 23.7827 27.5445 24.0529 26.5814 24.1824C26.0895 24.2485 25.5253 24.2801 24.8789 24.2952C24.8176 24.3099 24.7525 24.3133 24.6863 24.3032C24.6793 24.3021 24.6723 24.3009 24.6654 24.2995C24.1309 24.3089 23.5426 24.3089 22.8954 24.3089H22.8189C21.28 24.3089 20.074 24.3089 19.133 24.1824C18.1698 24.0529 17.4098 23.7827 16.8133 23.1862C16.2167 22.5896 15.9465 21.8296 15.817 20.8664C15.6905 19.9255 15.6905 18.7194 15.6905 17.1805V17.104C15.6905 16.6999 15.6905 16.3187 15.6928 15.9593C15.6894 15.9242 15.6897 15.8894 15.6935 15.8556C15.701 14.8924 15.7269 14.088 15.817 13.4181C15.9465 12.4549 16.2167 11.6949 16.8133 11.0983C17.4098 10.5018 18.1698 10.2316 19.133 10.1021C20.074 9.97557 21.28 9.97558 22.8189 9.97559ZM16.6912 16.3447C16.6905 16.5973 16.6905 16.8629 16.6905 17.1423C16.6905 18.7277 16.6916 19.8665 16.8081 20.7332C16.9227 21.5855 17.1406 22.0993 17.5204 22.4791C17.9001 22.8588 18.4139 23.0768 19.2662 23.1913C20.1329 23.3079 21.2717 23.3089 22.8572 23.3089C23.3934 23.3089 23.8785 23.3088 24.3193 23.3041C24.6812 19.1757 21.0914 15.7129 16.9154 16.3125L16.6912 16.3447ZM25.3245 23.2808C25.7454 23.2636 26.1166 23.2359 26.4481 23.1913C27.3004 23.0768 27.8142 22.8588 28.194 22.4791C28.5737 22.0993 28.7917 21.5855 28.9062 20.7332C28.9864 20.1368 29.0119 19.4114 29.02 18.5003L28.8063 18.4707C27.1933 18.2474 25.7263 19.0054 24.9136 20.2329C25.2512 21.1783 25.4031 22.2093 25.3245 23.2808ZM24.4488 19.1913C23.021 16.5535 20.0539 14.8516 16.7733 15.3227L16.7001 15.3332C16.7127 14.629 16.7416 14.0458 16.8081 13.5513C16.9227 12.699 17.1406 12.1852 17.5204 11.8055C17.9001 11.4257 18.4139 11.2078 19.2662 11.0932C20.1329 10.9766 21.2717 10.9756 22.8572 10.9756C24.4426 10.9756 25.5815 10.9766 26.4481 11.0932C27.3004 11.2078 27.8142 11.4257 28.194 11.8055C28.5737 12.1852 28.7917 12.699 28.9062 13.5513C29.0228 14.418 29.0238 15.5568 29.0238 17.1423C29.0238 17.2611 29.0238 17.3774 29.0238 17.4913L28.9434 17.4802C27.1506 17.232 25.5037 17.9556 24.4488 19.1913ZM25.5238 13.6423C25.0636 13.6423 24.6905 14.0153 24.6905 14.4756C24.6905 14.9358 25.0636 15.3089 25.5238 15.3089C25.9841 15.3089 26.3572 14.9358 26.3572 14.4756C26.3572 14.0153 25.9841 13.6423 25.5238 13.6423ZM23.6905 14.4756C23.6905 13.4631 24.5113 12.6423 25.5238 12.6423C26.5363 12.6423 27.3572 13.4631 27.3572 14.4756C27.3572 15.4881 26.5363 16.3089 25.5238 16.3089C24.5113 16.3089 23.6905 15.4881 23.6905 14.4756Z",
29
+ fill: "white"
30
+ }, null)])])]), e("defs", null, [e("filter", {
31
+ id: "filter0_dd_11235_27610",
32
+ x: "3.50475e-05",
33
+ y: "-0.000279188",
34
+ width: "45.7143",
35
+ height: "45.7143",
36
+ filterUnits: "userSpaceOnUse",
37
+ "color-interpolation-filters": "sRGB"
38
+ }, [e("feFlood", {
39
+ "flood-opacity": "0",
40
+ result: "BackgroundImageFix"
41
+ }, null), e("feColorMatrix", {
42
+ in: "SourceAlpha",
43
+ type: "matrix",
44
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
45
+ result: "hardAlpha"
46
+ }, null), e("feMorphology", {
47
+ radius: "2.28571",
48
+ operator: "erode",
49
+ in: "SourceAlpha",
50
+ result: "effect1_dropShadow_11235_27610"
51
+ }, null), e("feOffset", {
52
+ dy: "2.28571"
53
+ }, null), e("feGaussianBlur", {
54
+ stdDeviation: "1.71429"
55
+ }, null), e("feComposite", {
56
+ in2: "hardAlpha",
57
+ operator: "out"
58
+ }, null), e("feColorMatrix", {
59
+ type: "matrix",
60
+ values: "0 0 0 0 0.460066 0 0 0 0 0.169333 0 0 0 0 1 0 0 0 0.2 0"
61
+ }, null), e("feBlend", {
62
+ mode: "normal",
63
+ in2: "BackgroundImageFix",
64
+ result: "effect1_dropShadow_11235_27610"
65
+ }, null), e("feColorMatrix", {
66
+ in: "SourceAlpha",
67
+ type: "matrix",
68
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
69
+ result: "hardAlpha"
70
+ }, null), e("feMorphology", {
71
+ radius: "1.71429",
72
+ operator: "erode",
73
+ in: "SourceAlpha",
74
+ result: "effect2_dropShadow_11235_27610"
75
+ }, null), e("feOffset", {
76
+ dy: "5.71429"
77
+ }, null), e("feGaussianBlur", {
78
+ stdDeviation: "4.28571"
79
+ }, null), e("feComposite", {
80
+ in2: "hardAlpha",
81
+ operator: "out"
82
+ }, null), e("feColorMatrix", {
83
+ type: "matrix",
84
+ values: "0 0 0 0 0.903089 0 0 0 0 0.169333 0 0 0 0 1 0 0 0 0.2 0"
85
+ }, null), e("feBlend", {
86
+ mode: "normal",
87
+ in2: "effect1_dropShadow_11235_27610",
88
+ result: "effect2_dropShadow_11235_27610"
89
+ }, null), e("feBlend", {
90
+ mode: "normal",
91
+ in: "SourceGraphic",
92
+ in2: "effect2_dropShadow_11235_27610",
93
+ result: "shape"
94
+ }, null)]), e("linearGradient", {
95
+ id: "paint0_linear_11235_27610",
96
+ x1: "6.85718",
97
+ y1: "1.14258",
98
+ x2: "38.8572",
99
+ y2: "33.1426",
100
+ gradientUnits: "userSpaceOnUse"
101
+ }, [e("stop", {
102
+ "stop-color": "#AD46FF"
103
+ }, null), e("stop", {
104
+ offset: "1",
105
+ "stop-color": "#9810FA"
106
+ }, null)]), e("clipPath", {
107
+ id: "clip0_11235_27610"
108
+ }, [e("rect", {
109
+ width: "16",
110
+ height: "16",
111
+ fill: "white",
112
+ transform: "translate(14.8572 9.14258)"
113
+ }, null)]), e("clipPath", {
114
+ id: "clip1_11235_27610"
115
+ }, [e("rect", {
116
+ width: "16",
117
+ height: "16",
118
+ fill: "white",
119
+ transform: "translate(14.8572 9.14258)"
120
+ }, null)])])]);
121
+ }
122
+ });
123
+ export {
124
+ o as default
125
+ };
@@ -0,0 +1,7 @@
1
+ export { default as AdsLogoIcon } from './ads';
2
+ export { default as ArrowRightIcon } from './arrow-right';
3
+ export { default as BlinkLogoIcon } from './blink';
4
+ export { default as ForgeLogoIcon } from './forge';
5
+ export { default as OmniLogoIcon } from './omni';
6
+ export { default as RoboLogoIcon } from './robo';
7
+ export { default as StudioLogoIcon } from './studio';
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ export default _default;