ninemoon-ui 0.1.9 → 0.1.10

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.
@@ -1,3 +1,83 @@
1
+ @charset "UTF-8";
2
+ .alertOpecity-enter-from{
3
+ position: absolute;
4
+ opacity: 0.5
5
+ }
6
+ .alertOpecity-enter-active,
7
+ .alertOpecity-leave-active{
8
+ transition-property: opacity;
9
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
10
+ transition-duration: 300ms
11
+ /* 300ms 与 JS 清理时间一致 */
12
+ }
13
+ .alertOpecity-enter,
14
+ .alertOpecity-leave-to{
15
+ opacity: 0
16
+ }.circular {
17
+ animation: rotate 2s linear infinite;
18
+ position: absolute;
19
+ top: 0px;
20
+ right: 0px;
21
+ left: 0px;
22
+ bottom: 0px;
23
+ height: 100%;
24
+ width: 100%;
25
+ transform-origin: center;
26
+ }
27
+ .circular .path {
28
+ stroke-dasharray: 1, 200;
29
+ stroke-dashoffset: 0;
30
+ animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
31
+ stroke-linecap: round;
32
+ }
33
+ @keyframes rotate {
34
+ 100% {
35
+ transform: rotate(360deg);
36
+ }
37
+ }
38
+ @keyframes dash {
39
+ 0% {
40
+ stroke-dasharray: 1, 200;
41
+ stroke-dashoffset: 0;
42
+ }
43
+ 50% {
44
+ stroke-dasharray: 89, 200;
45
+ stroke-dashoffset: -35px;
46
+ }
47
+ 100% {
48
+ stroke-dasharray: 89, 200;
49
+ stroke-dashoffset: -124px;
50
+ }
51
+ }
52
+ @keyframes color {
53
+ 100%, 0% {
54
+ stroke: #d62d20;
55
+ }
56
+ 40% {
57
+ stroke: #0057e7;
58
+ }
59
+ 66% {
60
+ stroke: #008744;
61
+ }
62
+ 80%, 90% {
63
+ stroke: #ffa700;
64
+ }
65
+ }.form-tick:checked {
66
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5.707 7.293a1 1 0 0 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l4-4a1 1 0 0 0-1.414-1.414L7 8.586 5.707 7.293z'/%3e%3c/svg%3e");
67
+ border-color: transparent;
68
+ background-size: 100% 100%;
69
+ background-position: 50%;
70
+ background-repeat: no-repeat;
71
+ }
72
+ .fade-enter-active,
73
+ .fade-leave-active {
74
+ transition: opacity 0.2s ease;
75
+ }
76
+
77
+ .fade-enter-from,
78
+ .fade-leave-to {
79
+ opacity: 0;
80
+ }
1
81
  .ETab {
2
82
  display: flex;
3
83
  width: 100%;
@@ -26,6 +106,7 @@
26
106
  --tw-text-opacity: 1;
27
107
  color: rgb(1 64 153 / var(--tw-text-opacity, 1))
28
108
  }
109
+
29
110
  .ETab_Card {
30
111
  --tw-bg-opacity: 1;
31
112
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1))
@@ -1157,6 +1157,7 @@ const createWheelDirective = (options) => {
1157
1157
  };
1158
1158
  };
1159
1159
  const tailwind = "";
1160
+ const tabs = "";
1160
1161
  const LibDialog = defineAsyncComponent(() => import("../dialog/dialog.js"));
1161
1162
  const LibForm = defineAsyncComponent(() => import("../form/form.js"));
1162
1163
  const LibFormLabel = defineAsyncComponent(() => import("../form/formlabel.js"));
@@ -178,7 +178,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
178
178
  };
179
179
  }
180
180
  });
181
- const tabs_vue_vue_type_style_index_0_lang = "";
182
181
  export {
183
182
  _sfc_main as default
184
183
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninemoon-ui",
3
3
  "private": false,
4
- "version": "0.1.9",
4
+ "version": "0.1.10",
5
5
  "author": "zhuboy",
6
6
  "keywords": [
7
7
  "vue3",
package/dist/index.css DELETED
@@ -1,80 +0,0 @@
1
- @charset "UTF-8";
2
- .alertOpecity-enter-from{
3
- position: absolute;
4
- opacity: 0.5
5
- }
6
- .alertOpecity-enter-active,
7
- .alertOpecity-leave-active{
8
- transition-property: opacity;
9
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
10
- transition-duration: 300ms
11
- /* 300ms 与 JS 清理时间一致 */
12
- }
13
- .alertOpecity-enter,
14
- .alertOpecity-leave-to{
15
- opacity: 0
16
- }.circular {
17
- animation: rotate 2s linear infinite;
18
- position: absolute;
19
- top: 0px;
20
- right: 0px;
21
- left: 0px;
22
- bottom: 0px;
23
- height: 100%;
24
- width: 100%;
25
- transform-origin: center;
26
- }
27
- .circular .path {
28
- stroke-dasharray: 1, 200;
29
- stroke-dashoffset: 0;
30
- animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
31
- stroke-linecap: round;
32
- }
33
- @keyframes rotate {
34
- 100% {
35
- transform: rotate(360deg);
36
- }
37
- }
38
- @keyframes dash {
39
- 0% {
40
- stroke-dasharray: 1, 200;
41
- stroke-dashoffset: 0;
42
- }
43
- 50% {
44
- stroke-dasharray: 89, 200;
45
- stroke-dashoffset: -35px;
46
- }
47
- 100% {
48
- stroke-dasharray: 89, 200;
49
- stroke-dashoffset: -124px;
50
- }
51
- }
52
- @keyframes color {
53
- 100%, 0% {
54
- stroke: #d62d20;
55
- }
56
- 40% {
57
- stroke: #0057e7;
58
- }
59
- 66% {
60
- stroke: #008744;
61
- }
62
- 80%, 90% {
63
- stroke: #ffa700;
64
- }
65
- }.form-tick:checked {
66
- background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5.707 7.293a1 1 0 0 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l4-4a1 1 0 0 0-1.414-1.414L7 8.586 5.707 7.293z'/%3e%3c/svg%3e");
67
- border-color: transparent;
68
- background-size: 100% 100%;
69
- background-position: 50%;
70
- background-repeat: no-repeat;
71
- }
72
- .fade-enter-active,
73
- .fade-leave-active {
74
- transition: opacity 0.2s ease;
75
- }
76
-
77
- .fade-enter-from,
78
- .fade-leave-to {
79
- opacity: 0;
80
- }