@dust-tt/sparkle 0.2.210 → 0.2.211

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.
Files changed (147) hide show
  1. package/dist/cjs/_index.d.ts +4 -4
  2. package/dist/cjs/components/Checkbox.d.ts +3 -3
  3. package/dist/cjs/components/Item.d.ts +1 -1
  4. package/dist/cjs/components/Tree.d.ts +11 -6
  5. package/dist/cjs/icons/solid/ArrowDownS.d.ts +4 -0
  6. package/dist/cjs/icons/solid/ArrowLeftS.d.ts +4 -0
  7. package/dist/cjs/icons/solid/ArrowRightS.d.ts +4 -0
  8. package/dist/cjs/icons/solid/ArrowUpS.d.ts +4 -0
  9. package/dist/cjs/icons/solid/ChevronDoubleLeft.d.ts +4 -0
  10. package/dist/cjs/icons/solid/ChevronDoubleRight.d.ts +4 -0
  11. package/dist/cjs/icons/solid/Company.d.ts +4 -0
  12. package/dist/cjs/icons/solid/Filter.d.ts +4 -0
  13. package/dist/cjs/icons/solid/Heart.d.ts +4 -0
  14. package/dist/cjs/icons/solid/History.d.ts +4 -0
  15. package/dist/cjs/icons/solid/Home.d.ts +4 -0
  16. package/dist/cjs/icons/solid/MarkPen.d.ts +4 -0
  17. package/dist/cjs/icons/solid/Translate.d.ts +4 -0
  18. package/dist/cjs/icons/solid/index.d.ts +13 -0
  19. package/dist/cjs/icons/stroke/ArrowDownS.d.ts +4 -0
  20. package/dist/cjs/icons/stroke/ArrowLeftS.d.ts +4 -0
  21. package/dist/cjs/icons/stroke/ArrowRightS.d.ts +4 -0
  22. package/dist/cjs/icons/stroke/ArrowUpS.d.ts +4 -0
  23. package/dist/cjs/icons/stroke/ChevronDoubleLeft.d.ts +4 -0
  24. package/dist/cjs/icons/stroke/ChevronDoubleRight.d.ts +4 -0
  25. package/dist/cjs/icons/stroke/Company.d.ts +4 -0
  26. package/dist/cjs/icons/stroke/Filter.d.ts +4 -0
  27. package/dist/cjs/icons/stroke/Heart.d.ts +4 -0
  28. package/dist/cjs/icons/stroke/History.d.ts +4 -0
  29. package/dist/cjs/icons/stroke/Home.d.ts +4 -0
  30. package/dist/cjs/icons/stroke/MarkPen.d.ts +4 -0
  31. package/dist/cjs/icons/stroke/Translate.d.ts +4 -0
  32. package/dist/cjs/icons/stroke/index.d.ts +13 -0
  33. package/dist/cjs/index.js +4414 -4256
  34. package/dist/cjs/index.js.map +1 -1
  35. package/dist/cjs/stories/Checkbox.stories.d.ts +2 -0
  36. package/dist/cjs/stories/Tree.stories.d.ts +0 -1
  37. package/dist/esm/_index.d.ts +4 -4
  38. package/dist/esm/components/Checkbox.d.ts +3 -3
  39. package/dist/esm/components/Item.d.ts +1 -1
  40. package/dist/esm/components/Tree.d.ts +11 -6
  41. package/dist/esm/icons/solid/ArrowDownS.d.ts +4 -0
  42. package/dist/esm/icons/solid/ArrowLeftS.d.ts +4 -0
  43. package/dist/esm/icons/solid/ArrowRightS.d.ts +4 -0
  44. package/dist/esm/icons/solid/ArrowUpS.d.ts +4 -0
  45. package/dist/esm/icons/solid/ChevronDoubleLeft.d.ts +4 -0
  46. package/dist/esm/icons/solid/ChevronDoubleRight.d.ts +4 -0
  47. package/dist/esm/icons/solid/Company.d.ts +4 -0
  48. package/dist/esm/icons/solid/Filter.d.ts +4 -0
  49. package/dist/esm/icons/solid/Heart.d.ts +4 -0
  50. package/dist/esm/icons/solid/History.d.ts +4 -0
  51. package/dist/esm/icons/solid/Home.d.ts +4 -0
  52. package/dist/esm/icons/solid/MarkPen.d.ts +4 -0
  53. package/dist/esm/icons/solid/Translate.d.ts +4 -0
  54. package/dist/esm/icons/solid/index.d.ts +13 -0
  55. package/dist/esm/icons/stroke/ArrowDownS.d.ts +4 -0
  56. package/dist/esm/icons/stroke/ArrowLeftS.d.ts +4 -0
  57. package/dist/esm/icons/stroke/ArrowRightS.d.ts +4 -0
  58. package/dist/esm/icons/stroke/ArrowUpS.d.ts +4 -0
  59. package/dist/esm/icons/stroke/ChevronDoubleLeft.d.ts +4 -0
  60. package/dist/esm/icons/stroke/ChevronDoubleRight.d.ts +4 -0
  61. package/dist/esm/icons/stroke/Company.d.ts +4 -0
  62. package/dist/esm/icons/stroke/Filter.d.ts +4 -0
  63. package/dist/esm/icons/stroke/Heart.d.ts +4 -0
  64. package/dist/esm/icons/stroke/History.d.ts +4 -0
  65. package/dist/esm/icons/stroke/Home.d.ts +4 -0
  66. package/dist/esm/icons/stroke/MarkPen.d.ts +4 -0
  67. package/dist/esm/icons/stroke/Translate.d.ts +4 -0
  68. package/dist/esm/icons/stroke/index.d.ts +13 -0
  69. package/dist/esm/index.js +4391 -4259
  70. package/dist/esm/index.js.map +1 -1
  71. package/dist/esm/stories/Checkbox.stories.d.ts +2 -0
  72. package/dist/esm/stories/Tree.stories.d.ts +0 -1
  73. package/dist/tsconfig.tsbuildinfo +1 -1
  74. package/package.json +1 -1
  75. package/src/_index.ts +52 -0
  76. package/src/components/Checkbox.tsx +42 -12
  77. package/src/components/Item.tsx +1 -1
  78. package/src/components/Tree.tsx +89 -67
  79. package/src/components/WindowUtility.tsx +1 -2
  80. package/src/icons/solid/ArrowDownS.tsx +15 -0
  81. package/src/icons/solid/ArrowLeftS.tsx +15 -0
  82. package/src/icons/solid/ArrowRightS.tsx +15 -0
  83. package/src/icons/solid/ArrowUpS.tsx +15 -0
  84. package/src/icons/solid/ChevronDoubleLeft.tsx +22 -0
  85. package/src/icons/solid/ChevronDoubleRight.tsx +22 -0
  86. package/src/icons/solid/Company.tsx +20 -0
  87. package/src/icons/solid/Filter.tsx +18 -0
  88. package/src/icons/solid/Heart.tsx +18 -0
  89. package/src/icons/solid/History.tsx +18 -0
  90. package/src/icons/solid/Home.tsx +20 -0
  91. package/src/icons/solid/MarkPen.tsx +18 -0
  92. package/src/icons/solid/Translate.tsx +18 -0
  93. package/src/icons/solid/index.ts +13 -0
  94. package/src/icons/src/solid/arrow-down-s.svg +3 -0
  95. package/src/icons/src/solid/arrow-left-s.svg +3 -0
  96. package/src/icons/src/solid/arrow-right-s.svg +3 -0
  97. package/src/icons/src/solid/arrow-up-s.svg +3 -0
  98. package/src/icons/src/solid/chevron-double-left.svg +4 -0
  99. package/src/icons/src/solid/chevron-double-right.svg +4 -0
  100. package/src/icons/src/solid/company.svg +3 -0
  101. package/src/icons/src/solid/filter.svg +3 -0
  102. package/src/icons/src/solid/heart.svg +3 -0
  103. package/src/icons/src/solid/history.svg +3 -0
  104. package/src/icons/src/solid/home.svg +3 -0
  105. package/src/icons/src/solid/mark-pen.svg +3 -0
  106. package/src/icons/src/solid/translate.svg +3 -0
  107. package/src/icons/src/stroke/arrow-down-s.svg +3 -0
  108. package/src/icons/src/stroke/arrow-left-s.svg +3 -0
  109. package/src/icons/src/stroke/arrow-right-s.svg +3 -0
  110. package/src/icons/src/stroke/arrow-up-s.svg +3 -0
  111. package/src/icons/src/stroke/chevron-double-left.svg +4 -0
  112. package/src/icons/src/stroke/chevron-double-right.svg +4 -0
  113. package/src/icons/src/stroke/company.svg +9 -0
  114. package/src/icons/src/stroke/filter.svg +3 -0
  115. package/src/icons/src/stroke/heart.svg +3 -0
  116. package/src/icons/src/stroke/history.svg +3 -0
  117. package/src/icons/src/stroke/home.svg +3 -0
  118. package/src/icons/src/stroke/mark-pen.svg +3 -0
  119. package/src/icons/src/stroke/translate.svg +3 -0
  120. package/src/icons/stroke/ArrowDownS.tsx +15 -0
  121. package/src/icons/stroke/ArrowLeftS.tsx +15 -0
  122. package/src/icons/stroke/ArrowRightS.tsx +15 -0
  123. package/src/icons/stroke/ArrowUpS.tsx +15 -0
  124. package/src/icons/stroke/ChevronDoubleLeft.tsx +16 -0
  125. package/src/icons/stroke/ChevronDoubleRight.tsx +16 -0
  126. package/src/icons/stroke/Company.tsx +24 -0
  127. package/src/icons/stroke/Filter.tsx +15 -0
  128. package/src/icons/stroke/Heart.tsx +20 -0
  129. package/src/icons/stroke/History.tsx +18 -0
  130. package/src/icons/stroke/Home.tsx +20 -0
  131. package/src/icons/stroke/MarkPen.tsx +18 -0
  132. package/src/icons/stroke/Translate.tsx +18 -0
  133. package/src/icons/stroke/index.ts +13 -0
  134. package/src/logo/src/platforms/Zendesk.svg +6 -0
  135. package/src/lottie/collapseBar.ts +124 -124
  136. package/src/lottie/spinnerColor.ts +337 -337
  137. package/src/lottie/spinnerColorLG.ts +824 -824
  138. package/src/lottie/spinnerColorXS.ts +187 -187
  139. package/src/lottie/spinnerDark.ts +353 -353
  140. package/src/lottie/spinnerDarkLG.ts +824 -824
  141. package/src/lottie/spinnerDarkXS.ts +218 -218
  142. package/src/lottie/spinnerLight.ts +342 -342
  143. package/src/lottie/spinnerLightLG.ts +797 -797
  144. package/src/lottie/spinnerLightXS.ts +215 -215
  145. package/src/stories/Checkbox.stories.tsx +75 -6
  146. package/src/stories/Tree.stories.tsx +197 -226
  147. package/src/styles/tailwind.css +7 -9
