moov-ui-plus 1.0.0

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 前端小白
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ import{defineComponent as e,openBlock as t,createElementBlock as o,normalizeClass as l,createCommentVNode as a,renderSlot as i,normalizeStyle as s,createElementVNode as n,toDisplayString as d}from"vue";const c={type:{type:String,default:"default"},plain:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},size:{type:String,default:"medium"},icon:{type:String,default:""},round:{type:Boolean,default:!1},circle:{type:Boolean,default:!1}};console.log(c);var r=e({name:"MoovButton",props:c,emits:["click"],setup:(e,{emit:t})=>({handleClick:function(e){t("click",e)}})});const u=["disabled"],m={key:1};r.render=function(e,s,n,d,c,r){return t(),o("button",{class:l(["moov-button",[`moov-button-${e.type}`,{"is-plain":e.plain,"is-round":e.round,"is-circle":e.circle,"is-disabled":e.disabled}]]),disabled:e.disabled,onClick:s[0]||(s[0]=(...t)=>e.handleClick&&e.handleClick(...t))},[e.icon?(t(),o("i",{key:0,class:l(`moov-icon-${e.icon}`)},null,2)):a("v-if",!0),e.$slots.default?(t(),o("span",m,[i(e.$slots,"default")])):a("v-if",!0)],10,u)},r.__file="packages/components/button/src/button.vue";const p={width:{type:Number,default:0},imgSrc:{type:String,default:"",required:!0},imgHeight:{type:Number,default:0},summary:{type:String,default:""}};console.log(p);var f=e({name:"MoovCard",props:p});const y=["src"],v={key:0,class:"moov-card-summary"},g={key:1,class:"moov-card-summary"},b={class:"moov-card-footer"};f.render=function(e,l,c,r,u,m){return t(),o("div",{class:"moov-card",style:s({width:`${e.width}px`})},[a(" 图片 "),n("div",{class:"moov-card-img",style:s({height:`${e.imgHeight}px`})},[n("img",{src:e.imgSrc,alt:"img"},null,8,y)],4),e.summary?(t(),o("div",v,d(e.summary),1)):(t(),o("div",g,[i(e.$slots,"default")])),n("div",b,[i(e.$slots,"footer")])],4)},f.__file="packages/components/card/src/card.vue";const k=[r,f],h={install:e=>{k.forEach(t=>{e.component(t.name,t)})}};export{h as default};
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "@moov-ui-plus/components",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "type": "module",
7
+ "types": "types.d.ts",
8
+ "scripts": {
9
+ "test": "vitest"
10
+ },
11
+ "keywords": [],
12
+ "author": "",
13
+ "license": "ISC",
14
+ "packageManager": "pnpm@8.15.6",
15
+ "devDependencies": {
16
+ "vite": "^4.5.14"
17
+ },
18
+ "peerDependencies": {
19
+ "vue": "^3.0.0"
20
+ }
21
+ }
@@ -0,0 +1,2 @@
1
+ declare const _default: any;
2
+ export default _default;
@@ -0,0 +1,36 @@
1
+ import type { ExtractPropTypes } from 'vue';
2
+ export type ButtonProps = ExtractPropTypes<typeof props>;
3
+ export declare const props: {
4
+ type: {
5
+ type: StringConstructor;
6
+ default: string;
7
+ };
8
+ plain: {
9
+ type: BooleanConstructor;
10
+ default: boolean;
11
+ };
12
+ disabled: {
13
+ type: BooleanConstructor;
14
+ default: boolean;
15
+ };
16
+ loading: {
17
+ type: BooleanConstructor;
18
+ default: boolean;
19
+ };
20
+ size: {
21
+ type: StringConstructor;
22
+ default: string;
23
+ };
24
+ icon: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ };
28
+ round: {
29
+ type: BooleanConstructor;
30
+ default: boolean;
31
+ };
32
+ circle: {
33
+ type: BooleanConstructor;
34
+ default: boolean;
35
+ };
36
+ };
@@ -0,0 +1,81 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ type: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ plain: {
7
+ type: BooleanConstructor;
8
+ default: boolean;
9
+ };
10
+ disabled: {
11
+ type: BooleanConstructor;
12
+ default: boolean;
13
+ };
14
+ loading: {
15
+ type: BooleanConstructor;
16
+ default: boolean;
17
+ };
18
+ size: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ };
22
+ icon: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ round: {
27
+ type: BooleanConstructor;
28
+ default: boolean;
29
+ };
30
+ circle: {
31
+ type: BooleanConstructor;
32
+ default: boolean;
33
+ };
34
+ }>, {
35
+ handleClick: (e: Event) => void;
36
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
37
+ type: {
38
+ type: StringConstructor;
39
+ default: string;
40
+ };
41
+ plain: {
42
+ type: BooleanConstructor;
43
+ default: boolean;
44
+ };
45
+ disabled: {
46
+ type: BooleanConstructor;
47
+ default: boolean;
48
+ };
49
+ loading: {
50
+ type: BooleanConstructor;
51
+ default: boolean;
52
+ };
53
+ size: {
54
+ type: StringConstructor;
55
+ default: string;
56
+ };
57
+ icon: {
58
+ type: StringConstructor;
59
+ default: string;
60
+ };
61
+ round: {
62
+ type: BooleanConstructor;
63
+ default: boolean;
64
+ };
65
+ circle: {
66
+ type: BooleanConstructor;
67
+ default: boolean;
68
+ };
69
+ }>> & Readonly<{
70
+ onClick?: ((...args: any[]) => any) | undefined;
71
+ }>, {
72
+ type: string;
73
+ plain: boolean;
74
+ disabled: boolean;
75
+ loading: boolean;
76
+ size: string;
77
+ icon: string;
78
+ round: boolean;
79
+ circle: boolean;
80
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
81
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: any;
2
+ export default _default;
@@ -0,0 +1,21 @@
1
+ import type { ExtractPropTypes } from "vue";
2
+ export type CardProps = ExtractPropTypes<typeof props>;
3
+ export declare const props: {
4
+ width: {
5
+ type: NumberConstructor;
6
+ default: number;
7
+ };
8
+ imgSrc: {
9
+ type: StringConstructor;
10
+ default: string;
11
+ required: boolean;
12
+ };
13
+ imgHeight: {
14
+ type: NumberConstructor;
15
+ default: number;
16
+ };
17
+ summary: {
18
+ type: StringConstructor;
19
+ default: string;
20
+ };
21
+ };
@@ -0,0 +1,43 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ width: {
3
+ type: NumberConstructor;
4
+ default: number;
5
+ };
6
+ imgSrc: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ required: boolean;
10
+ };
11
+ imgHeight: {
12
+ type: NumberConstructor;
13
+ default: number;
14
+ };
15
+ summary: {
16
+ type: StringConstructor;
17
+ default: string;
18
+ };
19
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
20
+ width: {
21
+ type: NumberConstructor;
22
+ default: number;
23
+ };
24
+ imgSrc: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ required: boolean;
28
+ };
29
+ imgHeight: {
30
+ type: NumberConstructor;
31
+ default: number;
32
+ };
33
+ summary: {
34
+ type: StringConstructor;
35
+ default: string;
36
+ };
37
+ }>> & Readonly<{}>, {
38
+ width: number;
39
+ imgSrc: string;
40
+ imgHeight: number;
41
+ summary: string;
42
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
43
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import type { Plugin } from 'vue';
2
+ declare const moovui: Plugin;
3
+ export default moovui;
@@ -0,0 +1,8 @@
1
+ import { Plugin } from 'vue'
2
+ declare const moovui: Plugin;
3
+ export default moovui;
4
+ export * from './packages/components/button';
5
+
6
+ export * from './packages/components/card';
7
+
8
+ export * from './packages/components/index.d.ts';
@@ -0,0 +1 @@
1
+ .moov-button{appearance:none;background:#fff;border:1px solid #dcdfe6;border-radius:4px;box-sizing:border-box;color:#606266;cursor:pointer;display:inline-block;font-size:14px;font-weight:500;line-height:1;margin:0;outline:none;padding:12px 20px;text-align:center;transition:.1s;user-select:none;white-space:nowrap}.moov-button:focus,.moov-button:hover{background-color:#ecf5ff;border-color:#c6e2ff;color:#409eff}.moov-button-primary{background-color:#409eff;border-color:#409eff;color:#fff}.moov-button-primary:focus,.moov-button-primary:hover{background:#66b1ff;background-color:#66b1ff;color:#fff}.moov-button-success{background-color:#67c23a;border-color:#67c23a;color:#fff}.moov-button-success:focus,.moov-button-success:hover{background:#85ce61;background-color:#85ce61;color:#fff}.moov-button-info{background-color:#909399;border-color:#909399;color:#fff}.moov-button-info:focus,.moov-button-info:hover{background:#a6a9ad;background-color:#a6a9ad;color:#fff}.moov-button-warning{background-color:#e6a23c;border-color:#e6a23c;color:#fff}.moov-button-warning:focus,.moov-button-warning:hover{background:#ebb563;background-color:#ebb563;color:#fff}.moov-button-danger{background-color:#f56c6c;border-color:#f56c6c;color:#fff}.moov-button-danger:focus,.moov-button-danger:hover{background:#f78989;background-color:#f78989;color:#fff}.moov-button.is-plain:focus,.moov-button.is-plain:hover{background:#fff;border-color:#489eff;color:#409eff}.moov-button-primary.is-plain{background:#ecf5ff;color:#409eff}.moov-button-primary.is-plain:focus,.moov-button-primary.is-plain:hover{background:#409eff;border-color:#409eff;color:#fff}.moov-button-success.is-plain{background:#c2e7b0;color:#67c23a}.moov-button-success.is-plain:focus,.moov-button-success.is-plain:hover{background:#67c23a;border-color:#67c23a;color:#fff}.moov-button-info.is-plain{background:#d3d4d6;color:#909399}.moov-button-info.is-plain:focus,.moov-button-info.is-plain:hover{background:#909399;border-color:#909399;color:#fff}.moov-button-warning.is-plain{background:#f5dab1;color:#e6a23c}.moov-button-warning.is-plain:focus,.moov-button-warning.is-plain:hover{background:#e6a23c;border-color:#e6a23c;color:#fff}.moov-button-danger.is-plain{background:#fbc4c4;color:#f56c6c}.moov-button-danger.is-plain:focus,.moov-button-danger.is-plain:hover{background:#f56c6c;border-color:#f56c6c;color:#fff}.moov-button.is-round{border-radius:20px;padding:12px 23px}.moov-button.is-circle{border-radius:50%;padding:12px}.moov-button.is-disabled,.moov-button.is-disabled:focus,.moov-button.is-disabled:hover{background-color:#fff;background-image:none;border-color:#ebeef5;color:#c0c4cc;cursor:not-allowed}.moov-button-primary.is-disabled,.moov-button-primary.is-disabled:active,.moov-button-primary.is-disabled:focus,.moov-button-primary.is-disabled:hover{background-color:#a0cfff;border-color:#a0cfff;color:#fff}.moov-button-success.is-disabled,.moov-button-success.is-disabled:active,.moov-button-success.is-disabled:focus,.moov-button-success.is-disabled:hover{background-color:#b3e19d;border-color:#b3e19d;color:#fff}.moov-button-info.is-disabled,.moov-button-info.is-disabled:active,.moov-button-info.is-disabled:focus,.moov-button-info.is-disabled:hover{background-color:#c8c9cc;border-color:#c8c9cc;color:#fff}.moov-button-warning.is-disabled,.moov-button-warning.is-disabled:active,.moov-button-warning.is-disabled:focus,.moov-button-warning.is-disabled:hover{background-color:#f3d19e;border-color:#f3d19e;color:#fff}.moov-button-danger.is-disabled,.moov-button-danger.is-disabled:active,.moov-button-danger.is-disabled:focus,.moov-button-danger.is-disabled:hover{background-color:#fab6b6;border-color:#fab6b6;color:#fff}.moov-button [class*=moov-icon-]+span{margin-left:8px}.moov-card{background:#fff;border-radius:8px;box-shadow:0 6px 10px 0 rgba(95,101,105,.15);overflow:hidden;padding-bottom:8px;width:270px}.moov-card-img{height:152px;margin-bottom:8px}.moov-card-img img{height:100%;width:100%}.moov-card-summary{color:#545c63;font-size:14px;height:40px;line-height:20px;margin-bottom:8px;padding:0 8px;text-align:left}@font-face{font-display:inline;font-family:element-icons;font-style:normal;font-weight:400;src:url(fonts/element-icons.woff) format("woff"),url(fonts/element-icons.ttf) format("truetype")}[class*=moov-icon-]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;font-family:element-icons!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none;vertical-align:baseline}.moov-icon-ice-cream-round:before{content:"\e6a0"}.moov-icon-ice-cream-square:before{content:"\e6a3"}.moov-icon-lollipop:before{content:"\e6a4"}.moov-icon-potato-strips:before{content:"\e6a5"}.moov-icon-milk-tea:before{content:"\e6a6"}.moov-icon-ice-drink:before{content:"\e6a7"}.moov-icon-ice-tea:before{content:"\e6a9"}.moov-icon-coffee:before{content:"\e6aa"}.moov-icon-orange:before{content:"\e6ab"}.moov-icon-pear:before{content:"\e6ac"}.moov-icon-apple:before{content:"\e6ad"}.moov-icon-cherry:before{content:"\e6ae"}.moov-icon-watermelon:before{content:"\e6af"}.moov-icon-grape:before{content:"\e6b0"}.moov-icon-refrigerator:before{content:"\e6b1"}.moov-icon-goblet-square-full:before{content:"\e6b2"}.moov-icon-goblet-square:before{content:"\e6b3"}.moov-icon-goblet-full:before{content:"\e6b4"}.moov-icon-goblet:before{content:"\e6b5"}.moov-icon-cold-drink:before{content:"\e6b6"}.moov-icon-coffee-cup:before{content:"\e6b8"}.moov-icon-water-cup:before{content:"\e6b9"}.moov-icon-hot-water:before{content:"\e6ba"}.moov-icon-ice-cream:before{content:"\e6bb"}.moov-icon-dessert:before{content:"\e6bc"}.moov-icon-sugar:before{content:"\e6bd"}.moov-icon-tableware:before{content:"\e6be"}.moov-icon-burger:before{content:"\e6bf"}.moov-icon-knife-fork:before{content:"\e6c1"}.moov-icon-fork-spoon:before{content:"\e6c2"}.moov-icon-chicken:before{content:"\e6c3"}.moov-icon-food:before{content:"\e6c4"}.moov-icon-dish-1:before{content:"\e6c5"}.moov-icon-dish:before{content:"\e6c6"}.moov-icon-moon-night:before{content:"\e6ee"}.moov-icon-moon:before{content:"\e6f0"}.moov-icon-cloudy-and-sunny:before{content:"\e6f1"}.moov-icon-partly-cloudy:before{content:"\e6f2"}.moov-icon-cloudy:before{content:"\e6f3"}.moov-icon-sunny:before{content:"\e6f6"}.moov-icon-sunset:before{content:"\e6f7"}.moov-icon-sunrise-1:before{content:"\e6f8"}.moov-icon-sunrise:before{content:"\e6f9"}.moov-icon-heavy-rain:before{content:"\e6fa"}.moov-icon-lightning:before{content:"\e6fb"}.moov-icon-light-rain:before{content:"\e6fc"}.moov-icon-wind-power:before{content:"\e6fd"}.moov-icon-baseball:before{content:"\e712"}.moov-icon-soccer:before{content:"\e713"}.moov-icon-football:before{content:"\e715"}.moov-icon-basketball:before{content:"\e716"}.moov-icon-ship:before{content:"\e73f"}.moov-icon-truck:before{content:"\e740"}.moov-icon-bicycle:before{content:"\e741"}.moov-icon-mobile-phone:before{content:"\e6d3"}.moov-icon-service:before{content:"\e6d4"}.moov-icon-key:before{content:"\e6e2"}.moov-icon-unlock:before{content:"\e6e4"}.moov-icon-lock:before{content:"\e6e5"}.moov-icon-watch:before{content:"\e6fe"}.moov-icon-watch-1:before{content:"\e6ff"}.moov-icon-timer:before{content:"\e702"}.moov-icon-alarm-clock:before{content:"\e703"}.moov-icon-map-location:before{content:"\e704"}.moov-icon-delete-location:before{content:"\e705"}.moov-icon-add-location:before{content:"\e706"}.moov-icon-location-information:before{content:"\e707"}.moov-icon-location-outline:before{content:"\e708"}.moov-icon-location:before{content:"\e79e"}.moov-icon-place:before{content:"\e709"}.moov-icon-discover:before{content:"\e70a"}.moov-icon-first-aid-kit:before{content:"\e70b"}.moov-icon-trophy-1:before{content:"\e70c"}.moov-icon-trophy:before{content:"\e70d"}.moov-icon-medal:before{content:"\e70e"}.moov-icon-medal-1:before{content:"\e70f"}.moov-icon-stopwatch:before{content:"\e710"}.moov-icon-mic:before{content:"\e711"}.moov-icon-copy-document:before{content:"\e718"}.moov-icon-full-screen:before{content:"\e719"}.moov-icon-switch-button:before{content:"\e71b"}.moov-icon-aim:before{content:"\e71c"}.moov-icon-crop:before{content:"\e71d"}.moov-icon-odometer:before{content:"\e71e"}.moov-icon-time:before{content:"\e71f"}.moov-icon-bangzhu:before{content:"\e724"}.moov-icon-close-notification:before{content:"\e726"}.moov-icon-microphone:before{content:"\e727"}.moov-icon-turn-off-microphone:before{content:"\e728"}.moov-icon-position:before{content:"\e729"}.moov-icon-postcard:before{content:"\e72a"}.moov-icon-message:before{content:"\e72b"}.moov-icon-chat-line-square:before{content:"\e72d"}.moov-icon-chat-dot-square:before{content:"\e72e"}.moov-icon-chat-dot-round:before{content:"\e72f"}.moov-icon-chat-square:before{content:"\e730"}.moov-icon-chat-line-round:before{content:"\e731"}.moov-icon-chat-round:before{content:"\e732"}.moov-icon-set-up:before{content:"\e733"}.moov-icon-turn-off:before{content:"\e734"}.moov-icon-open:before{content:"\e735"}.moov-icon-connection:before{content:"\e736"}.moov-icon-link:before{content:"\e737"}.moov-icon-cpu:before{content:"\e738"}.moov-icon-thumb:before{content:"\e739"}.moov-icon-female:before{content:"\e73a"}.moov-icon-male:before{content:"\e73b"}.moov-icon-guide:before{content:"\e73c"}.moov-icon-news:before{content:"\e73e"}.moov-icon-price-tag:before{content:"\e744"}.moov-icon-discount:before{content:"\e745"}.moov-icon-wallet:before{content:"\e747"}.moov-icon-coin:before{content:"\e748"}.moov-icon-money:before{content:"\e749"}.moov-icon-bank-card:before{content:"\e74a"}.moov-icon-box:before{content:"\e74b"}.moov-icon-present:before{content:"\e74c"}.moov-icon-sell:before{content:"\e6d5"}.moov-icon-sold-out:before{content:"\e6d6"}.moov-icon-shopping-bag-2:before{content:"\e74d"}.moov-icon-shopping-bag-1:before{content:"\e74e"}.moov-icon-shopping-cart-2:before{content:"\e74f"}.moov-icon-shopping-cart-1:before{content:"\e750"}.moov-icon-shopping-cart-full:before{content:"\e751"}.moov-icon-smoking:before{content:"\e752"}.moov-icon-no-smoking:before{content:"\e753"}.moov-icon-house:before{content:"\e754"}.moov-icon-table-lamp:before{content:"\e755"}.moov-icon-school:before{content:"\e756"}.moov-icon-office-building:before{content:"\e757"}.moov-icon-toilet-paper:before{content:"\e758"}.moov-icon-notebook-2:before{content:"\e759"}.moov-icon-notebook-1:before{content:"\e75a"}.moov-icon-files:before{content:"\e75b"}.moov-icon-collection:before{content:"\e75c"}.moov-icon-receiving:before{content:"\e75d"}.moov-icon-suitcase-1:before{content:"\e760"}.moov-icon-suitcase:before{content:"\e761"}.moov-icon-film:before{content:"\e763"}.moov-icon-collection-tag:before{content:"\e765"}.moov-icon-data-analysis:before{content:"\e766"}.moov-icon-pie-chart:before{content:"\e767"}.moov-icon-data-board:before{content:"\e768"}.moov-icon-data-line:before{content:"\e76d"}.moov-icon-reading:before{content:"\e769"}.moov-icon-magic-stick:before{content:"\e76a"}.moov-icon-coordinate:before{content:"\e76b"}.moov-icon-mouse:before{content:"\e76c"}.moov-icon-brush:before{content:"\e76e"}.moov-icon-headset:before{content:"\e76f"}.moov-icon-umbrella:before{content:"\e770"}.moov-icon-scissors:before{content:"\e771"}.moov-icon-mobile:before{content:"\e773"}.moov-icon-attract:before{content:"\e774"}.moov-icon-monitor:before{content:"\e775"}.moov-icon-search:before{content:"\e778"}.moov-icon-takeaway-box:before{content:"\e77a"}.moov-icon-paperclip:before{content:"\e77d"}.moov-icon-printer:before{content:"\e77e"}.moov-icon-document-add:before{content:"\e782"}.moov-icon-document:before{content:"\e785"}.moov-icon-document-checked:before{content:"\e786"}.moov-icon-document-copy:before{content:"\e787"}.moov-icon-document-delete:before{content:"\e788"}.moov-icon-document-remove:before{content:"\e789"}.moov-icon-tickets:before{content:"\e78b"}.moov-icon-folder-checked:before{content:"\e77f"}.moov-icon-folder-delete:before{content:"\e780"}.moov-icon-folder-remove:before{content:"\e781"}.moov-icon-folder-add:before{content:"\e783"}.moov-icon-folder-opened:before{content:"\e784"}.moov-icon-folder:before{content:"\e78a"}.moov-icon-edit-outline:before{content:"\e764"}.moov-icon-edit:before{content:"\e78c"}.moov-icon-date:before{content:"\e78e"}.moov-icon-c-scale-to-original:before{content:"\e7c6"}.moov-icon-view:before{content:"\e6ce"}.moov-icon-loading:before{content:"\e6cf"}.moov-icon-rank:before{content:"\e6d1"}.moov-icon-sort-down:before{content:"\e7c4"}.moov-icon-sort-up:before{content:"\e7c5"}.moov-icon-sort:before{content:"\e6d2"}.moov-icon-finished:before{content:"\e6cd"}.moov-icon-refresh-left:before{content:"\e6c7"}.moov-icon-refresh-right:before{content:"\e6c8"}.moov-icon-refresh:before{content:"\e6d0"}.moov-icon-video-play:before{content:"\e7c0"}.moov-icon-video-pause:before{content:"\e7c1"}.moov-icon-d-arrow-right:before{content:"\e6dc"}.moov-icon-d-arrow-left:before{content:"\e6dd"}.moov-icon-arrow-up:before{content:"\e6e1"}.moov-icon-arrow-down:before{content:"\e6df"}.moov-icon-arrow-right:before{content:"\e6e0"}.moov-icon-arrow-left:before{content:"\e6de"}.moov-icon-top-right:before{content:"\e6e7"}.moov-icon-top-left:before{content:"\e6e8"}.moov-icon-top:before{content:"\e6e6"}.moov-icon-bottom:before{content:"\e6eb"}.moov-icon-right:before{content:"\e6e9"}.moov-icon-back:before{content:"\e6ea"}.moov-icon-bottom-right:before{content:"\e6ec"}.moov-icon-bottom-left:before{content:"\e6ed"}.moov-icon-caret-top:before{content:"\e78f"}.moov-icon-caret-bottom:before{content:"\e790"}.moov-icon-caret-right:before{content:"\e791"}.moov-icon-caret-left:before{content:"\e792"}.moov-icon-d-caret:before{content:"\e79a"}.moov-icon-share:before{content:"\e793"}.moov-icon-menu:before{content:"\e798"}.moov-icon-s-grid:before{content:"\e7a6"}.moov-icon-s-check:before{content:"\e7a7"}.moov-icon-s-data:before{content:"\e7a8"}.moov-icon-s-opportunity:before{content:"\e7aa"}.moov-icon-s-custom:before{content:"\e7ab"}.moov-icon-s-claim:before{content:"\e7ad"}.moov-icon-s-finance:before{content:"\e7ae"}.moov-icon-s-comment:before{content:"\e7af"}.moov-icon-s-flag:before{content:"\e7b0"}.moov-icon-s-marketing:before{content:"\e7b1"}.moov-icon-s-shop:before{content:"\e7b4"}.moov-icon-s-open:before{content:"\e7b5"}.moov-icon-s-management:before{content:"\e7b6"}.moov-icon-s-ticket:before{content:"\e7b7"}.moov-icon-s-release:before{content:"\e7b8"}.moov-icon-s-home:before{content:"\e7b9"}.moov-icon-s-promotion:before{content:"\e7ba"}.moov-icon-s-operation:before{content:"\e7bb"}.moov-icon-s-unfold:before{content:"\e7bc"}.moov-icon-s-fold:before{content:"\e7a9"}.moov-icon-s-platform:before{content:"\e7bd"}.moov-icon-s-order:before{content:"\e7be"}.moov-icon-s-cooperation:before{content:"\e7bf"}.moov-icon-bell:before{content:"\e725"}.moov-icon-message-solid:before{content:"\e799"}.moov-icon-video-camera:before{content:"\e772"}.moov-icon-video-camera-solid:before{content:"\e796"}.moov-icon-camera:before{content:"\e779"}.moov-icon-camera-solid:before{content:"\e79b"}.moov-icon-download:before{content:"\e77c"}.moov-icon-upload2:before{content:"\e77b"}.moov-icon-upload:before{content:"\e7c3"}.moov-icon-picture-outline-round:before{content:"\e75f"}.moov-icon-picture-outline:before{content:"\e75e"}.moov-icon-picture:before{content:"\e79f"}.moov-icon-close:before{content:"\e6db"}.moov-icon-check:before{content:"\e6da"}.moov-icon-plus:before{content:"\e6d9"}.moov-icon-minus:before{content:"\e6d8"}.moov-icon-help:before{content:"\e73d"}.moov-icon-s-help:before{content:"\e7b3"}.moov-icon-circle-close:before{content:"\e78d"}.moov-icon-circle-check:before{content:"\e720"}.moov-icon-circle-plus-outline:before{content:"\e723"}.moov-icon-remove-outline:before{content:"\e722"}.moov-icon-zoom-out:before{content:"\e776"}.moov-icon-zoom-in:before{content:"\e777"}.moov-icon-error:before{content:"\e79d"}.moov-icon-success:before{content:"\e79c"}.moov-icon-circle-plus:before{content:"\e7a0"}.moov-icon-remove:before{content:"\e7a2"}.moov-icon-info:before{content:"\e7a1"}.moov-icon-question:before{content:"\e7a4"}.moov-icon-warning-outline:before{content:"\e6c9"}.moov-icon-warning:before{content:"\e7a3"}.moov-icon-goods:before{content:"\e7c2"}.moov-icon-s-goods:before{content:"\e7b2"}.moov-icon-star-off:before{content:"\e717"}.moov-icon-star-on:before{content:"\e797"}.moov-icon-more-outline:before{content:"\e6cc"}.moov-icon-more:before{content:"\e794"}.moov-icon-phone-outline:before{content:"\e6cb"}.moov-icon-phone:before{content:"\e795"}.moov-icon-user:before{content:"\e6e3"}.moov-icon-user-solid:before{content:"\e7a5"}.moov-icon-setting:before{content:"\e6ca"}.moov-icon-s-tools:before{content:"\e7ac"}.moov-icon-delete:before{content:"\e6d7"}.moov-icon-delete-solid:before{content:"\e7c9"}.moov-icon-eleme:before{content:"\e7c7"}.moov-icon-platform-eleme:before{content:"\e7ca"}.moov-icon-loading{animation:rotating 2s linear infinite}.moov-icon--right{margin-left:5px}.moov-icon--left{margin-right:5px}@keyframes rotating{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "@moov-ui-plus/theme-chalk",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [],
10
+ "author": "",
11
+ "license": "ISC",
12
+ "packageManager": "pnpm@10.33.0"
13
+ }
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "moov-ui-plus",
3
+ "version": "1.0.0",
4
+ "description": "A simple Vue3 + Typescript components library",
5
+ "main": "index.js",
6
+ "type": "module",
7
+ "scripts": {
8
+ "dev": "pnpm -C examples dev",
9
+ "test": "pnpm -C packages/components test",
10
+ "build": "rollup -c && node generate-types.cjs"
11
+ },
12
+ "keywords": [],
13
+ "author": "",
14
+ "license": "MIT",
15
+ "files": [
16
+ "dist",
17
+ "LICENSE"
18
+ ],
19
+ "packageManager": "pnpm@8.15.6",
20
+ "devDependencies": {
21
+ "@rollup/plugin-terser": "^0.4.4",
22
+ "@tsconfig/node24": "^24.0.4",
23
+ "@vitejs/plugin-vue": "^4.6.2",
24
+ "@vue/test-utils": "^2.4.6",
25
+ "@vue/tsconfig": "^0.9.1",
26
+ "jsdom": "^20.0.3",
27
+ "rollup": "^4.60.1",
28
+ "rollup-plugin-copy": "^3.5.0",
29
+ "rollup-plugin-delete": "^3.0.2",
30
+ "rollup-plugin-postcss": "^4.0.2",
31
+ "rollup-plugin-typescript2": "^0.37.0",
32
+ "rollup-plugin-vue": "^6.0.0",
33
+ "sass": "^1.98.0",
34
+ "typescript": "^6.0.2",
35
+ "vitest": "^0.34.6"
36
+ },
37
+ "dependencies": {
38
+ "@moov-ui-plus/components": "workspace:*",
39
+ "@moov-ui-plus/theme-chalk": "workspace:*",
40
+ "@moov-ui-plus/utils": "workspace:*",
41
+ "vue": "^3.5.31"
42
+ }
43
+ }