@quasar/extras 1.13.0 → 1.13.1
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/animate/animate-list.mjs +107 -0
- package/bootstrap-icons/index.mjs +1670 -0
- package/eva-icons/index.mjs +492 -0
- package/fontawesome-v5/index.mjs +1613 -0
- package/fontawesome-v6/index.mjs +1750 -0
- package/ionicons-v4/index.mjs +698 -0
- package/ionicons-v5/index.mjs +1334 -0
- package/ionicons-v6/index.mjs +1334 -0
- package/line-awesome/index.mjs +1546 -0
- package/material-icons/index.mjs +2077 -0
- package/material-icons-outlined/index.mjs +2077 -0
- package/material-icons-round/index.mjs +2077 -0
- package/material-icons-sharp/index.mjs +2077 -0
- package/mdi-v4/index.mjs +4997 -0
- package/mdi-v5/LICENSE +20 -20
- package/mdi-v5/index.mjs +5957 -0
- package/mdi-v5/license.md +20 -20
- package/mdi-v6/LICENSE +20 -20
- package/mdi-v6/index.mjs +6597 -0
- package/mdi-v6/license.md +20 -20
- package/package.json +1 -1
- package/themify/index.mjs +354 -0
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
|
|
2
|
+
export const generalAnimations = [
|
|
3
|
+
'bounce',
|
|
4
|
+
'flash',
|
|
5
|
+
'flip',
|
|
6
|
+
'headShake',
|
|
7
|
+
'heartBeat',
|
|
8
|
+
'hinge',
|
|
9
|
+
'jello',
|
|
10
|
+
'pulse',
|
|
11
|
+
'rubberBand',
|
|
12
|
+
'shake',
|
|
13
|
+
'shakeX',
|
|
14
|
+
'shakeY',
|
|
15
|
+
'swing',
|
|
16
|
+
'tada',
|
|
17
|
+
'wobble'
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
export const inAnimations = [
|
|
21
|
+
'backInDown',
|
|
22
|
+
'backInLeft',
|
|
23
|
+
'backInRight',
|
|
24
|
+
'backInUp',
|
|
25
|
+
'bounceIn',
|
|
26
|
+
'bounceInDown',
|
|
27
|
+
'bounceInLeft',
|
|
28
|
+
'bounceInRight',
|
|
29
|
+
'bounceInUp',
|
|
30
|
+
'fadeIn',
|
|
31
|
+
'fadeInBottomLeft',
|
|
32
|
+
'fadeInBottomRight',
|
|
33
|
+
'fadeInDown',
|
|
34
|
+
'fadeInDownBig',
|
|
35
|
+
'fadeInLeft',
|
|
36
|
+
'fadeInLeftBig',
|
|
37
|
+
'fadeInRight',
|
|
38
|
+
'fadeInRightBig',
|
|
39
|
+
'fadeInTopLeft',
|
|
40
|
+
'fadeInTopRight',
|
|
41
|
+
'fadeInUp',
|
|
42
|
+
'fadeInUpBig',
|
|
43
|
+
'flipInX',
|
|
44
|
+
'flipInY',
|
|
45
|
+
'jackInTheBox',
|
|
46
|
+
'lightSpeedInLeft',
|
|
47
|
+
'lightSpeedInRight',
|
|
48
|
+
'rollIn',
|
|
49
|
+
'rotateIn',
|
|
50
|
+
'rotateInDownLeft',
|
|
51
|
+
'rotateInDownRight',
|
|
52
|
+
'rotateInUpLeft',
|
|
53
|
+
'rotateInUpRight',
|
|
54
|
+
'slideInDown',
|
|
55
|
+
'slideInLeft',
|
|
56
|
+
'slideInRight',
|
|
57
|
+
'slideInUp',
|
|
58
|
+
'zoomIn',
|
|
59
|
+
'zoomInDown',
|
|
60
|
+
'zoomInLeft',
|
|
61
|
+
'zoomInRight',
|
|
62
|
+
'zoomInUp'
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
export const outAnimations = [
|
|
66
|
+
'backOutDown',
|
|
67
|
+
'backOutLeft',
|
|
68
|
+
'backOutRight',
|
|
69
|
+
'backOutUp',
|
|
70
|
+
'bounceOut',
|
|
71
|
+
'bounceOutDown',
|
|
72
|
+
'bounceOutLeft',
|
|
73
|
+
'bounceOutRight',
|
|
74
|
+
'bounceOutUp',
|
|
75
|
+
'fadeOut',
|
|
76
|
+
'fadeOutBottomLeft',
|
|
77
|
+
'fadeOutBottomRight',
|
|
78
|
+
'fadeOutDown',
|
|
79
|
+
'fadeOutDownBig',
|
|
80
|
+
'fadeOutLeft',
|
|
81
|
+
'fadeOutLeftBig',
|
|
82
|
+
'fadeOutRight',
|
|
83
|
+
'fadeOutRightBig',
|
|
84
|
+
'fadeOutTopLeft',
|
|
85
|
+
'fadeOutTopRight',
|
|
86
|
+
'fadeOutUp',
|
|
87
|
+
'fadeOutUpBig',
|
|
88
|
+
'flipOutX',
|
|
89
|
+
'flipOutY',
|
|
90
|
+
'lightSpeedOutLeft',
|
|
91
|
+
'lightSpeedOutRight',
|
|
92
|
+
'rollOut',
|
|
93
|
+
'rotateOut',
|
|
94
|
+
'rotateOutDownLeft',
|
|
95
|
+
'rotateOutDownRight',
|
|
96
|
+
'rotateOutUpLeft',
|
|
97
|
+
'rotateOutUpRight',
|
|
98
|
+
'slideOutDown',
|
|
99
|
+
'slideOutLeft',
|
|
100
|
+
'slideOutRight',
|
|
101
|
+
'slideOutUp',
|
|
102
|
+
'zoomOut',
|
|
103
|
+
'zoomOutDown',
|
|
104
|
+
'zoomOutLeft',
|
|
105
|
+
'zoomOutRight',
|
|
106
|
+
'zoomOutUp'
|
|
107
|
+
]
|