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,350 @@
1
+ import o from "../../color/light.mjs";
2
+ import { commonBase as r } from "../../common.mjs";
3
+ import e from "../../token/light.mjs";
4
+ const l = {
5
+ borderRadius: r.borderRadiusMedium,
6
+ color: o["color-gray-10"],
7
+ textColor: e["color-text-1"],
8
+ padding: r.paddingBase
9
+ }, c = {
10
+ fontSize: r.fontSizeMedium,
11
+ iconColor: o["color-primary-6"],
12
+ iconSize: r.iconSizeBase
13
+ }, d = {
14
+ arrowColor: o["color-gray-6"],
15
+ nodeTextColor: o["color-gray-10"],
16
+ lineColor: o["color-gray-5"]
17
+ }, n = {
18
+ // itemBorderDisabled: '0px solid transparent',
19
+ // itemBorderRadius: commonBase.borderRadiusMedium,
20
+ // itemTextColor: lightToken['color-text-1'],
21
+ // itemTextColorHover: lightToken['color-text-6'],
22
+ // itemTextColorPressed: lightToken['color-text-6'],
23
+ // itemTextColorActive: lightToken['color-text-6'],
24
+ // buttonIconColor: lightToken['color-text-1'],
25
+ // buttonIconColorPressed: lightToken['color-text-1'],
26
+ // buttonIconColorHover: lightToken['color-text-1'],
27
+ // itemTextColorDisabled: lightToken['color-text-1'],
28
+ // jumperTextColor: lightToken['color-text-1'],
29
+ // itemTextColor: lightToken['color-text-1'],
30
+ // itemTextColorHover: lightToken['color-text-1'],
31
+ // itemTextColorPressed: lightToken['color-text-1'],
32
+ // itemTextColorActive: lightToken['color-text-1'],
33
+ // itemColorActive: lightBase['color-primary-6'],
34
+ // itemColorActiveHover: lightBase['color-primary-6'],
35
+ // 以上修改
36
+ // 按钮相关样式(上一页/下一页按钮)
37
+ buttonIconColor: o["color-gray-10"],
38
+ /* 按钮图标颜色 */
39
+ buttonIconColorPressed: o["color-gray-10"],
40
+ buttonIconColorHover: o["color-gray-10"],
41
+ itemTextColorDisabled: o["color-gray-10"],
42
+ /* 禁用页码文字颜色 */
43
+ itemBorderActive: "1px solid #0000",
44
+ /* 文字颜色 */
45
+ itemTextColor: o["color-gray-10"],
46
+ // itemTextColorPressed: 'red', /* 按下页码文字颜色 */
47
+ itemTextColorActive: e["color-text-1"],
48
+ /* 当前页码文字颜色 */
49
+ /* 背景颜色 */
50
+ itemColorActive: o["color-primary-6"],
51
+ /* 当前页码背景色 */
52
+ itemColorPressed: o["color-primary-6"],
53
+ /* 按下页码背景色 */
54
+ itemColorActiveHover: o["color-primary-6"],
55
+ /* 当前页码悬停背景色 */
56
+ itemBorderRadius: r.borderRadiusMedium,
57
+ // itemSizeMedium: commonBase.heightMedium, // 修改默认高度
58
+ itemFontSizeMedium: r.fontSizeMedium,
59
+ // 修改默认字体
60
+ itemPaddingMedium: r.paddingMedium,
61
+ // 修改默认内边距
62
+ itemColorDisabled: "transparent",
63
+ /* 禁用页码背景颜色 */
64
+ /** 跳转文字*/
65
+ jumperTextColor: o["color-gray-10"]
66
+ // 修改跳转文字颜色
67
+ // buttonColor: string; /* 按钮背景色 */
68
+ // buttonColorHover: string; /* 按钮悬停背景色 */
69
+ // buttonColorPressed: string; /* 按钮按下背景色 */
70
+ // buttonBorder: string; /* 按钮边框 */
71
+ // buttonBorderHover: string; /* 按钮悬停边框 */
72
+ // buttonBorderPressed: string; /* 按钮按下边框 */
73
+ // buttonIconColor: string; /* 按钮图标颜色 */
74
+ // buttonIconColorHover: string; /* 按钮图标悬停颜色 */
75
+ // buttonIconColorPressed: string;/* 按钮图标按下颜色 */
76
+ /* 文字颜色 */
77
+ // itemTextColor: string; /* 普通页码文字颜色 */
78
+ // itemTextColorHover: string; /* 悬停页码文字颜色 */
79
+ // itemTextColorPressed: string; /* 按下页码文字颜色 */
80
+ // itemTextColorActive: string; /* 当前页码文字颜色 */
81
+ // itemTextColorDisabled: string; /* 禁用页码文字颜色 */
82
+ // /* 背景颜色 */
83
+ // itemColor: string; /* 普通页码背景色 */
84
+ // itemColorHover: string; /* 悬停页码背景色 */
85
+ // itemColorPressed: string; /* 按下页码背景色 */
86
+ // itemColorActive: string; /* 当前页码背景色 */
87
+ // itemColorActiveHover: string; /* 当前页码悬停背景色 */
88
+ // itemColorDisabled: string; /* 禁用页码背景色 */
89
+ // /* 边框样式 */
90
+ // itemBorder: string; /* 页码边框 */
91
+ // itemBorderHover: string; /* 悬停页码边框 */
92
+ // itemBorderPressed: string; /* 按下页码边框 */
93
+ // itemBorderActive: string; /* 当前页码边框 */
94
+ // itemBorderDisabled: string; /* 禁用页码边框 */
95
+ // /* 尺寸和圆角 */
96
+ // itemBorderRadius: string; /* 页码圆角 */
97
+ /* 页码项尺寸 */
98
+ // itemSizeSmall: '26px' /* 小尺寸页码大小 */
99
+ // itemSizeMedium: '32px', /* 中尺寸页码大小 */
100
+ // itemSizeLarge: '34px' /* 大尺寸页码大小 */
101
+ // /* 字体大小 */
102
+ // itemFontSizeSmall: string; /* 小尺寸页码字体 */
103
+ // itemFontSizeMedium: string; /* 中尺寸页码字体 */
104
+ // itemFontSizeLarge: string; /* 大尺寸页码字体 */
105
+ // jumperFontSizeSmall: string; /* 小尺寸跳转框字体 */
106
+ // jumperFontSizeMedium: string; /* 中尺寸跳转框字体 */
107
+ // jumperFontSizeLarge: string; /* 大尺寸跳转框字体 */
108
+ // jumperTextColor: string; /* 跳转框文字颜色 */
109
+ // jumperTextColorDisabled: string; /* 禁用跳转框文字颜色 */
110
+ /* 各种间距和边距配置,用于控制组件内部元素的布局 */
111
+ // itemPaddingSmall: string; /* 小尺寸页码内边距 */
112
+ // itemMarginSmall: string; /* 小尺寸页码外边距 */
113
+ /* ... 其他间距变量 */
114
+ // itemColorDisabled: string;
115
+ // itemBorder: 'red',
116
+ // itemBorderHover: string;
117
+ // itemBorderPressed: string;
118
+ // itemBorderActive: string;
119
+ // itemBorderDisabled: string;
120
+ // itemBorderRadius: string;
121
+ // itemSizeSmall: '62px',
122
+ // itemSizeMedium: '32px',
123
+ // itemSizeLarge: '22px'
124
+ // itemFontSizeSmall: string;
125
+ // itemFontSizeMedium: '32px'
126
+ // itemFontSizeLarge: string;
127
+ // jumperFontSizeSmall: string;
128
+ // jumperFontSizeMedium: '14px',
129
+ // jumperFontSizeLarge: string;
130
+ // jumperTextColor: 'red',
131
+ // jumperTextColorDisabled: string;
132
+ // itemPaddingSmall: '20px',
133
+ // itemMarginSmall: '20px',
134
+ // itemMarginSmallRtl: string;
135
+ // itemPaddingMedium: '0 10px',
136
+ // itemMarginMedium: '0 8px'
137
+ // itemMarginMediumRtl: '36px'
138
+ // itemPaddingLarge: string;
139
+ // itemMarginLarge: string;
140
+ // itemMarginLargeRtl: string;
141
+ // buttonIconSizeSmall: '10px',
142
+ // buttonIconSizeMedium: '32px'
143
+ // buttonIconSizeLarge: '30px',
144
+ // inputWidthSmall: '150px'
145
+ // selectWidthSmall: '60px'
146
+ // inputMarginSmall: string;
147
+ // inputMarginSmallRtl: string;
148
+ // selectMarginSmall: string;
149
+ // prefixMarginSmall: string;
150
+ // suffixMarginSmall: string;
151
+ // inputWidthMedium: string;
152
+ // selectWidthMedium: string;
153
+ // inputMarginMedium: string;
154
+ // inputMarginMediumRtl: string;
155
+ // selectMarginMedium: string;
156
+ // prefixMarginMedium: string;
157
+ // suffixMarginMedium: string;
158
+ // inputWidthLarge: string;
159
+ // selectWidthLarge: string;
160
+ // inputMarginLarge: string;
161
+ // inputMarginLargeRtl: string;
162
+ // selectMarginLarge: string;
163
+ // prefixMarginLarge: string;
164
+ // suffixMarginLarge: string;
165
+ }, m = {
166
+ // fontSize: string; /* 面包屑整体字体大小 */
167
+ // itemLineHeight: string; /* 面包屑项的行高 */
168
+ // fontWeightActive: string; /* 当前项的字重(如:bold)*/
169
+ itemTextColor: o["color-gray-8"],
170
+ /* 普通面包屑项文字颜色 */
171
+ itemTextColorHover: o["color-gray-10"],
172
+ /* 鼠标悬停时文字颜色 */
173
+ itemTextColorPressed: o["color-gray-10"],
174
+ /* 鼠标按下时文字颜色 */
175
+ itemTextColorActive: o["color-gray-10"],
176
+ /* 当前页面项文字颜色(不可点击)*/
177
+ // itemColorHover: string; /* 鼠标悬停时背景颜色 */
178
+ // itemColorPressed: string; /* 鼠标按下时背景颜色 */
179
+ // itemBorderRadius: string; /* 面包屑项的圆角大小 */
180
+ separatorColor: o["color-gray-4"]
181
+ /* 分隔符颜色(如 > 或 / 的颜色)*/
182
+ }, g = {
183
+ /* Line 类型文字颜色 */
184
+ tabTextColorLine: o["color-gray-8"],
185
+ /* 普通文字颜色 */
186
+ tabTextColorActiveLine: o["color-primary-6"],
187
+ /* 激活状态文字颜色 */
188
+ tabTextColorHoverLine: o["color-primary-5"],
189
+ /* 悬停状态文字颜色 */
190
+ tabTextColorDisabledLine: o["color-gray-4"],
191
+ /* 禁用状态文字颜色 */
192
+ // /* Bar 类型文字颜色 */
193
+ tabTextColorBar: o["color-gray-8"],
194
+ /* 普通文字颜色 */
195
+ tabTextColorActiveBar: o["color-primary-6"],
196
+ /* 激活状态文字颜色 */
197
+ tabTextColorHoverBar: o["color-primary-5"],
198
+ /* 悬停状态文字颜色 */
199
+ tabTextColorDisabledBar: o["color-gray-4"],
200
+ /* 禁用状态文字颜色 */
201
+ // /* Card 类型文字颜色 */
202
+ tabTextColorCard: o["color-gray-8"],
203
+ /* 普通文字颜色 */
204
+ tabTextColorActiveCard: o["color-primary-6"],
205
+ /* 激活状态文字颜色 */
206
+ tabTextColorHoverCard: o["color-primary-5"],
207
+ /* 悬停状态文字颜色 */
208
+ tabTextColorDisabledCard: o["color-gray-4"],
209
+ /* 禁用状态文字颜色 */
210
+ // tabColor: lightBase['color-primary-2'], /* 标签页背景色 */
211
+ // /* Segment 类型文字颜色 */
212
+ tabTextColorSegment: o["color-gray-8"],
213
+ /* 普通文字颜色 */
214
+ tabTextColorActiveSegment: o["color-primary-6"],
215
+ /* 激活状态文字颜色 */
216
+ tabTextColorHoverSegment: o["color-primary-5"],
217
+ /* 悬停状态文字颜色 */
218
+ tabTextColorDisabledSegment: o["color-gray-4"],
219
+ /* 禁用状态文字颜色 */
220
+ tabPaddingSmallSegment: "10px 12px",
221
+ tabPaddingMediumSegment: "10px 0",
222
+ tabPaddingLargeSegment: "10px 0",
223
+ colorSegment: e["color-text-1"],
224
+ /* Segment 类型背景色 */
225
+ tabColorSegment: o["color-primary-2"],
226
+ /* Segment 类型标签背景色 */
227
+ // tabBorderColor: string; /* 标签页边框颜色 */
228
+ barColor: o["color-primary-6"],
229
+ /* Bar 类型指示条颜色 */
230
+ // closeIconColor: string; /* 关闭图标颜色 */
231
+ // closeIconColorHover: string; /* 关闭图标悬停颜色 */
232
+ // closeIconColorPressed: string;/* 关闭图标按下颜色 */
233
+ // closeColorHover: string; /* 关闭按钮悬停背景色 */
234
+ // closeColorPressed: string; /* 关闭按钮按下背景色 */
235
+ // closeBorderRadius: string; /* 关闭按钮圆角 */
236
+ // closeSize: string; /* 关闭按钮大小 */
237
+ // closeIconSize: string; /* 关闭图标大小 */
238
+ // tabFontSizeCard: string; /* Card 类型字体大小 */
239
+ tabFontSizeSmall: r.fontSizeSmall,
240
+ /* 小尺寸字体 */
241
+ tabFontSizeMedium: r.fontSizeMedium,
242
+ /* 中尺寸字体 */
243
+ tabFontSizeLarge: r.fontSizeLarge,
244
+ /* 大尺寸字体 */
245
+ tabFontWeight: r.fontWeightNormal,
246
+ /* 普通字重 */
247
+ tabFontWeightActive: r.fontWeightActive,
248
+ /* 激活状态字重 */
249
+ // fontWeightStrong: string; /* 强调字重 */
250
+ // paneTextColor: string; /* 标签内容区域文字颜色 */
251
+ // panePaddingSmall: string; /* 小尺寸内容区域内边距 */
252
+ // panePaddingMedium: string; /* 中尺寸内容区域内边距 */
253
+ // panePaddingLarge: string; /* 大尺寸内容区域内边距 *//* 各种间距变量命名规则:
254
+ // tab[属性][尺寸][类型][方向]
255
+ // 例如:tabGapSmallLineVertical = 小尺寸 + Line类型 + 垂直方向的间隙
256
+ // */
257
+ // /* 间隙(Gap)*/
258
+ tabGapSmallLine: r.tabGapSmall,
259
+ /* 小尺寸Line类型水平间隙 */
260
+ tabGapMediumLine: r.tabGapMedium,
261
+ /* 中尺寸Line类型水平间隙 */
262
+ tabGapLargeLine: r.tabGapLarge,
263
+ /* 大尺寸Line类型水平间隙 */
264
+ // /* 内边距(Padding)*/
265
+ tabPaddingSmallLine: r.tabPaddingSmall,
266
+ /* 小尺寸Line类型水平内边距 */
267
+ tabPaddingMediumLine: r.tabPaddingMedium,
268
+ /* 中尺寸Line类型水平内边距 */
269
+ tabPaddingLargeLine: r.tabPaddingLarge,
270
+ /* 大尺寸Line类型水平内边距 */
271
+ // /* 垂直方向变量(带Vertical后缀)*/
272
+ // tabGapSmallLineVertical: string; /* 垂直方向间隙 */
273
+ // tabPaddingVerticalSmallLine: string; /* 垂直方向内边距 */
274
+ tabBorderRadius: r.tabBorderRadius,
275
+ /* 标签页圆角 */
276
+ closeBorderRadius: r.tabBorderRadius
277
+ /* 关闭按钮圆角 */
278
+ // closeBorderRadius: string; /* 关闭按钮圆角 */
279
+ }, C = {
280
+ indicatorColorWait: e["color-text-1"],
281
+ /* 等待状态指示器背景色 */
282
+ indicatorColorProcess: o["color-primary-6"],
283
+ /* 进行状态指示器背景色 */
284
+ indicatorColorFinish: e["color-text-1"],
285
+ /* 完成状态指示器背景色 */
286
+ indicatorColorError: e["color-text-1"],
287
+ /* 错误状态指示器背景色 */
288
+ indicatorTextColorWait: o["color-gray-6"],
289
+ /* 等待状态指示器文字颜色 */
290
+ indicatorTextColorProcess: e["color-text-1"],
291
+ /* 进行状态指示器文字颜色 */
292
+ indicatorTextColorFinish: o["color-primary-6"],
293
+ /* 完成状态指示器文字颜色 */
294
+ indicatorTextColorError: o["color-red-6"],
295
+ /* 错误状态指示器文字颜色 */
296
+ indicatorBorderColorWait: o["color-gray-6"],
297
+ /* 等待状态指示器边框颜色 */
298
+ indicatorBorderColorProcess: o["color-primary-6"],
299
+ /* 进行状态指示器边框颜色 */
300
+ indicatorBorderColorFinish: o["color-primary-6"],
301
+ /* 完成状态指示器边框颜色 */
302
+ indicatorBorderColorError: o["color-red-6"],
303
+ /* 错误状态指示器边框颜色 */
304
+ headerTextColorWait: o["color-gray-10"],
305
+ /* 等待状态标题颜色 */
306
+ headerTextColorProcess: o["color-gray-10"],
307
+ /* 进行状态标题颜色 */
308
+ headerTextColorFinish: o["color-gray-10"],
309
+ /* 完成状态标题颜色 */
310
+ headerTextColorError: o["color-gray-10"],
311
+ /* 错误状态标题颜色 */
312
+ descriptionTextColorWait: o["color-gray-6"],
313
+ /* 等待状态描述颜色 */
314
+ descriptionTextColorProcess: o["color-gray-6"],
315
+ /* 进行状态描述颜色 */
316
+ descriptionTextColorFinish: o["color-gray-6"],
317
+ /* 完成状态描述颜色 */
318
+ descriptionTextColorError: o["color-gray-6"],
319
+ /* 错误状态描述颜色 */
320
+ splitorColorProcess: o["color-primary-6"],
321
+ splitorColorWait: o["color-gray-4"],
322
+ splitorColorFinish: o["color-primary-6"],
323
+ splitorColorError: o["color-primary-6"],
324
+ stepHeaderFontSizeSmall: "16px",
325
+ /* 小尺寸标题字体 */
326
+ stepHeaderFontSizeMedium: "16px",
327
+ /* 中尺寸标题字体 */
328
+ indicatorIndexFontSizeSmall: "16px",
329
+ /* 小尺寸指示器数字字体 */
330
+ indicatorIndexFontSizeMedium: "16px",
331
+ /* 中尺寸指示器数字字体 */
332
+ // stepHeaderFontWeight: string; /* 标题字体粗细 */
333
+ indicatorSizeSmall: "24px",
334
+ /* 小尺寸指示器大小 */
335
+ indicatorSizeMedium: "24px",
336
+ /* 中尺寸指示器大小 */
337
+ indicatorIconSizeSmall: "16px",
338
+ /* 小尺寸指示器图标大小 */
339
+ indicatorIconSizeMedium: "16px"
340
+ /* 中尺寸指示器图标大小 */
341
+ };
342
+ export {
343
+ m as BreadcrumbThemeLight,
344
+ n as PaginationThemeLight,
345
+ c as PopconfirmThemeLight,
346
+ C as StepsThemeLight,
347
+ g as TabsThemeLight,
348
+ l as TooltipThemeLight,
349
+ d as TreeThemeLight
350
+ };
@@ -0,0 +1,2 @@
1
+ import { ButtonProps } from 'naive-ui';
2
+ export declare const ButtonThemeCommon: ButtonProps['themeOverrides'];
@@ -0,0 +1,17 @@
1
+ import { commonBase as e } from "../../common.mjs";
2
+ const a = {
3
+ borderRadiusLarge: e.borderRadiusLarge,
4
+ borderRadiusMedium: e.borderRadiusMedium,
5
+ borderRadiusSmall: e.borderRadiusSmall,
6
+ heightMedium: e.heightMedium,
7
+ heightSmall: e.heightSmall,
8
+ fontSizeLarge: e.fontSizeLarge,
9
+ fontSizeSmall: e.fontSizeSmall,
10
+ opacityDisabled: "1",
11
+ paddingLarge: "0 24px",
12
+ paddingMedium: "0 16px",
13
+ paddingSmall: "0 12px"
14
+ };
15
+ export {
16
+ a as ButtonThemeCommon
17
+ };
@@ -0,0 +1,2 @@
1
+ import { ButtonProps } from 'naive-ui';
2
+ export declare const ButtonThemeDark: ButtonProps['themeOverrides'];
@@ -0,0 +1,109 @@
1
+ import o from "../../color/dark.mjs";
2
+ import r from "../../token/dark.mjs";
3
+ import { ButtonThemeCommon as e } from "./common.mjs";
4
+ const t = {
5
+ ...e,
6
+ border: `1px solid ${r["fill-color-2"]}`,
7
+ borderError: `1px solid ${o["color-red-6"]}`,
8
+ borderPrimary: `1px solid ${o["color-primary-6"]}`,
9
+ borderSuccess: `1px solid ${o["color-green-6"]}`,
10
+ borderWarning: `1px solid ${o["color-origin-6"]}`,
11
+ borderDisabled: `1px solid ${r["color-default-disabled"]}`,
12
+ borderDisabledError: `1px solid ${o["color-red-5"]}`,
13
+ borderDisabledPrimary: `1px solid ${r["color-primary-disabled"]}`,
14
+ borderDisabledSuccess: `1px solid ${r["color-success-disabled"]}`,
15
+ borderDisabledWarning: `1px solid ${r["color-warning-disabled"]}`,
16
+ borderHover: `1px solid ${r["fill-color-3"]}`,
17
+ borderHoverError: `1px solid ${o["color-red-5"]}`,
18
+ borderHoverPrimary: `1px solid ${o["color-primary-5"]}`,
19
+ borderHoverSuccess: `1px solid ${o["color-green-5"]}`,
20
+ borderHoverWarning: `1px solid ${o["color-origin-5"]}`,
21
+ borderFocus: `1px solid ${r["fill-color-3"]}`,
22
+ borderFocusError: `1px solid ${o["color-red-5"]}`,
23
+ borderFocusPrimary: `1px solid ${o["color-primary-5"]}`,
24
+ borderFocusSuccess: `1px solid ${o["color-green-5"]}`,
25
+ borderFocusWarning: `1px solid ${o["color-origin-5"]}`,
26
+ borderPressed: `1px solid ${r["fill-color-4"]}`,
27
+ borderPressedError: `1px solid ${o["color-red-7"]}`,
28
+ borderPressedPrimary: `1px solid ${o["color-primary-7"]}`,
29
+ borderPressedSuccess: `1px solid ${o["color-green-7"]}`,
30
+ borderPressedWarning: `1px solid ${o["color-origin-7"]}`,
31
+ color: r["fill-color-2"],
32
+ colorError: o["color-red-6"],
33
+ colorPrimary: o["color-primary-6"],
34
+ colorSuccess: o["color-green-6"],
35
+ colorWarning: o["color-origin-6"],
36
+ colorDisabled: r["color-default-disabled"],
37
+ colorDisabledError: r["color-error-disabled"],
38
+ colorDisabledPrimary: r["color-primary-disabled"],
39
+ colorDisabledSuccess: r["color-success-disabled"],
40
+ colorDisabledWarning: r["color-warning-disabled"],
41
+ colorFocus: r["fill-color-3"],
42
+ colorFocusError: o["color-red-5"],
43
+ colorFocusPrimary: o["color-primary-5"],
44
+ colorFocusSuccess: o["color-green-5"],
45
+ colorFocusWarning: o["color-origin-5"],
46
+ colorHover: r["fill-color-3"],
47
+ colorHoverError: o["color-red-5"],
48
+ colorHoverPrimary: o["color-primary-5"],
49
+ colorHoverSuccess: o["color-green-5"],
50
+ colorHoverWarning: o["color-origin-5"],
51
+ colorPressed: r["fill-color-4"],
52
+ colorPressedError: o["color-red-7"],
53
+ colorPressedPrimary: o["color-primary-7"],
54
+ colorPressedSuccess: o["color-green-7"],
55
+ colorPressedWarning: o["color-origin-7"],
56
+ textColor: o["color-gray-8"],
57
+ textColorError: r["color-text-5"],
58
+ textColorPrimary: r["color-text-5"],
59
+ textColorSuccess: r["color-text-5"],
60
+ textColorWarning: r["color-text-5"],
61
+ textColorDisabled: "rgba(255, 255, 255, 0.75)",
62
+ textColorDisabledError: "rgba(255, 255, 255, 0.75)",
63
+ textColorDisabledPrimary: "rgba(255, 255, 255, 0.75)",
64
+ textColorDisabledSuccess: "rgba(255, 255, 255, 0.75)",
65
+ textColorDisabledWarning: "rgba(255, 255, 255, 0.75)",
66
+ textColorFocus: o["color-gray-8"],
67
+ textColorFocusError: r["color-text-5"],
68
+ textColorFocusPrimary: r["color-text-5"],
69
+ textColorFocusSuccess: r["color-text-5"],
70
+ textColorFocusWarning: r["color-text-5"],
71
+ textColorHover: o["color-gray-8"],
72
+ textColorHoverError: r["color-text-5"],
73
+ textColorHoverPrimary: r["color-text-5"],
74
+ textColorHoverSuccess: r["color-text-5"],
75
+ textColorHoverWarning: r["color-text-5"],
76
+ textColorPressed: o["color-gray-8"],
77
+ textColorPressedError: r["color-text-5"],
78
+ textColorPressedPrimary: r["color-text-5"],
79
+ textColorPressedSuccess: r["color-text-5"],
80
+ textColorPressedWarning: r["color-text-5"],
81
+ textColorGhost: o["color-gray-8"],
82
+ textColorGhostError: o["color-red-6"],
83
+ textColorGhostPrimary: o["color-primary-6"],
84
+ textColorGhostSuccess: o["color-green-6"],
85
+ textColorGhostWarning: o["color-origin-6"],
86
+ textColorGhostDisabled: "rgba(255, 255, 255, 0.5)",
87
+ textColorGhostDisabledError: r["color-error-disabled"],
88
+ textColorGhostDisabledPrimary: r["color-primary-disabled"],
89
+ textColorGhostDisabledSuccess: r["color-success-disabled"],
90
+ textColorGhostDisabledWarning: r["color-warning-disabled"],
91
+ textColorGhostFocus: o["color-gray-8"],
92
+ textColorGhostFocusError: o["color-red-5"],
93
+ textColorGhostFocusPrimary: o["color-primary-5"],
94
+ textColorGhostFocusSuccess: o["color-green-5"],
95
+ textColorGhostFocusWarning: o["color-origin-5"],
96
+ textColorGhostHover: o["color-gray-8"],
97
+ textColorGhostHoverError: o["color-red-5"],
98
+ textColorGhostHoverPrimary: o["color-primary-5"],
99
+ textColorGhostHoverSuccess: o["color-green-5"],
100
+ textColorGhostHoverWarning: o["color-origin-5"],
101
+ textColorGhostPressed: o["color-gray-8"],
102
+ textColorGhostPressedError: o["color-red-7"],
103
+ textColorGhostPressedPrimary: o["color-primary-7"],
104
+ textColorGhostPressedSuccess: o["color-green-7"],
105
+ textColorGhostPressedWarning: o["color-origin-7"]
106
+ };
107
+ export {
108
+ t as ButtonThemeDark
109
+ };
@@ -0,0 +1,2 @@
1
+ import { ButtonProps } from 'naive-ui';
2
+ export declare const ButtonThemeLight: ButtonProps['themeOverrides'];
@@ -0,0 +1,88 @@
1
+ import o from "../../color/light.mjs";
2
+ import { ButtonThemeCommon as r } from "./common.mjs";
3
+ const c = {
4
+ ...r,
5
+ border: `1px solid ${o["color-gray-3"]}`,
6
+ borderError: `1px solid ${o["color-red-6"]}`,
7
+ borderPrimary: `1px solid ${o["color-primary-6"]}`,
8
+ borderSuccess: `1px solid ${o["color-green-6"]}`,
9
+ borderWarning: `1px solid ${o["color-origin-6"]}`,
10
+ borderDisabled: `1px solid ${o["color-gray-2"]}`,
11
+ borderDisabledError: `1px solid ${o["color-red-3"]}`,
12
+ borderDisabledPrimary: `1px solid ${o["color-primary-3"]}`,
13
+ borderDisabledSuccess: `1px solid ${o["color-green-3"]}`,
14
+ borderDisabledWarning: `1px solid ${o["color-origin-3"]}`,
15
+ borderHover: `1px solid ${o["color-gray-4"]}`,
16
+ borderHoverError: `1px solid ${o["color-red-5"]}`,
17
+ borderHoverPrimary: `1px solid ${o["color-primary-5"]}`,
18
+ borderHoverSuccess: `1px solid ${o["color-green-5"]}`,
19
+ borderHoverWarning: `1px solid ${o["color-origin-5"]}`,
20
+ borderFocus: `1px solid ${o["color-gray-4"]}`,
21
+ borderFocusError: `1px solid ${o["color-red-5"]}`,
22
+ borderFocusPrimary: `1px solid ${o["color-primary-5"]}`,
23
+ borderFocusSuccess: `1px solid ${o["color-green-5"]}`,
24
+ borderFocusWarning: `1px solid ${o["color-origin-5"]}`,
25
+ borderPressed: `1px solid ${o["color-gray-5"]}`,
26
+ borderPressedError: `1px solid ${o["color-red-7"]}`,
27
+ borderPressedPrimary: `1px solid ${o["color-primary-7"]}`,
28
+ borderPressedSuccess: `1px solid ${o["color-green-7"]}`,
29
+ borderPressedWarning: `1px solid ${o["color-origin-7"]}`,
30
+ color: o["color-gray-3"],
31
+ colorError: o["color-red-6"],
32
+ colorPrimary: o["color-primary-6"],
33
+ colorSuccess: o["color-green-6"],
34
+ colorWarning: o["color-origin-6"],
35
+ colorDisabled: o["color-gray-2"],
36
+ colorDisabledError: o["color-red-3"],
37
+ colorDisabledPrimary: o["color-primary-3"],
38
+ colorDisabledSuccess: o["color-green-3"],
39
+ colorDisabledWarning: o["color-origin-3"],
40
+ colorFocus: o["color-gray-4"],
41
+ colorFocusError: o["color-red-5"],
42
+ colorFocusPrimary: o["color-primary-5"],
43
+ colorFocusSuccess: o["color-green-5"],
44
+ colorFocusWarning: o["color-origin-5"],
45
+ colorHover: o["color-gray-4"],
46
+ colorHoverError: o["color-red-5"],
47
+ colorHoverPrimary: o["color-primary-5"],
48
+ colorHoverSuccess: o["color-green-5"],
49
+ colorHoverWarning: o["color-origin-5"],
50
+ colorPressed: o["color-gray-5"],
51
+ colorPressedError: o["color-red-7"],
52
+ colorPressedPrimary: o["color-primary-7"],
53
+ colorPressedSuccess: o["color-green-7"],
54
+ colorPressedWarning: o["color-origin-7"],
55
+ textColor: o["color-gray-8"],
56
+ textColorDisabled: o["color-gray-4"],
57
+ textColorFocus: o["color-gray-8"],
58
+ textColorHover: o["color-gray-8"],
59
+ textColorPressed: o["color-gray-8"],
60
+ textColorGhost: o["color-gray-8"],
61
+ textColorGhostError: o["color-red-6"],
62
+ textColorGhostPrimary: o["color-primary-6"],
63
+ textColorGhostSuccess: o["color-green-6"],
64
+ textColorGhostWarning: o["color-origin-6"],
65
+ textColorGhostDisabled: o["color-gray-4"],
66
+ textColorGhostDisabledError: o["color-red-3"],
67
+ textColorGhostDisabledPrimary: o["color-primary-3"],
68
+ textColorGhostDisabledSuccess: o["color-green-3"],
69
+ textColorGhostDisabledWarning: o["color-origin-3"],
70
+ textColorGhostFocus: o["color-gray-8"],
71
+ textColorGhostFocusError: o["color-red-5"],
72
+ textColorGhostFocusPrimary: o["color-primary-5"],
73
+ textColorGhostFocusSuccess: o["color-green-5"],
74
+ textColorGhostFocusWarning: o["color-origin-5"],
75
+ textColorGhostHover: o["color-gray-8"],
76
+ textColorGhostHoverError: o["color-red-5"],
77
+ textColorGhostHoverPrimary: o["color-primary-5"],
78
+ textColorGhostHoverSuccess: o["color-green-5"],
79
+ textColorGhostHoverWarning: o["color-origin-5"],
80
+ textColorGhostPressed: o["color-gray-8"],
81
+ textColorGhostPressedError: o["color-red-7"],
82
+ textColorGhostPressedPrimary: o["color-primary-7"],
83
+ textColorGhostPressedSuccess: o["color-green-7"],
84
+ textColorGhostPressedWarning: o["color-origin-7"]
85
+ };
86
+ export {
87
+ c as ButtonThemeLight
88
+ };
@@ -0,0 +1,2 @@
1
+ import { CardProps } from 'naive-ui';
2
+ export declare const CardThemeDark: CardProps['themeOverrides'];
@@ -0,0 +1,14 @@
1
+ import r from "../../color/dark.mjs";
2
+ import o from "../../token/dark.mjs";
3
+ const d = {
4
+ color: o["bg-color-2"],
5
+ paddingMedium: "16px 24px",
6
+ borderColor: r["color-gray-3"],
7
+ textColor: o["color-text-1"],
8
+ closeIconColor: o["color-text-1"],
9
+ titleFontSizeMedium: "20px",
10
+ borderRadius: "10px"
11
+ };
12
+ export {
13
+ d as CardThemeDark
14
+ };
@@ -0,0 +1,2 @@
1
+ import { CardProps } from 'naive-ui';
2
+ export declare const CardThemeLight: CardProps['themeOverrides'];
@@ -0,0 +1,14 @@
1
+ import o from "../../color/light.mjs";
2
+ import r from "../../token/light.mjs";
3
+ const t = {
4
+ color: r["bg-color-2"],
5
+ paddingMedium: "16px 24px",
6
+ borderColor: o["color-gray-3"],
7
+ textColor: o["color-gray-10"],
8
+ closeIconColor: o["color-gray-10"],
9
+ titleFontSizeMedium: "20px",
10
+ borderRadius: "10px"
11
+ };
12
+ export {
13
+ t as CardThemeLight
14
+ };