@cloudtower/eagle 0.30.6 → 0.30.8
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/dist/cjs/antd.js +4 -4
- package/dist/cjs/core/Skeleton/Content.js +30 -0
- package/dist/cjs/core/Skeleton/index.js +13 -0
- package/dist/cjs/index.js +56 -52
- package/dist/cjs/stats1.html +1 -1
- package/dist/cjs/styles/token/animation.js +12 -1
- package/dist/components.css +3006 -2975
- package/dist/esm/antd.js +1 -1
- package/dist/esm/core/Skeleton/Content.js +23 -0
- package/dist/esm/core/Skeleton/index.js +7 -0
- package/dist/esm/index.js +3 -1
- package/dist/esm/stats1.html +1 -1
- package/dist/esm/styles/token/animation.js +12 -1
- package/dist/src/antd.d.ts +1 -1
- package/dist/src/core/Skeleton/Content.d.ts +8 -0
- package/dist/src/core/Skeleton/index.d.ts +8 -0
- package/dist/src/core/index.d.ts +1 -0
- package/dist/src/styles/token/animation.d.ts +2 -0
- package/dist/stories/docs/core/skeleton.stories.d.ts +13 -0
- package/dist/style.css +2885 -2856
- package/package.json +4 -4
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
const Animation = {
|
|
4
4
|
loading: "loading 1600ms ease-out infinite",
|
|
5
|
-
circleRotate: "rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite"
|
|
5
|
+
circleRotate: "rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite",
|
|
6
|
+
shimmer: "shimmer 1100ms infinite"
|
|
6
7
|
};
|
|
7
8
|
const Keyframes = {
|
|
8
9
|
rotate: `
|
|
@@ -10,6 +11,16 @@ const Keyframes = {
|
|
|
10
11
|
from { transform: rotate(0deg); }
|
|
11
12
|
to { transform: rotate(360deg); }
|
|
12
13
|
}
|
|
14
|
+
`,
|
|
15
|
+
shimmer: `
|
|
16
|
+
@keyframes shimmer {
|
|
17
|
+
from {
|
|
18
|
+
left: -120%;
|
|
19
|
+
}
|
|
20
|
+
to {
|
|
21
|
+
left: 100%;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
13
24
|
`
|
|
14
25
|
};
|
|
15
26
|
|