@@ -1,325 +1,325 @@
1
1
  const animation = {
2
- "v": "5.9.0",
3
- "fr": 50,
4
- "ip": 0,
5
- "op": 112,
6
- "w": 400,
7
- "h": 400,
8
- "nm": "spinnerColorXS",
9
- "ddd": 0,
10
- "assets": [],
11
- "layers": [
2
+ v: "5.9.0",
3
+ fr: 50,
4
+ ip: 0,
5
+ op: 112,
6
+ w: 400,
7
+ h: 400,
8
+ nm: "spinnerColorXS",
9
+ ddd: 0,
10
+ assets: [],
11
+ layers: [
12
12
  {
13
- "ddd": 0,
14
- "ind": 1,
15
- "ty": 4,
16
- "nm": "circle",
17
- "sr": 1,
18
- "ks": {
19
- "o": { "a": 0, "k": 100, "ix": 11 },
20
- "r": { "a": 0, "k": 0, "ix": 10 },
21
- "p": {
22
- "a": 1,
23
- "k": [
13
+ ddd: 0,
14
+ ind: 1,
15
+ ty: 4,
16
+ nm: "circle",
17
+ sr: 1,
18
+ ks: {
19
+ o: { a: 0, k: 100, ix: 11 },
20
+ r: { a: 0, k: 0, ix: 10 },
21
+ p: {
22
+ a: 1,
23
+ k: [
24
24
  {
25
- "i": { "x": 0.667, "y": 1 },
26
- "o": { "x": 0.333, "y": 0 },
27
- "t": 10,
28
- "s": [202, 200, 0],
29
- "to": [0, 0, 0],
30
- "ti": [0, 0, 0]
25
+ i: { x: 0.667, y: 1 },
26
+ o: { x: 0.333, y: 0 },
27
+ t: 10,
28
+ s: [202, 200, 0],
29
+ to: [0, 0, 0],
30
+ ti: [0, 0, 0],
31
31
  },
32
32
  {
33
- "i": { "x": 0.833, "y": 0.833 },
34
- "o": { "x": 0.333, "y": 0.333 },
35
- "t": 26,
36
- "s": [202, 242, 0],
37
- "to": [0, 0, 0],
38
- "ti": [0, 0, 0]
33
+ i: { x: 0.833, y: 0.833 },
34
+ o: { x: 0.333, y: 0.333 },
35
+ t: 26,
36
+ s: [202, 242, 0],
37
+ to: [0, 0, 0],
38
+ ti: [0, 0, 0],
39
39
  },
40
40
  {
41
- "i": { "x": 0.667, "y": 1 },
42
- "o": { "x": 0.333, "y": 0 },
43
- "t": 46,
44
- "s": [202, 242, 0],
45
- "to": [0, 0, 0],
46
- "ti": [0, 0, 0]
41
+ i: { x: 0.667, y: 1 },
42
+ o: { x: 0.333, y: 0 },
43
+ t: 46,
44
+ s: [202, 242, 0],
45
+ to: [0, 0, 0],
46
+ ti: [0, 0, 0],
47
47
  },
48
- { "t": 58, "s": [202, 200, 0] }
48
+ { t: 58, s: [202, 200, 0] },
49
49
  ],
50
- "ix": 2,
51
- "l": 2
50
+ ix: 2,
51
+ l: 2,
52
52
  },
53
- "a": { "a": 0, "k": [2, 0, 0], "ix": 1, "l": 2 },
54
- "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
53
+ a: { a: 0, k: [2, 0, 0], ix: 1, l: 2 },
54
+ s: { a: 0, k: [100, 100, 100], ix: 6, l: 2 },
55
55
  },
56
- "ao": 0,
57
- "shapes": [
56
+ ao: 0,
57
+ shapes: [
58
58
  {
59
- "ind": 0,
60
- "ty": "sh",
61
- "ix": 1,
62
- "ks": {
63
- "a": 1,
64
- "k": [
59
+ ind: 0,
60
+ ty: "sh",
61
+ ix: 1,
62
+ ks: {
63
+ a: 1,
64
+ k: [
65
65
  {
66
- "i": { "x": 0.62, "y": 1 },
67
- "o": { "x": 0.85, "y": 0 },
68
- "t": 0,
69
- "s": [
66
+ i: { x: 0.62, y: 1 },
67
+ o: { x: 0.85, y: 0 },
68
+ t: 0,
69
+ s: [
70
70
  {
71
- "i": [
71
+ i: [
72
72
  [-98.859, 0],
73
73
  [0, -98.859],
74
74
  [98.859, 0],
75
- [0, 98.859]
75
+ [0, 98.859],
76
76
  ],
77
- "o": [
77
+ o: [
78
78
  [98.859, 0],
79
79
  [0, 98.859],
80
80
  [-98.859, 0],
81
- [0, -98.859]
81
+ [0, -98.859],
82
82
  ],
83
- "v": [
83
+ v: [
84
84
  [2, -179],
85
85
  [181, 0],
86
86
  [2, 179],
87
- [-177, 0]
87
+ [-177, 0],
88
88
  ],
89
- "c": true
90
- }
91
- ]
89
+ c: true,
90
+ },
91
+ ],
92
92
  },
93
93
  {
94
- "i": { "x": 0.62, "y": 1 },
95
- "o": { "x": 0.85, "y": 0 },
96
- "t": 25.84,
97
- "s": [
94
+ i: { x: 0.62, y: 1 },
95
+ o: { x: 0.85, y: 0 },
96
+ t: 25.84,
97
+ s: [
98
98
  {
99
- "i": [
99
+ i: [
100
+ [0, 0],
100
101
  [0, 0],
101
102
  [0, 0],
102
103
  [0, 0],
103
- [0, 0]
104
104
  ],
105
- "o": [
105
+ o: [
106
+ [0, 0],
106
107
  [0, 0],
107
108
  [0, 0],
108
109
  [0, 0],
109
- [0, 0]
110
110
  ],
111
- "v": [
111
+ v: [
112
112
  [0, -180.234],
113
113
  [76.744, -47.309],
114
114
  [153.489, 85.617],
115
- [-153.489, 85.617]
115
+ [-153.489, 85.617],
116
116
  ],
117
- "c": true
118
- }
119
- ]
117
+ c: true,
118
+ },
119
+ ],
120
120
  },
121
121
  {
122
- "i": { "x": 0.62, "y": 1 },
123
- "o": { "x": 0.85, "y": 0 },
124
- "t": 37,
125
- "s": [
122
+ i: { x: 0.62, y: 1 },
123
+ o: { x: 0.85, y: 0 },
124
+ t: 37,
125
+ s: [
126
126
  {
127
- "i": [
127
+ i: [
128
+ [0, 0],
128
129
  [0, 0],
129
130
  [0, 0],
130
131
  [0, 0],
131
- [0, 0]
132
132
  ],
133
- "o": [
133
+ o: [
134
+ [0, 0],
134
135
  [0, 0],
135
136
  [0, 0],
136
137
  [0, 0],
137
- [0, 0]
138
138
  ],
139
- "v": [
139
+ v: [
140
140
  [0, -180.234],
141
141
  [76.744, -47.309],
142
142
  [153.489, 85.617],
143
- [-153.489, 85.617]
143
+ [-153.489, 85.617],
144
144
  ],
145
- "c": true
146
- }
147
- ]
145
+ c: true,
146
+ },
147
+ ],
148
148
  },
149
149
  {
150
- "i": { "x": 0.62, "y": 1 },
151
- "o": { "x": 0.167, "y": 0 },
152
- "t": 68,
153
- "s": [
150
+ i: { x: 0.62, y: 1 },
151
+ o: { x: 0.167, y: 0 },
152
+ t: 68,
153
+ s: [
154
154
  {
155
- "i": [
155
+ i: [
156
+ [0, 0],
156
157
  [0, 0],
157
158
  [0, 0],
158
159
  [0, 0],
159
- [0, 0]
160
160
  ],
161
- "o": [
161
+ o: [
162
+ [0, 0],
162
163
  [0, 0],
163
164
  [0, 0],
164
165
  [0, 0],
165
- [0, 0]
166
166
  ],
167
- "v": [
167
+ v: [
168
168
  [127, -130],
169
169
  [127, 122],
170
170
  [-125, 122],
171
- [-125, -130]
171
+ [-125, -130],
172
172
  ],
173
- "c": true
174
- }
175
- ]
173
+ c: true,
174
+ },
175
+ ],
176
176
  },
177
177
  {
178
- "i": { "x": 0.62, "y": 1 },
179
- "o": { "x": 0.85, "y": 0 },
180
- "t": 81,
181
- "s": [
178
+ i: { x: 0.62, y: 1 },
179
+ o: { x: 0.85, y: 0 },
180
+ t: 81,
181
+ s: [
182
182
  {
183
- "i": [
183
+ i: [
184
+ [0, 0],
184
185
  [0, 0],
185
186
  [0, 0],
186
187
  [0, 0],
187
- [0, 0]
188
188
  ],
189
- "o": [
189
+ o: [
190
+ [0, 0],
190
191
  [0, 0],
191
192
  [0, 0],
192
193
  [0, 0],
193
- [0, 0]
194
194
  ],
195
- "v": [
195
+ v: [
196
196
  [127, -130],
197
197
  [127, 122],
198
198
  [-125, 122],
199
- [-125, -130]
199
+ [-125, -130],
200
200
  ],
201
- "c": true
202
- }
203
- ]
201
+ c: true,
202
+ },
203
+ ],
204
204
  },
205
205
  {
206
- "i": { "x": 0.62, "y": 1 },
207
- "o": { "x": 0.85, "y": 0 },
208
- "t": 104,
209
- "s": [
206
+ i: { x: 0.62, y: 1 },
207
+ o: { x: 0.85, y: 0 },
208
+ t: 104,
209
+ s: [
210
210
  {
211
- "i": [
211
+ i: [
212
212
  [-98.859, 0],
213
213
  [0, -98.859],
214
214
  [98.859, 0],
215
- [0, 98.859]
215
+ [0, 98.859],
216
216
  ],
217
- "o": [
217
+ o: [
218
218
  [98.859, 0],
219
219
  [0, 98.859],
220
220
  [-98.859, 0],
221
- [0, -98.859]
221
+ [0, -98.859],
222
222
  ],
223
- "v": [
223
+ v: [
224
224
  [2, -179],
225
225
  [181, 0],
226
226
  [2, 179],
227
- [-177, 0]
227
+ [-177, 0],
228
228
  ],
229
- "c": true
230
- }
231
- ]
229
+ c: true,
230
+ },
231
+ ],
232
232
  },
233
233
  {
234
- "t": 112,
235
- "s": [
234
+ t: 112,
235
+ s: [
236
236
  {
237
- "i": [
237
+ i: [
238
238
  [-98.859, 0],
239
239
  [0, -98.859],
240
240
  [98.859, 0],
241
- [0, 98.859]
241
+ [0, 98.859],
242
242
  ],
243
- "o": [
243
+ o: [
244
244
  [98.859, 0],
245
245
  [0, 98.859],
246
246
  [-98.859, 0],
247
- [0, -98.859]
247
+ [0, -98.859],
248
248
  ],
249
- "v": [
249
+ v: [
250
250
  [2, -179],
251
251
  [181, 0],
252
252
  [2, 179],
253
- [-177, 0]
253
+ [-177, 0],
254
254
  ],
255
- "c": true
256
- }
257
- ]
258
- }
255
+ c: true,
256
+ },
257
+ ],
258
+ },
259
259
  ],
260
- "ix": 2
260
+ ix: 2,
261
261
  },
262
- "nm": "Tracé 1",
263
- "mn": "ADBE Vector Shape - Group",
264
- "hd": false
262
+ nm: "Tracé 1",
263
+ mn: "ADBE Vector Shape - Group",
264
+ hd: false,
265
265
  },
266
266
  {
267
- "ty": "fl",
268
- "c": {
269
- "a": 1,
270
- "k": [
267
+ ty: "fl",
268
+ c: {
269
+ a: 1,
270
+ k: [
271
271
  {
272
- "i": { "x": [0.833], "y": [0.999] },
273
- "o": { "x": [0.167], "y": [0.001] },
274
- "t": 0,
275
- "s": [0.203921571374, 0.827450990677, 0.600000023842, 1]
272
+ i: { x: [0.833], y: [0.999] },
273
+ o: { x: [0.167], y: [0.001] },
274
+ t: 0,
275
+ s: [0.203921571374, 0.827450990677, 0.600000023842, 1],
276
276
  },
277
277
  {
278
- "i": { "x": [0.833], "y": [1] },
279
- "o": { "x": [0.167], "y": [0] },
280
- "t": 26,
281
- "s": [0.984313726425, 0.749019622803, 0.141176477075, 1]
278
+ i: { x: [0.833], y: [1] },
279
+ o: { x: [0.167], y: [0] },
280
+ t: 26,
281
+ s: [0.984313726425, 0.749019622803, 0.141176477075, 1],
282
282
  },
283
283
  {
284
- "i": { "x": [0.833], "y": [1] },
285
- "o": { "x": [0.167], "y": [0] },
286
- "t": 37,
287
- "s": [0.984313726425, 0.749019622803, 0.141176477075, 1]
284
+ i: { x: [0.833], y: [1] },
285
+ o: { x: [0.167], y: [0] },
286
+ t: 37,
287
+ s: [0.984313726425, 0.749019622803, 0.141176477075, 1],
288
288
  },
289
289
  {
290
- "i": { "x": [0.833], "y": [1] },
291
- "o": { "x": [0.167], "y": [0] },
292
- "t": 68,
293
- "s": [0.956862747669, 0.447058826685, 0.713725507259, 1]
290
+ i: { x: [0.833], y: [1] },
291
+ o: { x: [0.167], y: [0] },
292
+ t: 68,
293
+ s: [0.956862747669, 0.447058826685, 0.713725507259, 1],
294
294
  },
295
295
  {
296
- "i": { "x": [0.833], "y": [1] },
297
- "o": { "x": [0.167], "y": [0] },
298
- "t": 81,
299
- "s": [0.956862747669, 0.447058826685, 0.713725507259, 1]
296
+ i: { x: [0.833], y: [1] },
297
+ o: { x: [0.167], y: [0] },
298
+ t: 81,
299
+ s: [0.956862747669, 0.447058826685, 0.713725507259, 1],
300
300
  },
301
301
  {
302
- "t": 104,
303
- "s": [0.203921571374, 0.827450990677, 0.600000023842, 1]
304
- }
302
+ t: 104,
303
+ s: [0.203921571374, 0.827450990677, 0.600000023842, 1],
304
+ },
305
305
  ],
306
- "ix": 4
306
+ ix: 4,
307
307
  },
308
- "o": { "a": 0, "k": 100, "ix": 5 },
309
- "r": 1,
310
- "bm": 0,
311
- "nm": "Riempimento 1",
312
- "mn": "ADBE Vector Graphic - Fill",
313
- "hd": false
314
- }
308
+ o: { a: 0, k: 100, ix: 5 },
309
+ r: 1,
310
+ bm: 0,
311
+ nm: "Riempimento 1",
312
+ mn: "ADBE Vector Graphic - Fill",
313
+ hd: false,
314
+ },
315
315
  ],
316
- "ip": 0,
317
- "op": 750,
318
- "st": 0,
319
- "bm": 0
320
- }
316
+ ip: 0,
317
+ op: 750,
318
+ st: 0,
319
+ bm: 0,
320
+ },
321
321
  ],
322
- "markers": []
322
+ markers: [],
323
323
  };
324
324
 
325
325
  export default animation;