base6-ui 1.1.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 (575) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/build/plugins.ts +31 -0
  3. package/build/unPlugin.ts +37 -0
  4. package/dist/components/AppProvider/index.d.ts +1 -0
  5. package/dist/components/AppProvider/index.vue.d.ts +17 -0
  6. package/dist/components/BaseButton/index.d.ts +1 -0
  7. package/dist/components/BaseButton/index.vue.d.ts +24 -0
  8. package/dist/components/BaseDataTable/index.d.ts +1 -0
  9. package/dist/components/BaseDataTable/index.vue.d.ts +22 -0
  10. package/dist/components/BaseDialog/index.d.ts +2 -0
  11. package/dist/components/BaseDialog/index.vue.d.ts +56 -0
  12. package/dist/components/BaseDialog/options.d.ts +2 -0
  13. package/dist/components/BaseDialog/type.d.ts +29 -0
  14. package/dist/components/BaseInputNumber/index.d.ts +1 -0
  15. package/dist/components/BaseInputNumber/index.vue.d.ts +5368 -0
  16. package/dist/components/BaseLayout/ASide/index.vue.d.ts +20 -0
  17. package/dist/components/BaseLayout/ASide/type.d.ts +7 -0
  18. package/dist/components/BaseLayout/index.d.ts +1 -0
  19. package/dist/components/BaseProgress/index.d.ts +264 -0
  20. package/dist/components/BaseRadio/index.d.ts +1 -0
  21. package/dist/components/BaseRadio/index.vue.d.ts +23 -0
  22. package/dist/components/BaseSelect/index.d.ts +1 -0
  23. package/dist/components/BaseSelect/index.vue.d.ts +20 -0
  24. package/dist/components/BaseSlider/index.d.ts +1 -0
  25. package/dist/components/BaseSlider/index.vue.d.ts +27 -0
  26. package/dist/components/BaseSwitch/index.d.ts +1 -0
  27. package/dist/components/BaseSwitch/index.vue.d.ts +23 -0
  28. package/dist/components/index.d.ts +11 -0
  29. package/dist/components/types/themes/extendThemes.d.ts +44 -0
  30. package/dist/config/index.d.ts +1 -0
  31. package/dist/config/themes/color/dark.d.ts +54 -0
  32. package/dist/config/themes/color/index.d.ts +2 -0
  33. package/dist/config/themes/color/light.d.ts +53 -0
  34. package/dist/config/themes/common.d.ts +41 -0
  35. package/dist/config/themes/components/alert/common.d.ts +2 -0
  36. package/dist/config/themes/components/alert/dark.d.ts +2 -0
  37. package/dist/config/themes/components/alert/light.d.ts +2 -0
  38. package/dist/config/themes/components/baseComponent/dark.d.ts +8 -0
  39. package/dist/config/themes/components/baseComponent/light.d.ts +8 -0
  40. package/dist/config/themes/components/button/common.d.ts +2 -0
  41. package/dist/config/themes/components/button/dark.d.ts +2 -0
  42. package/dist/config/themes/components/button/light.d.ts +2 -0
  43. package/dist/config/themes/components/card/dark.d.ts +2 -0
  44. package/dist/config/themes/components/card/light.d.ts +2 -0
  45. package/dist/config/themes/components/charts/dark.d.ts +398 -0
  46. package/dist/config/themes/components/charts/light.d.ts +396 -0
  47. package/dist/config/themes/components/checkbox/common.d.ts +2 -0
  48. package/dist/config/themes/components/checkbox/dark.d.ts +2 -0
  49. package/dist/config/themes/components/checkbox/light.d.ts +2 -0
  50. package/dist/config/themes/components/dataTable/dark.d.ts +2 -0
  51. package/dist/config/themes/components/dataTable/light.d.ts +2 -0
  52. package/dist/config/themes/components/datePicker/dark.d.ts +2 -0
  53. package/dist/config/themes/components/datePicker/light.d.ts +2 -0
  54. package/dist/config/themes/components/dialog/common.d.ts +8 -0
  55. package/dist/config/themes/components/dialog/dark.d.ts +15 -0
  56. package/dist/config/themes/components/dialog/light.d.ts +15 -0
  57. package/dist/config/themes/components/dropdown/dark.d.ts +2 -0
  58. package/dist/config/themes/components/dropdown/light.d.ts +2 -0
  59. package/dist/config/themes/components/form/dark.d.ts +2 -0
  60. package/dist/config/themes/components/form/light.d.ts +2 -0
  61. package/dist/config/themes/components/input/common.d.ts +2 -0
  62. package/dist/config/themes/components/input/dark.d.ts +2 -0
  63. package/dist/config/themes/components/input/light.d.ts +2 -0
  64. package/dist/config/themes/components/inputNumber/common.d.ts +3 -0
  65. package/dist/config/themes/components/inputNumber/dark.d.ts +3 -0
  66. package/dist/config/themes/components/inputNumber/light.d.ts +3 -0
  67. package/dist/config/themes/components/layout/dark.d.ts +5 -0
  68. package/dist/config/themes/components/layout/light.d.ts +5 -0
  69. package/dist/config/themes/components/menu/dark.d.ts +2 -0
  70. package/dist/config/themes/components/menu/light.d.ts +2 -0
  71. package/dist/config/themes/components/progress/dark.d.ts +3 -0
  72. package/dist/config/themes/components/progress/light.d.ts +3 -0
  73. package/dist/config/themes/components/radio/dark.d.ts +3 -0
  74. package/dist/config/themes/components/radio/light.d.ts +3 -0
  75. package/dist/config/themes/components/select/dark.d.ts +2 -0
  76. package/dist/config/themes/components/select/light.d.ts +2 -0
  77. package/dist/config/themes/components/slider/dark.d.ts +3 -0
  78. package/dist/config/themes/components/slider/light.d.ts +3 -0
  79. package/dist/config/themes/components/switch/common.d.ts +3 -0
  80. package/dist/config/themes/components/switch/dark.d.ts +3 -0
  81. package/dist/config/themes/components/switch/light.d.ts +3 -0
  82. package/dist/config/themes/components/tag/dark.d.ts +2 -0
  83. package/dist/config/themes/components/tag/light.d.ts +2 -0
  84. package/dist/config/themes/components/transfer/dark.d.ts +2 -0
  85. package/dist/config/themes/components/transfer/light.d.ts +2 -0
  86. package/dist/config/themes/dark.d.ts +2 -0
  87. package/dist/config/themes/index.d.ts +7 -0
  88. package/dist/config/themes/light.d.ts +2 -0
  89. package/dist/config/themes/token/dark.d.ts +28 -0
  90. package/dist/config/themes/token/index.d.ts +2 -0
  91. package/dist/config/themes/token/light.d.ts +9 -0
  92. package/dist/globalMethods/index.d.ts +2 -0
  93. package/dist/globalMethods/modules/confirmTip.d.ts +2 -0
  94. package/dist/globalMethods/modules/message.d.ts +4 -0
  95. package/dist/hooks/useNaiveConfigProvideContext.d.ts +2 -0
  96. package/dist/index.d.ts +3 -0
  97. package/dist/types/themes/extendThemes.d.ts +44 -0
  98. package/es/_virtual/_plugin-vue_export-helper.mjs +9 -0
  99. package/es/_virtual/virtual_svg-icons-register.mjs +7 -0
  100. package/es/components/AppProvider/index.d.ts +1 -0
  101. package/es/components/AppProvider/index.vue.d.ts +17 -0
  102. package/es/components/AppProvider/index.vue.mjs +45 -0
  103. package/es/components/AppProvider/index.vue2.mjs +4 -0
  104. package/es/components/BaseButton/index.d.ts +1 -0
  105. package/es/components/BaseButton/index.vue.d.ts +24 -0
  106. package/es/components/BaseButton/index.vue.mjs +36 -0
  107. package/es/components/BaseButton/index.vue2.mjs +4 -0
  108. package/es/components/BaseDataTable/index.d.ts +1 -0
  109. package/es/components/BaseDataTable/index.vue.d.ts +22 -0
  110. package/es/components/BaseDataTable/index.vue.mjs +7 -0
  111. package/es/components/BaseDataTable/index.vue2.mjs +70 -0
  112. package/es/components/BaseDialog/index.d.ts +2 -0
  113. package/es/components/BaseDialog/index.vue.d.ts +56 -0
  114. package/es/components/BaseDialog/index.vue.mjs +141 -0
  115. package/es/components/BaseDialog/index.vue2.mjs +4 -0
  116. package/es/components/BaseDialog/options.d.ts +2 -0
  117. package/es/components/BaseDialog/options.mjs +27 -0
  118. package/es/components/BaseDialog/type.d.ts +29 -0
  119. package/es/components/BaseInputNumber/index.d.ts +1 -0
  120. package/es/components/BaseInputNumber/index.vue.d.ts +5368 -0
  121. package/es/components/BaseInputNumber/index.vue.mjs +7 -0
  122. package/es/components/BaseInputNumber/index.vue2.mjs +155 -0
  123. package/es/components/BaseLayout/ASide/index.vue.d.ts +20 -0
  124. package/es/components/BaseLayout/ASide/index.vue.mjs +7 -0
  125. package/es/components/BaseLayout/ASide/index.vue2.mjs +56 -0
  126. package/es/components/BaseLayout/ASide/type.d.ts +7 -0
  127. package/es/components/BaseLayout/index.d.ts +1 -0
  128. package/es/components/BaseProgress/index.d.ts +264 -0
  129. package/es/components/BaseProgress/index.mjs +81 -0
  130. package/es/components/BaseRadio/index.d.ts +1 -0
  131. package/es/components/BaseRadio/index.vue.d.ts +23 -0
  132. package/es/components/BaseRadio/index.vue.mjs +7 -0
  133. package/es/components/BaseRadio/index.vue2.mjs +42 -0
  134. package/es/components/BaseSelect/index.d.ts +1 -0
  135. package/es/components/BaseSelect/index.vue.d.ts +20 -0
  136. package/es/components/BaseSelect/index.vue.mjs +56 -0
  137. package/es/components/BaseSelect/index.vue2.mjs +4 -0
  138. package/es/components/BaseSlider/index.d.ts +1 -0
  139. package/es/components/BaseSlider/index.vue.d.ts +27 -0
  140. package/es/components/BaseSlider/index.vue.mjs +7 -0
  141. package/es/components/BaseSlider/index.vue2.mjs +107 -0
  142. package/es/components/BaseSwitch/index.d.ts +1 -0
  143. package/es/components/BaseSwitch/index.vue.d.ts +23 -0
  144. package/es/components/BaseSwitch/index.vue.mjs +7 -0
  145. package/es/components/BaseSwitch/index.vue2.mjs +44 -0
  146. package/es/components/index.d.ts +11 -0
  147. package/es/components/types/themes/extendThemes.d.ts +44 -0
  148. package/es/config/index.d.ts +1 -0
  149. package/es/config/themes/color/dark.d.ts +54 -0
  150. package/es/config/themes/color/dark.mjs +61 -0
  151. package/es/config/themes/color/index.d.ts +2 -0
  152. package/es/config/themes/color/light.d.ts +53 -0
  153. package/es/config/themes/color/light.mjs +60 -0
  154. package/es/config/themes/common.d.ts +41 -0
  155. package/es/config/themes/common.mjs +39 -0
  156. package/es/config/themes/components/alert/common.d.ts +2 -0
  157. package/es/config/themes/components/alert/common.mjs +10 -0
  158. package/es/config/themes/components/alert/dark.d.ts +2 -0
  159. package/es/config/themes/components/alert/dark.mjs +21 -0
  160. package/es/config/themes/components/alert/light.d.ts +2 -0
  161. package/es/config/themes/components/alert/light.mjs +17 -0
  162. package/es/config/themes/components/baseComponent/dark.d.ts +8 -0
  163. package/es/config/themes/components/baseComponent/dark.mjs +249 -0
  164. package/es/config/themes/components/baseComponent/light.d.ts +8 -0
  165. package/es/config/themes/components/baseComponent/light.mjs +350 -0
  166. package/es/config/themes/components/button/common.d.ts +2 -0
  167. package/es/config/themes/components/button/common.mjs +17 -0
  168. package/es/config/themes/components/button/dark.d.ts +2 -0
  169. package/es/config/themes/components/button/dark.mjs +109 -0
  170. package/es/config/themes/components/button/light.d.ts +2 -0
  171. package/es/config/themes/components/button/light.mjs +88 -0
  172. package/es/config/themes/components/card/dark.d.ts +2 -0
  173. package/es/config/themes/components/card/dark.mjs +14 -0
  174. package/es/config/themes/components/card/light.d.ts +2 -0
  175. package/es/config/themes/components/card/light.mjs +14 -0
  176. package/es/config/themes/components/charts/dark.d.ts +398 -0
  177. package/es/config/themes/components/charts/dark.mjs +428 -0
  178. package/es/config/themes/components/charts/light.d.ts +396 -0
  179. package/es/config/themes/components/charts/light.mjs +426 -0
  180. package/es/config/themes/components/checkbox/common.d.ts +2 -0
  181. package/es/config/themes/components/checkbox/common.mjs +7 -0
  182. package/es/config/themes/components/checkbox/dark.d.ts +2 -0
  183. package/es/config/themes/components/checkbox/dark.mjs +21 -0
  184. package/es/config/themes/components/checkbox/light.d.ts +2 -0
  185. package/es/config/themes/components/checkbox/light.mjs +20 -0
  186. package/es/config/themes/components/dataTable/dark.d.ts +2 -0
  187. package/es/config/themes/components/dataTable/dark.mjs +14 -0
  188. package/es/config/themes/components/dataTable/light.d.ts +2 -0
  189. package/es/config/themes/components/dataTable/light.mjs +14 -0
  190. package/es/config/themes/components/datePicker/dark.d.ts +2 -0
  191. package/es/config/themes/components/datePicker/dark.mjs +11 -0
  192. package/es/config/themes/components/datePicker/light.d.ts +2 -0
  193. package/es/config/themes/components/datePicker/light.mjs +11 -0
  194. package/es/config/themes/components/dialog/common.d.ts +8 -0
  195. package/es/config/themes/components/dialog/common.mjs +11 -0
  196. package/es/config/themes/components/dialog/dark.d.ts +15 -0
  197. package/es/config/themes/components/dialog/dark.mjs +16 -0
  198. package/es/config/themes/components/dialog/light.d.ts +15 -0
  199. package/es/config/themes/components/dialog/light.mjs +15 -0
  200. package/es/config/themes/components/dropdown/dark.d.ts +2 -0
  201. package/es/config/themes/components/dropdown/dark.mjs +8 -0
  202. package/es/config/themes/components/dropdown/light.d.ts +2 -0
  203. package/es/config/themes/components/dropdown/light.mjs +8 -0
  204. package/es/config/themes/components/form/dark.d.ts +2 -0
  205. package/es/config/themes/components/form/dark.mjs +8 -0
  206. package/es/config/themes/components/form/light.d.ts +2 -0
  207. package/es/config/themes/components/form/light.mjs +8 -0
  208. package/es/config/themes/components/input/common.d.ts +2 -0
  209. package/es/config/themes/components/input/common.mjs +11 -0
  210. package/es/config/themes/components/input/dark.d.ts +2 -0
  211. package/es/config/themes/components/input/dark.mjs +22 -0
  212. package/es/config/themes/components/input/light.d.ts +2 -0
  213. package/es/config/themes/components/input/light.mjs +21 -0
  214. package/es/config/themes/components/inputNumber/common.d.ts +3 -0
  215. package/es/config/themes/components/inputNumber/common.mjs +14 -0
  216. package/es/config/themes/components/inputNumber/dark.d.ts +3 -0
  217. package/es/config/themes/components/inputNumber/dark.mjs +21 -0
  218. package/es/config/themes/components/inputNumber/light.d.ts +3 -0
  219. package/es/config/themes/components/inputNumber/light.mjs +17 -0
  220. package/es/config/themes/components/layout/dark.d.ts +5 -0
  221. package/es/config/themes/components/layout/dark.mjs +10 -0
  222. package/es/config/themes/components/layout/light.d.ts +5 -0
  223. package/es/config/themes/components/layout/light.mjs +11 -0
  224. package/es/config/themes/components/menu/dark.d.ts +2 -0
  225. package/es/config/themes/components/menu/dark.mjs +17 -0
  226. package/es/config/themes/components/menu/light.d.ts +2 -0
  227. package/es/config/themes/components/menu/light.mjs +16 -0
  228. package/es/config/themes/components/progress/dark.d.ts +3 -0
  229. package/es/config/themes/components/progress/dark.mjs +21 -0
  230. package/es/config/themes/components/progress/light.d.ts +3 -0
  231. package/es/config/themes/components/progress/light.mjs +20 -0
  232. package/es/config/themes/components/radio/dark.d.ts +3 -0
  233. package/es/config/themes/components/radio/dark.mjs +20 -0
  234. package/es/config/themes/components/radio/light.d.ts +3 -0
  235. package/es/config/themes/components/radio/light.mjs +18 -0
  236. package/es/config/themes/components/select/dark.d.ts +2 -0
  237. package/es/config/themes/components/select/dark.mjs +40 -0
  238. package/es/config/themes/components/select/light.d.ts +2 -0
  239. package/es/config/themes/components/select/light.mjs +36 -0
  240. package/es/config/themes/components/slider/dark.d.ts +3 -0
  241. package/es/config/themes/components/slider/dark.mjs +15 -0
  242. package/es/config/themes/components/slider/light.d.ts +3 -0
  243. package/es/config/themes/components/slider/light.mjs +15 -0
  244. package/es/config/themes/components/switch/common.d.ts +3 -0
  245. package/es/config/themes/components/switch/common.mjs +14 -0
  246. package/es/config/themes/components/switch/dark.d.ts +3 -0
  247. package/es/config/themes/components/switch/dark.mjs +15 -0
  248. package/es/config/themes/components/switch/light.d.ts +3 -0
  249. package/es/config/themes/components/switch/light.mjs +15 -0
  250. package/es/config/themes/components/tag/dark.d.ts +2 -0
  251. package/es/config/themes/components/tag/dark.mjs +34 -0
  252. package/es/config/themes/components/tag/light.d.ts +2 -0
  253. package/es/config/themes/components/tag/light.mjs +33 -0
  254. package/es/config/themes/components/transfer/dark.d.ts +2 -0
  255. package/es/config/themes/components/transfer/dark.mjs +9 -0
  256. package/es/config/themes/components/transfer/light.d.ts +2 -0
  257. package/es/config/themes/components/transfer/light.mjs +9 -0
  258. package/es/config/themes/dark.d.ts +2 -0
  259. package/es/config/themes/dark.mjs +53 -0
  260. package/es/config/themes/index.d.ts +7 -0
  261. package/es/config/themes/index.mjs +50 -0
  262. package/es/config/themes/light.d.ts +2 -0
  263. package/es/config/themes/light.mjs +53 -0
  264. package/es/config/themes/token/dark.d.ts +28 -0
  265. package/es/config/themes/token/dark.mjs +31 -0
  266. package/es/config/themes/token/index.d.ts +2 -0
  267. package/es/config/themes/token/light.d.ts +9 -0
  268. package/es/config/themes/token/light.mjs +11 -0
  269. package/es/globalMethods/index.d.ts +2 -0
  270. package/es/globalMethods/index.mjs +8 -0
  271. package/es/globalMethods/modules/confirmTip.d.ts +2 -0
  272. package/es/globalMethods/modules/confirmTip.mjs +45 -0
  273. package/es/globalMethods/modules/message.d.ts +4 -0
  274. package/es/globalMethods/modules/message.mjs +15 -0
  275. package/es/hooks/useNaiveConfigProvideContext.d.ts +2 -0
  276. package/es/hooks/useNaiveConfigProvideContext.mjs +8 -0
  277. package/es/index.css +1 -0
  278. package/es/index.d.ts +3 -0
  279. package/es/index.mjs +47 -0
  280. package/es/node_modules/.pnpm/lib-materials@0.0.8_typescript@5.7.2/node_modules/lib-materials/dist/lib-materials.mjs +750 -0
  281. package/es/types/themes/extendThemes.d.ts +44 -0
  282. package/eslint.config.js +114 -0
  283. package/lib/_virtual/_plugin-vue_export-helper.js +1 -0
  284. package/lib/_virtual/virtual_svg-icons-register.js +1 -0
  285. package/lib/components/AppProvider/index.d.ts +1 -0
  286. package/lib/components/AppProvider/index.vue.d.ts +17 -0
  287. package/lib/components/AppProvider/index.vue.js +1 -0
  288. package/lib/components/AppProvider/index.vue2.js +1 -0
  289. package/lib/components/BaseButton/index.d.ts +1 -0
  290. package/lib/components/BaseButton/index.vue.d.ts +24 -0
  291. package/lib/components/BaseButton/index.vue.js +1 -0
  292. package/lib/components/BaseButton/index.vue2.js +1 -0
  293. package/lib/components/BaseDataTable/index.d.ts +1 -0
  294. package/lib/components/BaseDataTable/index.vue.d.ts +22 -0
  295. package/lib/components/BaseDataTable/index.vue.js +1 -0
  296. package/lib/components/BaseDataTable/index.vue2.js +1 -0
  297. package/lib/components/BaseDialog/index.d.ts +2 -0
  298. package/lib/components/BaseDialog/index.vue.d.ts +56 -0
  299. package/lib/components/BaseDialog/index.vue.js +1 -0
  300. package/lib/components/BaseDialog/index.vue2.js +1 -0
  301. package/lib/components/BaseDialog/options.d.ts +2 -0
  302. package/lib/components/BaseDialog/options.js +1 -0
  303. package/lib/components/BaseDialog/type.d.ts +29 -0
  304. package/lib/components/BaseInputNumber/index.d.ts +1 -0
  305. package/lib/components/BaseInputNumber/index.vue.d.ts +5368 -0
  306. package/lib/components/BaseInputNumber/index.vue.js +1 -0
  307. package/lib/components/BaseInputNumber/index.vue2.js +1 -0
  308. package/lib/components/BaseLayout/ASide/index.vue.d.ts +20 -0
  309. package/lib/components/BaseLayout/ASide/index.vue.js +1 -0
  310. package/lib/components/BaseLayout/ASide/index.vue2.js +1 -0
  311. package/lib/components/BaseLayout/ASide/type.d.ts +7 -0
  312. package/lib/components/BaseLayout/index.d.ts +1 -0
  313. package/lib/components/BaseProgress/index.d.ts +264 -0
  314. package/lib/components/BaseProgress/index.js +1 -0
  315. package/lib/components/BaseRadio/index.d.ts +1 -0
  316. package/lib/components/BaseRadio/index.vue.d.ts +23 -0
  317. package/lib/components/BaseRadio/index.vue.js +1 -0
  318. package/lib/components/BaseRadio/index.vue2.js +1 -0
  319. package/lib/components/BaseSelect/index.d.ts +1 -0
  320. package/lib/components/BaseSelect/index.vue.d.ts +20 -0
  321. package/lib/components/BaseSelect/index.vue.js +1 -0
  322. package/lib/components/BaseSelect/index.vue2.js +1 -0
  323. package/lib/components/BaseSlider/index.d.ts +1 -0
  324. package/lib/components/BaseSlider/index.vue.d.ts +27 -0
  325. package/lib/components/BaseSlider/index.vue.js +1 -0
  326. package/lib/components/BaseSlider/index.vue2.js +1 -0
  327. package/lib/components/BaseSwitch/index.d.ts +1 -0
  328. package/lib/components/BaseSwitch/index.vue.d.ts +23 -0
  329. package/lib/components/BaseSwitch/index.vue.js +1 -0
  330. package/lib/components/BaseSwitch/index.vue2.js +1 -0
  331. package/lib/components/index.d.ts +11 -0
  332. package/lib/components/types/themes/extendThemes.d.ts +44 -0
  333. package/lib/config/index.d.ts +1 -0
  334. package/lib/config/themes/color/dark.d.ts +54 -0
  335. package/lib/config/themes/color/dark.js +1 -0
  336. package/lib/config/themes/color/index.d.ts +2 -0
  337. package/lib/config/themes/color/light.d.ts +53 -0
  338. package/lib/config/themes/color/light.js +1 -0
  339. package/lib/config/themes/common.d.ts +41 -0
  340. package/lib/config/themes/common.js +1 -0
  341. package/lib/config/themes/components/alert/common.d.ts +2 -0
  342. package/lib/config/themes/components/alert/common.js +1 -0
  343. package/lib/config/themes/components/alert/dark.d.ts +2 -0
  344. package/lib/config/themes/components/alert/dark.js +1 -0
  345. package/lib/config/themes/components/alert/light.d.ts +2 -0
  346. package/lib/config/themes/components/alert/light.js +1 -0
  347. package/lib/config/themes/components/baseComponent/dark.d.ts +8 -0
  348. package/lib/config/themes/components/baseComponent/dark.js +1 -0
  349. package/lib/config/themes/components/baseComponent/light.d.ts +8 -0
  350. package/lib/config/themes/components/baseComponent/light.js +1 -0
  351. package/lib/config/themes/components/button/common.d.ts +2 -0
  352. package/lib/config/themes/components/button/common.js +1 -0
  353. package/lib/config/themes/components/button/dark.d.ts +2 -0
  354. package/lib/config/themes/components/button/dark.js +1 -0
  355. package/lib/config/themes/components/button/light.d.ts +2 -0
  356. package/lib/config/themes/components/button/light.js +1 -0
  357. package/lib/config/themes/components/card/dark.d.ts +2 -0
  358. package/lib/config/themes/components/card/dark.js +1 -0
  359. package/lib/config/themes/components/card/light.d.ts +2 -0
  360. package/lib/config/themes/components/card/light.js +1 -0
  361. package/lib/config/themes/components/charts/dark.d.ts +398 -0
  362. package/lib/config/themes/components/charts/dark.js +1 -0
  363. package/lib/config/themes/components/charts/light.d.ts +396 -0
  364. package/lib/config/themes/components/charts/light.js +1 -0
  365. package/lib/config/themes/components/checkbox/common.d.ts +2 -0
  366. package/lib/config/themes/components/checkbox/common.js +1 -0
  367. package/lib/config/themes/components/checkbox/dark.d.ts +2 -0
  368. package/lib/config/themes/components/checkbox/dark.js +1 -0
  369. package/lib/config/themes/components/checkbox/light.d.ts +2 -0
  370. package/lib/config/themes/components/checkbox/light.js +1 -0
  371. package/lib/config/themes/components/dataTable/dark.d.ts +2 -0
  372. package/lib/config/themes/components/dataTable/dark.js +1 -0
  373. package/lib/config/themes/components/dataTable/light.d.ts +2 -0
  374. package/lib/config/themes/components/dataTable/light.js +1 -0
  375. package/lib/config/themes/components/datePicker/dark.d.ts +2 -0
  376. package/lib/config/themes/components/datePicker/dark.js +1 -0
  377. package/lib/config/themes/components/datePicker/light.d.ts +2 -0
  378. package/lib/config/themes/components/datePicker/light.js +1 -0
  379. package/lib/config/themes/components/dialog/common.d.ts +8 -0
  380. package/lib/config/themes/components/dialog/common.js +1 -0
  381. package/lib/config/themes/components/dialog/dark.d.ts +15 -0
  382. package/lib/config/themes/components/dialog/dark.js +1 -0
  383. package/lib/config/themes/components/dialog/light.d.ts +15 -0
  384. package/lib/config/themes/components/dialog/light.js +1 -0
  385. package/lib/config/themes/components/dropdown/dark.d.ts +2 -0
  386. package/lib/config/themes/components/dropdown/dark.js +1 -0
  387. package/lib/config/themes/components/dropdown/light.d.ts +2 -0
  388. package/lib/config/themes/components/dropdown/light.js +1 -0
  389. package/lib/config/themes/components/form/dark.d.ts +2 -0
  390. package/lib/config/themes/components/form/dark.js +1 -0
  391. package/lib/config/themes/components/form/light.d.ts +2 -0
  392. package/lib/config/themes/components/form/light.js +1 -0
  393. package/lib/config/themes/components/input/common.d.ts +2 -0
  394. package/lib/config/themes/components/input/common.js +1 -0
  395. package/lib/config/themes/components/input/dark.d.ts +2 -0
  396. package/lib/config/themes/components/input/dark.js +1 -0
  397. package/lib/config/themes/components/input/light.d.ts +2 -0
  398. package/lib/config/themes/components/input/light.js +1 -0
  399. package/lib/config/themes/components/inputNumber/common.d.ts +3 -0
  400. package/lib/config/themes/components/inputNumber/common.js +1 -0
  401. package/lib/config/themes/components/inputNumber/dark.d.ts +3 -0
  402. package/lib/config/themes/components/inputNumber/dark.js +1 -0
  403. package/lib/config/themes/components/inputNumber/light.d.ts +3 -0
  404. package/lib/config/themes/components/inputNumber/light.js +1 -0
  405. package/lib/config/themes/components/layout/dark.d.ts +5 -0
  406. package/lib/config/themes/components/layout/dark.js +1 -0
  407. package/lib/config/themes/components/layout/light.d.ts +5 -0
  408. package/lib/config/themes/components/layout/light.js +1 -0
  409. package/lib/config/themes/components/menu/dark.d.ts +2 -0
  410. package/lib/config/themes/components/menu/dark.js +1 -0
  411. package/lib/config/themes/components/menu/light.d.ts +2 -0
  412. package/lib/config/themes/components/menu/light.js +1 -0
  413. package/lib/config/themes/components/progress/dark.d.ts +3 -0
  414. package/lib/config/themes/components/progress/dark.js +1 -0
  415. package/lib/config/themes/components/progress/light.d.ts +3 -0
  416. package/lib/config/themes/components/progress/light.js +1 -0
  417. package/lib/config/themes/components/radio/dark.d.ts +3 -0
  418. package/lib/config/themes/components/radio/dark.js +1 -0
  419. package/lib/config/themes/components/radio/light.d.ts +3 -0
  420. package/lib/config/themes/components/radio/light.js +1 -0
  421. package/lib/config/themes/components/select/dark.d.ts +2 -0
  422. package/lib/config/themes/components/select/dark.js +1 -0
  423. package/lib/config/themes/components/select/light.d.ts +2 -0
  424. package/lib/config/themes/components/select/light.js +1 -0
  425. package/lib/config/themes/components/slider/dark.d.ts +3 -0
  426. package/lib/config/themes/components/slider/dark.js +1 -0
  427. package/lib/config/themes/components/slider/light.d.ts +3 -0
  428. package/lib/config/themes/components/slider/light.js +1 -0
  429. package/lib/config/themes/components/switch/common.d.ts +3 -0
  430. package/lib/config/themes/components/switch/common.js +1 -0
  431. package/lib/config/themes/components/switch/dark.d.ts +3 -0
  432. package/lib/config/themes/components/switch/dark.js +1 -0
  433. package/lib/config/themes/components/switch/light.d.ts +3 -0
  434. package/lib/config/themes/components/switch/light.js +1 -0
  435. package/lib/config/themes/components/tag/dark.d.ts +2 -0
  436. package/lib/config/themes/components/tag/dark.js +1 -0
  437. package/lib/config/themes/components/tag/light.d.ts +2 -0
  438. package/lib/config/themes/components/tag/light.js +1 -0
  439. package/lib/config/themes/components/transfer/dark.d.ts +2 -0
  440. package/lib/config/themes/components/transfer/dark.js +1 -0
  441. package/lib/config/themes/components/transfer/light.d.ts +2 -0
  442. package/lib/config/themes/components/transfer/light.js +1 -0
  443. package/lib/config/themes/dark.d.ts +2 -0
  444. package/lib/config/themes/dark.js +1 -0
  445. package/lib/config/themes/index.d.ts +7 -0
  446. package/lib/config/themes/index.js +1 -0
  447. package/lib/config/themes/light.d.ts +2 -0
  448. package/lib/config/themes/light.js +1 -0
  449. package/lib/config/themes/token/dark.d.ts +28 -0
  450. package/lib/config/themes/token/dark.js +1 -0
  451. package/lib/config/themes/token/index.d.ts +2 -0
  452. package/lib/config/themes/token/light.d.ts +9 -0
  453. package/lib/config/themes/token/light.js +1 -0
  454. package/lib/globalMethods/index.d.ts +2 -0
  455. package/lib/globalMethods/index.js +1 -0
  456. package/lib/globalMethods/modules/confirmTip.d.ts +2 -0
  457. package/lib/globalMethods/modules/confirmTip.js +1 -0
  458. package/lib/globalMethods/modules/message.d.ts +4 -0
  459. package/lib/globalMethods/modules/message.js +1 -0
  460. package/lib/hooks/useNaiveConfigProvideContext.d.ts +2 -0
  461. package/lib/hooks/useNaiveConfigProvideContext.js +1 -0
  462. package/lib/index.css +1 -0
  463. package/lib/index.d.ts +3 -0
  464. package/lib/index.js +1 -0
  465. package/lib/node_modules/.pnpm/lib-materials@0.0.8_typescript@5.7.2/node_modules/lib-materials/dist/lib-materials.js +1 -0
  466. package/lib/types/themes/extendThemes.d.ts +44 -0
  467. package/package.json +43 -0
  468. package/readme.md +83 -0
  469. package/src/components/AppProvider/index.ts +1 -0
  470. package/src/components/AppProvider/index.vue +38 -0
  471. package/src/components/BaseButton/index.ts +1 -0
  472. package/src/components/BaseButton/index.vue +21 -0
  473. package/src/components/BaseDataTable/index.ts +1 -0
  474. package/src/components/BaseDataTable/index.vue +120 -0
  475. package/src/components/BaseDialog/index.ts +2 -0
  476. package/src/components/BaseDialog/index.vue +104 -0
  477. package/src/components/BaseDialog/options.ts +25 -0
  478. package/src/components/BaseDialog/type.ts +30 -0
  479. package/src/components/BaseInputNumber/index.ts +1 -0
  480. package/src/components/BaseInputNumber/index.vue +188 -0
  481. package/src/components/BaseLayout/ASide/index.vue +104 -0
  482. package/src/components/BaseLayout/ASide/type.ts +11 -0
  483. package/src/components/BaseLayout/index.ts +1 -0
  484. package/src/components/BaseProgress/index.ts +99 -0
  485. package/src/components/BaseRadio/index.ts +1 -0
  486. package/src/components/BaseRadio/index.vue +45 -0
  487. package/src/components/BaseSelect/index.ts +1 -0
  488. package/src/components/BaseSelect/index.vue +59 -0
  489. package/src/components/BaseSlider/index.ts +1 -0
  490. package/src/components/BaseSlider/index.vue +114 -0
  491. package/src/components/BaseSwitch/index.ts +1 -0
  492. package/src/components/BaseSwitch/index.vue +69 -0
  493. package/src/components/index.ts +11 -0
  494. package/src/components/types/themes/extendThemes.ts +50 -0
  495. package/src/config/index.ts +1 -0
  496. package/src/config/themes/color/dark.ts +60 -0
  497. package/src/config/themes/color/index.ts +2 -0
  498. package/src/config/themes/color/light.ts +59 -0
  499. package/src/config/themes/common.ts +50 -0
  500. package/src/config/themes/components/alert/common.ts +13 -0
  501. package/src/config/themes/components/alert/dark.ts +23 -0
  502. package/src/config/themes/components/alert/light.ts +18 -0
  503. package/src/config/themes/components/baseComponent/dark.ts +189 -0
  504. package/src/config/themes/components/baseComponent/light.ts +297 -0
  505. package/src/config/themes/components/button/common.ts +20 -0
  506. package/src/config/themes/components/button/dark.ts +127 -0
  507. package/src/config/themes/components/button/light.ts +102 -0
  508. package/src/config/themes/components/card/dark.ts +13 -0
  509. package/src/config/themes/components/card/light.ts +13 -0
  510. package/src/config/themes/components/charts/dark.ts +425 -0
  511. package/src/config/themes/components/charts/light.ts +424 -0
  512. package/src/config/themes/components/checkbox/common.ts +7 -0
  513. package/src/config/themes/components/checkbox/dark.ts +23 -0
  514. package/src/config/themes/components/checkbox/light.ts +22 -0
  515. package/src/config/themes/components/dataTable/dark.ts +14 -0
  516. package/src/config/themes/components/dataTable/light.ts +14 -0
  517. package/src/config/themes/components/datePicker/dark.ts +10 -0
  518. package/src/config/themes/components/datePicker/light.ts +10 -0
  519. package/src/config/themes/components/dialog/common.ts +8 -0
  520. package/src/config/themes/components/dialog/dark.ts +14 -0
  521. package/src/config/themes/components/dialog/light.ts +13 -0
  522. package/src/config/themes/components/dropdown/dark.ts +7 -0
  523. package/src/config/themes/components/dropdown/light.ts +7 -0
  524. package/src/config/themes/components/form/dark.ts +7 -0
  525. package/src/config/themes/components/form/light.ts +7 -0
  526. package/src/config/themes/components/input/common.ts +13 -0
  527. package/src/config/themes/components/input/dark.ts +25 -0
  528. package/src/config/themes/components/input/light.ts +24 -0
  529. package/src/config/themes/components/inputNumber/common.ts +14 -0
  530. package/src/config/themes/components/inputNumber/dark.ts +24 -0
  531. package/src/config/themes/components/inputNumber/light.ts +20 -0
  532. package/src/config/themes/components/layout/dark.ts +8 -0
  533. package/src/config/themes/components/layout/light.ts +9 -0
  534. package/src/config/themes/components/menu/dark.ts +18 -0
  535. package/src/config/themes/components/menu/light.ts +17 -0
  536. package/src/config/themes/components/progress/dark.ts +25 -0
  537. package/src/config/themes/components/progress/light.ts +25 -0
  538. package/src/config/themes/components/radio/dark.ts +20 -0
  539. package/src/config/themes/components/radio/light.ts +21 -0
  540. package/src/config/themes/components/select/dark.ts +42 -0
  541. package/src/config/themes/components/select/light.ts +38 -0
  542. package/src/config/themes/components/slider/dark.ts +16 -0
  543. package/src/config/themes/components/slider/light.ts +16 -0
  544. package/src/config/themes/components/switch/common.ts +17 -0
  545. package/src/config/themes/components/switch/dark.ts +17 -0
  546. package/src/config/themes/components/switch/light.ts +17 -0
  547. package/src/config/themes/components/tag/dark.ts +40 -0
  548. package/src/config/themes/components/tag/light.ts +39 -0
  549. package/src/config/themes/components/transfer/dark.ts +8 -0
  550. package/src/config/themes/components/transfer/light.ts +8 -0
  551. package/src/config/themes/dark.ts +61 -0
  552. package/src/config/themes/index.ts +12 -0
  553. package/src/config/themes/light.ts +61 -0
  554. package/src/config/themes/token/dark.ts +32 -0
  555. package/src/config/themes/token/index.ts +2 -0
  556. package/src/config/themes/token/light.ts +11 -0
  557. package/src/globalMethods/index.ts +8 -0
  558. package/src/globalMethods/modules/confirmTip.ts +49 -0
  559. package/src/globalMethods/modules/message.ts +20 -0
  560. package/src/hooks/useNaiveConfigProvideContext.ts +10 -0
  561. package/src/index.ts +8 -0
  562. package/src/style/index.scss +63 -0
  563. package/src/svg-icons/add.svg +1 -0
  564. package/src/svg-icons/arrow/down.svg +1 -0
  565. package/src/svg-icons/arrow/top.svg +1 -0
  566. package/src/svg-icons/logo.svg +4 -0
  567. package/src/svg-icons/operate/add.svg +1 -0
  568. package/src/svg-icons/operate/close.svg +1 -0
  569. package/src/svg-icons/operate/minus.svg +1 -0
  570. package/src/svg-icons/progress-default.svg +3 -0
  571. package/src/types/themes/extendThemes.ts +50 -0
  572. package/tsconfig.json +38 -0
  573. package/typing/components.d.ts +38 -0
  574. package/typing/global.d.ts +19 -0
  575. package/vite.config.ts +61 -0
