@appscode/design-system 1.1.0-beta.49 → 1.1.0-beta.50
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/base/utilities/_global.scss +7 -0
- package/package.json +1 -1
- package/vue-components/v3/cards/InfoCard.vue +1 -2
- package/vue-components/v3/form-fields/AcSingleInput.vue +3 -8
- package/vue-components/v3/loaders/InfoCardLoader.vue +18 -60
- package/vue-components/v3/loaders/SingleInfoCardLoader.vue +24 -0
- package/vue-components/v3/tag/Tag.vue +1 -0
package/package.json
CHANGED
|
@@ -166,9 +166,8 @@ const OptionDots = defineAsyncComponent(
|
|
|
166
166
|
.header {
|
|
167
167
|
display: flex;
|
|
168
168
|
align-items: center;
|
|
169
|
-
padding:
|
|
169
|
+
padding: 12px 16px;
|
|
170
170
|
border-bottom: 1px dashed $primary-90;
|
|
171
|
-
background-color: $primary-97;
|
|
172
171
|
|
|
173
172
|
.logo {
|
|
174
173
|
display: flex;
|
|
@@ -142,7 +142,7 @@ withDefaults(defineProps<Props>(), {
|
|
|
142
142
|
|
|
143
143
|
&.show-label {
|
|
144
144
|
font-size: 12px;
|
|
145
|
-
color: $
|
|
145
|
+
color: $primary-20;
|
|
146
146
|
top: -9px;
|
|
147
147
|
font-weight: 500;
|
|
148
148
|
background-color: $white-100;
|
|
@@ -394,12 +394,7 @@ withDefaults(defineProps<Props>(), {
|
|
|
394
394
|
transition: 0.3s;
|
|
395
395
|
|
|
396
396
|
&:hover {
|
|
397
|
-
background-color:
|
|
398
|
-
var(--hsl-hue),
|
|
399
|
-
var(--hsl-saturation),
|
|
400
|
-
var(--hsl-lightness),
|
|
401
|
-
0.2
|
|
402
|
-
);
|
|
397
|
+
background-color: $primary-30;
|
|
403
398
|
color: $primary;
|
|
404
399
|
}
|
|
405
400
|
}
|
|
@@ -494,7 +489,7 @@ withDefaults(defineProps<Props>(), {
|
|
|
494
489
|
|
|
495
490
|
span.eye {
|
|
496
491
|
i.fa {
|
|
497
|
-
color: $primary-
|
|
492
|
+
color: $primary-70;
|
|
498
493
|
position: absolute;
|
|
499
494
|
cursor: pointer;
|
|
500
495
|
padding: 15px;
|
|
@@ -1,65 +1,23 @@
|
|
|
1
|
-
<script
|
|
1
|
+
<script>
|
|
2
2
|
import { ContentLoader } from "vue-content-loader";
|
|
3
|
+
|
|
4
|
+
export default {
|
|
5
|
+
components: { ContentLoader },
|
|
6
|
+
};
|
|
3
7
|
</script>
|
|
4
8
|
|
|
5
9
|
<template>
|
|
6
|
-
<
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
width="100%"
|
|
20
|
-
height="100%"
|
|
21
|
-
clip-path="url(#clip-path)"
|
|
22
|
-
style="fill: url('#fill')"
|
|
23
|
-
></rect>
|
|
24
|
-
<defs>
|
|
25
|
-
<clipPath id="clip-path">
|
|
26
|
-
<rect x="150" y="40" rx="3" ry="3" width="60" height="50" />
|
|
27
|
-
<rect x="10" y="70" rx="3" ry="3" width="120" height="11" />
|
|
28
|
-
<rect x="10" y="100" rx="3" ry="3" width="120" height="11" />
|
|
29
|
-
<rect x="150" y="100" rx="3" ry="3" width="60" height="11" />
|
|
30
|
-
<rect x="10" y="1" rx="3" ry="3" width="200" height="22" />
|
|
31
|
-
<rect x="10" y="40" rx="3" ry="3" width="120" height="11" />
|
|
32
|
-
</clipPath>
|
|
33
|
-
<linearGradient id="fill">
|
|
34
|
-
<stop offset="0.599964" stop-color="#cfcfcf" stop-opacity="1">
|
|
35
|
-
<animate
|
|
36
|
-
attributeName="offset"
|
|
37
|
-
values="-2; -2; 1"
|
|
38
|
-
keyTimes="0; 0.25; 1"
|
|
39
|
-
dur="2s"
|
|
40
|
-
repeatCount="indefinite"
|
|
41
|
-
></animate>
|
|
42
|
-
</stop>
|
|
43
|
-
<stop offset="1.59996" stop-color="#ecebeb" stop-opacity="1">
|
|
44
|
-
<animate
|
|
45
|
-
attributeName="offset"
|
|
46
|
-
values="-1; -1; 2"
|
|
47
|
-
keyTimes="0; 0.25; 1"
|
|
48
|
-
dur="2s"
|
|
49
|
-
repeatCount="indefinite"
|
|
50
|
-
></animate>
|
|
51
|
-
</stop>
|
|
52
|
-
<stop offset="2.59996" stop-color="#cfcfcf" stop-opacity="1">
|
|
53
|
-
<animate
|
|
54
|
-
attributeName="offset"
|
|
55
|
-
values="0; 0; 3"
|
|
56
|
-
keyTimes="0; 0.25; 1"
|
|
57
|
-
dur="2s"
|
|
58
|
-
repeatCount="indefinite"
|
|
59
|
-
></animate>
|
|
60
|
-
</stop>
|
|
61
|
-
</linearGradient>
|
|
62
|
-
</defs>
|
|
63
|
-
</svg>
|
|
64
|
-
</div>
|
|
10
|
+
<content-loader
|
|
11
|
+
viewBox="0 0 230 115"
|
|
12
|
+
:speed="2"
|
|
13
|
+
primaryColor="#f5f5f5"
|
|
14
|
+
secondaryColor="#ecebeb"
|
|
15
|
+
>
|
|
16
|
+
<rect x="0" y="0" rx="0" ry="0" width="NaN" height="NaN" />
|
|
17
|
+
<rect x="10" y="70" rx="3" ry="3" width="120" height="11" />
|
|
18
|
+
<rect x="10" y="100" rx="3" ry="3" width="120" height="11" />
|
|
19
|
+
<rect x="150" y="100" rx="3" ry="3" width="60" height="11" />
|
|
20
|
+
<rect x="10" y="1" rx="3" ry="3" width="216" height="22" />
|
|
21
|
+
<rect x="10" y="40" rx="3" ry="3" width="120" height="11" />
|
|
22
|
+
</content-loader>
|
|
65
23
|
</template>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import { ContentLoader } from "vue-content-loader";
|
|
3
|
+
|
|
4
|
+
export default {
|
|
5
|
+
components: { ContentLoader },
|
|
6
|
+
};
|
|
7
|
+
</script>
|
|
8
|
+
|
|
9
|
+
<template>
|
|
10
|
+
<content-loader
|
|
11
|
+
viewBox="0 0 1540 90"
|
|
12
|
+
:speed="2"
|
|
13
|
+
primaryColor="#f5f5f5"
|
|
14
|
+
secondaryColor="#ecebeb"
|
|
15
|
+
>
|
|
16
|
+
<rect x="0" y="0" rx="0" ry="0" width="NaN" height="NaN" />
|
|
17
|
+
<circle cx="47" cy="52" r="21" />
|
|
18
|
+
<rect x="86" y="64" rx="0" ry="0" width="95" height="11" />
|
|
19
|
+
<rect x="86" y="29" rx="0" ry="0" width="146" height="22" />
|
|
20
|
+
<rect x="1240" y="57" rx="0" ry="0" width="64" height="12" />
|
|
21
|
+
<rect x="1340" y="57" rx="0" ry="0" width="64" height="12" />
|
|
22
|
+
<rect x="1440" y="56" rx="0" ry="0" width="64" height="12" />
|
|
23
|
+
</content-loader>
|
|
24
|
+
</template>
|