@macroui/macroui-vue 1.0.0 → 1.0.2
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.
- package/README.md +5 -5
- package/dist/index.cjs.js +1 -1
- package/dist/index.es.js +48 -66
- package/dist/style.css +1 -1
- package/package.json +4 -3
- package/dist/locale/index.ts +0 -76
- package/dist/locale/lang/af.ts +0 -149
- package/dist/locale/lang/ar-eg.ts +0 -149
- package/dist/locale/lang/ar.ts +0 -149
- package/dist/locale/lang/az.ts +0 -149
- package/dist/locale/lang/bg.ts +0 -149
- package/dist/locale/lang/bn.ts +0 -149
- package/dist/locale/lang/ca.ts +0 -149
- package/dist/locale/lang/ckb.ts +0 -149
- package/dist/locale/lang/cs.ts +0 -149
- package/dist/locale/lang/da.ts +0 -149
- package/dist/locale/lang/de.ts +0 -149
- package/dist/locale/lang/el.ts +0 -149
- package/dist/locale/lang/en.ts +0 -149
- package/dist/locale/lang/eo.ts +0 -149
- package/dist/locale/lang/es.ts +0 -149
- package/dist/locale/lang/et.ts +0 -149
- package/dist/locale/lang/eu.ts +0 -149
- package/dist/locale/lang/fa.ts +0 -149
- package/dist/locale/lang/fi.ts +0 -149
- package/dist/locale/lang/fr.ts +0 -149
- package/dist/locale/lang/he.ts +0 -149
- package/dist/locale/lang/hi.ts +0 -149
- package/dist/locale/lang/hr.ts +0 -149
- package/dist/locale/lang/hu.ts +0 -149
- package/dist/locale/lang/hy-am.ts +0 -149
- package/dist/locale/lang/id.ts +0 -149
- package/dist/locale/lang/it.ts +0 -149
- package/dist/locale/lang/ja.ts +0 -149
- package/dist/locale/lang/kk.ts +0 -149
- package/dist/locale/lang/km.ts +0 -149
- package/dist/locale/lang/ko.ts +0 -149
- package/dist/locale/lang/ku.ts +0 -149
- package/dist/locale/lang/ky.ts +0 -149
- package/dist/locale/lang/lt.ts +0 -149
- package/dist/locale/lang/lv.ts +0 -149
- package/dist/locale/lang/mg.ts +0 -149
- package/dist/locale/lang/mn.ts +0 -149
- package/dist/locale/lang/ms.ts +0 -149
- package/dist/locale/lang/my.ts +0 -149
- package/dist/locale/lang/nb-no.ts +0 -149
- package/dist/locale/lang/nl.ts +0 -149
- package/dist/locale/lang/no.ts +0 -149
- package/dist/locale/lang/pa.ts +0 -149
- package/dist/locale/lang/pl.ts +0 -149
- package/dist/locale/lang/pt-br.ts +0 -149
- package/dist/locale/lang/pt.ts +0 -149
- package/dist/locale/lang/ro.ts +0 -149
- package/dist/locale/lang/ru.ts +0 -149
- package/dist/locale/lang/sk.ts +0 -149
- package/dist/locale/lang/sl.ts +0 -149
- package/dist/locale/lang/sr.ts +0 -149
- package/dist/locale/lang/sv.ts +0 -149
- package/dist/locale/lang/sw.ts +0 -149
- package/dist/locale/lang/ta.ts +0 -149
- package/dist/locale/lang/te.ts +0 -149
- package/dist/locale/lang/th.ts +0 -149
- package/dist/locale/lang/tk.ts +0 -149
- package/dist/locale/lang/tr.ts +0 -149
- package/dist/locale/lang/ug-cn.ts +0 -149
- package/dist/locale/lang/uk.ts +0 -149
- package/dist/locale/lang/ur.ts +0 -149
- package/dist/locale/lang/uz-uz.ts +0 -149
- package/dist/locale/lang/vi.ts +0 -149
- package/dist/locale/lang/zh-cn.ts +0 -149
- package/dist/locale/lang/zh-hk.ts +0 -149
- package/dist/locale/lang/zh-mo.ts +0 -149
- package/dist/locale/lang/zh-tw.ts +0 -149
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
#
|
|
1
|
+
# MacroUI DaisyUI 组件库
|
|
2
2
|
|
|
3
|
-
基于 Vue 3 +
|
|
3
|
+
基于 Vue 3 + MacroUI API + daisyUI 视觉风格的组件库。
|
|
4
4
|
|
|
5
5
|
## 特性
|
|
6
6
|
|
|
7
|
-
- ✅ 100%
|
|
7
|
+
- ✅ 100% MacroUI API 兼容
|
|
8
8
|
- ✅ 100% daisyUI 视觉风格
|
|
9
9
|
- ✅ 支持 25 个主题
|
|
10
10
|
- ✅ TypeScript 支持
|
|
@@ -24,7 +24,7 @@ npm install @macroui/macroui
|
|
|
24
24
|
```javascript
|
|
25
25
|
import { createApp } from 'vue'
|
|
26
26
|
import App from './App.vue'
|
|
27
|
-
import '
|
|
27
|
+
import 'macroui/dist/full.css'
|
|
28
28
|
import Macroui from '@macroui/macroui'
|
|
29
29
|
|
|
30
30
|
const app = createApp(App)
|
|
@@ -36,7 +36,7 @@ app.mount('#app')
|
|
|
36
36
|
|
|
37
37
|
```javascript
|
|
38
38
|
import { ElButton, ElInput, ElSelect } from '@macroui/macroui'
|
|
39
|
-
import '
|
|
39
|
+
import 'macroui/dist/full.css'
|
|
40
40
|
|
|
41
41
|
app.component('el-button', ElButton)
|
|
42
42
|
app.component('el-input', ElInput)
|