@@ -0,0 +1,53 @@
1
+ declare const lightBase: {
2
+ 'color-primary-1': string;
3
+ 'color-primary-2': string;
4
+ 'color-primary-3': string;
5
+ 'color-primary-4': string;
6
+ 'color-primary-5': string;
7
+ 'color-primary-6': string;
8
+ 'color-primary-7': string;
9
+ 'color-primary-8': string;
10
+ 'color-primary-9': string;
11
+ 'color-primary-10': string;
12
+ 'color-green-1': string;
13
+ 'color-green-2': string;
14
+ 'color-green-3': string;
15
+ 'color-green-4': string;
16
+ 'color-green-5': string;
17
+ 'color-green-6': string;
18
+ 'color-green-7': string;
19
+ 'color-green-8': string;
20
+ 'color-green-9': string;
21
+ 'color-green-10': string;
22
+ 'color-red-1': string;
23
+ 'color-red-2': string;
24
+ 'color-red-3': string;
25
+ 'color-red-4': string;
26
+ 'color-red-5': string;
27
+ 'color-red-6': string;
28
+ 'color-red-7': string;
29
+ 'color-red-8': string;
30
+ 'color-red-9': string;
31
+ 'color-red-10': string;
32
+ 'color-origin-1': string;
33
+ 'color-origin-2': string;
34
+ 'color-origin-3': string;
35
+ 'color-origin-4': string;
36
+ 'color-origin-5': string;
37
+ 'color-origin-6': string;
38
+ 'color-origin-7': string;
39
+ 'color-origin-8': string;
40
+ 'color-origin-9': string;
41
+ 'color-origin-10': string;
42
+ 'color-gray-1': string;
43
+ 'color-gray-2': string;
44
+ 'color-gray-3': string;
45
+ 'color-gray-4': string;
46
+ 'color-gray-5': string;
47
+ 'color-gray-6': string;
48
+ 'color-gray-7': string;
49
+ 'color-gray-8': string;
50
+ 'color-gray-9': string;
51
+ 'color-gray-10': string;
52
+ };
53
+ export default lightBase;
@@ -0,0 +1 @@
1
+ "use strict";const o={"color-primary-1":"#ECF2FF","color-primary-2":"#DEEAFF","color-primary-3":"#BBD1FF","color-primary-4":"#A1BFFF","color-primary-5":"#4C8EFF","color-primary-6":"#0151FF","color-primary-7":"#0046DC","color-primary-8":"#003AB8","color-primary-9":"#003098","color-primary-10":"#002575","color-green-1":"#EBFCF4","color-green-2":"#D6F8E6","color-green-3":"#C0ECD6","color-green-4":"#91E9BC","color-green-5":"#6ED9A5","color-green-6":"#0DAB63","color-green-7":"#059D5E","color-green-8":"#006D45","color-green-9":"#0D492B","color-green-10":"#213F26","color-red-1":"#FFF0EF","color-red-2":"#F9DAD8","color-red-3":"#FFD2CF","color-red-4":"#FF989A","color-red-5":"#EF7173","color-red-6":"#EC352B","color-red-7":"#C82D25","color-red-8":"#96241B","color-red-9":"#5E201D","color-red-10":"#4B2C2C","color-origin-1":"#FFF5E8","color-origin-2":"#FFE5CD","color-origin-3":"#FFE3BF","color-origin-4":"#FFB677","color-origin-5":"#F7A55D","color-origin-6":"#F78821","color-origin-7":"#D25C02","color-origin-8":"#9A4C1B","color-origin-9":"#703510","color-origin-10":"#452009","color-gray-1":"#FAFAFA","color-gray-2":"#F3F6FC","color-gray-3":"#E0E6EF","color-gray-4":"#CAD3E2","color-gray-5":"#B0BACB","color-gray-6":"#8D9CAF","color-gray-7":"#657489","color-gray-8":"#56647A","color-gray-9":"#262D3E","color-gray-10":"#161C2A"};module.exports=o;
@@ -0,0 +1,41 @@
1
+ export declare const commonBase: {
2
+ borderRadiusLarge: string;
3
+ borderRadiusMedium: string;
4
+ borderRadiusSmall: string;
5
+ heightSmall: string;
6
+ heightMedium: string;
7
+ heightLarge: string;
8
+ fontSizeLarge: string;
9
+ fontSizeMedium: string;
10
+ fontSizeSmall: string;
11
+ buttonHeightSmall: string;
12
+ buttonHeightMedium: string;
13
+ buttonHeightLarge: string;
14
+ buttonWidthSmall: string;
15
+ buttonWidthMedium: string;
16
+ buttonWidthLarge: string;
17
+ buttonWidthPressedSmall: string;
18
+ buttonWidthPressedMedium: string;
19
+ buttonWidthPressedLarge: string;
20
+ railHeightSmall: string;
21
+ railHeightMedium: string;
22
+ railHeightLarge: string;
23
+ railWidthSmall: string;
24
+ railWidthMedium: string;
25
+ railWidthLarge: string;
26
+ tagBorderRadius: string;
27
+ tagHeightMedium: string;
28
+ tagHeightLarge: string;
29
+ paddingBase: string;
30
+ iconSizeBase: string;
31
+ paddingMedium: string;
32
+ tabGapSmall: string;
33
+ tabGapMedium: string;
34
+ tabGapLarge: string;
35
+ tabPaddingSmall: string;
36
+ tabPaddingMedium: string;
37
+ tabPaddingLarge: string;
38
+ fontWeightNormal: string;
39
+ fontWeightActive: string;
40
+ tabBorderRadius: string;
41
+ };
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a={borderRadiusLarge:"10px",borderRadiusMedium:"10px",borderRadiusSmall:"10px",heightSmall:"28px",heightMedium:"32px",heightLarge:"40px",fontSizeLarge:"14px",fontSizeMedium:"14px",fontSizeSmall:"12px",buttonHeightSmall:"12px",buttonHeightMedium:"16px",buttonWidthSmall:"12px",buttonWidthMedium:"16px",railHeightSmall:"16px",railHeightMedium:"24px",railWidthSmall:"28px",tagBorderRadius:"6px",tagHeightMedium:"22px",tagHeightLarge:"26px",paddingBase:"8px 12px",iconSizeBase:"20px",paddingMedium:"0 10px",tabGapSmall:"24px",tabGapMedium:"24px",tabGapLarge:"24px",tabPaddingSmall:"0 0 4px 0",tabPaddingMedium:"0 0 4px 0",tabPaddingLarge:"0 0 4px 0",fontWeightNormal:"400",fontWeightActive:"500",tabBorderRadius:"19px"};exports.commonBase=a;
@@ -0,0 +1,2 @@
1
+ import { AlertProps } from 'naive-ui';
2
+ export declare const AlertThemeCommon: AlertProps['themeOverrides'];
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../../common.js"),o={borderRadius:e.commonBase.borderRadiusMedium,fontSize:e.commonBase.fontSizeMedium,iconSize:"16px",iconMargin:"15px 8px 0 12px"};exports.AlertThemeCommon=o;
@@ -0,0 +1,2 @@
1
+ import { AlertProps } from 'naive-ui';
2
+ export declare const AlertThemeDark: AlertProps['themeOverrides'];
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/dark.js"),r=require("./common.js"),e={...r.AlertThemeCommon,colorInfo:o["color-primary-1"],colorSuccess:o["color-green-1"],colorError:o["color-red-1"],colorWarning:o["color-origin-1"],contentTextColorError:o["color-gray-10"],contentTextColorInfo:o["color-gray-10"],contentTextColorSuccess:o["color-gray-10"],contentTextColorWarning:o["color-gray-10"],iconColorInfo:o["color-primary-6"],iconColorError:o["color-red-6"],iconColorSuccess:o["color-green-6"],iconColorWarning:o["color-origin-6"],titleTextColor:o["color-gray-10"]};exports.AlertThemeDark=e;
@@ -0,0 +1,2 @@
1
+ import { AlertProps } from 'naive-ui';
2
+ export declare const AlertThemeLight: AlertProps['themeOverrides'];
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/light.js"),r=require("./common.js"),e={...r.AlertThemeCommon,colorInfo:o["color-primary-1"],colorSuccess:o["color-green-1"],colorError:o["color-red-1"],colorWarning:o["color-origin-1"],contentTextColorError:o["color-gray-10"],contentTextColorInfo:o["color-gray-10"],contentTextColorSuccess:o["color-gray-10"],contentTextColorWarning:o["color-gray-10"],titleTextColor:o["color-gray-10"]};exports.AlertThemeLight=e;
@@ -0,0 +1,8 @@
1
+ import { TooltipProps, StepsProps, TabsProps, PopconfirmProps, TreeProps, PaginationProps, BreadcrumbProps } from 'naive-ui';
2
+ export declare const TooltipThemeDark: TooltipProps['themeOverrides'];
3
+ export declare const PopconfirmThemeDark: PopconfirmProps['themeOverrides'];
4
+ export declare const TreeThemeDark: TreeProps['themeOverrides'];
5
+ export declare const PaginationThemeDark: PaginationProps['themeOverrides'];
6
+ export declare const BreadcrumbThemeDark: BreadcrumbProps['themeOverrides'];
7
+ export declare const TabsThemeDark: TabsProps['themeOverrides'];
8
+ export declare const StepsThemeDark: StepsProps['themeOverrides'];
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/dark.js"),r=require("../../token/dark.js"),e=require("../../common.js"),t={borderRadius:e.commonBase.borderRadiusMedium,color:o["color-gray-3"],textColor:r["color-text-6"],padding:e.commonBase.paddingBase},a={fontSize:e.commonBase.fontSizeMedium,iconColor:o["color-primary-6"],iconSize:e.commonBase.iconSizeBase},i={nodeTextColor:r["color-text-6"],arrowColor:r["color-text-3"],lineColor:o["color-gray-11"]},l={buttonBorderHover:"0px solid transparent",buttonBorderPressed:"0px solid transparent",itemTextColorHover:r["color-text-6"],itemTextColorPressed:r["color-text-6"],itemColorActive:o["color-primary-6"],itemColorActiveHover:o["color-primary-6"],itemBorderDisabled:"0px solid transparent",buttonBorder:o["color-gray-3"],buttonIconColor:r["color-text-6"],buttonIconColorPressed:r["color-text-6"],buttonIconColorHover:r["color-text-6"],itemTextColorDisabled:r["color-text-6"],itemTextColor:r["color-text-6"],itemColorDisabled:"transparent",itemTextColorActive:r["color-text-5"],itemBorderRadius:e.commonBase.borderRadiusMedium,itemSizeMedium:e.commonBase.heightMedium,itemFontSizeMedium:e.commonBase.fontSizeMedium,itemPaddingMedium:e.commonBase.paddingMedium,jumperTextColor:r["color-text-6"]},n={itemTextColor:r["color-text-2"],itemTextColorHover:r["color-text-6"],itemTextColorPressed:r["color-text-6"],itemTextColorActive:r["color-text-6"],separatorColor:r["color-text-4"]},c={tabTextColorLine:r["color-text-3"],tabTextColorActiveLine:o["color-primary-6"],tabTextColorHoverLine:o["color-primary-5"],tabTextColorDisabledLine:r["color-text-6"],tabTextColorBar:r["color-text-3"],tabTextColorActiveBar:o["color-primary-6"],tabTextColorHoverBar:o["color-primary-5"],tabTextColorDisabledBar:r["color-text-6"],tabTextColorCard:r["color-text-3"],tabTextColorActiveCard:o["color-primary-6"],tabTextColorHoverCard:o["color-primary-5"],tabTextColorDisabledCard:r["color-text-6"],tabTextColorSegment:r["color-text-3"],tabTextColorActiveSegment:o["color-primary-6"],tabTextColorHoverSegment:o["color-primary-5"],tabTextColorDisabledSegment:r["color-text-6"],tabPaddingSmallSegment:"10px 12px",tabPaddingMediumSegment:"10px 0",tabPaddingLargeSegment:"10px 0",barColor:o["color-primary-6"],tabFontSizeSmall:e.commonBase.fontSizeSmall,tabFontSizeMedium:e.commonBase.fontSizeMedium,tabFontSizeLarge:e.commonBase.fontSizeLarge,tabFontWeight:e.commonBase.fontWeightNormal,tabFontWeightActive:e.commonBase.fontWeightActive,tabGapSmallLine:e.commonBase.tabGapSmall,tabGapMediumLine:e.commonBase.tabGapMedium,tabGapLargeLine:e.commonBase.tabGapLarge,tabPaddingSmallLine:e.commonBase.tabPaddingSmall,tabPaddingMediumLine:e.commonBase.tabPaddingMedium,tabPaddingLargeLine:e.commonBase.tabPaddingLarge,tabBorderRadius:e.commonBase.tabBorderRadius},m={indicatorColorWait:"transparent",indicatorColorProcess:o["color-primary-6"],indicatorColorFinish:"transparent",indicatorColorError:"transparent",indicatorTextColorWait:o["color-gray-6"],indicatorTextColorProcess:r["color-text-5"],indicatorTextColorFinish:o["color-primary-6"],indicatorTextColorError:o["color-red-6"],indicatorBorderColorWait:o["color-gray-6"],indicatorBorderColorProcess:o["color-primary-6"],indicatorBorderColorFinish:o["color-primary-6"],indicatorBorderColorError:o["color-red-6"],headerTextColorWait:r["color-text-6"],headerTextColorProcess:o["color-gray-10"],headerTextColorFinish:o["color-gray-10"],headerTextColorError:o["color-gray-10"],descriptionTextColorWait:r["color-text-3"],descriptionTextColorProcess:o["color-gray-6"],descriptionTextColorFinish:o["color-gray-6"],descriptionTextColorError:o["color-gray-6"],splitorColorProcess:o["color-primary-6"],splitorColorWait:o["color-gray-4"],splitorColorFinish:o["color-primary-6"],splitorColorError:o["color-primary-6"],stepHeaderFontSizeSmall:"16px",stepHeaderFontSizeMedium:"16px",indicatorIndexFontSizeSmall:"16px",indicatorIndexFontSizeMedium:"16px",indicatorSizeSmall:"24px",indicatorSizeMedium:"24px",indicatorIconSizeSmall:"16px",indicatorIconSizeMedium:"16px"};exports.BreadcrumbThemeDark=n;exports.PaginationThemeDark=l;exports.PopconfirmThemeDark=a;exports.StepsThemeDark=m;exports.TabsThemeDark=c;exports.TooltipThemeDark=t;exports.TreeThemeDark=i;
@@ -0,0 +1,8 @@
1
+ import { TooltipProps, PopconfirmProps, TreeProps, PaginationProps, BreadcrumbProps, TabsProps, StepsProps } from 'naive-ui';
2
+ export declare const TooltipThemeLight: TooltipProps['themeOverrides'];
3
+ export declare const PopconfirmThemeLight: PopconfirmProps['themeOverrides'];
4
+ export declare const TreeThemeLight: TreeProps['themeOverrides'];
5
+ export declare const PaginationThemeLight: PaginationProps['themeOverrides'];
6
+ export declare const BreadcrumbThemeLight: BreadcrumbProps['themeOverrides'];
7
+ export declare const TabsThemeLight: TabsProps['themeOverrides'];
8
+ export declare const StepsThemeLight: StepsProps['themeOverrides'];
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/light.js"),r=require("../../common.js"),e=require("../../token/light.js"),t={borderRadius:r.commonBase.borderRadiusMedium,color:o["color-gray-10"],textColor:e["color-text-1"],padding:r.commonBase.paddingBase},i={fontSize:r.commonBase.fontSizeMedium,iconColor:o["color-primary-6"],iconSize:r.commonBase.iconSizeBase},a={arrowColor:o["color-gray-6"],nodeTextColor:o["color-gray-10"],lineColor:o["color-gray-5"]},l={buttonIconColor:o["color-gray-10"],buttonIconColorPressed:o["color-gray-10"],buttonIconColorHover:o["color-gray-10"],itemTextColorDisabled:o["color-gray-10"],itemBorderActive:"1px solid #0000",itemTextColor:o["color-gray-10"],itemTextColorActive:e["color-text-1"],itemColorActive:o["color-primary-6"],itemColorPressed:o["color-primary-6"],itemColorActiveHover:o["color-primary-6"],itemBorderRadius:r.commonBase.borderRadiusMedium,itemFontSizeMedium:r.commonBase.fontSizeMedium,itemPaddingMedium:r.commonBase.paddingMedium,itemColorDisabled:"transparent",jumperTextColor:o["color-gray-10"]},c={itemTextColor:o["color-gray-8"],itemTextColorHover:o["color-gray-10"],itemTextColorPressed:o["color-gray-10"],itemTextColorActive:o["color-gray-10"],separatorColor:o["color-gray-4"]},m={tabTextColorLine:o["color-gray-8"],tabTextColorActiveLine:o["color-primary-6"],tabTextColorHoverLine:o["color-primary-5"],tabTextColorDisabledLine:o["color-gray-4"],tabTextColorBar:o["color-gray-8"],tabTextColorActiveBar:o["color-primary-6"],tabTextColorHoverBar:o["color-primary-5"],tabTextColorDisabledBar:o["color-gray-4"],tabTextColorCard:o["color-gray-8"],tabTextColorActiveCard:o["color-primary-6"],tabTextColorHoverCard:o["color-primary-5"],tabTextColorDisabledCard:o["color-gray-4"],tabTextColorSegment:o["color-gray-8"],tabTextColorActiveSegment:o["color-primary-6"],tabTextColorHoverSegment:o["color-primary-5"],tabTextColorDisabledSegment:o["color-gray-4"],tabPaddingSmallSegment:"10px 12px",tabPaddingMediumSegment:"10px 0",tabPaddingLargeSegment:"10px 0",colorSegment:e["color-text-1"],tabColorSegment:o["color-primary-2"],barColor:o["color-primary-6"],tabFontSizeSmall:r.commonBase.fontSizeSmall,tabFontSizeMedium:r.commonBase.fontSizeMedium,tabFontSizeLarge:r.commonBase.fontSizeLarge,tabFontWeight:r.commonBase.fontWeightNormal,tabFontWeightActive:r.commonBase.fontWeightActive,tabGapSmallLine:r.commonBase.tabGapSmall,tabGapMediumLine:r.commonBase.tabGapMedium,tabGapLargeLine:r.commonBase.tabGapLarge,tabPaddingSmallLine:r.commonBase.tabPaddingSmall,tabPaddingMediumLine:r.commonBase.tabPaddingMedium,tabPaddingLargeLine:r.commonBase.tabPaddingLarge,tabBorderRadius:r.commonBase.tabBorderRadius,closeBorderRadius:r.commonBase.tabBorderRadius},n={indicatorColorWait:e["color-text-1"],indicatorColorProcess:o["color-primary-6"],indicatorColorFinish:e["color-text-1"],indicatorColorError:e["color-text-1"],indicatorTextColorWait:o["color-gray-6"],indicatorTextColorProcess:e["color-text-1"],indicatorTextColorFinish:o["color-primary-6"],indicatorTextColorError:o["color-red-6"],indicatorBorderColorWait:o["color-gray-6"],indicatorBorderColorProcess:o["color-primary-6"],indicatorBorderColorFinish:o["color-primary-6"],indicatorBorderColorError:o["color-red-6"],headerTextColorWait:o["color-gray-10"],headerTextColorProcess:o["color-gray-10"],headerTextColorFinish:o["color-gray-10"],headerTextColorError:o["color-gray-10"],descriptionTextColorWait:o["color-gray-6"],descriptionTextColorProcess:o["color-gray-6"],descriptionTextColorFinish:o["color-gray-6"],descriptionTextColorError:o["color-gray-6"],splitorColorProcess:o["color-primary-6"],splitorColorWait:o["color-gray-4"],splitorColorFinish:o["color-primary-6"],splitorColorError:o["color-primary-6"],stepHeaderFontSizeSmall:"16px",stepHeaderFontSizeMedium:"16px",indicatorIndexFontSizeSmall:"16px",indicatorIndexFontSizeMedium:"16px",indicatorSizeSmall:"24px",indicatorSizeMedium:"24px",indicatorIconSizeSmall:"16px",indicatorIconSizeMedium:"16px"};exports.BreadcrumbThemeLight=c;exports.PaginationThemeLight=l;exports.PopconfirmThemeLight=i;exports.StepsThemeLight=n;exports.TabsThemeLight=m;exports.TooltipThemeLight=t;exports.TreeThemeLight=a;
@@ -0,0 +1,2 @@
1
+ import { ButtonProps } from 'naive-ui';
2
+ export declare const ButtonThemeCommon: ButtonProps['themeOverrides'];
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../../common.js"),o={borderRadiusLarge:e.commonBase.borderRadiusLarge,borderRadiusMedium:e.commonBase.borderRadiusMedium,borderRadiusSmall:e.commonBase.borderRadiusSmall,heightMedium:e.commonBase.heightMedium,heightSmall:e.commonBase.heightSmall,fontSizeLarge:e.commonBase.fontSizeLarge,fontSizeSmall:e.commonBase.fontSizeSmall,opacityDisabled:"1",paddingLarge:"0 24px",paddingMedium:"0 16px",paddingSmall:"0 12px"};exports.ButtonThemeCommon=o;
@@ -0,0 +1,2 @@
1
+ import { ButtonProps } from 'naive-ui';
2
+ export declare const ButtonThemeDark: ButtonProps['themeOverrides'];
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/dark.js"),r=require("../../token/dark.js"),e=require("./common.js"),l={...e.ButtonThemeCommon,border:`1px solid ${r["fill-color-2"]}`,borderError:`1px solid ${o["color-red-6"]}`,borderPrimary:`1px solid ${o["color-primary-6"]}`,borderSuccess:`1px solid ${o["color-green-6"]}`,borderWarning:`1px solid ${o["color-origin-6"]}`,borderDisabled:`1px solid ${r["color-default-disabled"]}`,borderDisabledError:`1px solid ${o["color-red-5"]}`,borderDisabledPrimary:`1px solid ${r["color-primary-disabled"]}`,borderDisabledSuccess:`1px solid ${r["color-success-disabled"]}`,borderDisabledWarning:`1px solid ${r["color-warning-disabled"]}`,borderHover:`1px solid ${r["fill-color-3"]}`,borderHoverError:`1px solid ${o["color-red-5"]}`,borderHoverPrimary:`1px solid ${o["color-primary-5"]}`,borderHoverSuccess:`1px solid ${o["color-green-5"]}`,borderHoverWarning:`1px solid ${o["color-origin-5"]}`,borderFocus:`1px solid ${r["fill-color-3"]}`,borderFocusError:`1px solid ${o["color-red-5"]}`,borderFocusPrimary:`1px solid ${o["color-primary-5"]}`,borderFocusSuccess:`1px solid ${o["color-green-5"]}`,borderFocusWarning:`1px solid ${o["color-origin-5"]}`,borderPressed:`1px solid ${r["fill-color-4"]}`,borderPressedError:`1px solid ${o["color-red-7"]}`,borderPressedPrimary:`1px solid ${o["color-primary-7"]}`,borderPressedSuccess:`1px solid ${o["color-green-7"]}`,borderPressedWarning:`1px solid ${o["color-origin-7"]}`,color:r["fill-color-2"],colorError:o["color-red-6"],colorPrimary:o["color-primary-6"],colorSuccess:o["color-green-6"],colorWarning:o["color-origin-6"],colorDisabled:r["color-default-disabled"],colorDisabledError:r["color-error-disabled"],colorDisabledPrimary:r["color-primary-disabled"],colorDisabledSuccess:r["color-success-disabled"],colorDisabledWarning:r["color-warning-disabled"],colorFocus:r["fill-color-3"],colorFocusError:o["color-red-5"],colorFocusPrimary:o["color-primary-5"],colorFocusSuccess:o["color-green-5"],colorFocusWarning:o["color-origin-5"],colorHover:r["fill-color-3"],colorHoverError:o["color-red-5"],colorHoverPrimary:o["color-primary-5"],colorHoverSuccess:o["color-green-5"],colorHoverWarning:o["color-origin-5"],colorPressed:r["fill-color-4"],colorPressedError:o["color-red-7"],colorPressedPrimary:o["color-primary-7"],colorPressedSuccess:o["color-green-7"],colorPressedWarning:o["color-origin-7"],textColor:o["color-gray-8"],textColorError:r["color-text-5"],textColorPrimary:r["color-text-5"],textColorSuccess:r["color-text-5"],textColorWarning:r["color-text-5"],textColorDisabled:"rgba(255, 255, 255, 0.75)",textColorDisabledError:"rgba(255, 255, 255, 0.75)",textColorDisabledPrimary:"rgba(255, 255, 255, 0.75)",textColorDisabledSuccess:"rgba(255, 255, 255, 0.75)",textColorDisabledWarning:"rgba(255, 255, 255, 0.75)",textColorFocus:o["color-gray-8"],textColorFocusError:r["color-text-5"],textColorFocusPrimary:r["color-text-5"],textColorFocusSuccess:r["color-text-5"],textColorFocusWarning:r["color-text-5"],textColorHover:o["color-gray-8"],textColorHoverError:r["color-text-5"],textColorHoverPrimary:r["color-text-5"],textColorHoverSuccess:r["color-text-5"],textColorHoverWarning:r["color-text-5"],textColorPressed:o["color-gray-8"],textColorPressedError:r["color-text-5"],textColorPressedPrimary:r["color-text-5"],textColorPressedSuccess:r["color-text-5"],textColorPressedWarning:r["color-text-5"],textColorGhost:o["color-gray-8"],textColorGhostError:o["color-red-6"],textColorGhostPrimary:o["color-primary-6"],textColorGhostSuccess:o["color-green-6"],textColorGhostWarning:o["color-origin-6"],textColorGhostDisabled:"rgba(255, 255, 255, 0.5)",textColorGhostDisabledError:r["color-error-disabled"],textColorGhostDisabledPrimary:r["color-primary-disabled"],textColorGhostDisabledSuccess:r["color-success-disabled"],textColorGhostDisabledWarning:r["color-warning-disabled"],textColorGhostFocus:o["color-gray-8"],textColorGhostFocusError:o["color-red-5"],textColorGhostFocusPrimary:o["color-primary-5"],textColorGhostFocusSuccess:o["color-green-5"],textColorGhostFocusWarning:o["color-origin-5"],textColorGhostHover:o["color-gray-8"],textColorGhostHoverError:o["color-red-5"],textColorGhostHoverPrimary:o["color-primary-5"],textColorGhostHoverSuccess:o["color-green-5"],textColorGhostHoverWarning:o["color-origin-5"],textColorGhostPressed:o["color-gray-8"],textColorGhostPressedError:o["color-red-7"],textColorGhostPressedPrimary:o["color-primary-7"],textColorGhostPressedSuccess:o["color-green-7"],textColorGhostPressedWarning:o["color-origin-7"]};exports.ButtonThemeDark=l;
@@ -0,0 +1,2 @@
1
+ import { ButtonProps } from 'naive-ui';
2
+ export declare const ButtonThemeLight: ButtonProps['themeOverrides'];
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/light.js"),r=require("./common.js"),e={...r.ButtonThemeCommon,border:`1px solid ${o["color-gray-3"]}`,borderError:`1px solid ${o["color-red-6"]}`,borderPrimary:`1px solid ${o["color-primary-6"]}`,borderSuccess:`1px solid ${o["color-green-6"]}`,borderWarning:`1px solid ${o["color-origin-6"]}`,borderDisabled:`1px solid ${o["color-gray-2"]}`,borderDisabledError:`1px solid ${o["color-red-3"]}`,borderDisabledPrimary:`1px solid ${o["color-primary-3"]}`,borderDisabledSuccess:`1px solid ${o["color-green-3"]}`,borderDisabledWarning:`1px solid ${o["color-origin-3"]}`,borderHover:`1px solid ${o["color-gray-4"]}`,borderHoverError:`1px solid ${o["color-red-5"]}`,borderHoverPrimary:`1px solid ${o["color-primary-5"]}`,borderHoverSuccess:`1px solid ${o["color-green-5"]}`,borderHoverWarning:`1px solid ${o["color-origin-5"]}`,borderFocus:`1px solid ${o["color-gray-4"]}`,borderFocusError:`1px solid ${o["color-red-5"]}`,borderFocusPrimary:`1px solid ${o["color-primary-5"]}`,borderFocusSuccess:`1px solid ${o["color-green-5"]}`,borderFocusWarning:`1px solid ${o["color-origin-5"]}`,borderPressed:`1px solid ${o["color-gray-5"]}`,borderPressedError:`1px solid ${o["color-red-7"]}`,borderPressedPrimary:`1px solid ${o["color-primary-7"]}`,borderPressedSuccess:`1px solid ${o["color-green-7"]}`,borderPressedWarning:`1px solid ${o["color-origin-7"]}`,color:o["color-gray-3"],colorError:o["color-red-6"],colorPrimary:o["color-primary-6"],colorSuccess:o["color-green-6"],colorWarning:o["color-origin-6"],colorDisabled:o["color-gray-2"],colorDisabledError:o["color-red-3"],colorDisabledPrimary:o["color-primary-3"],colorDisabledSuccess:o["color-green-3"],colorDisabledWarning:o["color-origin-3"],colorFocus:o["color-gray-4"],colorFocusError:o["color-red-5"],colorFocusPrimary:o["color-primary-5"],colorFocusSuccess:o["color-green-5"],colorFocusWarning:o["color-origin-5"],colorHover:o["color-gray-4"],colorHoverError:o["color-red-5"],colorHoverPrimary:o["color-primary-5"],colorHoverSuccess:o["color-green-5"],colorHoverWarning:o["color-origin-5"],colorPressed:o["color-gray-5"],colorPressedError:o["color-red-7"],colorPressedPrimary:o["color-primary-7"],colorPressedSuccess:o["color-green-7"],colorPressedWarning:o["color-origin-7"],textColor:o["color-gray-8"],textColorDisabled:o["color-gray-4"],textColorFocus:o["color-gray-8"],textColorHover:o["color-gray-8"],textColorPressed:o["color-gray-8"],textColorGhost:o["color-gray-8"],textColorGhostError:o["color-red-6"],textColorGhostPrimary:o["color-primary-6"],textColorGhostSuccess:o["color-green-6"],textColorGhostWarning:o["color-origin-6"],textColorGhostDisabled:o["color-gray-4"],textColorGhostDisabledError:o["color-red-3"],textColorGhostDisabledPrimary:o["color-primary-3"],textColorGhostDisabledSuccess:o["color-green-3"],textColorGhostDisabledWarning:o["color-origin-3"],textColorGhostFocus:o["color-gray-8"],textColorGhostFocusError:o["color-red-5"],textColorGhostFocusPrimary:o["color-primary-5"],textColorGhostFocusSuccess:o["color-green-5"],textColorGhostFocusWarning:o["color-origin-5"],textColorGhostHover:o["color-gray-8"],textColorGhostHoverError:o["color-red-5"],textColorGhostHoverPrimary:o["color-primary-5"],textColorGhostHoverSuccess:o["color-green-5"],textColorGhostHoverWarning:o["color-origin-5"],textColorGhostPressed:o["color-gray-8"],textColorGhostPressedError:o["color-red-7"],textColorGhostPressedPrimary:o["color-primary-7"],textColorGhostPressedSuccess:o["color-green-7"],textColorGhostPressedWarning:o["color-origin-7"]};exports.ButtonThemeLight=e;
@@ -0,0 +1,2 @@
1
+ import { CardProps } from 'naive-ui';
2
+ export declare const CardThemeDark: CardProps['themeOverrides'];
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("../../color/dark.js"),o=require("../../token/dark.js"),e={color:o["bg-color-2"],paddingMedium:"16px 24px",borderColor:r["color-gray-3"],textColor:o["color-text-1"],closeIconColor:o["color-text-1"],titleFontSizeMedium:"20px",borderRadius:"10px"};exports.CardThemeDark=e;
@@ -0,0 +1,2 @@
1
+ import { CardProps } from 'naive-ui';
2
+ export declare const CardThemeLight: CardProps['themeOverrides'];
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/light.js"),r=require("../../token/light.js"),e={color:r["bg-color-2"],paddingMedium:"16px 24px",borderColor:o["color-gray-3"],textColor:o["color-gray-10"],closeIconColor:o["color-gray-10"],titleFontSizeMedium:"20px",borderRadius:"10px"};exports.CardThemeLight=e;
@@ -0,0 +1,398 @@
1
+ export declare const ChartsThemeDark: {
2
+ color: string[];
3
+ textStyle: {};
4
+ title: {
5
+ textStyle: {
6
+ color: string;
7
+ fontWeight: number;
8
+ fontSize: number;
9
+ lineHeight: number;
10
+ };
11
+ subtextStyle: {
12
+ color: string;
13
+ };
14
+ };
15
+ line: {
16
+ itemStyle: {
17
+ borderWidth: string;
18
+ };
19
+ lineStyle: {
20
+ width: string;
21
+ };
22
+ symbolSize: string;
23
+ symbol: string;
24
+ smooth: boolean;
25
+ };
26
+ radar: {
27
+ itemStyle: {
28
+ borderWidth: string;
29
+ };
30
+ lineStyle: {
31
+ width: string;
32
+ };
33
+ symbolSize: string;
34
+ symbol: string;
35
+ smooth: boolean;
36
+ };
37
+ bar: {
38
+ itemStyle: {
39
+ barBorderWidth: number;
40
+ barBorderColor: string;
41
+ borderRadius: number[];
42
+ };
43
+ barMaxWidth: number;
44
+ };
45
+ pie: {
46
+ padAngle: number;
47
+ itemStyle: {
48
+ borderWidth: number;
49
+ borderColor: string;
50
+ };
51
+ };
52
+ scatter: {
53
+ itemStyle: {
54
+ borderWidth: number;
55
+ borderColor: string;
56
+ };
57
+ };
58
+ boxplot: {
59
+ itemStyle: {
60
+ borderWidth: number;
61
+ borderColor: string;
62
+ };
63
+ };
64
+ parallel: {
65
+ itemStyle: {
66
+ borderWidth: number;
67
+ borderColor: string;
68
+ };
69
+ };
70
+ sankey: {
71
+ itemStyle: {
72
+ borderWidth: number;
73
+ borderColor: string;
74
+ };
75
+ };
76
+ funnel: {
77
+ itemStyle: {
78
+ borderWidth: number;
79
+ borderColor: string;
80
+ };
81
+ };
82
+ gauge: {
83
+ itemStyle: {
84
+ borderWidth: number;
85
+ borderColor: string;
86
+ };
87
+ };
88
+ candlestick: {
89
+ itemStyle: {
90
+ color: string;
91
+ color0: string;
92
+ borderColor: string;
93
+ borderColor0: string;
94
+ borderWidth: string;
95
+ };
96
+ };
97
+ graph: {
98
+ itemStyle: {
99
+ borderWidth: number;
100
+ borderColor: string;
101
+ };
102
+ lineStyle: {
103
+ width: number;
104
+ color: string;
105
+ };
106
+ symbolSize: string;
107
+ symbol: string;
108
+ smooth: boolean;
109
+ color: string[];
110
+ label: {
111
+ color: string;
112
+ };
113
+ };
114
+ map: {
115
+ itemStyle: {
116
+ areaColor: string;
117
+ borderColor: string;
118
+ borderWidth: number;
119
+ };
120
+ label: {
121
+ color: string;
122
+ };
123
+ emphasis: {
124
+ itemStyle: {
125
+ areaColor: string;
126
+ borderColor: string;
127
+ borderWidth: number;
128
+ };
129
+ label: {
130
+ color: string;
131
+ };
132
+ };
133
+ };
134
+ geo: {
135
+ itemStyle: {
136
+ areaColor: string;
137
+ borderColor: string;
138
+ borderWidth: number;
139
+ };
140
+ label: {
141
+ color: string;
142
+ };
143
+ emphasis: {
144
+ itemStyle: {
145
+ areaColor: string;
146
+ borderColor: string;
147
+ borderWidth: number;
148
+ };
149
+ label: {
150
+ color: string;
151
+ };
152
+ };
153
+ };
154
+ categoryAxis: {
155
+ nameTextStyle: {
156
+ color: string;
157
+ fontWeight: number;
158
+ fontSize: number;
159
+ lineHeight: number;
160
+ };
161
+ axisLine: {
162
+ show: boolean;
163
+ lineStyle: {
164
+ color: string;
165
+ };
166
+ };
167
+ axisTick: {
168
+ show: boolean;
169
+ lineStyle: {
170
+ color: string;
171
+ };
172
+ };
173
+ axisLabel: {
174
+ show: boolean;
175
+ color: string;
176
+ };
177
+ splitLine: {
178
+ show: boolean;
179
+ lineStyle: {
180
+ color: string[];
181
+ };
182
+ };
183
+ splitArea: {
184
+ show: boolean;
185
+ areaStyle: {
186
+ color: string[];
187
+ };
188
+ };
189
+ };
190
+ valueAxis: {
191
+ nameTextStyle: {
192
+ color: string;
193
+ fontWeight: number;
194
+ fontSize: number;
195
+ lineHeight: number;
196
+ };
197
+ axisLine: {
198
+ show: boolean;
199
+ lineStyle: {
200
+ color: string;
201
+ };
202
+ };
203
+ axisTick: {
204
+ show: boolean;
205
+ lineStyle: {
206
+ color: string;
207
+ };
208
+ };
209
+ axisLabel: {
210
+ show: boolean;
211
+ color: string;
212
+ };
213
+ splitLine: {
214
+ show: boolean;
215
+ lineStyle: {
216
+ color: string[];
217
+ };
218
+ };
219
+ splitArea: {
220
+ show: boolean;
221
+ areaStyle: {
222
+ color: string[];
223
+ };
224
+ };
225
+ };
226
+ logAxis: {
227
+ nameTextStyle: {
228
+ color: string;
229
+ fontWeight: number;
230
+ fontSize: number;
231
+ lineHeight: number;
232
+ };
233
+ axisLine: {
234
+ show: boolean;
235
+ lineStyle: {
236
+ color: string;
237
+ };
238
+ };
239
+ axisTick: {
240
+ show: boolean;
241
+ lineStyle: {
242
+ color: string;
243
+ };
244
+ };
245
+ axisLabel: {
246
+ show: boolean;
247
+ color: string;
248
+ };
249
+ splitLine: {
250
+ show: boolean;
251
+ lineStyle: {
252
+ color: string[];
253
+ };
254
+ };
255
+ splitArea: {
256
+ show: boolean;
257
+ areaStyle: {
258
+ color: string[];
259
+ };
260
+ };
261
+ };
262
+ timeAxis: {
263
+ nameTextStyle: {
264
+ color: string;
265
+ fontWeight: number;
266
+ fontSize: number;
267
+ lineHeight: number;
268
+ };
269
+ axisLine: {
270
+ show: boolean;
271
+ lineStyle: {
272
+ color: string;
273
+ };
274
+ };
275
+ axisTick: {
276
+ show: boolean;
277
+ lineStyle: {
278
+ color: string;
279
+ };
280
+ };
281
+ axisLabel: {
282
+ show: boolean;
283
+ color: string;
284
+ };
285
+ splitLine: {
286
+ show: boolean;
287
+ lineStyle: {
288
+ color: string[];
289
+ };
290
+ };
291
+ splitArea: {
292
+ show: boolean;
293
+ areaStyle: {
294
+ color: string[];
295
+ };
296
+ };
297
+ };
298
+ toolbox: {
299
+ iconStyle: {
300
+ borderColor: string;
301
+ };
302
+ emphasis: {
303
+ iconStyle: {
304
+ borderColor: string;
305
+ };
306
+ };
307
+ };
308
+ legend: {
309
+ textStyle: {
310
+ color: string;
311
+ lineHeight: number;
312
+ fontSize: number;
313
+ };
314
+ itemGap: number;
315
+ itemWidth: number;
316
+ itemHeight: number;
317
+ inactiveColor: string;
318
+ };
319
+ tooltip: {
320
+ borderColor: string;
321
+ backgroundColor: string;
322
+ padding: number;
323
+ textStyle: {
324
+ color: string;
325
+ fontSize: number;
326
+ fontWeight: number;
327
+ };
328
+ extraCssText: string;
329
+ axisPointer: {
330
+ lineStyle: {
331
+ color: string;
332
+ width: number;
333
+ };
334
+ crossStyle: {
335
+ color: string;
336
+ width: number;
337
+ };
338
+ };
339
+ };
340
+ timeline: {
341
+ lineStyle: {
342
+ color: string;
343
+ width: number;
344
+ };
345
+ itemStyle: {
346
+ color: string;
347
+ borderWidth: number;
348
+ };
349
+ controlStyle: {
350
+ color: string;
351
+ borderColor: string;
352
+ borderWidth: number;
353
+ };
354
+ checkpointStyle: {
355
+ color: string;
356
+ borderColor: string;
357
+ };
358
+ label: {
359
+ color: string;
360
+ };
361
+ emphasis: {
362
+ itemStyle: {
363
+ color: string;
364
+ };
365
+ controlStyle: {
366
+ color: string;
367
+ borderColor: string;
368
+ borderWidth: number;
369
+ };
370
+ label: {
371
+ color: string;
372
+ };
373
+ };
374
+ };
375
+ visualMap: {
376
+ color: string[];
377
+ };
378
+ dataZoom: {
379
+ backgroundColor: string;
380
+ dataBackgroundColor: string;
381
+ fillerColor: string;
382
+ handleColor: string;
383
+ handleSize: string;
384
+ textStyle: {
385
+ color: string;
386
+ };
387
+ };
388
+ markPoint: {
389
+ label: {
390
+ color: string;
391
+ };
392
+ emphasis: {
393
+ label: {
394
+ color: string;
395
+ };
396
+ };
397
+ };
398
+ };
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/dark.js"),e=require("../../token/dark.js"),r={color:e["color-text-1"],fontWeight:400,fontSize:14,lineHeight:20},l={color:["#5895ff","#6dd68e","#f7a55d","#ef7173","#cc84ff","#70c1ff","#71dad6"],textStyle:{},title:{textStyle:{color:e["color-text-1"],fontWeight:400,fontSize:14,lineHeight:20},subtextStyle:{color:"#93b7e3"}},line:{itemStyle:{borderWidth:"0"},lineStyle:{width:"2"},symbolSize:"0",symbol:"circle",smooth:!1},radar:{itemStyle:{borderWidth:"0"},lineStyle:{width:"2"},symbolSize:"0",symbol:"circle",smooth:!1},bar:{itemStyle:{barBorderWidth:0,barBorderColor:"#ccc",borderRadius:[4,4,0,0]},barMaxWidth:28},pie:{padAngle:1,itemStyle:{borderWidth:0,borderColor:"#ccc"}},scatter:{itemStyle:{borderWidth:0,borderColor:"#ccc"}},boxplot:{itemStyle:{borderWidth:0,borderColor:"#ccc"}},parallel:{itemStyle:{borderWidth:0,borderColor:"#ccc"}},sankey:{itemStyle:{borderWidth:0,borderColor:"#ccc"}},funnel:{itemStyle:{borderWidth:0,borderColor:"#ccc"}},gauge:{itemStyle:{borderWidth:0,borderColor:"#ccc"}},candlestick:{itemStyle:{color:"#edafda",color0:"transparent",borderColor:"#d680bc",borderColor0:"#8fd3e8",borderWidth:"2"}},graph:{itemStyle:{borderWidth:0,borderColor:"#ccc"},lineStyle:{width:1,color:"#aaa"},symbolSize:"0",symbol:"circle",smooth:!1,color:["#5895ff","#6dd68e","#f7a55d","#ef7173","#cc84ff","#70c1ff","#71dad6"],label:{color:"#ffffff"}},map:{itemStyle:{areaColor:"#f3f3f3",borderColor:"#516b91",borderWidth:.5},label:{color:"#000"},emphasis:{itemStyle:{areaColor:"#a5e7f0",borderColor:"#516b91",borderWidth:1},label:{color:"#516b91"}}},geo:{itemStyle:{areaColor:"#f3f3f3",borderColor:"#516b91",borderWidth:.5},label:{color:"#000"},emphasis:{itemStyle:{areaColor:"#a5e7f0",borderColor:"#516b91",borderWidth:1},label:{color:"#516b91"}}},categoryAxis:{nameTextStyle:r,axisLine:{show:!0,lineStyle:{color:o["color-gray-4"]}},axisTick:{show:!1,lineStyle:{color:"#333"}},axisLabel:{show:!0,color:e["color-text-2"]},splitLine:{show:!1,lineStyle:{color:["#eeeeee"]}},splitArea:{show:!1,areaStyle:{color:["rgba(250,250,250,0.05)","rgba(200,200,200,0.02)"]}}},valueAxis:{nameTextStyle:r,axisLine:{show:!1,lineStyle:{color:o["color-gray-4"]}},axisTick:{show:!1,lineStyle:{color:"#333"}},axisLabel:{show:!0,color:e["color-text-2"]},splitLine:{show:!1,lineStyle:{color:["#eeeeee"]}},splitArea:{show:!1,areaStyle:{color:["rgba(250,250,250,0.05)","rgba(200,200,200,0.02)"]}}},logAxis:{nameTextStyle:r,axisLine:{show:!0,lineStyle:{color:o["color-gray-4"]}},axisTick:{show:!1,lineStyle:{color:"#333"}},axisLabel:{show:!0,color:e["color-text-2"]},splitLine:{show:!1,lineStyle:{color:["#eeeeee"]}},splitArea:{show:!1,areaStyle:{color:["rgba(250,250,250,0.05)","rgba(200,200,200,0.02)"]}}},timeAxis:{nameTextStyle:r,axisLine:{show:!0,lineStyle:{color:o["color-gray-4"]}},axisTick:{show:!1,lineStyle:{color:"#333"}},axisLabel:{show:!0,color:e["color-text-2"]},splitLine:{show:!1,lineStyle:{color:["#eeeeee"]}},splitArea:{show:!1,areaStyle:{color:["rgba(250,250,250,0.05)","rgba(200,200,200,0.02)"]}}},toolbox:{iconStyle:{borderColor:"#999"},emphasis:{iconStyle:{borderColor:"#666"}}},legend:{textStyle:{color:e["color-text-2"],lineHeight:16,fontSize:12},itemGap:16,itemWidth:12,itemHeight:12,inactiveColor:e["color-text-4"]},tooltip:{borderColor:o["color-gray-3"],backgroundColor:o["color-gray-3"],padding:12,textStyle:{color:e["color-text-1"],fontSize:12,fontWeight:400},extraCssText:"box-shadow: 0px 3px 10px 0px #0151FF1A;",axisPointer:{lineStyle:{color:"#ccc",width:1},crossStyle:{color:"#ccc",width:1}}},timeline:{lineStyle:{color:"#4c8eff",width:1},itemStyle:{color:"#4c8eff",borderWidth:1},controlStyle:{color:"#4c8eff",borderColor:"#4c8eff",borderWidth:.5},checkpointStyle:{color:"#4c8eff",borderColor:"#8a7ca8"},label:{color:"#4c8eff"},emphasis:{itemStyle:{color:"#4c8eff"},controlStyle:{color:"#4c8eff",borderColor:"#4c8eff",borderWidth:.5},label:{color:"#4c8eff"}}},visualMap:{color:["#516b91","#59c4e6","#a5e7f0"]},dataZoom:{backgroundColor:"rgba(0,0,0,0)",dataBackgroundColor:"rgba(255,255,255,0.3)",fillerColor:"rgba(167,183,204,0.4)",handleColor:"#a7b7cc",handleSize:"100%",textStyle:{color:"#333"}},markPoint:{label:{color:"#ffffff"},emphasis:{label:{color:"#ffffff"}}}};exports.ChartsThemeDark=l;