@aithe/aithe-ui 26.2.2 → 26.3.1

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 (1459) hide show
  1. package/README.md +216 -105
  2. package/dist/apps/admin/AGENTS.md +35 -0
  3. package/dist/apps/admin/app.d.ts +9 -0
  4. package/dist/apps/admin/app.d.ts.map +1 -0
  5. package/dist/apps/admin/app.js +12 -0
  6. package/dist/apps/admin/components/admin-app.d.ts +26 -0
  7. package/dist/apps/admin/components/admin-app.d.ts.map +1 -0
  8. package/dist/apps/admin/components/admin-app.js +83 -0
  9. package/dist/apps/admin/components/admin-layout.d.ts +29 -0
  10. package/dist/apps/admin/components/admin-layout.d.ts.map +1 -0
  11. package/dist/apps/admin/components/admin-layout.js +250 -0
  12. package/dist/apps/admin/datahub/auth.d.ts +21 -0
  13. package/dist/apps/admin/datahub/auth.d.ts.map +1 -0
  14. package/dist/apps/admin/datahub/auth.js +24 -0
  15. package/dist/apps/admin/datahub/dashboard.d.ts +16 -0
  16. package/dist/apps/admin/datahub/dashboard.d.ts.map +1 -0
  17. package/dist/apps/admin/datahub/dashboard.js +16 -0
  18. package/dist/apps/admin/datahub/index.d.ts +4 -0
  19. package/dist/apps/admin/datahub/index.d.ts.map +1 -0
  20. package/dist/apps/admin/datahub/index.js +42 -0
  21. package/dist/apps/admin/datahub/menu.d.ts +11 -0
  22. package/dist/apps/admin/datahub/menu.d.ts.map +1 -0
  23. package/dist/apps/admin/datahub/menu.js +16 -0
  24. package/dist/apps/admin/datahub/mock/auth.d.ts +10 -0
  25. package/dist/apps/admin/datahub/mock/auth.d.ts.map +1 -0
  26. package/dist/apps/admin/datahub/mock/auth.js +11 -0
  27. package/dist/apps/admin/datahub/mock/dashboard.d.ts +11 -0
  28. package/dist/apps/admin/datahub/mock/dashboard.d.ts.map +1 -0
  29. package/dist/apps/admin/datahub/mock/dashboard.js +10 -0
  30. package/dist/apps/admin/datahub/mock/menu.d.ts +26 -0
  31. package/dist/apps/admin/datahub/mock/menu.d.ts.map +1 -0
  32. package/dist/apps/admin/datahub/mock/menu.js +42 -0
  33. package/dist/apps/admin/i18n/de-DE.d.ts +6 -0
  34. package/dist/apps/admin/i18n/de-DE.d.ts.map +1 -0
  35. package/dist/apps/admin/i18n/de-DE.js +37 -0
  36. package/dist/apps/admin/i18n/en-US.d.ts +6 -0
  37. package/dist/apps/admin/i18n/en-US.d.ts.map +1 -0
  38. package/dist/apps/admin/i18n/en-US.js +37 -0
  39. package/dist/apps/admin/i18n/es-ES.d.ts +6 -0
  40. package/dist/apps/admin/i18n/es-ES.d.ts.map +1 -0
  41. package/dist/apps/admin/i18n/es-ES.js +38 -0
  42. package/dist/apps/admin/i18n/fr-FR.d.ts +6 -0
  43. package/dist/apps/admin/i18n/fr-FR.d.ts.map +1 -0
  44. package/dist/apps/admin/i18n/fr-FR.js +37 -0
  45. package/dist/apps/admin/i18n/index.d.ts +2 -0
  46. package/dist/apps/admin/i18n/index.d.ts.map +1 -0
  47. package/dist/apps/admin/i18n/index.js +27 -0
  48. package/dist/apps/admin/i18n/ja-JP.d.ts +6 -0
  49. package/dist/apps/admin/i18n/ja-JP.d.ts.map +1 -0
  50. package/dist/apps/admin/i18n/ja-JP.js +38 -0
  51. package/dist/apps/admin/i18n/ko-KR.d.ts +6 -0
  52. package/dist/apps/admin/i18n/ko-KR.d.ts.map +1 -0
  53. package/dist/apps/admin/i18n/ko-KR.js +37 -0
  54. package/dist/apps/admin/i18n/pt-BR.d.ts +6 -0
  55. package/dist/apps/admin/i18n/pt-BR.d.ts.map +1 -0
  56. package/dist/apps/admin/i18n/pt-BR.js +37 -0
  57. package/dist/apps/admin/i18n/zh-CN.d.ts +6 -0
  58. package/dist/apps/admin/i18n/zh-CN.d.ts.map +1 -0
  59. package/dist/apps/admin/i18n/zh-CN.js +37 -0
  60. package/dist/apps/admin/i18n/zh-HK.d.ts +6 -0
  61. package/dist/apps/admin/i18n/zh-HK.d.ts.map +1 -0
  62. package/dist/apps/admin/i18n/zh-HK.js +37 -0
  63. package/dist/apps/admin/i18n/zh-TW.d.ts +6 -0
  64. package/dist/apps/admin/i18n/zh-TW.d.ts.map +1 -0
  65. package/dist/apps/admin/i18n/zh-TW.js +37 -0
  66. package/dist/apps/admin/pages/dashboard-page.d.ts +33 -0
  67. package/dist/apps/admin/pages/dashboard-page.d.ts.map +1 -0
  68. package/dist/apps/admin/pages/dashboard-page.js +199 -0
  69. package/dist/apps/admin/pages/login-page.d.ts +25 -0
  70. package/dist/apps/admin/pages/login-page.d.ts.map +1 -0
  71. package/dist/apps/admin/pages/login-page.js +278 -0
  72. package/dist/apps/admin/pages/not-found-page.d.ts +14 -0
  73. package/dist/apps/admin/pages/not-found-page.d.ts.map +1 -0
  74. package/dist/apps/admin/pages/not-found-page.js +57 -0
  75. package/dist/apps/admin/pages/role-page.d.ts +14 -0
  76. package/dist/apps/admin/pages/role-page.d.ts.map +1 -0
  77. package/dist/apps/admin/pages/role-page.js +76 -0
  78. package/dist/apps/admin/pages/settings-page.d.ts +14 -0
  79. package/dist/apps/admin/pages/settings-page.d.ts.map +1 -0
  80. package/dist/apps/admin/pages/settings-page.js +95 -0
  81. package/dist/apps/admin/pages/user-page.d.ts +14 -0
  82. package/dist/apps/admin/pages/user-page.d.ts.map +1 -0
  83. package/dist/apps/admin/pages/user-page.js +76 -0
  84. package/dist/apps/admin/router/index.d.ts +6 -0
  85. package/dist/apps/admin/router/index.d.ts.map +1 -0
  86. package/dist/apps/admin/router/index.js +43 -0
  87. package/dist/apps/admin/standalone.d.ts.map +1 -0
  88. package/dist/apps/admin/standalone.js +1 -0
  89. package/dist/apps/admin/store/auth.d.ts +21 -0
  90. package/dist/apps/admin/store/auth.d.ts.map +1 -0
  91. package/dist/apps/admin/store/auth.js +42 -0
  92. package/dist/apps/api/AGENTS.md +30 -0
  93. package/dist/apps/api/app.d.ts +3 -7
  94. package/dist/apps/api/app.d.ts.map +1 -1
  95. package/dist/apps/api/app.js +82 -0
  96. package/dist/apps/api/demo-data.d.ts +1 -1
  97. package/dist/apps/api/demo-data.d.ts.map +1 -1
  98. package/dist/apps/api/demo-data.js +965 -0
  99. package/dist/apps/api/docs-viewer.d.ts +6 -3
  100. package/dist/apps/api/docs-viewer.d.ts.map +1 -1
  101. package/dist/apps/api/docs-viewer.js +684 -0
  102. package/dist/apps/api/i18n/de-DE.d.ts +6 -0
  103. package/dist/apps/api/i18n/de-DE.d.ts.map +1 -0
  104. package/dist/apps/api/i18n/de-DE.js +130 -0
  105. package/dist/apps/api/i18n/en-US.d.ts +1 -2
  106. package/dist/apps/api/i18n/en-US.d.ts.map +1 -1
  107. package/dist/apps/api/i18n/en-US.js +140 -0
  108. package/dist/apps/api/i18n/es-ES.d.ts +6 -0
  109. package/dist/apps/api/i18n/es-ES.d.ts.map +1 -0
  110. package/dist/apps/api/i18n/es-ES.js +130 -0
  111. package/dist/apps/api/i18n/fr-FR.d.ts +6 -0
  112. package/dist/apps/api/i18n/fr-FR.d.ts.map +1 -0
  113. package/dist/apps/api/i18n/fr-FR.js +130 -0
  114. package/dist/apps/api/i18n/index.d.ts.map +1 -1
  115. package/dist/apps/api/i18n/index.js +27 -0
  116. package/dist/apps/api/i18n/ja-JP.d.ts +6 -0
  117. package/dist/apps/api/i18n/ja-JP.d.ts.map +1 -0
  118. package/dist/apps/api/i18n/ja-JP.js +130 -0
  119. package/dist/apps/api/i18n/ko-KR.d.ts +6 -0
  120. package/dist/apps/api/i18n/ko-KR.d.ts.map +1 -0
  121. package/dist/apps/api/i18n/ko-KR.js +130 -0
  122. package/dist/apps/api/i18n/pt-BR.d.ts +6 -0
  123. package/dist/apps/api/i18n/pt-BR.d.ts.map +1 -0
  124. package/dist/apps/api/i18n/pt-BR.js +130 -0
  125. package/dist/apps/api/i18n/zh-CN.d.ts +1 -2
  126. package/dist/apps/api/i18n/zh-CN.d.ts.map +1 -1
  127. package/dist/apps/api/i18n/zh-CN.js +140 -0
  128. package/dist/apps/api/i18n/zh-HK.d.ts +6 -0
  129. package/dist/apps/api/i18n/zh-HK.d.ts.map +1 -0
  130. package/dist/apps/api/i18n/zh-HK.js +130 -0
  131. package/dist/apps/api/i18n/zh-TW.d.ts +6 -0
  132. package/dist/apps/api/i18n/zh-TW.d.ts.map +1 -0
  133. package/dist/apps/api/i18n/zh-TW.js +130 -0
  134. package/dist/apps/api/pages/docs.d.ts.map +1 -1
  135. package/dist/apps/api/pages/docs.js +367 -0
  136. package/dist/apps/api/standalone.d.ts.map +1 -1
  137. package/dist/apps/api/standalone.js +1 -0
  138. package/dist/apps/demo/AGENTS.md +48 -0
  139. package/dist/apps/demo/app.d.ts +4 -7
  140. package/dist/apps/demo/app.d.ts.map +1 -1
  141. package/dist/apps/demo/app.js +273 -0
  142. package/dist/apps/demo/editor.d.ts +6 -1
  143. package/dist/apps/demo/editor.d.ts.map +1 -1
  144. package/dist/apps/demo/editor.js +270 -0
  145. package/dist/apps/demo/helpers.d.ts.map +1 -1
  146. package/dist/apps/demo/helpers.js +7 -0
  147. package/dist/apps/demo/i18n/de-DE.d.ts +6 -0
  148. package/dist/apps/demo/i18n/de-DE.d.ts.map +1 -0
  149. package/dist/apps/demo/i18n/de-DE.js +269 -0
  150. package/dist/apps/demo/i18n/en-US.d.ts +1 -2
  151. package/dist/apps/demo/i18n/en-US.d.ts.map +1 -1
  152. package/dist/apps/demo/i18n/en-US.js +281 -0
  153. package/dist/apps/demo/i18n/es-ES.d.ts +6 -0
  154. package/dist/apps/demo/i18n/es-ES.d.ts.map +1 -0
  155. package/dist/apps/demo/i18n/es-ES.js +269 -0
  156. package/dist/apps/demo/i18n/fr-FR.d.ts +6 -0
  157. package/dist/apps/demo/i18n/fr-FR.d.ts.map +1 -0
  158. package/dist/apps/demo/i18n/fr-FR.js +269 -0
  159. package/dist/apps/demo/i18n/index.d.ts.map +1 -1
  160. package/dist/apps/demo/i18n/index.js +27 -0
  161. package/dist/apps/demo/i18n/ja-JP.d.ts +6 -0
  162. package/dist/apps/demo/i18n/ja-JP.d.ts.map +1 -0
  163. package/dist/apps/demo/i18n/ja-JP.js +269 -0
  164. package/dist/apps/demo/i18n/ko-KR.d.ts +6 -0
  165. package/dist/apps/demo/i18n/ko-KR.d.ts.map +1 -0
  166. package/dist/apps/demo/i18n/ko-KR.js +269 -0
  167. package/dist/apps/demo/i18n/pt-BR.d.ts +6 -0
  168. package/dist/apps/demo/i18n/pt-BR.d.ts.map +1 -0
  169. package/dist/apps/demo/i18n/pt-BR.js +269 -0
  170. package/dist/apps/demo/i18n/zh-CN.d.ts +1 -2
  171. package/dist/apps/demo/i18n/zh-CN.d.ts.map +1 -1
  172. package/dist/apps/demo/i18n/zh-CN.js +281 -0
  173. package/dist/apps/demo/i18n/zh-HK.d.ts +6 -0
  174. package/dist/apps/demo/i18n/zh-HK.d.ts.map +1 -0
  175. package/dist/apps/demo/i18n/zh-HK.js +269 -0
  176. package/dist/apps/demo/i18n/zh-TW.d.ts +6 -0
  177. package/dist/apps/demo/i18n/zh-TW.d.ts.map +1 -0
  178. package/dist/apps/demo/i18n/zh-TW.js +269 -0
  179. package/dist/apps/demo/pages/autoform.d.ts +3 -0
  180. package/dist/apps/demo/pages/autoform.d.ts.map +1 -0
  181. package/dist/apps/demo/pages/autoform.js +412 -0
  182. package/dist/apps/demo/pages/basic.d.ts.map +1 -1
  183. package/dist/apps/demo/pages/basic.js +157 -0
  184. package/dist/apps/demo/pages/code.d.ts +3 -0
  185. package/dist/apps/demo/pages/code.d.ts.map +1 -0
  186. package/dist/apps/demo/pages/code.js +1088 -0
  187. package/dist/apps/demo/pages/container.d.ts.map +1 -1
  188. package/dist/apps/demo/pages/container.js +42 -0
  189. package/dist/apps/demo/pages/dashboard.d.ts +3 -0
  190. package/dist/apps/demo/pages/dashboard.d.ts.map +1 -0
  191. package/dist/apps/demo/pages/dashboard.js +159 -0
  192. package/dist/apps/demo/pages/data.d.ts.map +1 -1
  193. package/dist/apps/demo/pages/data.js +327 -0
  194. package/dist/apps/demo/pages/display.d.ts.map +1 -1
  195. package/dist/apps/demo/pages/display.js +295 -0
  196. package/dist/apps/demo/pages/feedback.d.ts.map +1 -1
  197. package/dist/apps/demo/pages/feedback.js +94 -0
  198. package/dist/apps/demo/pages/form.d.ts.map +1 -1
  199. package/dist/apps/demo/pages/form.js +99 -0
  200. package/dist/apps/demo/pages/layout.d.ts.map +1 -1
  201. package/dist/apps/demo/pages/layout.js +74 -0
  202. package/dist/apps/demo/pages/navigation.d.ts.map +1 -1
  203. package/dist/apps/demo/pages/navigation.js +54 -0
  204. package/dist/apps/demo/pages/progress.d.ts.map +1 -1
  205. package/dist/apps/demo/pages/progress.js +42 -0
  206. package/dist/apps/demo/pages/theme.d.ts.map +1 -1
  207. package/dist/apps/demo/pages/theme.js +126 -0
  208. package/dist/apps/demo/standalone.d.ts.map +1 -1
  209. package/dist/apps/demo/standalone.js +1 -0
  210. package/dist/components/basic/AGENTS.md +35 -0
  211. package/dist/components/basic/avatar.d.ts +39 -2
  212. package/dist/components/basic/avatar.d.ts.map +1 -1
  213. package/dist/components/basic/avatar.js +168 -0
  214. package/dist/components/basic/badge.d.ts +21 -2
  215. package/dist/components/basic/badge.d.ts.map +1 -1
  216. package/dist/components/basic/badge.js +157 -0
  217. package/dist/components/basic/button-group.d.ts +14 -2
  218. package/dist/components/basic/button-group.d.ts.map +1 -1
  219. package/dist/components/basic/button-group.js +70 -0
  220. package/dist/components/basic/button.d.ts +43 -3
  221. package/dist/components/basic/button.d.ts.map +1 -1
  222. package/dist/components/basic/button.js +315 -0
  223. package/dist/components/basic/card.d.ts +27 -7
  224. package/dist/components/basic/card.d.ts.map +1 -1
  225. package/dist/components/basic/card.js +186 -0
  226. package/dist/components/basic/chip.d.ts +17 -4
  227. package/dist/components/basic/chip.d.ts.map +1 -1
  228. package/dist/components/basic/chip.js +103 -0
  229. package/dist/components/basic/divider.d.ts +14 -0
  230. package/dist/components/basic/divider.d.ts.map +1 -1
  231. package/dist/components/basic/divider.js +127 -0
  232. package/dist/components/basic/empty.d.ts +11 -2
  233. package/dist/components/basic/empty.d.ts.map +1 -1
  234. package/dist/components/basic/empty.js +72 -0
  235. package/dist/components/basic/icon.d.ts +81 -2
  236. package/dist/components/basic/icon.d.ts.map +1 -1
  237. package/dist/components/basic/icon.js +129 -0
  238. package/dist/components/basic/input.d.ts +36 -7
  239. package/dist/components/basic/input.d.ts.map +1 -1
  240. package/dist/components/basic/input.js +314 -0
  241. package/dist/components/basic/tag.d.ts +27 -2
  242. package/dist/components/basic/tag.d.ts.map +1 -1
  243. package/dist/components/basic/tag.js +248 -0
  244. package/dist/components/basic/textarea.d.ts +20 -5
  245. package/dist/components/basic/textarea.d.ts.map +1 -1
  246. package/dist/components/basic/textarea.js +130 -0
  247. package/dist/components/container/AGENTS.md +23 -0
  248. package/dist/components/container/callout.d.ts +14 -2
  249. package/dist/components/container/callout.d.ts.map +1 -1
  250. package/dist/components/container/callout.js +108 -0
  251. package/dist/components/container/details.d.ts +19 -3
  252. package/dist/components/container/details.d.ts.map +1 -1
  253. package/dist/components/container/details.js +117 -0
  254. package/dist/components/container/scroller.d.ts +19 -3
  255. package/dist/components/container/scroller.d.ts.map +1 -1
  256. package/dist/components/container/scroller.js +144 -0
  257. package/dist/components/container/split-panel.d.ts +23 -5
  258. package/dist/components/container/split-panel.d.ts.map +1 -1
  259. package/dist/components/container/split-panel.js +150 -0
  260. package/dist/components/data/AGENTS.md +34 -0
  261. package/dist/components/data/box-table.d.ts +53 -0
  262. package/dist/components/data/box-table.d.ts.map +1 -0
  263. package/dist/components/data/box-table.js +220 -0
  264. package/dist/components/data/dropdown.d.ts +59 -0
  265. package/dist/components/data/dropdown.d.ts.map +1 -0
  266. package/dist/components/data/dropdown.js +219 -0
  267. package/dist/components/data/metrics-group.d.ts +110 -0
  268. package/dist/components/data/metrics-group.d.ts.map +1 -0
  269. package/dist/components/data/metrics-group.js +180 -0
  270. package/dist/components/data/metrics.d.ts +131 -0
  271. package/dist/components/data/metrics.d.ts.map +1 -0
  272. package/dist/components/data/metrics.js +309 -0
  273. package/dist/components/data/pagination.d.ts +14 -2
  274. package/dist/components/data/pagination.d.ts.map +1 -1
  275. package/dist/components/data/pagination.js +119 -0
  276. package/dist/components/data/tab-pane.d.ts +69 -1
  277. package/dist/components/data/tab-pane.d.ts.map +1 -1
  278. package/dist/components/data/tab-pane.js +130 -0
  279. package/dist/components/data/table-column.d.ts +70 -0
  280. package/dist/components/data/table-column.d.ts.map +1 -0
  281. package/dist/components/data/table-column.js +123 -0
  282. package/dist/components/data/table.d.ts +145 -7
  283. package/dist/components/data/table.d.ts.map +1 -1
  284. package/dist/components/data/table.js +1210 -0
  285. package/dist/components/data/tabs.d.ts +81 -3
  286. package/dist/components/data/tabs.d.ts.map +1 -1
  287. package/dist/components/data/tabs.js +416 -0
  288. package/dist/components/data/timeline-item.d.ts +24 -0
  289. package/dist/components/data/timeline-item.d.ts.map +1 -0
  290. package/dist/components/data/timeline-item.js +127 -0
  291. package/dist/components/data/timeline.d.ts +49 -0
  292. package/dist/components/data/timeline.d.ts.map +1 -0
  293. package/dist/components/data/timeline.js +204 -0
  294. package/dist/components/data/tree-menu.d.ts +73 -0
  295. package/dist/components/data/tree-menu.d.ts.map +1 -0
  296. package/dist/components/data/tree-menu.js +482 -0
  297. package/dist/components/data/tree.d.ts +29 -2
  298. package/dist/components/data/tree.d.ts.map +1 -1
  299. package/dist/components/data/tree.js +269 -0
  300. package/dist/components/display/AGENTS.md +31 -0
  301. package/dist/components/display/animated-image.d.ts +14 -2
  302. package/dist/components/display/animated-image.d.ts.map +1 -1
  303. package/dist/components/display/animated-image.js +98 -0
  304. package/dist/components/display/brief-box.d.ts +42 -0
  305. package/dist/components/display/brief-box.d.ts.map +1 -0
  306. package/dist/components/display/brief-box.js +117 -0
  307. package/dist/components/display/carousel.d.ts +21 -3
  308. package/dist/components/display/carousel.d.ts.map +1 -1
  309. package/dist/components/display/carousel.js +223 -0
  310. package/dist/components/display/code-editor.d.ts +246 -0
  311. package/dist/components/display/code-editor.d.ts.map +1 -0
  312. package/dist/components/display/code-editor.js +976 -0
  313. package/dist/components/display/comparison.d.ts +14 -2
  314. package/dist/components/display/comparison.d.ts.map +1 -1
  315. package/dist/components/display/comparison.js +132 -0
  316. package/dist/components/display/desc-item.d.ts +48 -0
  317. package/dist/components/display/desc-item.d.ts.map +1 -0
  318. package/dist/components/display/desc-item.js +150 -0
  319. package/dist/components/display/desc.d.ts +64 -0
  320. package/dist/components/display/desc.d.ts.map +1 -0
  321. package/dist/components/display/desc.js +363 -0
  322. package/dist/components/display/detail-box.d.ts +51 -0
  323. package/dist/components/display/detail-box.d.ts.map +1 -0
  324. package/dist/components/display/detail-box.js +157 -0
  325. package/dist/components/display/label.d.ts +55 -0
  326. package/dist/components/display/label.d.ts.map +1 -0
  327. package/dist/components/display/label.js +166 -0
  328. package/dist/components/display/markdown-editor.d.ts +134 -0
  329. package/dist/components/display/markdown-editor.d.ts.map +1 -0
  330. package/dist/components/display/markdown-editor.js +319 -0
  331. package/dist/components/display/markdown.d.ts +53 -3
  332. package/dist/components/display/markdown.d.ts.map +1 -1
  333. package/dist/components/display/markdown.js +193 -0
  334. package/dist/components/display/mini-box.d.ts +31 -0
  335. package/dist/components/display/mini-box.d.ts.map +1 -0
  336. package/dist/components/display/mini-box.js +137 -0
  337. package/dist/components/display/profile.d.ts +18 -0
  338. package/dist/components/display/profile.d.ts.map +1 -0
  339. package/dist/components/display/profile.js +164 -0
  340. package/dist/components/feedback/AGENTS.md +31 -0
  341. package/dist/components/feedback/alert.d.ts +20 -3
  342. package/dist/components/feedback/alert.d.ts.map +1 -1
  343. package/dist/components/feedback/alert.js +150 -0
  344. package/dist/components/feedback/dialog.d.ts +27 -5
  345. package/dist/components/feedback/dialog.d.ts.map +1 -1
  346. package/dist/components/feedback/dialog.js +228 -0
  347. package/dist/components/feedback/drawer.d.ts +36 -6
  348. package/dist/components/feedback/drawer.d.ts.map +1 -1
  349. package/dist/components/feedback/drawer.js +338 -0
  350. package/dist/components/feedback/loading.d.ts +16 -2
  351. package/dist/components/feedback/loading.d.ts.map +1 -1
  352. package/dist/components/feedback/loading.js +130 -0
  353. package/dist/components/feedback/modal.d.ts +36 -6
  354. package/dist/components/feedback/modal.d.ts.map +1 -1
  355. package/dist/components/feedback/modal.js +303 -0
  356. package/dist/components/feedback/notification.d.ts +18 -3
  357. package/dist/components/feedback/notification.d.ts.map +1 -1
  358. package/dist/components/feedback/notification.js +170 -0
  359. package/dist/components/feedback/popover.d.ts +23 -4
  360. package/dist/components/feedback/popover.d.ts.map +1 -1
  361. package/dist/components/feedback/popover.js +124 -0
  362. package/dist/components/feedback/toast.d.ts +19 -2
  363. package/dist/components/feedback/toast.d.ts.map +1 -1
  364. package/dist/components/feedback/toast.js +142 -0
  365. package/dist/components/feedback/tooltip.d.ts +27 -4
  366. package/dist/components/feedback/tooltip.d.ts.map +1 -1
  367. package/dist/components/feedback/tooltip.js +153 -0
  368. package/dist/components/form/AGENTS.md +43 -0
  369. package/dist/components/form/autoform-item.d.ts +142 -0
  370. package/dist/components/form/autoform-item.d.ts.map +1 -0
  371. package/dist/components/form/autoform-item.js +761 -0
  372. package/dist/components/form/autoform.d.ts +100 -0
  373. package/dist/components/form/autoform.d.ts.map +1 -0
  374. package/dist/components/form/autoform.js +303 -0
  375. package/dist/components/form/checkbox-group.d.ts +24 -3
  376. package/dist/components/form/checkbox-group.d.ts.map +1 -1
  377. package/dist/components/form/checkbox-group.js +118 -0
  378. package/dist/components/form/checkbox.d.ts +22 -2
  379. package/dist/components/form/checkbox.d.ts.map +1 -1
  380. package/dist/components/form/checkbox.js +123 -0
  381. package/dist/components/form/color-picker.d.ts +19 -4
  382. package/dist/components/form/color-picker.d.ts.map +1 -1
  383. package/dist/components/form/color-picker.js +148 -0
  384. package/dist/components/form/combobox.d.ts +26 -3
  385. package/dist/components/form/combobox.d.ts.map +1 -1
  386. package/dist/components/form/combobox.js +282 -0
  387. package/dist/components/form/date-picker.d.ts +16 -1
  388. package/dist/components/form/date-picker.d.ts.map +1 -1
  389. package/dist/components/form/date-picker.js +123 -0
  390. package/dist/components/form/form-item.d.ts +20 -1
  391. package/dist/components/form/form-item.d.ts.map +1 -1
  392. package/dist/components/form/form-item.js +141 -0
  393. package/dist/components/form/form.d.ts +22 -3
  394. package/dist/components/form/form.d.ts.map +1 -1
  395. package/dist/components/form/form.js +94 -0
  396. package/dist/components/form/radio-group.d.ts +23 -3
  397. package/dist/components/form/radio-group.d.ts.map +1 -1
  398. package/dist/components/form/radio-group.js +106 -0
  399. package/dist/components/form/radio.d.ts +19 -1
  400. package/dist/components/form/radio.d.ts.map +1 -1
  401. package/dist/components/form/radio.js +110 -0
  402. package/dist/components/form/rate.d.ts +14 -1
  403. package/dist/components/form/rate.d.ts.map +1 -1
  404. package/dist/components/form/rate.js +116 -0
  405. package/dist/components/form/select.d.ts +47 -8
  406. package/dist/components/form/select.d.ts.map +1 -1
  407. package/dist/components/form/select.js +495 -0
  408. package/dist/components/form/slider.d.ts +17 -1
  409. package/dist/components/form/slider.d.ts.map +1 -1
  410. package/dist/components/form/slider.js +134 -0
  411. package/dist/components/form/switch.d.ts +16 -3
  412. package/dist/components/form/switch.d.ts.map +1 -1
  413. package/dist/components/form/switch.js +146 -0
  414. package/dist/components/form/time-picker.d.ts +14 -1
  415. package/dist/components/form/time-picker.d.ts.map +1 -1
  416. package/dist/components/form/time-picker.js +92 -0
  417. package/dist/components/form/transfer.d.ts +20 -2
  418. package/dist/components/form/transfer.d.ts.map +1 -1
  419. package/dist/components/form/transfer.js +273 -0
  420. package/dist/components/form/upload.d.ts +20 -2
  421. package/dist/components/form/upload.d.ts.map +1 -1
  422. package/dist/components/form/upload.js +138 -0
  423. package/dist/components/framework/AGENTS.md +27 -0
  424. package/dist/components/framework/body.d.ts +62 -0
  425. package/dist/components/framework/body.d.ts.map +1 -0
  426. package/dist/components/framework/body.js +333 -0
  427. package/dist/components/framework/dashboard-panel.d.ts +123 -0
  428. package/dist/components/framework/dashboard-panel.d.ts.map +1 -0
  429. package/dist/components/framework/dashboard-panel.js +519 -0
  430. package/dist/components/framework/dashboard.d.ts +182 -0
  431. package/dist/components/framework/dashboard.d.ts.map +1 -0
  432. package/dist/components/framework/dashboard.js +1084 -0
  433. package/dist/components/framework/header.d.ts +42 -0
  434. package/dist/components/framework/header.d.ts.map +1 -0
  435. package/dist/components/framework/header.js +237 -0
  436. package/dist/components/framework/log-panel.d.ts +32 -0
  437. package/dist/components/framework/log-panel.d.ts.map +1 -0
  438. package/dist/components/framework/log-panel.js +637 -0
  439. package/dist/components/framework/page.d.ts +46 -0
  440. package/dist/components/framework/page.d.ts.map +1 -0
  441. package/dist/components/framework/page.js +151 -0
  442. package/dist/components/framework/sidebar.d.ts +92 -0
  443. package/dist/components/framework/sidebar.d.ts.map +1 -0
  444. package/dist/components/framework/sidebar.js +477 -0
  445. package/dist/components/layout/AGENTS.md +27 -0
  446. package/dist/components/layout/affix.d.ts +15 -3
  447. package/dist/components/layout/affix.d.ts.map +1 -1
  448. package/dist/components/layout/affix.js +137 -0
  449. package/dist/components/layout/col.d.ts +16 -1
  450. package/dist/components/layout/col.d.ts.map +1 -1
  451. package/dist/components/layout/col.js +103 -0
  452. package/dist/components/layout/collapse-item.d.ts +20 -4
  453. package/dist/components/layout/collapse-item.d.ts.map +1 -1
  454. package/dist/components/layout/collapse-item.js +165 -0
  455. package/dist/components/layout/collapse.d.ts +17 -4
  456. package/dist/components/layout/collapse.d.ts.map +1 -1
  457. package/dist/components/layout/collapse.js +108 -0
  458. package/dist/components/layout/container.d.ts +16 -1
  459. package/dist/components/layout/container.d.ts.map +1 -1
  460. package/dist/components/layout/container.js +92 -0
  461. package/dist/components/layout/flex.d.ts +17 -1
  462. package/dist/components/layout/flex.d.ts.map +1 -1
  463. package/dist/components/layout/flex.js +100 -0
  464. package/dist/components/layout/row.d.ts +15 -1
  465. package/dist/components/layout/row.d.ts.map +1 -1
  466. package/dist/components/layout/row.js +103 -0
  467. package/dist/components/layout/space.d.ts +15 -1
  468. package/dist/components/layout/space.d.ts.map +1 -1
  469. package/dist/components/layout/space.js +85 -0
  470. package/dist/components/navigation/AGENTS.md +26 -0
  471. package/dist/components/navigation/back-top.d.ts +13 -4
  472. package/dist/components/navigation/back-top.d.ts.map +1 -1
  473. package/dist/components/navigation/back-top.js +127 -0
  474. package/dist/components/navigation/breadcrumb-item.d.ts +15 -0
  475. package/dist/components/navigation/breadcrumb-item.d.ts.map +1 -1
  476. package/dist/components/navigation/breadcrumb-item.js +108 -0
  477. package/dist/components/navigation/breadcrumb.d.ts +17 -2
  478. package/dist/components/navigation/breadcrumb.d.ts.map +1 -1
  479. package/dist/components/navigation/breadcrumb.js +70 -0
  480. package/dist/components/navigation/dropdown.d.ts +56 -0
  481. package/dist/components/navigation/dropdown.d.ts.map +1 -0
  482. package/dist/components/navigation/menu-item.d.ts +27 -4
  483. package/dist/components/navigation/menu-item.d.ts.map +1 -1
  484. package/dist/components/navigation/menu-item.js +181 -0
  485. package/dist/components/navigation/menu.d.ts +21 -4
  486. package/dist/components/navigation/menu.d.ts.map +1 -1
  487. package/dist/components/navigation/menu.js +126 -0
  488. package/dist/components/navigation/steps.d.ts +19 -2
  489. package/dist/components/navigation/steps.d.ts.map +1 -1
  490. package/dist/components/navigation/steps.js +183 -0
  491. package/dist/components/navigation/sub-menu.d.ts +27 -3
  492. package/dist/components/navigation/sub-menu.d.ts.map +1 -1
  493. package/dist/components/navigation/sub-menu.js +253 -0
  494. package/dist/components/progress/AGENTS.md +24 -0
  495. package/dist/components/progress/progress-bar.d.ts +11 -2
  496. package/dist/components/progress/progress-bar.d.ts.map +1 -1
  497. package/dist/components/progress/progress-bar.js +97 -0
  498. package/dist/components/progress/progress-ring.d.ts +12 -2
  499. package/dist/components/progress/progress-ring.d.ts.map +1 -1
  500. package/dist/components/progress/progress-ring.js +111 -0
  501. package/dist/components/progress/skeleton.d.ts +17 -2
  502. package/dist/components/progress/skeleton.d.ts.map +1 -1
  503. package/dist/components/progress/skeleton.js +108 -0
  504. package/dist/components/progress/spinner.d.ts +11 -2
  505. package/dist/components/progress/spinner.d.ts.map +1 -1
  506. package/dist/components/progress/spinner.js +129 -0
  507. package/dist/components/theme/AGENTS.md +27 -0
  508. package/dist/components/theme/locale-switch.d.ts +37 -0
  509. package/dist/components/theme/locale-switch.d.ts.map +1 -0
  510. package/dist/components/theme/locale-switch.js +241 -0
  511. package/dist/components/theme/shadow-picker.d.ts +28 -0
  512. package/dist/components/theme/shadow-picker.d.ts.map +1 -0
  513. package/dist/components/theme/shadow-picker.js +233 -0
  514. package/dist/components/theme/shape-picker.d.ts +28 -0
  515. package/dist/components/theme/shape-picker.d.ts.map +1 -0
  516. package/dist/components/theme/shape-picker.js +232 -0
  517. package/dist/components/theme/theme-picker.d.ts +43 -0
  518. package/dist/components/theme/theme-picker.d.ts.map +1 -0
  519. package/dist/components/theme/theme-picker.js +236 -0
  520. package/dist/components/theme/theme-preview.d.ts +38 -0
  521. package/dist/components/theme/theme-preview.d.ts.map +1 -0
  522. package/dist/components/theme/theme-preview.js +376 -0
  523. package/dist/components/theme/theme-switch.d.ts +34 -0
  524. package/dist/components/theme/theme-switch.d.ts.map +1 -0
  525. package/dist/components/theme/theme-switch.js +318 -0
  526. package/dist/components/theme/typo-picker.d.ts +28 -0
  527. package/dist/components/theme/typo-picker.d.ts.map +1 -0
  528. package/dist/components/theme/typo-picker.js +219 -0
  529. package/dist/core/AGENTS.md +43 -0
  530. package/dist/core/aithe-element.d.ts +62 -1
  531. package/dist/core/aithe-element.d.ts.map +1 -1
  532. package/dist/core/aithe-element.js +135 -0
  533. package/dist/core/aithe-widget.d.ts +20 -0
  534. package/dist/core/aithe-widget.d.ts.map +1 -0
  535. package/dist/core/aithe-widget.js +30 -0
  536. package/dist/core/anchored-overlay.d.ts +29 -0
  537. package/dist/core/anchored-overlay.d.ts.map +1 -1
  538. package/dist/core/anchored-overlay.js +111 -0
  539. package/dist/core/autoform/autoform.d.ts +95 -0
  540. package/dist/core/autoform/autoform.d.ts.map +1 -0
  541. package/dist/core/autoform/autoform.js +79 -0
  542. package/dist/core/autoform/condition.d.ts +45 -0
  543. package/dist/core/autoform/condition.d.ts.map +1 -0
  544. package/dist/core/autoform/condition.js +170 -0
  545. package/dist/core/autoform/index.d.ts +11 -0
  546. package/dist/core/autoform/index.d.ts.map +1 -0
  547. package/dist/core/autoform/index.js +8 -0
  548. package/dist/core/autoform/types.d.ts +44 -0
  549. package/dist/core/autoform/types.d.ts.map +1 -0
  550. package/dist/core/autoform/types.js +7 -0
  551. package/dist/core/datahub/config/strategy.d.ts +25 -0
  552. package/dist/core/datahub/config/strategy.d.ts.map +1 -0
  553. package/dist/core/datahub/config/strategy.js +50 -0
  554. package/dist/core/datahub/core/adapter/fetch-adapter.d.ts +39 -0
  555. package/dist/core/datahub/core/adapter/fetch-adapter.d.ts.map +1 -0
  556. package/dist/core/datahub/core/adapter/fetch-adapter.js +118 -0
  557. package/dist/core/datahub/core/adapter/index.d.ts +8 -0
  558. package/dist/core/datahub/core/adapter/index.d.ts.map +1 -0
  559. package/dist/core/datahub/core/adapter/index.js +7 -0
  560. package/dist/core/datahub/core/adapter/mock-adapter.d.ts +31 -0
  561. package/dist/core/datahub/core/adapter/mock-adapter.d.ts.map +1 -0
  562. package/dist/core/datahub/core/adapter/mock-adapter.js +58 -0
  563. package/dist/core/datahub/core/api-styles.d.ts +25 -0
  564. package/dist/core/datahub/core/api-styles.d.ts.map +1 -0
  565. package/dist/core/datahub/core/api-styles.js +131 -0
  566. package/dist/core/datahub/core/datahub-core.d.ts +166 -0
  567. package/dist/core/datahub/core/datahub-core.d.ts.map +1 -0
  568. package/dist/core/datahub/core/datahub-core.js +441 -0
  569. package/dist/core/datahub/core/index.d.ts +8 -0
  570. package/dist/core/datahub/core/index.d.ts.map +1 -0
  571. package/dist/core/datahub/core/index.js +7 -0
  572. package/dist/core/datahub/index.d.ts +47 -0
  573. package/dist/core/datahub/index.d.ts.map +1 -0
  574. package/dist/core/datahub/index.js +50 -0
  575. package/dist/core/datahub/types.d.ts +232 -0
  576. package/dist/core/datahub/types.d.ts.map +1 -0
  577. package/dist/core/datahub/types.js +31 -0
  578. package/dist/core/datahub/utils/cache.d.ts +35 -0
  579. package/dist/core/datahub/utils/cache.d.ts.map +1 -0
  580. package/dist/core/datahub/utils/cache.js +55 -0
  581. package/dist/core/datahub/utils/common.d.ts +21 -0
  582. package/dist/core/datahub/utils/common.d.ts.map +1 -0
  583. package/dist/core/datahub/utils/common.js +23 -0
  584. package/dist/core/datahub/utils/dedup.d.ts +28 -0
  585. package/dist/core/datahub/utils/dedup.d.ts.map +1 -0
  586. package/dist/core/datahub/utils/dedup.js +52 -0
  587. package/dist/core/datahub/utils/idempotent.d.ts +31 -0
  588. package/dist/core/datahub/utils/idempotent.d.ts.map +1 -0
  589. package/dist/core/datahub/utils/idempotent.js +61 -0
  590. package/dist/core/datahub/utils/is-query.d.ts +39 -0
  591. package/dist/core/datahub/utils/is-query.d.ts.map +1 -0
  592. package/dist/core/datahub/utils/is-query.js +53 -0
  593. package/dist/core/datahub/utils/loading.d.ts +50 -0
  594. package/dist/core/datahub/utils/loading.d.ts.map +1 -0
  595. package/dist/core/datahub/utils/loading.js +78 -0
  596. package/dist/core/filter/__tests__/index.test.d.ts +2 -0
  597. package/dist/core/filter/__tests__/index.test.d.ts.map +1 -0
  598. package/dist/core/filter/__tests__/index.test.js +230 -0
  599. package/dist/core/filter/builtins.d.ts +60 -0
  600. package/dist/core/filter/builtins.d.ts.map +1 -0
  601. package/dist/core/filter/builtins.js +172 -0
  602. package/dist/core/filter/factory.d.ts +54 -0
  603. package/dist/core/filter/factory.d.ts.map +1 -0
  604. package/dist/core/filter/factory.js +96 -0
  605. package/dist/core/filter/index.d.ts +11 -0
  606. package/dist/core/filter/index.d.ts.map +1 -0
  607. package/dist/core/filter/index.js +9 -0
  608. package/dist/core/filter/types.d.ts +12 -0
  609. package/dist/core/filter/types.d.ts.map +1 -0
  610. package/dist/core/filter/types.js +1 -0
  611. package/dist/core/floating.d.ts +31 -0
  612. package/dist/core/floating.d.ts.map +1 -1
  613. package/dist/core/floating.js +132 -0
  614. package/dist/core/highlight/index.d.ts +44 -0
  615. package/dist/core/highlight/index.d.ts.map +1 -0
  616. package/dist/core/highlight/index.js +43 -0
  617. package/dist/core/highlight/lang-bash.d.ts +2 -0
  618. package/dist/core/highlight/lang-bash.d.ts.map +1 -0
  619. package/dist/core/highlight/lang-bash.js +27 -0
  620. package/dist/core/highlight/lang-c.d.ts +2 -0
  621. package/dist/core/highlight/lang-c.d.ts.map +1 -0
  622. package/dist/core/highlight/lang-c.js +27 -0
  623. package/dist/core/highlight/lang-cmake.d.ts +2 -0
  624. package/dist/core/highlight/lang-cmake.d.ts.map +1 -0
  625. package/dist/core/highlight/lang-cmake.js +27 -0
  626. package/dist/core/highlight/lang-cpp.d.ts +2 -0
  627. package/dist/core/highlight/lang-cpp.d.ts.map +1 -0
  628. package/dist/core/highlight/lang-cpp.js +27 -0
  629. package/dist/core/highlight/lang-css.d.ts +2 -0
  630. package/dist/core/highlight/lang-css.d.ts.map +1 -0
  631. package/dist/core/highlight/lang-css.js +24 -0
  632. package/dist/core/highlight/lang-dart.d.ts +2 -0
  633. package/dist/core/highlight/lang-dart.d.ts.map +1 -0
  634. package/dist/core/highlight/lang-dart.js +27 -0
  635. package/dist/core/highlight/lang-dockerfile.d.ts +2 -0
  636. package/dist/core/highlight/lang-dockerfile.d.ts.map +1 -0
  637. package/dist/core/highlight/lang-dockerfile.js +16 -0
  638. package/dist/core/highlight/lang-fsharp.d.ts +2 -0
  639. package/dist/core/highlight/lang-fsharp.d.ts.map +1 -0
  640. package/dist/core/highlight/lang-fsharp.js +23 -0
  641. package/dist/core/highlight/lang-go.d.ts +2 -0
  642. package/dist/core/highlight/lang-go.d.ts.map +1 -0
  643. package/dist/core/highlight/lang-go.js +22 -0
  644. package/dist/core/highlight/lang-html.d.ts +2 -0
  645. package/dist/core/highlight/lang-html.d.ts.map +1 -0
  646. package/dist/core/highlight/lang-html.js +12 -0
  647. package/dist/core/highlight/lang-java.d.ts +2 -0
  648. package/dist/core/highlight/lang-java.d.ts.map +1 -0
  649. package/dist/core/highlight/lang-java.js +22 -0
  650. package/dist/core/highlight/lang-javascript.d.ts +2 -0
  651. package/dist/core/highlight/lang-javascript.d.ts.map +1 -0
  652. package/dist/core/highlight/lang-javascript.js +26 -0
  653. package/dist/core/highlight/lang-json.d.ts +2 -0
  654. package/dist/core/highlight/lang-json.d.ts.map +1 -0
  655. package/dist/core/highlight/lang-json.js +13 -0
  656. package/dist/core/highlight/lang-jsonline.d.ts +2 -0
  657. package/dist/core/highlight/lang-jsonline.d.ts.map +1 -0
  658. package/dist/core/highlight/lang-jsonline.js +13 -0
  659. package/dist/core/highlight/lang-jsx.d.ts +2 -0
  660. package/dist/core/highlight/lang-jsx.d.ts.map +1 -0
  661. package/dist/core/highlight/lang-jsx.js +30 -0
  662. package/dist/core/highlight/lang-kotlin.d.ts +2 -0
  663. package/dist/core/highlight/lang-kotlin.d.ts.map +1 -0
  664. package/dist/core/highlight/lang-kotlin.js +27 -0
  665. package/dist/core/highlight/lang-latex.d.ts +2 -0
  666. package/dist/core/highlight/lang-latex.d.ts.map +1 -0
  667. package/dist/core/highlight/lang-latex.js +22 -0
  668. package/dist/core/highlight/lang-lua.d.ts +2 -0
  669. package/dist/core/highlight/lang-lua.d.ts.map +1 -0
  670. package/dist/core/highlight/lang-lua.js +26 -0
  671. package/dist/core/highlight/lang-makefile.d.ts +2 -0
  672. package/dist/core/highlight/lang-makefile.d.ts.map +1 -0
  673. package/dist/core/highlight/lang-makefile.js +22 -0
  674. package/dist/core/highlight/lang-markdown.d.ts +2 -0
  675. package/dist/core/highlight/lang-markdown.d.ts.map +1 -0
  676. package/dist/core/highlight/lang-markdown.js +18 -0
  677. package/dist/core/highlight/lang-objectivec.d.ts +2 -0
  678. package/dist/core/highlight/lang-objectivec.d.ts.map +1 -0
  679. package/dist/core/highlight/lang-objectivec.js +24 -0
  680. package/dist/core/highlight/lang-perl.d.ts +2 -0
  681. package/dist/core/highlight/lang-perl.d.ts.map +1 -0
  682. package/dist/core/highlight/lang-perl.js +30 -0
  683. package/dist/core/highlight/lang-powershell.d.ts +2 -0
  684. package/dist/core/highlight/lang-powershell.d.ts.map +1 -0
  685. package/dist/core/highlight/lang-powershell.js +23 -0
  686. package/dist/core/highlight/lang-python.d.ts +2 -0
  687. package/dist/core/highlight/lang-python.d.ts.map +1 -0
  688. package/dist/core/highlight/lang-python.js +27 -0
  689. package/dist/core/highlight/lang-r.d.ts +2 -0
  690. package/dist/core/highlight/lang-r.d.ts.map +1 -0
  691. package/dist/core/highlight/lang-r.js +21 -0
  692. package/dist/core/highlight/lang-ruby.d.ts +2 -0
  693. package/dist/core/highlight/lang-ruby.d.ts.map +1 -0
  694. package/dist/core/highlight/lang-ruby.js +29 -0
  695. package/dist/core/highlight/lang-rust.d.ts +2 -0
  696. package/dist/core/highlight/lang-rust.d.ts.map +1 -0
  697. package/dist/core/highlight/lang-rust.js +24 -0
  698. package/dist/core/highlight/lang-scala.d.ts +2 -0
  699. package/dist/core/highlight/lang-scala.d.ts.map +1 -0
  700. package/dist/core/highlight/lang-scala.js +26 -0
  701. package/dist/core/highlight/lang-sql.d.ts +2 -0
  702. package/dist/core/highlight/lang-sql.d.ts.map +1 -0
  703. package/dist/core/highlight/lang-sql.js +21 -0
  704. package/dist/core/highlight/lang-svelte.d.ts +2 -0
  705. package/dist/core/highlight/lang-svelte.d.ts.map +1 -0
  706. package/dist/core/highlight/lang-svelte.js +27 -0
  707. package/dist/core/highlight/lang-swift.d.ts +2 -0
  708. package/dist/core/highlight/lang-swift.d.ts.map +1 -0
  709. package/dist/core/highlight/lang-swift.js +28 -0
  710. package/dist/core/highlight/lang-tsx.d.ts +2 -0
  711. package/dist/core/highlight/lang-tsx.d.ts.map +1 -0
  712. package/dist/core/highlight/lang-tsx.js +35 -0
  713. package/dist/core/highlight/lang-typescript.d.ts +2 -0
  714. package/dist/core/highlight/lang-typescript.d.ts.map +1 -0
  715. package/dist/core/highlight/lang-typescript.js +31 -0
  716. package/dist/core/highlight/lang-vue.d.ts +2 -0
  717. package/dist/core/highlight/lang-vue.d.ts.map +1 -0
  718. package/dist/core/highlight/lang-vue.js +29 -0
  719. package/dist/core/highlight/lang-wasm.d.ts +2 -0
  720. package/dist/core/highlight/lang-wasm.d.ts.map +1 -0
  721. package/dist/core/highlight/lang-wasm.js +22 -0
  722. package/dist/core/highlight/lang-xml.d.ts +2 -0
  723. package/dist/core/highlight/lang-xml.d.ts.map +1 -0
  724. package/dist/core/highlight/lang-xml.js +12 -0
  725. package/dist/core/highlight/lang-yaml.d.ts +2 -0
  726. package/dist/core/highlight/lang-yaml.d.ts.map +1 -0
  727. package/dist/core/highlight/lang-yaml.js +14 -0
  728. package/dist/core/highlight/registry.d.ts +22 -0
  729. package/dist/core/highlight/registry.d.ts.map +1 -0
  730. package/dist/core/highlight/registry.js +99 -0
  731. package/dist/core/logger/LoggerCore.d.ts +186 -0
  732. package/dist/core/logger/LoggerCore.d.ts.map +1 -0
  733. package/dist/core/logger/LoggerCore.js +626 -0
  734. package/dist/core/logger/index.d.ts +12 -0
  735. package/dist/core/logger/index.d.ts.map +1 -0
  736. package/dist/core/logger/index.js +10 -0
  737. package/dist/core/logger/types.d.ts +106 -0
  738. package/dist/core/logger/types.d.ts.map +1 -0
  739. package/dist/core/logger/types.js +29 -0
  740. package/dist/core/markdown/index.d.ts +22 -0
  741. package/dist/core/markdown/index.d.ts.map +1 -0
  742. package/dist/core/markdown/index.js +20 -0
  743. package/dist/core/markdown/parser.d.ts +69 -0
  744. package/dist/core/markdown/parser.d.ts.map +1 -0
  745. package/dist/core/markdown/parser.js +376 -0
  746. package/dist/core/markdown/plugins.d.ts +113 -0
  747. package/dist/core/markdown/plugins.d.ts.map +1 -0
  748. package/dist/core/markdown/plugins.js +608 -0
  749. package/dist/core/markdown/types.d.ts +155 -0
  750. package/dist/core/markdown/types.d.ts.map +1 -0
  751. package/dist/core/markdown/types.js +7 -0
  752. package/dist/core/router/index.d.ts +113 -0
  753. package/dist/core/router/index.d.ts.map +1 -0
  754. package/dist/core/router/index.js +244 -0
  755. package/dist/core/styles.d.ts +11 -2
  756. package/dist/core/styles.d.ts.map +1 -1
  757. package/dist/core/styles.js +44 -0
  758. package/dist/core/types.d.ts +153 -16
  759. package/dist/core/types.d.ts.map +1 -1
  760. package/dist/core/types.js +1 -0
  761. package/dist/index.d.ts +45 -7
  762. package/dist/index.d.ts.map +1 -1
  763. package/dist/index.js +17381 -6235
  764. package/dist/index.js.map +1 -1
  765. package/dist/index.umd.js +8294 -3937
  766. package/dist/index.umd.js.map +1 -1
  767. package/dist/styles/AGENTS.md +36 -0
  768. package/dist/styles/aithe-ui.d.ts +113 -0
  769. package/dist/styles/aithe-ui.d.ts.map +1 -0
  770. package/dist/styles/aithe-ui.js +185 -0
  771. package/dist/styles/global.css.d.ts +3 -1
  772. package/dist/styles/global.css.d.ts.map +1 -1
  773. package/dist/styles/global.css.js +119 -0
  774. package/dist/styles/i18n/index.d.ts +66 -0
  775. package/dist/styles/i18n/index.d.ts.map +1 -0
  776. package/dist/styles/i18n/index.js +206 -0
  777. package/dist/styles/i18n/locales/de-DE.d.ts +6 -0
  778. package/dist/styles/i18n/locales/de-DE.d.ts.map +1 -0
  779. package/dist/styles/i18n/locales/de-DE.js +148 -0
  780. package/dist/styles/i18n/locales/en-US.d.ts +6 -0
  781. package/dist/styles/i18n/locales/en-US.d.ts.map +1 -0
  782. package/dist/styles/i18n/locales/en-US.js +157 -0
  783. package/dist/styles/i18n/locales/es-ES.d.ts +6 -0
  784. package/dist/styles/i18n/locales/es-ES.d.ts.map +1 -0
  785. package/dist/styles/i18n/locales/es-ES.js +148 -0
  786. package/dist/styles/i18n/locales/fr-FR.d.ts +6 -0
  787. package/dist/styles/i18n/locales/fr-FR.d.ts.map +1 -0
  788. package/dist/styles/i18n/locales/fr-FR.js +148 -0
  789. package/dist/styles/i18n/locales/index.d.ts +15 -0
  790. package/dist/styles/i18n/locales/index.d.ts.map +1 -0
  791. package/dist/styles/i18n/locales/index.js +14 -0
  792. package/dist/styles/i18n/locales/ja-JP.d.ts +6 -0
  793. package/dist/styles/i18n/locales/ja-JP.d.ts.map +1 -0
  794. package/dist/styles/i18n/locales/ja-JP.js +148 -0
  795. package/dist/styles/i18n/locales/ko-KR.d.ts +6 -0
  796. package/dist/styles/i18n/locales/ko-KR.d.ts.map +1 -0
  797. package/dist/styles/i18n/locales/ko-KR.js +148 -0
  798. package/dist/styles/i18n/locales/pt-BR.d.ts +6 -0
  799. package/dist/styles/i18n/locales/pt-BR.d.ts.map +1 -0
  800. package/dist/styles/i18n/locales/pt-BR.js +148 -0
  801. package/dist/styles/i18n/locales/zh-CN.d.ts +6 -0
  802. package/dist/styles/i18n/locales/zh-CN.d.ts.map +1 -0
  803. package/dist/styles/i18n/locales/zh-CN.js +157 -0
  804. package/dist/styles/i18n/locales/zh-HK.d.ts +6 -0
  805. package/dist/styles/i18n/locales/zh-HK.d.ts.map +1 -0
  806. package/dist/styles/i18n/locales/zh-HK.js +148 -0
  807. package/dist/styles/i18n/locales/zh-TW.d.ts +6 -0
  808. package/dist/styles/i18n/locales/zh-TW.d.ts.map +1 -0
  809. package/dist/styles/i18n/locales/zh-TW.js +148 -0
  810. package/dist/styles/layout/index.d.ts +44 -0
  811. package/dist/styles/layout/index.d.ts.map +1 -0
  812. package/dist/styles/layout/index.js +88 -0
  813. package/dist/styles/mixins.d.ts +4 -0
  814. package/dist/styles/mixins.d.ts.map +1 -1
  815. package/dist/styles/mixins.js +43 -0
  816. package/dist/styles/shadow/cyber.d.ts +9 -0
  817. package/dist/styles/shadow/cyber.d.ts.map +1 -0
  818. package/dist/styles/shadow/cyber.js +19 -0
  819. package/dist/styles/shadow/deep.d.ts +9 -0
  820. package/dist/styles/shadow/deep.d.ts.map +1 -0
  821. package/dist/styles/shadow/deep.js +19 -0
  822. package/dist/styles/shadow/diffuse.d.ts +9 -0
  823. package/dist/styles/shadow/diffuse.d.ts.map +1 -0
  824. package/dist/styles/shadow/diffuse.js +19 -0
  825. package/dist/styles/shadow/flat.d.ts +9 -0
  826. package/dist/styles/shadow/flat.d.ts.map +1 -0
  827. package/dist/styles/shadow/flat.js +19 -0
  828. package/dist/styles/shadow/glassmorphism.d.ts +9 -0
  829. package/dist/styles/shadow/glassmorphism.d.ts.map +1 -0
  830. package/dist/styles/shadow/glassmorphism.js +19 -0
  831. package/dist/styles/shadow/index.d.ts +30 -0
  832. package/dist/styles/shadow/index.d.ts.map +1 -0
  833. package/dist/styles/shadow/index.js +129 -0
  834. package/dist/styles/shadow/neumorphism.d.ts +11 -0
  835. package/dist/styles/shadow/neumorphism.d.ts.map +1 -0
  836. package/dist/styles/shadow/neumorphism.js +21 -0
  837. package/dist/styles/shadow/retro.d.ts +9 -0
  838. package/dist/styles/shadow/retro.d.ts.map +1 -0
  839. package/dist/styles/shadow/retro.js +19 -0
  840. package/dist/styles/shadow/sharp-business.d.ts +9 -0
  841. package/dist/styles/shadow/sharp-business.d.ts.map +1 -0
  842. package/dist/styles/shadow/sharp-business.js +19 -0
  843. package/dist/styles/shadow/skeuomorphic.d.ts +11 -0
  844. package/dist/styles/shadow/skeuomorphic.d.ts.map +1 -0
  845. package/dist/styles/shadow/skeuomorphic.js +21 -0
  846. package/dist/styles/shape/chamfer.d.ts +9 -0
  847. package/dist/styles/shape/chamfer.d.ts.map +1 -0
  848. package/dist/styles/shape/chamfer.js +19 -0
  849. package/dist/styles/shape/circle.d.ts +9 -0
  850. package/dist/styles/shape/circle.d.ts.map +1 -0
  851. package/dist/styles/shape/circle.js +19 -0
  852. package/dist/styles/shape/index.d.ts +66 -0
  853. package/dist/styles/shape/index.d.ts.map +1 -0
  854. package/dist/styles/shape/index.js +174 -0
  855. package/dist/styles/shape/organic.d.ts +9 -0
  856. package/dist/styles/shape/organic.d.ts.map +1 -0
  857. package/dist/styles/shape/organic.js +19 -0
  858. package/dist/styles/shape/pill.d.ts +9 -0
  859. package/dist/styles/shape/pill.d.ts.map +1 -0
  860. package/dist/styles/shape/pill.js +19 -0
  861. package/dist/styles/shape/rounded.d.ts +11 -0
  862. package/dist/styles/shape/rounded.d.ts.map +1 -0
  863. package/dist/styles/shape/rounded.js +21 -0
  864. package/dist/styles/shape/rounder.d.ts +9 -0
  865. package/dist/styles/shape/rounder.d.ts.map +1 -0
  866. package/dist/styles/shape/rounder.js +19 -0
  867. package/dist/styles/shape/sharp.d.ts +9 -0
  868. package/dist/styles/shape/sharp.d.ts.map +1 -0
  869. package/dist/styles/shape/sharp.js +19 -0
  870. package/dist/styles/shape/smooth.d.ts +9 -0
  871. package/dist/styles/shape/smooth.d.ts.map +1 -0
  872. package/dist/styles/shape/smooth.js +19 -0
  873. package/dist/styles/theme/aliyun.d.ts +10 -0
  874. package/dist/styles/theme/aliyun.d.ts.map +1 -0
  875. package/dist/styles/theme/aliyun.js +102 -0
  876. package/dist/styles/theme/amber.d.ts +9 -0
  877. package/dist/styles/theme/amber.d.ts.map +1 -0
  878. package/dist/styles/theme/amber.js +101 -0
  879. package/dist/styles/theme/blue.d.ts +8 -1
  880. package/dist/styles/theme/blue.d.ts.map +1 -1
  881. package/dist/styles/theme/blue.js +101 -0
  882. package/dist/styles/theme/charcoal.d.ts +9 -0
  883. package/dist/styles/theme/charcoal.d.ts.map +1 -0
  884. package/dist/styles/theme/charcoal.js +106 -0
  885. package/dist/styles/theme/cyan.d.ts +9 -0
  886. package/dist/styles/theme/cyan.d.ts.map +1 -0
  887. package/dist/styles/theme/cyan.js +96 -0
  888. package/dist/styles/theme/dark.d.ts +8 -1
  889. package/dist/styles/theme/dark.d.ts.map +1 -1
  890. package/dist/styles/theme/dark.js +106 -0
  891. package/dist/styles/theme/ebony.d.ts +9 -0
  892. package/dist/styles/theme/ebony.d.ts.map +1 -0
  893. package/dist/styles/theme/ebony.js +106 -0
  894. package/dist/styles/theme/festive.d.ts +9 -0
  895. package/dist/styles/theme/festive.d.ts.map +1 -0
  896. package/dist/styles/theme/festive.js +101 -0
  897. package/dist/styles/theme/graphite.d.ts +9 -0
  898. package/dist/styles/theme/graphite.d.ts.map +1 -0
  899. package/dist/styles/theme/graphite.js +106 -0
  900. package/dist/styles/theme/gray.d.ts +8 -1
  901. package/dist/styles/theme/gray.d.ts.map +1 -1
  902. package/dist/styles/theme/gray.js +101 -0
  903. package/dist/styles/theme/huawei.d.ts +10 -0
  904. package/dist/styles/theme/huawei.d.ts.map +1 -0
  905. package/dist/styles/theme/huawei.js +102 -0
  906. package/dist/styles/theme/index.d.ts +85 -0
  907. package/dist/styles/theme/index.d.ts.map +1 -0
  908. package/dist/styles/theme/index.js +276 -0
  909. package/dist/styles/theme/indigo.d.ts +9 -0
  910. package/dist/styles/theme/indigo.d.ts.map +1 -0
  911. package/dist/styles/theme/indigo.js +101 -0
  912. package/dist/styles/theme/ink.d.ts +9 -0
  913. package/dist/styles/theme/ink.d.ts.map +1 -0
  914. package/dist/styles/theme/ink.js +106 -0
  915. package/dist/styles/theme/light.d.ts +8 -1
  916. package/dist/styles/theme/light.d.ts.map +1 -1
  917. package/dist/styles/theme/light.js +102 -0
  918. package/dist/styles/theme/midnight.d.ts +9 -0
  919. package/dist/styles/theme/midnight.d.ts.map +1 -0
  920. package/dist/styles/theme/midnight.js +106 -0
  921. package/dist/styles/theme/navy.d.ts +9 -0
  922. package/dist/styles/theme/navy.d.ts.map +1 -0
  923. package/dist/styles/theme/navy.js +106 -0
  924. package/dist/styles/theme/obsidian.d.ts +9 -0
  925. package/dist/styles/theme/obsidian.d.ts.map +1 -0
  926. package/dist/styles/theme/obsidian.js +106 -0
  927. package/dist/styles/theme/onyx.d.ts +9 -0
  928. package/dist/styles/theme/onyx.d.ts.map +1 -0
  929. package/dist/styles/theme/onyx.js +106 -0
  930. package/dist/styles/theme/orange.d.ts +9 -0
  931. package/dist/styles/theme/orange.d.ts.map +1 -0
  932. package/dist/styles/theme/orange.js +101 -0
  933. package/dist/styles/theme/pink.d.ts +9 -0
  934. package/dist/styles/theme/pink.d.ts.map +1 -0
  935. package/dist/styles/theme/pink.js +101 -0
  936. package/dist/styles/theme/purple.d.ts +9 -0
  937. package/dist/styles/theme/purple.d.ts.map +1 -0
  938. package/dist/styles/theme/purple.js +101 -0
  939. package/dist/styles/theme/raisin.d.ts +9 -0
  940. package/dist/styles/theme/raisin.d.ts.map +1 -0
  941. package/dist/styles/theme/raisin.js +106 -0
  942. package/dist/styles/theme/slate.d.ts +9 -0
  943. package/dist/styles/theme/slate.d.ts.map +1 -0
  944. package/dist/styles/theme/slate.js +106 -0
  945. package/dist/styles/theme/teal.d.ts +9 -0
  946. package/dist/styles/theme/teal.d.ts.map +1 -0
  947. package/dist/styles/theme/teal.js +101 -0
  948. package/dist/styles/theme/tianyi.d.ts +10 -0
  949. package/dist/styles/theme/tianyi.d.ts.map +1 -0
  950. package/dist/styles/theme/tianyi.js +102 -0
  951. package/dist/styles/types.d.ts +56 -0
  952. package/dist/styles/types.d.ts.map +1 -0
  953. package/dist/styles/types.js +1 -0
  954. package/dist/styles/typo/business.d.ts +2 -0
  955. package/dist/styles/typo/business.d.ts.map +1 -0
  956. package/dist/styles/typo/business.js +34 -0
  957. package/dist/styles/typo/compact.d.ts +2 -0
  958. package/dist/styles/typo/compact.d.ts.map +1 -0
  959. package/dist/styles/typo/compact.js +34 -0
  960. package/dist/styles/typo/index.d.ts +22 -0
  961. package/dist/styles/typo/index.d.ts.map +1 -0
  962. package/dist/styles/typo/index.js +99 -0
  963. package/dist/styles/typo/luxury.d.ts +2 -0
  964. package/dist/styles/typo/luxury.d.ts.map +1 -0
  965. package/dist/styles/typo/luxury.js +34 -0
  966. package/dist/styles/typo/minimal.d.ts +2 -0
  967. package/dist/styles/typo/minimal.d.ts.map +1 -0
  968. package/dist/styles/typo/minimal.js +34 -0
  969. package/dist/types/AGENTS.md +25 -0
  970. package/dist/types/index.d.ts +1 -2
  971. package/dist/types/index.d.ts.map +1 -1
  972. package/dist/types/index.js +2 -0
  973. package/dist/utils/AGENTS.md +28 -0
  974. package/dist/utils/dom.d.ts +22 -0
  975. package/dist/utils/dom.d.ts.map +1 -1
  976. package/dist/utils/dom.js +51 -0
  977. package/dist/utils/events.d.ts +11 -1
  978. package/dist/utils/events.d.ts.map +1 -1
  979. package/dist/utils/events.js +32 -0
  980. package/dist/utils/icon.d.ts +16 -0
  981. package/dist/utils/icon.d.ts.map +1 -0
  982. package/dist/utils/icon.js +176 -0
  983. package/dist/utils/index.d.ts +1 -2
  984. package/dist/utils/index.d.ts.map +1 -1
  985. package/dist/utils/index.js +4 -0
  986. package/dist/utils/utils.d.ts +47 -0
  987. package/dist/utils/utils.d.ts.map +1 -0
  988. package/dist/utils/utils.js +89 -0
  989. package/dist/utils/validation.d.ts +26 -0
  990. package/dist/utils/validation.d.ts.map +1 -1
  991. package/dist/utils/validation.js +52 -0
  992. package/docs/api/AGENTS.md +61 -0
  993. package/docs/api/basic/avatar.md +22 -2
  994. package/docs/api/basic/button.md +51 -23
  995. package/docs/api/basic/icon.md +64 -8
  996. package/docs/api/basic/tag.md +24 -17
  997. package/docs/api/data/box-table.md +73 -0
  998. package/docs/api/data/dropdown.md +74 -0
  999. package/docs/api/data/metrics-group.md +120 -0
  1000. package/docs/api/data/metrics.md +155 -0
  1001. package/docs/api/data/table-column.md +38 -24
  1002. package/docs/api/data/table.md +159 -45
  1003. package/docs/api/data/tabs.md +46 -1
  1004. package/docs/api/data/timeline.md +4 -4
  1005. package/docs/api/data/tree-menu.md +112 -20
  1006. package/docs/api/data/tree.md +41 -24
  1007. package/docs/api/display/box.md +66 -0
  1008. package/docs/api/display/brief-box.md +73 -0
  1009. package/docs/api/display/code-editor.md +275 -0
  1010. package/docs/api/display/desc-item.md +57 -0
  1011. package/docs/api/display/desc.md +204 -0
  1012. package/docs/api/display/detail-box.md +75 -0
  1013. package/docs/api/display/label.md +85 -0
  1014. package/docs/api/display/markdown-editor.md +110 -0
  1015. package/docs/api/display/markdown.md +72 -14
  1016. package/docs/api/display/mini-box.md +100 -0
  1017. package/docs/api/display/profile.md +92 -0
  1018. package/docs/api/feedback/popover.md +10 -10
  1019. package/docs/api/feedback/tooltip.md +14 -14
  1020. package/docs/api/form/autoform-item.md +100 -0
  1021. package/docs/api/form/autoform.md +271 -0
  1022. package/docs/api/form/combobox.md +2 -2
  1023. package/docs/api/form/select.md +28 -28
  1024. package/docs/api/form/switch.md +2 -2
  1025. package/docs/api/framework/body.md +72 -0
  1026. package/docs/api/framework/dashboard-panel.md +127 -0
  1027. package/docs/api/framework/dashboard.md +140 -0
  1028. package/docs/api/framework/header.md +112 -0
  1029. package/docs/api/framework/log-panel.md +46 -0
  1030. package/docs/api/framework/page.md +144 -0
  1031. package/docs/api/framework/sidebar.md +181 -0
  1032. package/docs/api/navigation/menu-item.md +24 -16
  1033. package/docs/api/navigation/sub-menu.md +29 -18
  1034. package/docs/api/summary.md +143 -95
  1035. package/docs/api/theme/locale-switch.md +65 -11
  1036. package/docs/api/theme/shadow-picker.md +103 -0
  1037. package/docs/api/theme/shape-picker.md +94 -0
  1038. package/docs/api/theme/theme-picker.md +32 -14
  1039. package/docs/api/theme/theme-preview.md +58 -11
  1040. package/docs/api/theme/theme-switch.md +93 -0
  1041. package/docs/api/theme/typo-picker.md +238 -0
  1042. package/docs/api/utils/icon.md +192 -0
  1043. package/docs/autoform.md +339 -0
  1044. package/docs/changelog/AGENTS.md +23 -0
  1045. package/docs/changelog/CHANGELOG.md +166 -1
  1046. package/docs/changelog/VERSION_26.2.3.md +877 -0
  1047. package/docs/changelog/VERSION_26.3.1.md +966 -0
  1048. package/docs/datahub.md +832 -0
  1049. package/docs/filter.md +332 -0
  1050. package/docs/framework-integration.md +169 -21
  1051. package/docs/guide.md +835 -7
  1052. package/docs/highlight.md +363 -0
  1053. package/docs/i18n.md +148 -82
  1054. package/docs/issue/AGENTS.md +22 -0
  1055. package/docs/issue/issue_26.2.3.1.md +45 -0
  1056. package/docs/issue/issue_26.2.3.10.md +81 -0
  1057. package/docs/issue/issue_26.2.3.11.md +87 -0
  1058. package/docs/issue/issue_26.2.3.12.md +100 -0
  1059. package/docs/issue/issue_26.2.3.13.md +72 -0
  1060. package/docs/issue/issue_26.2.3.14.md +130 -0
  1061. package/docs/issue/issue_26.2.3.15.md +208 -0
  1062. package/docs/issue/issue_26.2.3.16.md +88 -0
  1063. package/docs/issue/issue_26.2.3.2.md +83 -0
  1064. package/docs/issue/issue_26.2.3.3.md +131 -0
  1065. package/docs/issue/issue_26.2.3.4.md +24 -0
  1066. package/docs/issue/issue_26.2.3.5.md +54 -0
  1067. package/docs/issue/issue_26.2.3.6.md +84 -0
  1068. package/docs/issue/issue_26.2.3.7.md +61 -0
  1069. package/docs/issue/issue_26.2.3.8.md +90 -0
  1070. package/docs/issue/issue_26.2.3.9.md +76 -0
  1071. package/docs/issue/issue_26.3.1.0.md +84 -0
  1072. package/docs/issue/issue_26.3.1.1.md +72 -0
  1073. package/docs/issue/issue_26.3.1.2.md +75 -0
  1074. package/docs/issue/issue_26.3.1.3.md +78 -0
  1075. package/docs/issue/issue_26.3.1.4.md +113 -0
  1076. package/docs/issue/issue_26.3.1.5.md +142 -0
  1077. package/docs/issue/issue_26.3.1.6.md +100 -0
  1078. package/docs/issue/issue_26.3.1.7.md +78 -0
  1079. package/docs/markdown.md +432 -0
  1080. package/docs/quickstart.md +163 -29
  1081. package/docs/theming.md +421 -32
  1082. package/package.json +17 -11
  1083. package/dist/apps/api/index.html +0 -13
  1084. package/dist/apps/demo/i18n/en.d.ts +0 -3
  1085. package/dist/apps/demo/i18n/en.d.ts.map +0 -1
  1086. package/dist/apps/demo/i18n/zh.d.ts +0 -3
  1087. package/dist/apps/demo/i18n/zh.d.ts.map +0 -1
  1088. package/dist/apps/demo/index.html +0 -13
  1089. package/dist/base/aithe-element.d.ts +0 -29
  1090. package/dist/base/aithe-element.d.ts.map +0 -1
  1091. package/dist/components/avatar/avatar.d.ts +0 -13
  1092. package/dist/components/avatar/avatar.d.ts.map +0 -1
  1093. package/dist/components/badge/badge.d.ts +0 -14
  1094. package/dist/components/badge/badge.d.ts.map +0 -1
  1095. package/dist/components/breadcrumb/breadcrumb-item.d.ts +0 -11
  1096. package/dist/components/breadcrumb/breadcrumb-item.d.ts.map +0 -1
  1097. package/dist/components/breadcrumb/breadcrumb.d.ts +0 -9
  1098. package/dist/components/breadcrumb/breadcrumb.d.ts.map +0 -1
  1099. package/dist/components/button/button.d.ts +0 -13
  1100. package/dist/components/button/button.d.ts.map +0 -1
  1101. package/dist/components/card/card.d.ts +0 -18
  1102. package/dist/components/card/card.d.ts.map +0 -1
  1103. package/dist/components/checkbox/checkbox-group.d.ts +0 -17
  1104. package/dist/components/checkbox/checkbox-group.d.ts.map +0 -1
  1105. package/dist/components/checkbox/checkbox.d.ts +0 -15
  1106. package/dist/components/checkbox/checkbox.d.ts.map +0 -1
  1107. package/dist/components/data/tab-group.d.ts +0 -8
  1108. package/dist/components/data/tab-group.d.ts.map +0 -1
  1109. package/dist/components/divider/divider.d.ts +0 -9
  1110. package/dist/components/divider/divider.d.ts.map +0 -1
  1111. package/dist/components/drawer/drawer.d.ts +0 -29
  1112. package/dist/components/drawer/drawer.d.ts.map +0 -1
  1113. package/dist/components/dropdown/dropdown.d.ts +0 -34
  1114. package/dist/components/dropdown/dropdown.d.ts.map +0 -1
  1115. package/dist/components/feedback/dropdown.d.ts +0 -34
  1116. package/dist/components/feedback/dropdown.d.ts.map +0 -1
  1117. package/dist/components/input/input.d.ts +0 -28
  1118. package/dist/components/input/input.d.ts.map +0 -1
  1119. package/dist/components/layout/page-container.d.ts +0 -11
  1120. package/dist/components/layout/page-container.d.ts.map +0 -1
  1121. package/dist/components/layout/page.d.ts +0 -8
  1122. package/dist/components/layout/page.d.ts.map +0 -1
  1123. package/dist/components/layout/timeline-item.d.ts +0 -12
  1124. package/dist/components/layout/timeline-item.d.ts.map +0 -1
  1125. package/dist/components/layout/timeline.d.ts +0 -12
  1126. package/dist/components/layout/timeline.d.ts.map +0 -1
  1127. package/dist/components/modal/modal.d.ts +0 -28
  1128. package/dist/components/modal/modal.d.ts.map +0 -1
  1129. package/dist/components/popover/popover.d.ts +0 -16
  1130. package/dist/components/popover/popover.d.ts.map +0 -1
  1131. package/dist/components/radio/radio-group.d.ts +0 -15
  1132. package/dist/components/radio/radio-group.d.ts.map +0 -1
  1133. package/dist/components/radio/radio.d.ts +0 -12
  1134. package/dist/components/radio/radio.d.ts.map +0 -1
  1135. package/dist/components/select/select.d.ts +0 -35
  1136. package/dist/components/select/select.d.ts.map +0 -1
  1137. package/dist/components/switch/switch.d.ts +0 -12
  1138. package/dist/components/switch/switch.d.ts.map +0 -1
  1139. package/dist/components/table/table.d.ts +0 -30
  1140. package/dist/components/table/table.d.ts.map +0 -1
  1141. package/dist/components/tabs/tab-pane.d.ts +0 -11
  1142. package/dist/components/tabs/tab-pane.d.ts.map +0 -1
  1143. package/dist/components/tabs/tabs.d.ts +0 -15
  1144. package/dist/components/tabs/tabs.d.ts.map +0 -1
  1145. package/dist/components/tag/tag.d.ts +0 -14
  1146. package/dist/components/tag/tag.d.ts.map +0 -1
  1147. package/dist/components/tooltip/tooltip.d.ts +0 -18
  1148. package/dist/components/tooltip/tooltip.d.ts.map +0 -1
  1149. package/dist/core/utils.d.ts +0 -6
  1150. package/dist/core/utils.d.ts.map +0 -1
  1151. package/dist/demo/app.d.ts +0 -19
  1152. package/dist/demo/app.d.ts.map +0 -1
  1153. package/dist/demo/editor.d.ts +0 -28
  1154. package/dist/demo/editor.d.ts.map +0 -1
  1155. package/dist/demo/helpers.d.ts +0 -2
  1156. package/dist/demo/helpers.d.ts.map +0 -1
  1157. package/dist/demo/pages/basic.d.ts +0 -3
  1158. package/dist/demo/pages/basic.d.ts.map +0 -1
  1159. package/dist/demo/pages/container.d.ts +0 -3
  1160. package/dist/demo/pages/container.d.ts.map +0 -1
  1161. package/dist/demo/pages/data.d.ts +0 -3
  1162. package/dist/demo/pages/data.d.ts.map +0 -1
  1163. package/dist/demo/pages/display.d.ts +0 -3
  1164. package/dist/demo/pages/display.d.ts.map +0 -1
  1165. package/dist/demo/pages/feedback.d.ts +0 -3
  1166. package/dist/demo/pages/feedback.d.ts.map +0 -1
  1167. package/dist/demo/pages/form.d.ts +0 -3
  1168. package/dist/demo/pages/form.d.ts.map +0 -1
  1169. package/dist/demo/pages/layout.d.ts +0 -3
  1170. package/dist/demo/pages/layout.d.ts.map +0 -1
  1171. package/dist/demo/pages/navigation.d.ts +0 -3
  1172. package/dist/demo/pages/navigation.d.ts.map +0 -1
  1173. package/dist/demo/pages/progress.d.ts +0 -3
  1174. package/dist/demo/pages/progress.d.ts.map +0 -1
  1175. package/dist/demo/standalone.d.ts.map +0 -1
  1176. package/dist/demo-page.d.ts +0 -2
  1177. package/dist/demo-page.d.ts.map +0 -1
  1178. package/dist/demo.d.ts +0 -2
  1179. package/dist/demo.d.ts.map +0 -1
  1180. package/dist/global.d.ts +0 -5
  1181. package/dist/global.d.ts.map +0 -1
  1182. package/dist/index-jd7NIlfT.js +0 -9798
  1183. package/dist/index-jd7NIlfT.js.map +0 -1
  1184. package/dist/index2.js +0 -9892
  1185. package/dist/index2.js.map +0 -1
  1186. package/dist/src/base/aithe-element.d.ts +0 -59
  1187. package/dist/src/base/aithe-element.d.ts.map +0 -1
  1188. package/dist/src/components/basic/avatar.d.ts +0 -31
  1189. package/dist/src/components/basic/avatar.d.ts.map +0 -1
  1190. package/dist/src/components/basic/badge.d.ts +0 -33
  1191. package/dist/src/components/basic/badge.d.ts.map +0 -1
  1192. package/dist/src/components/basic/button-group.d.ts +0 -23
  1193. package/dist/src/components/basic/button-group.d.ts.map +0 -1
  1194. package/dist/src/components/basic/button.d.ts +0 -44
  1195. package/dist/src/components/basic/button.d.ts.map +0 -1
  1196. package/dist/src/components/basic/card.d.ts +0 -38
  1197. package/dist/src/components/basic/card.d.ts.map +0 -1
  1198. package/dist/src/components/basic/chip.d.ts +0 -26
  1199. package/dist/src/components/basic/chip.d.ts.map +0 -1
  1200. package/dist/src/components/basic/divider.d.ts +0 -23
  1201. package/dist/src/components/basic/divider.d.ts.map +0 -1
  1202. package/dist/src/components/basic/empty.d.ts +0 -21
  1203. package/dist/src/components/basic/empty.d.ts.map +0 -1
  1204. package/dist/src/components/basic/icon.d.ts +0 -60
  1205. package/dist/src/components/basic/icon.d.ts.map +0 -1
  1206. package/dist/src/components/basic/input.d.ts +0 -57
  1207. package/dist/src/components/basic/input.d.ts.map +0 -1
  1208. package/dist/src/components/basic/tag.d.ts +0 -34
  1209. package/dist/src/components/basic/tag.d.ts.map +0 -1
  1210. package/dist/src/components/basic/textarea.d.ts +0 -34
  1211. package/dist/src/components/basic/textarea.d.ts.map +0 -1
  1212. package/dist/src/components/container/callout.d.ts +0 -23
  1213. package/dist/src/components/container/callout.d.ts.map +0 -1
  1214. package/dist/src/components/container/details.d.ts +0 -29
  1215. package/dist/src/components/container/details.d.ts.map +0 -1
  1216. package/dist/src/components/container/scroller.d.ts +0 -32
  1217. package/dist/src/components/container/scroller.d.ts.map +0 -1
  1218. package/dist/src/components/container/split-panel.d.ts +0 -38
  1219. package/dist/src/components/container/split-panel.d.ts.map +0 -1
  1220. package/dist/src/components/data/pagination.d.ts +0 -27
  1221. package/dist/src/components/data/pagination.d.ts.map +0 -1
  1222. package/dist/src/components/data/tab-pane.d.ts +0 -33
  1223. package/dist/src/components/data/tab-pane.d.ts.map +0 -1
  1224. package/dist/src/components/data/table-column.d.ts +0 -46
  1225. package/dist/src/components/data/table-column.d.ts.map +0 -1
  1226. package/dist/src/components/data/table.d.ts +0 -88
  1227. package/dist/src/components/data/table.d.ts.map +0 -1
  1228. package/dist/src/components/data/tabs.d.ts +0 -38
  1229. package/dist/src/components/data/tabs.d.ts.map +0 -1
  1230. package/dist/src/components/data/timeline-item.d.ts +0 -24
  1231. package/dist/src/components/data/timeline-item.d.ts.map +0 -1
  1232. package/dist/src/components/data/timeline.d.ts +0 -49
  1233. package/dist/src/components/data/timeline.d.ts.map +0 -1
  1234. package/dist/src/components/data/tree-menu.d.ts +0 -43
  1235. package/dist/src/components/data/tree-menu.d.ts.map +0 -1
  1236. package/dist/src/components/data/tree.d.ts +0 -45
  1237. package/dist/src/components/data/tree.d.ts.map +0 -1
  1238. package/dist/src/components/display/animated-image.d.ts +0 -25
  1239. package/dist/src/components/display/animated-image.d.ts.map +0 -1
  1240. package/dist/src/components/display/carousel.d.ts +0 -41
  1241. package/dist/src/components/display/carousel.d.ts.map +0 -1
  1242. package/dist/src/components/display/comparison.d.ts +0 -24
  1243. package/dist/src/components/display/comparison.d.ts.map +0 -1
  1244. package/dist/src/components/display/markdown.d.ts +0 -19
  1245. package/dist/src/components/display/markdown.d.ts.map +0 -1
  1246. package/dist/src/components/feedback/alert.d.ts +0 -32
  1247. package/dist/src/components/feedback/alert.d.ts.map +0 -1
  1248. package/dist/src/components/feedback/dialog.d.ts +0 -42
  1249. package/dist/src/components/feedback/dialog.d.ts.map +0 -1
  1250. package/dist/src/components/feedback/drawer.d.ts +0 -59
  1251. package/dist/src/components/feedback/drawer.d.ts.map +0 -1
  1252. package/dist/src/components/feedback/dropdown.d.ts +0 -70
  1253. package/dist/src/components/feedback/dropdown.d.ts.map +0 -1
  1254. package/dist/src/components/feedback/loading.d.ts +0 -27
  1255. package/dist/src/components/feedback/loading.d.ts.map +0 -1
  1256. package/dist/src/components/feedback/modal.d.ts +0 -58
  1257. package/dist/src/components/feedback/modal.d.ts.map +0 -1
  1258. package/dist/src/components/feedback/notification.d.ts +0 -35
  1259. package/dist/src/components/feedback/notification.d.ts.map +0 -1
  1260. package/dist/src/components/feedback/popover.d.ts +0 -35
  1261. package/dist/src/components/feedback/popover.d.ts.map +0 -1
  1262. package/dist/src/components/feedback/toast.d.ts +0 -35
  1263. package/dist/src/components/feedback/toast.d.ts.map +0 -1
  1264. package/dist/src/components/feedback/tooltip.d.ts +0 -41
  1265. package/dist/src/components/feedback/tooltip.d.ts.map +0 -1
  1266. package/dist/src/components/form/checkbox-group.d.ts +0 -38
  1267. package/dist/src/components/form/checkbox-group.d.ts.map +0 -1
  1268. package/dist/src/components/form/checkbox.d.ts +0 -35
  1269. package/dist/src/components/form/checkbox.d.ts.map +0 -1
  1270. package/dist/src/components/form/color-picker.d.ts +0 -32
  1271. package/dist/src/components/form/color-picker.d.ts.map +0 -1
  1272. package/dist/src/components/form/combobox.d.ts +0 -45
  1273. package/dist/src/components/form/combobox.d.ts.map +0 -1
  1274. package/dist/src/components/form/date-picker.d.ts +0 -30
  1275. package/dist/src/components/form/date-picker.d.ts.map +0 -1
  1276. package/dist/src/components/form/form-item.d.ts +0 -34
  1277. package/dist/src/components/form/form-item.d.ts.map +0 -1
  1278. package/dist/src/components/form/form.d.ts +0 -32
  1279. package/dist/src/components/form/form.d.ts.map +0 -1
  1280. package/dist/src/components/form/radio-group.d.ts +0 -34
  1281. package/dist/src/components/form/radio-group.d.ts.map +0 -1
  1282. package/dist/src/components/form/radio.d.ts +0 -30
  1283. package/dist/src/components/form/radio.d.ts.map +0 -1
  1284. package/dist/src/components/form/rate.d.ts +0 -27
  1285. package/dist/src/components/form/rate.d.ts.map +0 -1
  1286. package/dist/src/components/form/select.d.ts +0 -74
  1287. package/dist/src/components/form/select.d.ts.map +0 -1
  1288. package/dist/src/components/form/slider.d.ts +0 -33
  1289. package/dist/src/components/form/slider.d.ts.map +0 -1
  1290. package/dist/src/components/form/switch.d.ts +0 -28
  1291. package/dist/src/components/form/switch.d.ts.map +0 -1
  1292. package/dist/src/components/form/time-picker.d.ts +0 -26
  1293. package/dist/src/components/form/time-picker.d.ts.map +0 -1
  1294. package/dist/src/components/form/transfer.d.ts +0 -42
  1295. package/dist/src/components/form/transfer.d.ts.map +0 -1
  1296. package/dist/src/components/form/upload.d.ts +0 -34
  1297. package/dist/src/components/form/upload.d.ts.map +0 -1
  1298. package/dist/src/components/layout/affix.d.ts +0 -35
  1299. package/dist/src/components/layout/affix.d.ts.map +0 -1
  1300. package/dist/src/components/layout/col.d.ts +0 -32
  1301. package/dist/src/components/layout/col.d.ts.map +0 -1
  1302. package/dist/src/components/layout/collapse-item.d.ts +0 -31
  1303. package/dist/src/components/layout/collapse-item.d.ts.map +0 -1
  1304. package/dist/src/components/layout/collapse.d.ts +0 -31
  1305. package/dist/src/components/layout/collapse.d.ts.map +0 -1
  1306. package/dist/src/components/layout/container.d.ts +0 -30
  1307. package/dist/src/components/layout/container.d.ts.map +0 -1
  1308. package/dist/src/components/layout/flex.d.ts +0 -31
  1309. package/dist/src/components/layout/flex.d.ts.map +0 -1
  1310. package/dist/src/components/layout/page-container.d.ts +0 -22
  1311. package/dist/src/components/layout/page-container.d.ts.map +0 -1
  1312. package/dist/src/components/layout/page.d.ts +0 -26
  1313. package/dist/src/components/layout/page.d.ts.map +0 -1
  1314. package/dist/src/components/layout/row.d.ts +0 -27
  1315. package/dist/src/components/layout/row.d.ts.map +0 -1
  1316. package/dist/src/components/layout/space.d.ts +0 -27
  1317. package/dist/src/components/layout/space.d.ts.map +0 -1
  1318. package/dist/src/components/layout/timeline-item.d.ts +0 -24
  1319. package/dist/src/components/layout/timeline-item.d.ts.map +0 -1
  1320. package/dist/src/components/layout/timeline.d.ts +0 -49
  1321. package/dist/src/components/layout/timeline.d.ts.map +0 -1
  1322. package/dist/src/components/navigation/back-top.d.ts +0 -30
  1323. package/dist/src/components/navigation/back-top.d.ts.map +0 -1
  1324. package/dist/src/components/navigation/breadcrumb-item.d.ts +0 -26
  1325. package/dist/src/components/navigation/breadcrumb-item.d.ts.map +0 -1
  1326. package/dist/src/components/navigation/breadcrumb.d.ts +0 -24
  1327. package/dist/src/components/navigation/breadcrumb.d.ts.map +0 -1
  1328. package/dist/src/components/navigation/dropdown.d.ts +0 -70
  1329. package/dist/src/components/navigation/dropdown.d.ts.map +0 -1
  1330. package/dist/src/components/navigation/menu-item.d.ts +0 -33
  1331. package/dist/src/components/navigation/menu-item.d.ts.map +0 -1
  1332. package/dist/src/components/navigation/menu.d.ts +0 -35
  1333. package/dist/src/components/navigation/menu.d.ts.map +0 -1
  1334. package/dist/src/components/navigation/steps.d.ts +0 -31
  1335. package/dist/src/components/navigation/steps.d.ts.map +0 -1
  1336. package/dist/src/components/navigation/sub-menu.d.ts +0 -37
  1337. package/dist/src/components/navigation/sub-menu.d.ts.map +0 -1
  1338. package/dist/src/components/navigation/theme-picker.d.ts +0 -27
  1339. package/dist/src/components/navigation/theme-picker.d.ts.map +0 -1
  1340. package/dist/src/components/progress/progress-bar.d.ts +0 -21
  1341. package/dist/src/components/progress/progress-bar.d.ts.map +0 -1
  1342. package/dist/src/components/progress/progress-ring.d.ts +0 -23
  1343. package/dist/src/components/progress/progress-ring.d.ts.map +0 -1
  1344. package/dist/src/components/progress/skeleton.d.ts +0 -28
  1345. package/dist/src/components/progress/skeleton.d.ts.map +0 -1
  1346. package/dist/src/components/progress/spinner.d.ts +0 -21
  1347. package/dist/src/components/progress/spinner.d.ts.map +0 -1
  1348. package/dist/src/components/theme/locale-switch.d.ts +0 -24
  1349. package/dist/src/components/theme/locale-switch.d.ts.map +0 -1
  1350. package/dist/src/components/theme/theme-picker.d.ts +0 -43
  1351. package/dist/src/components/theme/theme-picker.d.ts.map +0 -1
  1352. package/dist/src/components/theme/theme-preview.d.ts +0 -29
  1353. package/dist/src/components/theme/theme-preview.d.ts.map +0 -1
  1354. package/dist/src/core/aithe-element.d.ts +0 -2
  1355. package/dist/src/core/aithe-element.d.ts.map +0 -1
  1356. package/dist/src/core/anchored-overlay.d.ts +0 -43
  1357. package/dist/src/core/anchored-overlay.d.ts.map +0 -1
  1358. package/dist/src/core/floating.d.ts +0 -43
  1359. package/dist/src/core/floating.d.ts.map +0 -1
  1360. package/dist/src/core/i18n/index.d.ts +0 -125
  1361. package/dist/src/core/i18n/index.d.ts.map +0 -1
  1362. package/dist/src/core/i18n/locales/en-US.d.ts +0 -7
  1363. package/dist/src/core/i18n/locales/en-US.d.ts.map +0 -1
  1364. package/dist/src/core/i18n/locales/en.d.ts +0 -3
  1365. package/dist/src/core/i18n/locales/en.d.ts.map +0 -1
  1366. package/dist/src/core/i18n/locales/index.d.ts +0 -7
  1367. package/dist/src/core/i18n/locales/index.d.ts.map +0 -1
  1368. package/dist/src/core/i18n/locales/zh-CN.d.ts +0 -7
  1369. package/dist/src/core/i18n/locales/zh-CN.d.ts.map +0 -1
  1370. package/dist/src/core/i18n/locales/zh.d.ts +0 -3
  1371. package/dist/src/core/i18n/locales/zh.d.ts.map +0 -1
  1372. package/dist/src/core/styles.d.ts +0 -17
  1373. package/dist/src/core/styles.d.ts.map +0 -1
  1374. package/dist/src/core/types.d.ts +0 -127
  1375. package/dist/src/core/types.d.ts.map +0 -1
  1376. package/dist/src/core/utils.d.ts +0 -44
  1377. package/dist/src/core/utils.d.ts.map +0 -1
  1378. package/dist/src/global.d.ts +0 -25
  1379. package/dist/src/global.d.ts.map +0 -1
  1380. package/dist/src/index.d.ts +0 -86
  1381. package/dist/src/index.d.ts.map +0 -1
  1382. package/dist/src/styles/global.css.d.ts +0 -5
  1383. package/dist/src/styles/global.css.d.ts.map +0 -1
  1384. package/dist/src/styles/mixins.d.ts +0 -9
  1385. package/dist/src/styles/mixins.d.ts.map +0 -1
  1386. package/dist/src/styles/theme/amber.d.ts +0 -3
  1387. package/dist/src/styles/theme/amber.d.ts.map +0 -1
  1388. package/dist/src/styles/theme/blue.d.ts +0 -3
  1389. package/dist/src/styles/theme/blue.d.ts.map +0 -1
  1390. package/dist/src/styles/theme/charcoal.d.ts +0 -3
  1391. package/dist/src/styles/theme/charcoal.d.ts.map +0 -1
  1392. package/dist/src/styles/theme/cyan.d.ts +0 -3
  1393. package/dist/src/styles/theme/cyan.d.ts.map +0 -1
  1394. package/dist/src/styles/theme/dark.d.ts +0 -3
  1395. package/dist/src/styles/theme/dark.d.ts.map +0 -1
  1396. package/dist/src/styles/theme/ebony.d.ts +0 -3
  1397. package/dist/src/styles/theme/ebony.d.ts.map +0 -1
  1398. package/dist/src/styles/theme/festive.d.ts +0 -3
  1399. package/dist/src/styles/theme/festive.d.ts.map +0 -1
  1400. package/dist/src/styles/theme/graphite.d.ts +0 -3
  1401. package/dist/src/styles/theme/graphite.d.ts.map +0 -1
  1402. package/dist/src/styles/theme/gray.d.ts +0 -3
  1403. package/dist/src/styles/theme/gray.d.ts.map +0 -1
  1404. package/dist/src/styles/theme/indigo.d.ts +0 -3
  1405. package/dist/src/styles/theme/indigo.d.ts.map +0 -1
  1406. package/dist/src/styles/theme/ink.d.ts +0 -3
  1407. package/dist/src/styles/theme/ink.d.ts.map +0 -1
  1408. package/dist/src/styles/theme/light.d.ts +0 -3
  1409. package/dist/src/styles/theme/light.d.ts.map +0 -1
  1410. package/dist/src/styles/theme/midnight.d.ts +0 -3
  1411. package/dist/src/styles/theme/midnight.d.ts.map +0 -1
  1412. package/dist/src/styles/theme/navy.d.ts +0 -3
  1413. package/dist/src/styles/theme/navy.d.ts.map +0 -1
  1414. package/dist/src/styles/theme/obsidian.d.ts +0 -3
  1415. package/dist/src/styles/theme/obsidian.d.ts.map +0 -1
  1416. package/dist/src/styles/theme/onyx.d.ts +0 -3
  1417. package/dist/src/styles/theme/onyx.d.ts.map +0 -1
  1418. package/dist/src/styles/theme/orange.d.ts +0 -3
  1419. package/dist/src/styles/theme/orange.d.ts.map +0 -1
  1420. package/dist/src/styles/theme/pink.d.ts +0 -3
  1421. package/dist/src/styles/theme/pink.d.ts.map +0 -1
  1422. package/dist/src/styles/theme/purple.d.ts +0 -3
  1423. package/dist/src/styles/theme/purple.d.ts.map +0 -1
  1424. package/dist/src/styles/theme/raisin.d.ts +0 -3
  1425. package/dist/src/styles/theme/raisin.d.ts.map +0 -1
  1426. package/dist/src/styles/theme/slate.d.ts +0 -3
  1427. package/dist/src/styles/theme/slate.d.ts.map +0 -1
  1428. package/dist/src/styles/theme/teal.d.ts +0 -3
  1429. package/dist/src/styles/theme/teal.d.ts.map +0 -1
  1430. package/dist/src/styles/theme.d.ts +0 -11
  1431. package/dist/src/styles/theme.d.ts.map +0 -1
  1432. package/dist/src/types/component.d.ts +0 -11
  1433. package/dist/src/types/component.d.ts.map +0 -1
  1434. package/dist/src/types/index.d.ts +0 -4
  1435. package/dist/src/types/index.d.ts.map +0 -1
  1436. package/dist/src/types/theme.d.ts +0 -17
  1437. package/dist/src/types/theme.d.ts.map +0 -1
  1438. package/dist/src/utils/dom.d.ts +0 -26
  1439. package/dist/src/utils/dom.d.ts.map +0 -1
  1440. package/dist/src/utils/events.d.ts +0 -11
  1441. package/dist/src/utils/events.d.ts.map +0 -1
  1442. package/dist/src/utils/index.d.ts +0 -6
  1443. package/dist/src/utils/index.d.ts.map +0 -1
  1444. package/dist/src/utils/theme.d.ts +0 -46
  1445. package/dist/src/utils/theme.d.ts.map +0 -1
  1446. package/dist/src/utils/validation.d.ts +0 -30
  1447. package/dist/src/utils/validation.d.ts.map +0 -1
  1448. package/dist/styles/theme.d.ts +0 -3
  1449. package/dist/styles/theme.d.ts.map +0 -1
  1450. package/dist/types/component.d.ts +0 -11
  1451. package/dist/types/component.d.ts.map +0 -1
  1452. package/dist/types/theme.d.ts +0 -17
  1453. package/dist/types/theme.d.ts.map +0 -1
  1454. package/dist/utils/theme.d.ts +0 -9
  1455. package/dist/utils/theme.d.ts.map +0 -1
  1456. package/docs/api/layout/page-container.md +0 -31
  1457. package/docs/api/layout/page.md +0 -35
  1458. package/docs/api/navigation/dropdown.md +0 -50
  1459. /package/dist/{demo → apps/admin}/standalone.d.ts +0 -0
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Pill shape style tokens.
3
+ * 药丸形状风格令牌。
4
+ *
5
+ * Provides fully rounded (999px) border-radius for buttons and tags.
6
+ * 为按钮和标签提供全圆角(999px)。
7
+ */
8
+ export const pillShapeTokens = {
9
+ '--aithe-radius-sm': '999px',
10
+ '--aithe-radius-md': '999px',
11
+ '--aithe-radius-lg': '999px',
12
+ '--aithe-radius-xl': '999px',
13
+ '--aithe-radius-full': '999px',
14
+ '--aithe-container-radius-sm': '10px',
15
+ '--aithe-container-radius-md': '16px',
16
+ '--aithe-container-radius-lg': '22px',
17
+ '--aithe-container-radius-xl': '28px',
18
+ '--aithe-container-radius-full': '999px',
19
+ };
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Rounded shape style tokens (default).
3
+ * 圆角形状风格令牌(默认)。
4
+ *
5
+ * Provides moderate border-radius for a friendly, approachable look.
6
+ * The default shape style for Aithe UI.
7
+ * 提供适中圆角,营造友好、亲切的视觉效果。
8
+ * Aithe UI 的默认形状风格。
9
+ */
10
+ export declare const roundedShapeTokens: Record<string, string>;
11
+ //# sourceMappingURL=rounded.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rounded.d.ts","sourceRoot":"","sources":["../../../src/styles/shape/rounded.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,eAAO,MAAM,kBAAkB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAWrD,CAAC"}
@@ -0,0 +1,21 @@
1
+ /**
2
+ * Rounded shape style tokens (default).
3
+ * 圆角形状风格令牌(默认)。
4
+ *
5
+ * Provides moderate border-radius for a friendly, approachable look.
6
+ * The default shape style for Aithe UI.
7
+ * 提供适中圆角,营造友好、亲切的视觉效果。
8
+ * Aithe UI 的默认形状风格。
9
+ */
10
+ export const roundedShapeTokens = {
11
+ '--aithe-radius-sm': '6px',
12
+ '--aithe-radius-md': '10px',
13
+ '--aithe-radius-lg': '14px',
14
+ '--aithe-radius-xl': '20px',
15
+ '--aithe-radius-full': '999px',
16
+ '--aithe-container-radius-sm': '6px',
17
+ '--aithe-container-radius-md': '10px',
18
+ '--aithe-container-radius-lg': '14px',
19
+ '--aithe-container-radius-xl': '20px',
20
+ '--aithe-container-radius-full': '999px',
21
+ };
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Rounder shape style tokens.
3
+ * 更圆润形状风格令牌。
4
+ *
5
+ * Provides larger border-radius for a softer, more rounded appearance.
6
+ * 提供更大的圆角,营造更加柔和、圆润的视觉效果。
7
+ */
8
+ export declare const rounderShapeTokens: Record<string, string>;
9
+ //# sourceMappingURL=rounder.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rounder.d.ts","sourceRoot":"","sources":["../../../src/styles/shape/rounder.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,kBAAkB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAWrD,CAAC"}
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Rounder shape style tokens.
3
+ * 更圆润形状风格令牌。
4
+ *
5
+ * Provides larger border-radius for a softer, more rounded appearance.
6
+ * 提供更大的圆角,营造更加柔和、圆润的视觉效果。
7
+ */
8
+ export const rounderShapeTokens = {
9
+ '--aithe-radius-sm': '10px',
10
+ '--aithe-radius-md': '16px',
11
+ '--aithe-radius-lg': '22px',
12
+ '--aithe-radius-xl': '28px',
13
+ '--aithe-radius-full': '999px',
14
+ '--aithe-container-radius-sm': '10px',
15
+ '--aithe-container-radius-md': '16px',
16
+ '--aithe-container-radius-lg': '22px',
17
+ '--aithe-container-radius-xl': '28px',
18
+ '--aithe-container-radius-full': '999px',
19
+ };
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Sharp shape style tokens.
3
+ * 锐利形状风格令牌。
4
+ *
5
+ * Provides zero border-radius for a sharp, geometric appearance.
6
+ * 提供零圆角,营造锐利、几何化的外观。
7
+ */
8
+ export declare const sharpShapeTokens: Record<string, string>;
9
+ //# sourceMappingURL=sharp.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sharp.d.ts","sourceRoot":"","sources":["../../../src/styles/shape/sharp.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,gBAAgB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAWnD,CAAC"}
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Sharp shape style tokens.
3
+ * 锐利形状风格令牌。
4
+ *
5
+ * Provides zero border-radius for a sharp, geometric appearance.
6
+ * 提供零圆角,营造锐利、几何化的外观。
7
+ */
8
+ export const sharpShapeTokens = {
9
+ '--aithe-radius-sm': '0px',
10
+ '--aithe-radius-md': '0px',
11
+ '--aithe-radius-lg': '0px',
12
+ '--aithe-radius-xl': '0px',
13
+ '--aithe-radius-full': '0px',
14
+ '--aithe-container-radius-sm': '0px',
15
+ '--aithe-container-radius-md': '0px',
16
+ '--aithe-container-radius-lg': '0px',
17
+ '--aithe-container-radius-xl': '0px',
18
+ '--aithe-container-radius-full': '0px',
19
+ };
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Smooth shape style tokens.
3
+ * 平滑形状风格令牌。
4
+ *
5
+ * Provides subtle border-radius for a clean, professional look.
6
+ * 提供轻微圆角,营造简洁、专业的视觉效果。
7
+ */
8
+ export declare const smoothShapeTokens: Record<string, string>;
9
+ //# sourceMappingURL=smooth.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"smooth.d.ts","sourceRoot":"","sources":["../../../src/styles/shape/smooth.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAWpD,CAAC"}
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Smooth shape style tokens.
3
+ * 平滑形状风格令牌。
4
+ *
5
+ * Provides subtle border-radius for a clean, professional look.
6
+ * 提供轻微圆角,营造简洁、专业的视觉效果。
7
+ */
8
+ export const smoothShapeTokens = {
9
+ '--aithe-radius-sm': '2px',
10
+ '--aithe-radius-md': '4px',
11
+ '--aithe-radius-lg': '6px',
12
+ '--aithe-radius-xl': '8px',
13
+ '--aithe-radius-full': '999px',
14
+ '--aithe-container-radius-sm': '2px',
15
+ '--aithe-container-radius-md': '4px',
16
+ '--aithe-container-radius-lg': '6px',
17
+ '--aithe-container-radius-xl': '8px',
18
+ '--aithe-container-radius-full': '999px',
19
+ };
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Alibaba Cloud (Aliyun) theme tokens.
3
+ * 阿里云风格主题令牌。
4
+ *
5
+ * Inspired by Alibaba Cloud's brand identity: orange primary (#FF6A00) with
6
+ * vibrant, tech-innovative style.
7
+ * 灵感来自阿里云品牌色:橙色 primary (#FF6A00),配充满活力的科技创新风格。
8
+ */
9
+ export declare const aliyunThemeTokens = "\n.aithe-theme-aliyun,\n[data-aithe-theme='aliyun'] {\n color-scheme: light;\n --aithe-primary-1: #fff7ed;\n --aithe-primary-2: #ffedd5;\n --aithe-primary-3: #ffd8a8;\n --aithe-primary-4: #ffbe78;\n --aithe-primary-5: #ffa04a;\n --aithe-primary-6: #ff8228;\n --aithe-primary-7: #ff6a00;\n --aithe-primary-8: #d65700;\n --aithe-primary-9: #ad4700;\n --aithe-primary-10: #8a3900;\n --aithe-success-1: #effcf7;\n --aithe-success-2: #d2f5e4;\n --aithe-success-3: #afead0;\n --aithe-success-4: #7fd5af;\n --aithe-success-5: #59bd92;\n --aithe-success-6: #3aa478;\n --aithe-success-7: #2d8964;\n --aithe-success-8: #266f53;\n --aithe-success-9: #215a45;\n --aithe-success-10: #1b4938;\n --aithe-warning-1: #fff8e9;\n --aithe-warning-2: #ffefc7;\n --aithe-warning-3: #ffdd90;\n --aithe-warning-4: #ffc45c;\n --aithe-warning-5: #f2aa3d;\n --aithe-warning-6: #d38b25;\n --aithe-warning-7: #af6e1b;\n --aithe-warning-8: #8e5718;\n --aithe-warning-9: #724618;\n --aithe-warning-10: #5b3815;\n --aithe-danger-1: #fff0f3;\n --aithe-danger-2: #ffdbe2;\n --aithe-danger-3: #ffbbc8;\n --aithe-danger-4: #ff8fa1;\n --aithe-danger-5: #f66a80;\n --aithe-danger-6: #de5069;\n --aithe-danger-7: #bd3f56;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7c2f3f;\n --aithe-danger-10: #632837;\n --aithe-neutral-1: #f6f7f9;\n --aithe-neutral-2: #ebedf2;\n --aithe-neutral-3: #d9dce6;\n --aithe-neutral-4: #bfc4d2;\n --aithe-neutral-5: #a2a8ba;\n --aithe-neutral-6: #848ba0;\n --aithe-neutral-7: #656d85;\n --aithe-neutral-8: #485069;\n --aithe-neutral-9: #2c344b;\n --aithe-neutral-10: #161c2e;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #faf7f3;\n --aithe-color-bg-subtle: linear-gradient(180deg, #fefbf8 0%, #f5f0ea 100%);\n --aithe-color-surface: rgba(255, 255, 255, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #f0eae2;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(255, 106, 0, 0.16);\n --aithe-color-border-strong: rgba(255, 106, 0, 0.28);\n --aithe-color-text: #0e1524;\n --aithe-color-text-muted: #3d4a64;\n --aithe-color-text-subtle: #6c7a94;\n --aithe-color-overlay: rgba(10, 15, 28, 0.50);\n --aithe-color-selection: rgba(255, 106, 0, 0.16);\n --aithe-color-focus-ring: rgba(255, 106, 0, 0.34);\n --aithe-color-text-secondary: #3d4a66;\n --aithe-color-bg-muted: #e8ecf4;\n --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);\n --aithe-primary-6-rgb: 77, 141, 255;\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #2563eb;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #2563eb;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #dc2626;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #dc2626;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #94a3b8;\n --aithe-code-doctype: #94a3b8;\n --aithe-code-placeholder: #94a3b8;\n}\n";
10
+ //# sourceMappingURL=aliyun.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"aliyun.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/aliyun.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AACH,eAAO,MAAM,iBAAiB,knGA6F7B,CAAC"}
@@ -0,0 +1,102 @@
1
+ /**
2
+ * Alibaba Cloud (Aliyun) theme tokens.
3
+ * 阿里云风格主题令牌。
4
+ *
5
+ * Inspired by Alibaba Cloud's brand identity: orange primary (#FF6A00) with
6
+ * vibrant, tech-innovative style.
7
+ * 灵感来自阿里云品牌色:橙色 primary (#FF6A00),配充满活力的科技创新风格。
8
+ */
9
+ export const aliyunThemeTokens = `
10
+ .aithe-theme-aliyun,
11
+ [data-aithe-theme='aliyun'] {
12
+ color-scheme: light;
13
+ --aithe-primary-1: #fff7ed;
14
+ --aithe-primary-2: #ffedd5;
15
+ --aithe-primary-3: #ffd8a8;
16
+ --aithe-primary-4: #ffbe78;
17
+ --aithe-primary-5: #ffa04a;
18
+ --aithe-primary-6: #ff8228;
19
+ --aithe-primary-7: #ff6a00;
20
+ --aithe-primary-8: #d65700;
21
+ --aithe-primary-9: #ad4700;
22
+ --aithe-primary-10: #8a3900;
23
+ --aithe-success-1: #effcf7;
24
+ --aithe-success-2: #d2f5e4;
25
+ --aithe-success-3: #afead0;
26
+ --aithe-success-4: #7fd5af;
27
+ --aithe-success-5: #59bd92;
28
+ --aithe-success-6: #3aa478;
29
+ --aithe-success-7: #2d8964;
30
+ --aithe-success-8: #266f53;
31
+ --aithe-success-9: #215a45;
32
+ --aithe-success-10: #1b4938;
33
+ --aithe-warning-1: #fff8e9;
34
+ --aithe-warning-2: #ffefc7;
35
+ --aithe-warning-3: #ffdd90;
36
+ --aithe-warning-4: #ffc45c;
37
+ --aithe-warning-5: #f2aa3d;
38
+ --aithe-warning-6: #d38b25;
39
+ --aithe-warning-7: #af6e1b;
40
+ --aithe-warning-8: #8e5718;
41
+ --aithe-warning-9: #724618;
42
+ --aithe-warning-10: #5b3815;
43
+ --aithe-danger-1: #fff0f3;
44
+ --aithe-danger-2: #ffdbe2;
45
+ --aithe-danger-3: #ffbbc8;
46
+ --aithe-danger-4: #ff8fa1;
47
+ --aithe-danger-5: #f66a80;
48
+ --aithe-danger-6: #de5069;
49
+ --aithe-danger-7: #bd3f56;
50
+ --aithe-danger-8: #99354a;
51
+ --aithe-danger-9: #7c2f3f;
52
+ --aithe-danger-10: #632837;
53
+ --aithe-neutral-1: #f6f7f9;
54
+ --aithe-neutral-2: #ebedf2;
55
+ --aithe-neutral-3: #d9dce6;
56
+ --aithe-neutral-4: #bfc4d2;
57
+ --aithe-neutral-5: #a2a8ba;
58
+ --aithe-neutral-6: #848ba0;
59
+ --aithe-neutral-7: #656d85;
60
+ --aithe-neutral-8: #485069;
61
+ --aithe-neutral-9: #2c344b;
62
+ --aithe-neutral-10: #161c2e;
63
+ --aithe-fill-1: #f7f8fa;
64
+ --aithe-fill-2: #f0f1f3;
65
+ --aithe-color-bg: #faf7f3;
66
+ --aithe-color-bg-subtle: linear-gradient(180deg, #fefbf8 0%, #f5f0ea 100%);
67
+ --aithe-color-surface: rgba(255, 255, 255, 0.88);
68
+ --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);
69
+ --aithe-color-surface-muted: #f0eae2;
70
+ --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);
71
+ --aithe-color-border: rgba(255, 106, 0, 0.16);
72
+ --aithe-color-border-strong: rgba(255, 106, 0, 0.28);
73
+ --aithe-color-text: #0e1524;
74
+ --aithe-color-text-muted: #3d4a64;
75
+ --aithe-color-text-subtle: #6c7a94;
76
+ --aithe-color-overlay: rgba(10, 15, 28, 0.50);
77
+ --aithe-color-selection: rgba(255, 106, 0, 0.16);
78
+ --aithe-color-focus-ring: rgba(255, 106, 0, 0.34);
79
+ --aithe-color-text-secondary: #3d4a66;
80
+ --aithe-color-bg-muted: #e8ecf4;
81
+ --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);
82
+ --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);
83
+ --aithe-primary-6-rgb: 77, 141, 255;
84
+ --aithe-color-text-on-primary: #ffffff;
85
+ --aithe-code-keyword: #7c3aed;
86
+ --aithe-code-boolean: #b45309;
87
+ --aithe-code-builtin: #2563eb;
88
+ --aithe-code-number: #b45309;
89
+ --aithe-code-string: #15803d;
90
+ --aithe-code-function: #2563eb;
91
+ --aithe-code-type: #a16207;
92
+ --aithe-code-preprocessor: #7c3aed;
93
+ --aithe-code-tag: #dc2626;
94
+ --aithe-code-attr: #b45309;
95
+ --aithe-code-key: #dc2626;
96
+ --aithe-code-punctuation: #5c6bc0;
97
+ --aithe-code-entity: #b45309;
98
+ --aithe-code-comment: #94a3b8;
99
+ --aithe-code-doctype: #94a3b8;
100
+ --aithe-code-placeholder: #94a3b8;
101
+ }
102
+ `;
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Amber theme tokens.
3
+ * 琥珀主题令牌。
4
+ *
5
+ * Warm & gentle, mild warning & emphasis.
6
+ * 温暖柔和、温和警示与强调,适合内容平台、阅读场景、辅助提示。
7
+ */
8
+ export declare const amberThemeTokens = "\n.aithe-theme-amber,\n[data-aithe-theme='amber'] {\n color-scheme: light;\n --aithe-primary-1: #fffbe6;\n --aithe-primary-2: #fff3c4;\n --aithe-primary-3: #ffe78a;\n --aithe-primary-4: #ffd84d;\n --aithe-primary-5: #f0c020;\n --aithe-primary-6: #d4a010;\n --aithe-primary-7: #b08008;\n --aithe-primary-8: #8c6206;\n --aithe-primary-9: #6a4a04;\n --aithe-primary-10: #483202;\n --aithe-success-1: #f2faf1;\n --aithe-success-2: #daf0d6;\n --aithe-success-3: #b6e0ae;\n --aithe-success-4: #84cc78;\n --aithe-success-5: #5ab84e;\n --aithe-success-6: #3a9e32;\n --aithe-success-7: #2c8028;\n --aithe-success-8: #236421;\n --aithe-success-9: #1b4c1a;\n --aithe-success-10: #143613;\n --aithe-warning-1: #fff9f0;\n --aithe-warning-2: #ffefcc;\n --aithe-warning-3: #ffe0a0;\n --aithe-warning-4: #ffcc6a;\n --aithe-warning-5: #f0b030;\n --aithe-warning-6: #c89018;\n --aithe-warning-7: #a07010;\n --aithe-warning-8: #7a550c;\n --aithe-warning-9: #563e08;\n --aithe-warning-10: #3a2a05;\n --aithe-danger-1: #fff1f0;\n --aithe-danger-2: #ffddd9;\n --aithe-danger-3: #ffc0b8;\n --aithe-danger-4: #ff9a8e;\n --aithe-danger-5: #f07068;\n --aithe-danger-6: #d44844;\n --aithe-danger-7: #b02e2c;\n --aithe-danger-8: #8c201e;\n --aithe-danger-9: #6a1616;\n --aithe-danger-10: #4a0e0e;\n --aithe-neutral-1: #faf9f5;\n --aithe-neutral-2: #f2efe6;\n --aithe-neutral-3: #e4ded2;\n --aithe-neutral-4: #cec4b2;\n --aithe-neutral-5: #b0a48e;\n --aithe-neutral-6: #928872;\n --aithe-neutral-7: #746c5c;\n --aithe-neutral-8: #565044;\n --aithe-neutral-9: #38342c;\n --aithe-neutral-10: #1c1a14;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #fdfaf2;\n --aithe-color-bg-subtle: linear-gradient(180deg, #fffdf6 0%, #faf4e6 100%);\n --aithe-color-surface: rgba(255, 254, 248, 0.86);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #f2ead8;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(140, 100, 30, 0.18);\n --aithe-color-border-strong: rgba(120, 80, 20, 0.28);\n --aithe-color-text: #2a2210;\n --aithe-color-text-muted: #6e5a2e;\n --aithe-color-text-subtle: #9e8a5a;\n --aithe-color-overlay: rgba(24, 18, 4, 0.48);\n --aithe-color-selection: rgba(212, 160, 16, 0.16);\n --aithe-color-focus-ring: rgba(212, 160, 16, 0.36);\n --aithe-color-text-secondary: #3d4a66;\n --aithe-color-bg-muted: #e8ecf4;\n --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);\n --aithe-primary-6-rgb: 77, 141, 255;\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #92400e;\n --aithe-code-builtin: #b45309;\n --aithe-code-number: #92400e;\n --aithe-code-string: #15803d;\n --aithe-code-function: #b45309;\n --aithe-code-type: #78350f;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #dc2626;\n --aithe-code-attr: #92400e;\n --aithe-code-key: #dc2626;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #92400e;\n --aithe-code-comment: #746c5c;\n --aithe-code-doctype: #746c5c;\n --aithe-code-placeholder: #746c5c;\n}\n";
9
+ //# sourceMappingURL=amber.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"amber.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/amber.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,gBAAgB,knGA6F5B,CAAC"}
@@ -0,0 +1,101 @@
1
+ /**
2
+ * Amber theme tokens.
3
+ * 琥珀主题令牌。
4
+ *
5
+ * Warm & gentle, mild warning & emphasis.
6
+ * 温暖柔和、温和警示与强调,适合内容平台、阅读场景、辅助提示。
7
+ */
8
+ export const amberThemeTokens = `
9
+ .aithe-theme-amber,
10
+ [data-aithe-theme='amber'] {
11
+ color-scheme: light;
12
+ --aithe-primary-1: #fffbe6;
13
+ --aithe-primary-2: #fff3c4;
14
+ --aithe-primary-3: #ffe78a;
15
+ --aithe-primary-4: #ffd84d;
16
+ --aithe-primary-5: #f0c020;
17
+ --aithe-primary-6: #d4a010;
18
+ --aithe-primary-7: #b08008;
19
+ --aithe-primary-8: #8c6206;
20
+ --aithe-primary-9: #6a4a04;
21
+ --aithe-primary-10: #483202;
22
+ --aithe-success-1: #f2faf1;
23
+ --aithe-success-2: #daf0d6;
24
+ --aithe-success-3: #b6e0ae;
25
+ --aithe-success-4: #84cc78;
26
+ --aithe-success-5: #5ab84e;
27
+ --aithe-success-6: #3a9e32;
28
+ --aithe-success-7: #2c8028;
29
+ --aithe-success-8: #236421;
30
+ --aithe-success-9: #1b4c1a;
31
+ --aithe-success-10: #143613;
32
+ --aithe-warning-1: #fff9f0;
33
+ --aithe-warning-2: #ffefcc;
34
+ --aithe-warning-3: #ffe0a0;
35
+ --aithe-warning-4: #ffcc6a;
36
+ --aithe-warning-5: #f0b030;
37
+ --aithe-warning-6: #c89018;
38
+ --aithe-warning-7: #a07010;
39
+ --aithe-warning-8: #7a550c;
40
+ --aithe-warning-9: #563e08;
41
+ --aithe-warning-10: #3a2a05;
42
+ --aithe-danger-1: #fff1f0;
43
+ --aithe-danger-2: #ffddd9;
44
+ --aithe-danger-3: #ffc0b8;
45
+ --aithe-danger-4: #ff9a8e;
46
+ --aithe-danger-5: #f07068;
47
+ --aithe-danger-6: #d44844;
48
+ --aithe-danger-7: #b02e2c;
49
+ --aithe-danger-8: #8c201e;
50
+ --aithe-danger-9: #6a1616;
51
+ --aithe-danger-10: #4a0e0e;
52
+ --aithe-neutral-1: #faf9f5;
53
+ --aithe-neutral-2: #f2efe6;
54
+ --aithe-neutral-3: #e4ded2;
55
+ --aithe-neutral-4: #cec4b2;
56
+ --aithe-neutral-5: #b0a48e;
57
+ --aithe-neutral-6: #928872;
58
+ --aithe-neutral-7: #746c5c;
59
+ --aithe-neutral-8: #565044;
60
+ --aithe-neutral-9: #38342c;
61
+ --aithe-neutral-10: #1c1a14;
62
+ --aithe-fill-1: #f7f8fa;
63
+ --aithe-fill-2: #f0f1f3;
64
+ --aithe-color-bg: #fdfaf2;
65
+ --aithe-color-bg-subtle: linear-gradient(180deg, #fffdf6 0%, #faf4e6 100%);
66
+ --aithe-color-surface: rgba(255, 254, 248, 0.86);
67
+ --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);
68
+ --aithe-color-surface-muted: #f2ead8;
69
+ --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);
70
+ --aithe-color-border: rgba(140, 100, 30, 0.18);
71
+ --aithe-color-border-strong: rgba(120, 80, 20, 0.28);
72
+ --aithe-color-text: #2a2210;
73
+ --aithe-color-text-muted: #6e5a2e;
74
+ --aithe-color-text-subtle: #9e8a5a;
75
+ --aithe-color-overlay: rgba(24, 18, 4, 0.48);
76
+ --aithe-color-selection: rgba(212, 160, 16, 0.16);
77
+ --aithe-color-focus-ring: rgba(212, 160, 16, 0.36);
78
+ --aithe-color-text-secondary: #3d4a66;
79
+ --aithe-color-bg-muted: #e8ecf4;
80
+ --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);
81
+ --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);
82
+ --aithe-primary-6-rgb: 77, 141, 255;
83
+ --aithe-color-text-on-primary: #ffffff;
84
+ --aithe-code-keyword: #7c3aed;
85
+ --aithe-code-boolean: #92400e;
86
+ --aithe-code-builtin: #b45309;
87
+ --aithe-code-number: #92400e;
88
+ --aithe-code-string: #15803d;
89
+ --aithe-code-function: #b45309;
90
+ --aithe-code-type: #78350f;
91
+ --aithe-code-preprocessor: #7c3aed;
92
+ --aithe-code-tag: #dc2626;
93
+ --aithe-code-attr: #92400e;
94
+ --aithe-code-key: #dc2626;
95
+ --aithe-code-punctuation: #5c6bc0;
96
+ --aithe-code-entity: #92400e;
97
+ --aithe-code-comment: #746c5c;
98
+ --aithe-code-doctype: #746c5c;
99
+ --aithe-code-placeholder: #746c5c;
100
+ }
101
+ `;
@@ -1,2 +1,9 @@
1
- export declare const blueThemeTokens = "\n.aithe-theme-blue,\n[data-aithe-theme='blue'] {\n color-scheme: dark;\n --aithe-primary-1: #eaf3ff;\n --aithe-primary-2: #d2e4ff;\n --aithe-primary-3: #aacbff;\n --aithe-primary-4: #79acff;\n --aithe-primary-5: #518fff;\n --aithe-primary-6: #2c73f6;\n --aithe-primary-7: #245dd0;\n --aithe-primary-8: #234ca6;\n --aithe-primary-9: #213f81;\n --aithe-primary-10: #1f3365;\n --aithe-success-1: #effcf7;\n --aithe-success-2: #d2f5e4;\n --aithe-success-3: #afead0;\n --aithe-success-4: #7fd5af;\n --aithe-success-5: #59bd92;\n --aithe-success-6: #3aa478;\n --aithe-success-7: #2d8964;\n --aithe-success-8: #266f53;\n --aithe-success-9: #215a45;\n --aithe-success-10: #1b4938;\n --aithe-warning-1: #fff8e9;\n --aithe-warning-2: #ffefc7;\n --aithe-warning-3: #ffdd90;\n --aithe-warning-4: #ffc45c;\n --aithe-warning-5: #f2aa3d;\n --aithe-warning-6: #d38b25;\n --aithe-warning-7: #af6e1b;\n --aithe-warning-8: #8e5718;\n --aithe-warning-9: #724618;\n --aithe-warning-10: #5b3815;\n --aithe-danger-1: #fff0f3;\n --aithe-danger-2: #ffdbe2;\n --aithe-danger-3: #ffbbc8;\n --aithe-danger-4: #ff8fa1;\n --aithe-danger-5: #f66a80;\n --aithe-danger-6: #de5069;\n --aithe-danger-7: #bd3f56;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7c2f3f;\n --aithe-danger-10: #632837;\n --aithe-neutral-1: #f1f5fd;\n --aithe-neutral-2: #d8e1f0;\n --aithe-neutral-3: #bcc7da;\n --aithe-neutral-4: #9ca9c1;\n --aithe-neutral-5: #7d8ca7;\n --aithe-neutral-6: #66758f;\n --aithe-neutral-7: #505d74;\n --aithe-neutral-8: #3a4559;\n --aithe-neutral-9: #242d3d;\n --aithe-neutral-10: #141c29;\n --aithe-color-bg: #09111f;\n --aithe-color-bg-subtle: radial-gradient(circle at top right, rgba(44, 115, 246, 0.22) 0%, rgba(9, 17, 31, 1) 54%);\n --aithe-color-surface: rgba(10, 24, 45, 0.82);\n --aithe-color-surface-elevated: rgba(14, 31, 57, 0.96);\n --aithe-color-surface-muted: #13253f;\n --aithe-color-border: rgba(130, 176, 255, 0.16);\n --aithe-color-border-strong: rgba(154, 195, 255, 0.26);\n --aithe-color-text: #edf4ff;\n --aithe-color-text-muted: #b3c5e6;\n --aithe-color-text-subtle: #7f99be;\n --aithe-color-overlay: rgba(2, 7, 14, 0.68);\n --aithe-color-selection: rgba(81, 143, 255, 0.24);\n --aithe-color-focus-ring: rgba(81, 143, 255, 0.42);\n}\n";
1
+ /**
2
+ * Blue theme tokens.
3
+ * 蓝色主题令牌。
4
+ *
5
+ * Vivid blue primary with cool blue-tinted backgrounds.
6
+ * 醒目的蓝色 primary 配冷调蓝背景。
7
+ */
8
+ export declare const blueThemeTokens = "\n.aithe-theme-blue,\n[data-aithe-theme='blue'] {\n color-scheme: light;\n --aithe-primary-1: #eaf3ff;\n --aithe-primary-2: #d2e4ff;\n --aithe-primary-3: #aacbff;\n --aithe-primary-4: #79acff;\n --aithe-primary-5: #518fff;\n --aithe-primary-6: #2c73f6;\n --aithe-primary-7: #245dd0;\n --aithe-primary-8: #234ca6;\n --aithe-primary-9: #213f81;\n --aithe-primary-10: #1f3365;\n --aithe-success-1: #effcf7;\n --aithe-success-2: #d2f5e4;\n --aithe-success-3: #afead0;\n --aithe-success-4: #7fd5af;\n --aithe-success-5: #59bd92;\n --aithe-success-6: #3aa478;\n --aithe-success-7: #2d8964;\n --aithe-success-8: #266f53;\n --aithe-success-9: #215a45;\n --aithe-success-10: #1b4938;\n --aithe-warning-1: #fff8e9;\n --aithe-warning-2: #ffefc7;\n --aithe-warning-3: #ffdd90;\n --aithe-warning-4: #ffc45c;\n --aithe-warning-5: #f2aa3d;\n --aithe-warning-6: #d38b25;\n --aithe-warning-7: #af6e1b;\n --aithe-warning-8: #8e5718;\n --aithe-warning-9: #724618;\n --aithe-warning-10: #5b3815;\n --aithe-danger-1: #fff0f3;\n --aithe-danger-2: #ffdbe2;\n --aithe-danger-3: #ffbbc8;\n --aithe-danger-4: #ff8fa1;\n --aithe-danger-5: #f66a80;\n --aithe-danger-6: #de5069;\n --aithe-danger-7: #bd3f56;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7c2f3f;\n --aithe-danger-10: #632837;\n --aithe-neutral-1: #f4f7fc;\n --aithe-neutral-2: #e8edf6;\n --aithe-neutral-3: #d3dcf0;\n --aithe-neutral-4: #b5c3e2;\n --aithe-neutral-5: #95a5cf;\n --aithe-neutral-6: #7688b8;\n --aithe-neutral-7: #5a6d9e;\n --aithe-neutral-8: #425580;\n --aithe-neutral-9: #2c3d5e;\n --aithe-neutral-10: #1a2740;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #eef3fc;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f4f9ff 0%, #e6edf8 100%);\n --aithe-color-surface: rgba(255, 255, 255, 0.86);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #e0e8f6;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(44, 115, 246, 0.18);\n --aithe-color-border-strong: rgba(44, 115, 246, 0.30);\n --aithe-color-text: #0e1628;\n --aithe-color-text-muted: #3a4e72;\n --aithe-color-text-subtle: #6a7e9e;\n --aithe-color-overlay: rgba(9, 17, 31, 0.48);\n --aithe-color-selection: rgba(44, 115, 246, 0.18);\n --aithe-color-focus-ring: rgba(44, 115, 246, 0.38);\n --aithe-color-text-secondary: #3d4a66;\n --aithe-color-bg-muted: #e8ecf4;\n --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);\n --aithe-primary-6-rgb: 77, 141, 255;\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #2563eb;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #2563eb;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #dc2626;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #dc2626;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #94a3b8;\n --aithe-code-doctype: #94a3b8;\n --aithe-code-placeholder: #94a3b8;\n}\n";
2
9
  //# sourceMappingURL=blue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"blue.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/blue.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe,+vEAoE3B,CAAC"}
1
+ {"version":3,"file":"blue.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/blue.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,eAAe,inGA6F3B,CAAC"}
@@ -0,0 +1,101 @@
1
+ /**
2
+ * Blue theme tokens.
3
+ * 蓝色主题令牌。
4
+ *
5
+ * Vivid blue primary with cool blue-tinted backgrounds.
6
+ * 醒目的蓝色 primary 配冷调蓝背景。
7
+ */
8
+ export const blueThemeTokens = `
9
+ .aithe-theme-blue,
10
+ [data-aithe-theme='blue'] {
11
+ color-scheme: light;
12
+ --aithe-primary-1: #eaf3ff;
13
+ --aithe-primary-2: #d2e4ff;
14
+ --aithe-primary-3: #aacbff;
15
+ --aithe-primary-4: #79acff;
16
+ --aithe-primary-5: #518fff;
17
+ --aithe-primary-6: #2c73f6;
18
+ --aithe-primary-7: #245dd0;
19
+ --aithe-primary-8: #234ca6;
20
+ --aithe-primary-9: #213f81;
21
+ --aithe-primary-10: #1f3365;
22
+ --aithe-success-1: #effcf7;
23
+ --aithe-success-2: #d2f5e4;
24
+ --aithe-success-3: #afead0;
25
+ --aithe-success-4: #7fd5af;
26
+ --aithe-success-5: #59bd92;
27
+ --aithe-success-6: #3aa478;
28
+ --aithe-success-7: #2d8964;
29
+ --aithe-success-8: #266f53;
30
+ --aithe-success-9: #215a45;
31
+ --aithe-success-10: #1b4938;
32
+ --aithe-warning-1: #fff8e9;
33
+ --aithe-warning-2: #ffefc7;
34
+ --aithe-warning-3: #ffdd90;
35
+ --aithe-warning-4: #ffc45c;
36
+ --aithe-warning-5: #f2aa3d;
37
+ --aithe-warning-6: #d38b25;
38
+ --aithe-warning-7: #af6e1b;
39
+ --aithe-warning-8: #8e5718;
40
+ --aithe-warning-9: #724618;
41
+ --aithe-warning-10: #5b3815;
42
+ --aithe-danger-1: #fff0f3;
43
+ --aithe-danger-2: #ffdbe2;
44
+ --aithe-danger-3: #ffbbc8;
45
+ --aithe-danger-4: #ff8fa1;
46
+ --aithe-danger-5: #f66a80;
47
+ --aithe-danger-6: #de5069;
48
+ --aithe-danger-7: #bd3f56;
49
+ --aithe-danger-8: #99354a;
50
+ --aithe-danger-9: #7c2f3f;
51
+ --aithe-danger-10: #632837;
52
+ --aithe-neutral-1: #f4f7fc;
53
+ --aithe-neutral-2: #e8edf6;
54
+ --aithe-neutral-3: #d3dcf0;
55
+ --aithe-neutral-4: #b5c3e2;
56
+ --aithe-neutral-5: #95a5cf;
57
+ --aithe-neutral-6: #7688b8;
58
+ --aithe-neutral-7: #5a6d9e;
59
+ --aithe-neutral-8: #425580;
60
+ --aithe-neutral-9: #2c3d5e;
61
+ --aithe-neutral-10: #1a2740;
62
+ --aithe-fill-1: #f7f8fa;
63
+ --aithe-fill-2: #f0f1f3;
64
+ --aithe-color-bg: #eef3fc;
65
+ --aithe-color-bg-subtle: linear-gradient(180deg, #f4f9ff 0%, #e6edf8 100%);
66
+ --aithe-color-surface: rgba(255, 255, 255, 0.86);
67
+ --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);
68
+ --aithe-color-surface-muted: #e0e8f6;
69
+ --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);
70
+ --aithe-color-border: rgba(44, 115, 246, 0.18);
71
+ --aithe-color-border-strong: rgba(44, 115, 246, 0.30);
72
+ --aithe-color-text: #0e1628;
73
+ --aithe-color-text-muted: #3a4e72;
74
+ --aithe-color-text-subtle: #6a7e9e;
75
+ --aithe-color-overlay: rgba(9, 17, 31, 0.48);
76
+ --aithe-color-selection: rgba(44, 115, 246, 0.18);
77
+ --aithe-color-focus-ring: rgba(44, 115, 246, 0.38);
78
+ --aithe-color-text-secondary: #3d4a66;
79
+ --aithe-color-bg-muted: #e8ecf4;
80
+ --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);
81
+ --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);
82
+ --aithe-primary-6-rgb: 77, 141, 255;
83
+ --aithe-color-text-on-primary: #ffffff;
84
+ --aithe-code-keyword: #7c3aed;
85
+ --aithe-code-boolean: #b45309;
86
+ --aithe-code-builtin: #2563eb;
87
+ --aithe-code-number: #b45309;
88
+ --aithe-code-string: #15803d;
89
+ --aithe-code-function: #2563eb;
90
+ --aithe-code-type: #a16207;
91
+ --aithe-code-preprocessor: #7c3aed;
92
+ --aithe-code-tag: #dc2626;
93
+ --aithe-code-attr: #b45309;
94
+ --aithe-code-key: #dc2626;
95
+ --aithe-code-punctuation: #5c6bc0;
96
+ --aithe-code-entity: #b45309;
97
+ --aithe-code-comment: #94a3b8;
98
+ --aithe-code-doctype: #94a3b8;
99
+ --aithe-code-placeholder: #94a3b8;
100
+ }
101
+ `;
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Charcoal theme tokens.
3
+ * 炭灰暗色主题令牌。
4
+ *
5
+ * Warm dark gray, understated elegance.
6
+ * 暖调深灰,低调优雅,适合内容阅读、编辑器、文档平台。
7
+ */
8
+ export declare const charcoalThemeTokens = "\n.aithe-theme-charcoal,\n[data-aithe-theme='charcoal'] {\n color-scheme: dark;\n --aithe-primary-1: #f2f0ff;\n --aithe-primary-2: #ddd8ff;\n --aithe-primary-3: #c0b8ff;\n --aithe-primary-4: #9e90ff;\n --aithe-primary-5: #7e6ef0;\n --aithe-primary-6: #6454d4;\n --aithe-primary-7: #5040ae;\n --aithe-primary-8: #3e308c;\n --aithe-primary-9: #30246c;\n --aithe-primary-10: #241a50;\n --aithe-success-1: #f0fcee;\n --aithe-success-2: #d2f5cc;\n --aithe-success-3: #aeeaa0;\n --aithe-success-4: #80da6e;\n --aithe-success-5: #5ac648;\n --aithe-success-6: #3eae30;\n --aithe-success-7: #2e9024;\n --aithe-success-8: #22721c;\n --aithe-success-9: #1a5a16;\n --aithe-success-10: #144610;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #fff0c4;\n --aithe-warning-3: #ffe08e;\n --aithe-warning-4: #ffcc5a;\n --aithe-warning-5: #f0b43e;\n --aithe-warning-6: #d09426;\n --aithe-warning-7: #ac761a;\n --aithe-warning-8: #8a5c16;\n --aithe-warning-9: #6e4a14;\n --aithe-warning-10: #583810;\n --aithe-danger-1: #fff1f0;\n --aithe-danger-2: #ffddd9;\n --aithe-danger-3: #ffc0b8;\n --aithe-danger-4: #ff9a8e;\n --aithe-danger-5: #f07068;\n --aithe-danger-6: #d44844;\n --aithe-danger-7: #b02e2c;\n --aithe-danger-8: #8c201e;\n --aithe-danger-9: #6a1616;\n --aithe-danger-10: #4a0e0e;\n --aithe-neutral-1: #f0eeec;\n --aithe-neutral-2: #d6d2ce;\n --aithe-neutral-3: #b4aea8;\n --aithe-neutral-4: #928a82;\n --aithe-neutral-5: #746c64;\n --aithe-neutral-6: #5a544c;\n --aithe-neutral-7: #423e38;\n --aithe-neutral-8: #302c28;\n --aithe-neutral-9: #201e1a;\n --aithe-neutral-10: #121110;\n --aithe-fill-1: #1a2133;\n --aithe-fill-2: #1e263a;\n --aithe-color-bg: #181614;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(100, 80, 60, 0.16) 0%, rgba(24, 22, 20, 1) 55%);\n --aithe-color-surface: rgba(28, 26, 24, 0.84);\n --aithe-color-surface-elevated: rgba(36, 34, 30, 0.96);\n --aithe-color-surface-muted: #222018;\n --aithe-color-surface-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border: rgba(180, 160, 140, 0.17);\n --aithe-color-border-strong: rgba(200, 180, 160, 0.25);\n --aithe-color-text: #f0ece8;\n --aithe-color-text-muted: #a8a096;\n --aithe-color-text-subtle: #847c74;\n --aithe-color-overlay: rgba(8, 6, 4, 0.66);\n --aithe-color-selection: rgba(100, 84, 212, 0.22);\n --aithe-color-focus-ring: rgba(100, 84, 212, 0.40);\n --aithe-color-text-secondary: #8894ab;\n --aithe-color-bg-muted: #151c2b;\n --aithe-color-bg-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border-subtle: rgba(172, 188, 217, 0.08);\n --aithe-primary-6-rgb: 74, 125, 255;\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.24);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.30);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.36);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.42);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.48);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #e5c07b;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #5a544c;\n --aithe-code-doctype: #5a544c;\n --aithe-code-placeholder: #5a544c;\n}\n";
9
+ //# sourceMappingURL=charcoal.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"charcoal.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/charcoal.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,mBAAmB,+6GAkG/B,CAAC"}
@@ -0,0 +1,106 @@
1
+ /**
2
+ * Charcoal theme tokens.
3
+ * 炭灰暗色主题令牌。
4
+ *
5
+ * Warm dark gray, understated elegance.
6
+ * 暖调深灰,低调优雅,适合内容阅读、编辑器、文档平台。
7
+ */
8
+ export const charcoalThemeTokens = `
9
+ .aithe-theme-charcoal,
10
+ [data-aithe-theme='charcoal'] {
11
+ color-scheme: dark;
12
+ --aithe-primary-1: #f2f0ff;
13
+ --aithe-primary-2: #ddd8ff;
14
+ --aithe-primary-3: #c0b8ff;
15
+ --aithe-primary-4: #9e90ff;
16
+ --aithe-primary-5: #7e6ef0;
17
+ --aithe-primary-6: #6454d4;
18
+ --aithe-primary-7: #5040ae;
19
+ --aithe-primary-8: #3e308c;
20
+ --aithe-primary-9: #30246c;
21
+ --aithe-primary-10: #241a50;
22
+ --aithe-success-1: #f0fcee;
23
+ --aithe-success-2: #d2f5cc;
24
+ --aithe-success-3: #aeeaa0;
25
+ --aithe-success-4: #80da6e;
26
+ --aithe-success-5: #5ac648;
27
+ --aithe-success-6: #3eae30;
28
+ --aithe-success-7: #2e9024;
29
+ --aithe-success-8: #22721c;
30
+ --aithe-success-9: #1a5a16;
31
+ --aithe-success-10: #144610;
32
+ --aithe-warning-1: #fff9eb;
33
+ --aithe-warning-2: #fff0c4;
34
+ --aithe-warning-3: #ffe08e;
35
+ --aithe-warning-4: #ffcc5a;
36
+ --aithe-warning-5: #f0b43e;
37
+ --aithe-warning-6: #d09426;
38
+ --aithe-warning-7: #ac761a;
39
+ --aithe-warning-8: #8a5c16;
40
+ --aithe-warning-9: #6e4a14;
41
+ --aithe-warning-10: #583810;
42
+ --aithe-danger-1: #fff1f0;
43
+ --aithe-danger-2: #ffddd9;
44
+ --aithe-danger-3: #ffc0b8;
45
+ --aithe-danger-4: #ff9a8e;
46
+ --aithe-danger-5: #f07068;
47
+ --aithe-danger-6: #d44844;
48
+ --aithe-danger-7: #b02e2c;
49
+ --aithe-danger-8: #8c201e;
50
+ --aithe-danger-9: #6a1616;
51
+ --aithe-danger-10: #4a0e0e;
52
+ --aithe-neutral-1: #f0eeec;
53
+ --aithe-neutral-2: #d6d2ce;
54
+ --aithe-neutral-3: #b4aea8;
55
+ --aithe-neutral-4: #928a82;
56
+ --aithe-neutral-5: #746c64;
57
+ --aithe-neutral-6: #5a544c;
58
+ --aithe-neutral-7: #423e38;
59
+ --aithe-neutral-8: #302c28;
60
+ --aithe-neutral-9: #201e1a;
61
+ --aithe-neutral-10: #121110;
62
+ --aithe-fill-1: #1a2133;
63
+ --aithe-fill-2: #1e263a;
64
+ --aithe-color-bg: #181614;
65
+ --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(100, 80, 60, 0.16) 0%, rgba(24, 22, 20, 1) 55%);
66
+ --aithe-color-surface: rgba(28, 26, 24, 0.84);
67
+ --aithe-color-surface-elevated: rgba(36, 34, 30, 0.96);
68
+ --aithe-color-surface-muted: #222018;
69
+ --aithe-color-surface-hover: rgba(255, 255, 255, 0.04);
70
+ --aithe-color-border: rgba(180, 160, 140, 0.17);
71
+ --aithe-color-border-strong: rgba(200, 180, 160, 0.25);
72
+ --aithe-color-text: #f0ece8;
73
+ --aithe-color-text-muted: #a8a096;
74
+ --aithe-color-text-subtle: #847c74;
75
+ --aithe-color-overlay: rgba(8, 6, 4, 0.66);
76
+ --aithe-color-selection: rgba(100, 84, 212, 0.22);
77
+ --aithe-color-focus-ring: rgba(100, 84, 212, 0.40);
78
+ --aithe-color-text-secondary: #8894ab;
79
+ --aithe-color-bg-muted: #151c2b;
80
+ --aithe-color-bg-hover: rgba(255, 255, 255, 0.04);
81
+ --aithe-color-border-subtle: rgba(172, 188, 217, 0.08);
82
+ --aithe-primary-6-rgb: 74, 125, 255;
83
+ --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.24);
84
+ --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.30);
85
+ --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.36);
86
+ --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.42);
87
+ --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.48);
88
+ --aithe-color-text-on-primary: #ffffff;
89
+ --aithe-code-keyword: #c678dd;
90
+ --aithe-code-boolean: #d19a66;
91
+ --aithe-code-builtin: #e5c07b;
92
+ --aithe-code-number: #d19a66;
93
+ --aithe-code-string: #98c379;
94
+ --aithe-code-function: #61afef;
95
+ --aithe-code-type: #e5c07b;
96
+ --aithe-code-preprocessor: #c678dd;
97
+ --aithe-code-tag: #e06c75;
98
+ --aithe-code-attr: #d19a66;
99
+ --aithe-code-key: #e06c75;
100
+ --aithe-code-punctuation: #89ddff;
101
+ --aithe-code-entity: #d19a66;
102
+ --aithe-code-comment: #5a544c;
103
+ --aithe-code-doctype: #5a544c;
104
+ --aithe-code-placeholder: #5a544c;
105
+ }
106
+ `;