@atlaskit/tokens 11.1.1 → 11.3.0
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/CHANGELOG.md +14 -0
- package/codemods/hypermod.config.tsx +3 -0
- package/codemods/remove-fallbacks/transform.tsx +26 -0
- package/dist/cjs/artifacts/palettes-raw/motion-palette.js +414 -63
- package/dist/cjs/artifacts/replacement-mapping.js +51 -3
- package/dist/cjs/artifacts/themes/atlassian-motion.js +2 -2
- package/dist/cjs/artifacts/token-default-values.js +25 -9
- package/dist/cjs/artifacts/token-names.js +19 -3
- package/dist/cjs/artifacts/tokens-raw/atlassian-motion.js +527 -47
- package/dist/cjs/babel-plugin/plugin.js +5 -0
- package/dist/cjs/entry-points/token-metadata.codegen.js +2342 -470
- package/dist/cjs/utils/token-usage-guidelines.js +117 -0
- package/dist/es2019/artifacts/palettes-raw/motion-palette.js +414 -63
- package/dist/es2019/artifacts/replacement-mapping.js +51 -3
- package/dist/es2019/artifacts/themes/atlassian-motion.js +119 -15
- package/dist/es2019/artifacts/token-default-values.js +25 -9
- package/dist/es2019/artifacts/token-names.js +19 -3
- package/dist/es2019/artifacts/tokens-raw/atlassian-motion.js +527 -47
- package/dist/es2019/babel-plugin/plugin.js +5 -0
- package/dist/es2019/entry-points/token-metadata.codegen.js +2342 -470
- package/dist/es2019/utils/token-usage-guidelines.js +109 -0
- package/dist/esm/artifacts/palettes-raw/motion-palette.js +414 -63
- package/dist/esm/artifacts/replacement-mapping.js +51 -3
- package/dist/esm/artifacts/themes/atlassian-motion.js +2 -2
- package/dist/esm/artifacts/token-default-values.js +25 -9
- package/dist/esm/artifacts/token-names.js +19 -3
- package/dist/esm/artifacts/tokens-raw/atlassian-motion.js +527 -47
- package/dist/esm/babel-plugin/plugin.js +5 -0
- package/dist/esm/entry-points/token-metadata.codegen.js +2342 -470
- package/dist/esm/utils/token-usage-guidelines.js +111 -0
- package/dist/types/artifacts/palettes-raw/motion-palette.d.ts +5 -3
- package/dist/types/artifacts/replacement-mapping.d.ts +1 -1
- package/dist/types/artifacts/themes/atlassian-motion.d.ts +2 -2
- package/dist/types/artifacts/token-default-values.d.ts +25 -9
- package/dist/types/artifacts/token-names.d.ts +37 -5
- package/dist/types/artifacts/tokens-raw/atlassian-motion.d.ts +5 -3
- package/dist/types/entry-points/css-type-schema.codegen.d.ts +2 -2
- package/dist/types/entry-points/token-metadata.codegen.d.ts +6 -2
- package/dist/types/types.d.ts +31 -2
- package/dist/types/utils/token-usage-guidelines.d.ts +8 -0
- package/dist/types-ts4.5/artifacts/palettes-raw/motion-palette.d.ts +5 -3
- package/dist/types-ts4.5/artifacts/replacement-mapping.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/themes/atlassian-motion.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/token-default-values.d.ts +25 -9
- package/dist/types-ts4.5/artifacts/token-names.d.ts +37 -5
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-motion.d.ts +5 -3
- package/dist/types-ts4.5/entry-points/css-type-schema.codegen.d.ts +2 -2
- package/dist/types-ts4.5/entry-points/token-metadata.codegen.d.ts +6 -2
- package/dist/types-ts4.5/types.d.ts +31 -2
- package/dist/types-ts4.5/utils/token-usage-guidelines.d.ts +8 -0
- package/package.json +12 -11
- package/tokens.docs.tsx +52 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::a05c62bc089a075de35d08a2570d9421>>
|
|
4
4
|
* @codegenCommand yarn build tokens
|
|
5
5
|
*/
|
|
6
6
|
|
|
@@ -8,12 +8,102 @@ var tokens = [{
|
|
|
8
8
|
"attributes": {
|
|
9
9
|
"group": "motion",
|
|
10
10
|
"state": "experimental",
|
|
11
|
-
"introduced": "11.
|
|
11
|
+
"introduced": "11.2.0",
|
|
12
|
+
"description": ""
|
|
13
|
+
},
|
|
14
|
+
"value": {
|
|
15
|
+
"duration": 150,
|
|
16
|
+
"curve": "cubic-bezier(0.6, 0, 0.8, 0.6)",
|
|
17
|
+
"keyframes": ["ScaleIn80", "FadeIn"]
|
|
18
|
+
},
|
|
19
|
+
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
20
|
+
"isSource": true,
|
|
21
|
+
"original": {
|
|
22
|
+
"attributes": {
|
|
23
|
+
"group": "motion",
|
|
24
|
+
"state": "experimental",
|
|
25
|
+
"introduced": "11.2.0",
|
|
26
|
+
"description": ""
|
|
27
|
+
},
|
|
28
|
+
"value": {
|
|
29
|
+
"duration": "Duration150",
|
|
30
|
+
"curve": "EasePracticalIn",
|
|
31
|
+
"keyframes": ["ScaleIn80", "FadeIn"]
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"name": "motion.avatar.enter",
|
|
35
|
+
"path": ["motion", "avatar", "enter"],
|
|
36
|
+
"cleanName": "motion.avatar.enter"
|
|
37
|
+
}, {
|
|
38
|
+
"attributes": {
|
|
39
|
+
"group": "motion",
|
|
40
|
+
"state": "experimental",
|
|
41
|
+
"introduced": "11.2.0",
|
|
42
|
+
"description": ""
|
|
43
|
+
},
|
|
44
|
+
"value": {
|
|
45
|
+
"duration": 100,
|
|
46
|
+
"curve": "cubic-bezier(0.32, 0, 0.67, 0)",
|
|
47
|
+
"keyframes": ["ScaleOut80", "FadeOut"]
|
|
48
|
+
},
|
|
49
|
+
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
50
|
+
"isSource": true,
|
|
51
|
+
"original": {
|
|
52
|
+
"attributes": {
|
|
53
|
+
"group": "motion",
|
|
54
|
+
"state": "experimental",
|
|
55
|
+
"introduced": "11.2.0",
|
|
56
|
+
"description": ""
|
|
57
|
+
},
|
|
58
|
+
"value": {
|
|
59
|
+
"duration": "Duration100",
|
|
60
|
+
"curve": "Custom",
|
|
61
|
+
"keyframes": ["ScaleOut80", "FadeOut"]
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"name": "motion.avatar.exit",
|
|
65
|
+
"path": ["motion", "avatar", "exit"],
|
|
66
|
+
"cleanName": "motion.avatar.exit"
|
|
67
|
+
}, {
|
|
68
|
+
"attributes": {
|
|
69
|
+
"group": "motion",
|
|
70
|
+
"state": "experimental",
|
|
71
|
+
"introduced": "11.2.0",
|
|
72
|
+
"description": ""
|
|
73
|
+
},
|
|
74
|
+
"value": {
|
|
75
|
+
"duration": 100,
|
|
76
|
+
"curve": "cubic-bezier(0.32, 0, 0.67, 0)",
|
|
77
|
+
"properties": ["transform"]
|
|
78
|
+
},
|
|
79
|
+
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
80
|
+
"isSource": true,
|
|
81
|
+
"original": {
|
|
82
|
+
"attributes": {
|
|
83
|
+
"group": "motion",
|
|
84
|
+
"state": "experimental",
|
|
85
|
+
"introduced": "11.2.0",
|
|
86
|
+
"description": ""
|
|
87
|
+
},
|
|
88
|
+
"value": {
|
|
89
|
+
"duration": "Duration100",
|
|
90
|
+
"curve": "Custom",
|
|
91
|
+
"properties": ["Transform"]
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"name": "motion.avatar.hovered",
|
|
95
|
+
"path": ["motion", "avatar", "hovered"],
|
|
96
|
+
"cleanName": "motion.avatar.hovered"
|
|
97
|
+
}, {
|
|
98
|
+
"attributes": {
|
|
99
|
+
"group": "motion",
|
|
100
|
+
"state": "experimental",
|
|
101
|
+
"introduced": "11.2.0",
|
|
12
102
|
"description": ""
|
|
13
103
|
},
|
|
14
104
|
"value": {
|
|
15
105
|
"duration": 400,
|
|
16
|
-
"curve": "cubic-bezier(0.
|
|
106
|
+
"curve": "cubic-bezier(0.4, 0, 0, 1)",
|
|
17
107
|
"keyframes": ["FadeIn"]
|
|
18
108
|
},
|
|
19
109
|
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
@@ -22,12 +112,12 @@ var tokens = [{
|
|
|
22
112
|
"attributes": {
|
|
23
113
|
"group": "motion",
|
|
24
114
|
"state": "experimental",
|
|
25
|
-
"introduced": "11.
|
|
115
|
+
"introduced": "11.2.0",
|
|
26
116
|
"description": ""
|
|
27
117
|
},
|
|
28
118
|
"value": {
|
|
29
119
|
"duration": "Duration400",
|
|
30
|
-
"curve": "
|
|
120
|
+
"curve": "EaseBoldInOut",
|
|
31
121
|
"keyframes": ["FadeIn"]
|
|
32
122
|
}
|
|
33
123
|
},
|
|
@@ -38,12 +128,12 @@ var tokens = [{
|
|
|
38
128
|
"attributes": {
|
|
39
129
|
"group": "motion",
|
|
40
130
|
"state": "experimental",
|
|
41
|
-
"introduced": "11.
|
|
131
|
+
"introduced": "11.2.0",
|
|
42
132
|
"description": ""
|
|
43
133
|
},
|
|
44
134
|
"value": {
|
|
45
135
|
"duration": 200,
|
|
46
|
-
"curve": "cubic-bezier(0.
|
|
136
|
+
"curve": "cubic-bezier(0.4, 0, 0, 1)",
|
|
47
137
|
"keyframes": ["FadeIn"]
|
|
48
138
|
},
|
|
49
139
|
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
@@ -52,12 +142,12 @@ var tokens = [{
|
|
|
52
142
|
"attributes": {
|
|
53
143
|
"group": "motion",
|
|
54
144
|
"state": "experimental",
|
|
55
|
-
"introduced": "11.
|
|
145
|
+
"introduced": "11.2.0",
|
|
56
146
|
"description": ""
|
|
57
147
|
},
|
|
58
148
|
"value": {
|
|
59
149
|
"duration": "Duration200",
|
|
60
|
-
"curve": "
|
|
150
|
+
"curve": "EaseBoldInOut",
|
|
61
151
|
"keyframes": ["FadeIn"]
|
|
62
152
|
}
|
|
63
153
|
},
|
|
@@ -68,12 +158,12 @@ var tokens = [{
|
|
|
68
158
|
"attributes": {
|
|
69
159
|
"group": "motion",
|
|
70
160
|
"state": "experimental",
|
|
71
|
-
"introduced": "11.
|
|
161
|
+
"introduced": "11.2.0",
|
|
72
162
|
"description": ""
|
|
73
163
|
},
|
|
74
164
|
"value": {
|
|
75
165
|
"duration": 100,
|
|
76
|
-
"curve": "cubic-bezier(0.
|
|
166
|
+
"curve": "cubic-bezier(0.4, 0, 0, 1)",
|
|
77
167
|
"keyframes": ["FadeIn"]
|
|
78
168
|
},
|
|
79
169
|
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
@@ -82,12 +172,12 @@ var tokens = [{
|
|
|
82
172
|
"attributes": {
|
|
83
173
|
"group": "motion",
|
|
84
174
|
"state": "experimental",
|
|
85
|
-
"introduced": "11.
|
|
175
|
+
"introduced": "11.2.0",
|
|
86
176
|
"description": ""
|
|
87
177
|
},
|
|
88
178
|
"value": {
|
|
89
179
|
"duration": "Duration100",
|
|
90
|
-
"curve": "
|
|
180
|
+
"curve": "EaseBoldInOut",
|
|
91
181
|
"keyframes": ["FadeIn"]
|
|
92
182
|
}
|
|
93
183
|
},
|
|
@@ -98,12 +188,12 @@ var tokens = [{
|
|
|
98
188
|
"attributes": {
|
|
99
189
|
"group": "motion",
|
|
100
190
|
"state": "experimental",
|
|
101
|
-
"introduced": "11.
|
|
191
|
+
"introduced": "11.2.0",
|
|
102
192
|
"description": ""
|
|
103
193
|
},
|
|
104
194
|
"value": {
|
|
105
195
|
"duration": 200,
|
|
106
|
-
"curve": "cubic-bezier(0.
|
|
196
|
+
"curve": "cubic-bezier(0.4, 0, 0, 1)",
|
|
107
197
|
"keyframes": ["FadeOut"]
|
|
108
198
|
},
|
|
109
199
|
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
@@ -112,12 +202,12 @@ var tokens = [{
|
|
|
112
202
|
"attributes": {
|
|
113
203
|
"group": "motion",
|
|
114
204
|
"state": "experimental",
|
|
115
|
-
"introduced": "11.
|
|
205
|
+
"introduced": "11.2.0",
|
|
116
206
|
"description": ""
|
|
117
207
|
},
|
|
118
208
|
"value": {
|
|
119
209
|
"duration": "Duration200",
|
|
120
|
-
"curve": "
|
|
210
|
+
"curve": "EaseBoldInOut",
|
|
121
211
|
"keyframes": ["FadeOut"]
|
|
122
212
|
}
|
|
123
213
|
},
|
|
@@ -128,12 +218,12 @@ var tokens = [{
|
|
|
128
218
|
"attributes": {
|
|
129
219
|
"group": "motion",
|
|
130
220
|
"state": "experimental",
|
|
131
|
-
"introduced": "11.
|
|
221
|
+
"introduced": "11.2.0",
|
|
132
222
|
"description": ""
|
|
133
223
|
},
|
|
134
224
|
"value": {
|
|
135
225
|
"duration": 100,
|
|
136
|
-
"curve": "cubic-bezier(0.
|
|
226
|
+
"curve": "cubic-bezier(0.4, 0, 0, 1)",
|
|
137
227
|
"keyframes": ["FadeOut"]
|
|
138
228
|
},
|
|
139
229
|
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
@@ -142,12 +232,12 @@ var tokens = [{
|
|
|
142
232
|
"attributes": {
|
|
143
233
|
"group": "motion",
|
|
144
234
|
"state": "experimental",
|
|
145
|
-
"introduced": "11.
|
|
235
|
+
"introduced": "11.2.0",
|
|
146
236
|
"description": ""
|
|
147
237
|
},
|
|
148
238
|
"value": {
|
|
149
239
|
"duration": "Duration100",
|
|
150
|
-
"curve": "
|
|
240
|
+
"curve": "EaseBoldInOut",
|
|
151
241
|
"keyframes": ["FadeOut"]
|
|
152
242
|
}
|
|
153
243
|
},
|
|
@@ -158,12 +248,12 @@ var tokens = [{
|
|
|
158
248
|
"attributes": {
|
|
159
249
|
"group": "motion",
|
|
160
250
|
"state": "experimental",
|
|
161
|
-
"introduced": "11.
|
|
251
|
+
"introduced": "11.2.0",
|
|
162
252
|
"description": ""
|
|
163
253
|
},
|
|
164
254
|
"value": {
|
|
165
255
|
"duration": 50,
|
|
166
|
-
"curve": "cubic-bezier(0.
|
|
256
|
+
"curve": "cubic-bezier(0.4, 0, 0, 1)",
|
|
167
257
|
"keyframes": ["FadeOut"]
|
|
168
258
|
},
|
|
169
259
|
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
@@ -172,12 +262,12 @@ var tokens = [{
|
|
|
172
262
|
"attributes": {
|
|
173
263
|
"group": "motion",
|
|
174
264
|
"state": "experimental",
|
|
175
|
-
"introduced": "11.
|
|
265
|
+
"introduced": "11.2.0",
|
|
176
266
|
"description": ""
|
|
177
267
|
},
|
|
178
268
|
"value": {
|
|
179
269
|
"duration": "Duration050",
|
|
180
|
-
"curve": "
|
|
270
|
+
"curve": "EaseBoldInOut",
|
|
181
271
|
"keyframes": ["FadeOut"]
|
|
182
272
|
}
|
|
183
273
|
},
|
|
@@ -188,13 +278,13 @@ var tokens = [{
|
|
|
188
278
|
"attributes": {
|
|
189
279
|
"group": "motion",
|
|
190
280
|
"state": "experimental",
|
|
191
|
-
"introduced": "11.
|
|
281
|
+
"introduced": "11.2.0",
|
|
192
282
|
"description": ""
|
|
193
283
|
},
|
|
194
284
|
"value": {
|
|
195
|
-
"duration":
|
|
196
|
-
"curve": "cubic-bezier(0
|
|
197
|
-
"keyframes": ["
|
|
285
|
+
"duration": 250,
|
|
286
|
+
"curve": "cubic-bezier(0, 0.4, 0, 1)",
|
|
287
|
+
"keyframes": ["SlideIn50PercentLeft", "FadeIn"]
|
|
198
288
|
},
|
|
199
289
|
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
200
290
|
"isSource": true,
|
|
@@ -202,29 +292,29 @@ var tokens = [{
|
|
|
202
292
|
"attributes": {
|
|
203
293
|
"group": "motion",
|
|
204
294
|
"state": "experimental",
|
|
205
|
-
"introduced": "11.
|
|
295
|
+
"introduced": "11.2.0",
|
|
206
296
|
"description": ""
|
|
207
297
|
},
|
|
208
298
|
"value": {
|
|
209
|
-
"duration": "
|
|
210
|
-
"curve": "
|
|
211
|
-
"keyframes": ["
|
|
299
|
+
"duration": "Duration250",
|
|
300
|
+
"curve": "EaseBoldOut",
|
|
301
|
+
"keyframes": ["SlideIn50PercentLeft", "FadeIn"]
|
|
212
302
|
}
|
|
213
303
|
},
|
|
214
|
-
"name": "motion.
|
|
215
|
-
"path": ["motion", "
|
|
216
|
-
"cleanName": "motion.
|
|
304
|
+
"name": "motion.flag.enter",
|
|
305
|
+
"path": ["motion", "flag", "enter"],
|
|
306
|
+
"cleanName": "motion.flag.enter"
|
|
217
307
|
}, {
|
|
218
308
|
"attributes": {
|
|
219
309
|
"group": "motion",
|
|
220
310
|
"state": "experimental",
|
|
221
|
-
"introduced": "11.
|
|
311
|
+
"introduced": "11.2.0",
|
|
222
312
|
"description": ""
|
|
223
313
|
},
|
|
224
314
|
"value": {
|
|
225
|
-
"duration":
|
|
226
|
-
"curve": "cubic-bezier(0.
|
|
227
|
-
"keyframes": ["
|
|
315
|
+
"duration": 200,
|
|
316
|
+
"curve": "cubic-bezier(0.6, 0, 0.8, 0.6)",
|
|
317
|
+
"keyframes": ["SlideOut15PercentLeft", "FadeOut"]
|
|
228
318
|
},
|
|
229
319
|
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
230
320
|
"isSource": true,
|
|
@@ -232,17 +322,407 @@ var tokens = [{
|
|
|
232
322
|
"attributes": {
|
|
233
323
|
"group": "motion",
|
|
234
324
|
"state": "experimental",
|
|
235
|
-
"introduced": "11.
|
|
325
|
+
"introduced": "11.2.0",
|
|
236
326
|
"description": ""
|
|
237
327
|
},
|
|
238
328
|
"value": {
|
|
239
|
-
"duration": "
|
|
240
|
-
"curve": "
|
|
241
|
-
"keyframes": ["
|
|
329
|
+
"duration": "Duration200",
|
|
330
|
+
"curve": "EasePracticalIn",
|
|
331
|
+
"keyframes": ["SlideOut15PercentLeft", "FadeOut"]
|
|
332
|
+
}
|
|
333
|
+
},
|
|
334
|
+
"name": "motion.flag.exit",
|
|
335
|
+
"path": ["motion", "flag", "exit"],
|
|
336
|
+
"cleanName": "motion.flag.exit"
|
|
337
|
+
}, {
|
|
338
|
+
"attributes": {
|
|
339
|
+
"group": "motion",
|
|
340
|
+
"state": "experimental",
|
|
341
|
+
"introduced": "11.2.0",
|
|
342
|
+
"description": ""
|
|
343
|
+
},
|
|
344
|
+
"value": {
|
|
345
|
+
"duration": 300,
|
|
346
|
+
"curve": "cubic-bezier(0.4, 0, 0, 1)",
|
|
347
|
+
"properties": ["transform"]
|
|
348
|
+
},
|
|
349
|
+
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
350
|
+
"isSource": true,
|
|
351
|
+
"original": {
|
|
352
|
+
"attributes": {
|
|
353
|
+
"group": "motion",
|
|
354
|
+
"state": "experimental",
|
|
355
|
+
"introduced": "11.2.0",
|
|
356
|
+
"description": ""
|
|
357
|
+
},
|
|
358
|
+
"value": {
|
|
359
|
+
"duration": "Duration300",
|
|
360
|
+
"curve": "EaseBoldInOut",
|
|
361
|
+
"properties": ["Transform"]
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
"name": "motion.flag.reposition",
|
|
365
|
+
"path": ["motion", "flag", "reposition"],
|
|
366
|
+
"cleanName": "motion.flag.reposition"
|
|
367
|
+
}, {
|
|
368
|
+
"attributes": {
|
|
369
|
+
"group": "motion",
|
|
370
|
+
"state": "experimental",
|
|
371
|
+
"introduced": "11.2.0",
|
|
372
|
+
"description": ""
|
|
373
|
+
},
|
|
374
|
+
"value": {
|
|
375
|
+
"duration": 200,
|
|
376
|
+
"curve": "cubic-bezier(0.4, 0, 0, 1)",
|
|
377
|
+
"keyframes": ["ScaleIn95", "FadeIn"]
|
|
378
|
+
},
|
|
379
|
+
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
380
|
+
"isSource": true,
|
|
381
|
+
"original": {
|
|
382
|
+
"attributes": {
|
|
383
|
+
"group": "motion",
|
|
384
|
+
"state": "experimental",
|
|
385
|
+
"introduced": "11.2.0",
|
|
386
|
+
"description": ""
|
|
387
|
+
},
|
|
388
|
+
"value": {
|
|
389
|
+
"duration": "Duration200",
|
|
390
|
+
"curve": "EaseBoldInOut",
|
|
391
|
+
"keyframes": ["ScaleIn95", "FadeIn"]
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
"name": "motion.modal.enter",
|
|
395
|
+
"path": ["motion", "modal", "enter"],
|
|
396
|
+
"cleanName": "motion.modal.enter"
|
|
397
|
+
}, {
|
|
398
|
+
"attributes": {
|
|
399
|
+
"group": "motion",
|
|
400
|
+
"state": "experimental",
|
|
401
|
+
"introduced": "11.2.0",
|
|
402
|
+
"description": ""
|
|
403
|
+
},
|
|
404
|
+
"value": {
|
|
405
|
+
"duration": 200,
|
|
406
|
+
"curve": "cubic-bezier(0.4, 1, 0.6, 1)",
|
|
407
|
+
"keyframes": ["ScaleOut95", "FadeOut"]
|
|
408
|
+
},
|
|
409
|
+
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
410
|
+
"isSource": true,
|
|
411
|
+
"original": {
|
|
412
|
+
"attributes": {
|
|
413
|
+
"group": "motion",
|
|
414
|
+
"state": "experimental",
|
|
415
|
+
"introduced": "11.2.0",
|
|
416
|
+
"description": ""
|
|
417
|
+
},
|
|
418
|
+
"value": {
|
|
419
|
+
"duration": "Duration200",
|
|
420
|
+
"curve": "EasePracticalOut",
|
|
421
|
+
"keyframes": ["ScaleOut95", "FadeOut"]
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
"name": "motion.modal.exit",
|
|
425
|
+
"path": ["motion", "modal", "exit"],
|
|
426
|
+
"cleanName": "motion.modal.exit"
|
|
427
|
+
}, {
|
|
428
|
+
"attributes": {
|
|
429
|
+
"group": "motion",
|
|
430
|
+
"state": "experimental",
|
|
431
|
+
"introduced": "11.2.0",
|
|
432
|
+
"description": ""
|
|
433
|
+
},
|
|
434
|
+
"value": {
|
|
435
|
+
"duration": 150,
|
|
436
|
+
"curve": "cubic-bezier(0.4, 1, 0.6, 1)",
|
|
437
|
+
"keyframes": ["SlideInBottom", "FadeIn"]
|
|
438
|
+
},
|
|
439
|
+
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
440
|
+
"isSource": true,
|
|
441
|
+
"original": {
|
|
442
|
+
"attributes": {
|
|
443
|
+
"group": "motion",
|
|
444
|
+
"state": "experimental",
|
|
445
|
+
"introduced": "11.2.0",
|
|
446
|
+
"description": ""
|
|
447
|
+
},
|
|
448
|
+
"value": {
|
|
449
|
+
"duration": "Duration150",
|
|
450
|
+
"curve": "EasePracticalOut",
|
|
451
|
+
"keyframes": ["SlideInBottom", "FadeIn"]
|
|
452
|
+
}
|
|
453
|
+
},
|
|
454
|
+
"name": "motion.popup.enter.bottom",
|
|
455
|
+
"path": ["motion", "popup", "enter", "bottom"],
|
|
456
|
+
"cleanName": "motion.popup.enter.bottom"
|
|
457
|
+
}, {
|
|
458
|
+
"attributes": {
|
|
459
|
+
"group": "motion",
|
|
460
|
+
"state": "experimental",
|
|
461
|
+
"introduced": "11.2.0",
|
|
462
|
+
"description": ""
|
|
463
|
+
},
|
|
464
|
+
"value": {
|
|
465
|
+
"duration": 150,
|
|
466
|
+
"curve": "cubic-bezier(0.4, 1, 0.6, 1)",
|
|
467
|
+
"keyframes": ["SlideInLeft", "FadeIn"]
|
|
468
|
+
},
|
|
469
|
+
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
470
|
+
"isSource": true,
|
|
471
|
+
"original": {
|
|
472
|
+
"attributes": {
|
|
473
|
+
"group": "motion",
|
|
474
|
+
"state": "experimental",
|
|
475
|
+
"introduced": "11.2.0",
|
|
476
|
+
"description": ""
|
|
477
|
+
},
|
|
478
|
+
"value": {
|
|
479
|
+
"duration": "Duration150",
|
|
480
|
+
"curve": "EasePracticalOut",
|
|
481
|
+
"keyframes": ["SlideInLeft", "FadeIn"]
|
|
482
|
+
}
|
|
483
|
+
},
|
|
484
|
+
"name": "motion.popup.enter.left",
|
|
485
|
+
"path": ["motion", "popup", "enter", "left"],
|
|
486
|
+
"cleanName": "motion.popup.enter.left"
|
|
487
|
+
}, {
|
|
488
|
+
"attributes": {
|
|
489
|
+
"group": "motion",
|
|
490
|
+
"state": "experimental",
|
|
491
|
+
"introduced": "11.2.0",
|
|
492
|
+
"description": ""
|
|
493
|
+
},
|
|
494
|
+
"value": {
|
|
495
|
+
"duration": 150,
|
|
496
|
+
"curve": "cubic-bezier(0.4, 1, 0.6, 1)",
|
|
497
|
+
"keyframes": ["SlideInRight", "FadeIn"]
|
|
498
|
+
},
|
|
499
|
+
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
500
|
+
"isSource": true,
|
|
501
|
+
"original": {
|
|
502
|
+
"attributes": {
|
|
503
|
+
"group": "motion",
|
|
504
|
+
"state": "experimental",
|
|
505
|
+
"introduced": "11.2.0",
|
|
506
|
+
"description": ""
|
|
507
|
+
},
|
|
508
|
+
"value": {
|
|
509
|
+
"duration": "Duration150",
|
|
510
|
+
"curve": "EasePracticalOut",
|
|
511
|
+
"keyframes": ["SlideInRight", "FadeIn"]
|
|
512
|
+
}
|
|
513
|
+
},
|
|
514
|
+
"name": "motion.popup.enter.right",
|
|
515
|
+
"path": ["motion", "popup", "enter", "right"],
|
|
516
|
+
"cleanName": "motion.popup.enter.right"
|
|
517
|
+
}, {
|
|
518
|
+
"attributes": {
|
|
519
|
+
"group": "motion",
|
|
520
|
+
"state": "experimental",
|
|
521
|
+
"introduced": "11.2.0",
|
|
522
|
+
"description": ""
|
|
523
|
+
},
|
|
524
|
+
"value": {
|
|
525
|
+
"duration": 150,
|
|
526
|
+
"curve": "cubic-bezier(0.4, 1, 0.6, 1)",
|
|
527
|
+
"keyframes": ["SlideInTop", "FadeIn"]
|
|
528
|
+
},
|
|
529
|
+
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
530
|
+
"isSource": true,
|
|
531
|
+
"original": {
|
|
532
|
+
"attributes": {
|
|
533
|
+
"group": "motion",
|
|
534
|
+
"state": "experimental",
|
|
535
|
+
"introduced": "11.2.0",
|
|
536
|
+
"description": ""
|
|
537
|
+
},
|
|
538
|
+
"value": {
|
|
539
|
+
"duration": "Duration150",
|
|
540
|
+
"curve": "EasePracticalOut",
|
|
541
|
+
"keyframes": ["SlideInTop", "FadeIn"]
|
|
542
|
+
}
|
|
543
|
+
},
|
|
544
|
+
"name": "motion.popup.enter.top",
|
|
545
|
+
"path": ["motion", "popup", "enter", "top"],
|
|
546
|
+
"cleanName": "motion.popup.enter.top"
|
|
547
|
+
}, {
|
|
548
|
+
"attributes": {
|
|
549
|
+
"group": "motion",
|
|
550
|
+
"state": "experimental",
|
|
551
|
+
"introduced": "11.2.0",
|
|
552
|
+
"description": ""
|
|
553
|
+
},
|
|
554
|
+
"value": {
|
|
555
|
+
"duration": 100,
|
|
556
|
+
"curve": "cubic-bezier(0.6, 0, 0.8, 0.6)",
|
|
557
|
+
"keyframes": ["SlideOutBottom", "FadeOut"]
|
|
558
|
+
},
|
|
559
|
+
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
560
|
+
"isSource": true,
|
|
561
|
+
"original": {
|
|
562
|
+
"attributes": {
|
|
563
|
+
"group": "motion",
|
|
564
|
+
"state": "experimental",
|
|
565
|
+
"introduced": "11.2.0",
|
|
566
|
+
"description": ""
|
|
567
|
+
},
|
|
568
|
+
"value": {
|
|
569
|
+
"duration": "Duration100",
|
|
570
|
+
"curve": "EasePracticalIn",
|
|
571
|
+
"keyframes": ["SlideOutBottom", "FadeOut"]
|
|
572
|
+
}
|
|
573
|
+
},
|
|
574
|
+
"name": "motion.popup.exit.bottom",
|
|
575
|
+
"path": ["motion", "popup", "exit", "bottom"],
|
|
576
|
+
"cleanName": "motion.popup.exit.bottom"
|
|
577
|
+
}, {
|
|
578
|
+
"attributes": {
|
|
579
|
+
"group": "motion",
|
|
580
|
+
"state": "experimental",
|
|
581
|
+
"introduced": "11.2.0",
|
|
582
|
+
"description": ""
|
|
583
|
+
},
|
|
584
|
+
"value": {
|
|
585
|
+
"duration": 100,
|
|
586
|
+
"curve": "cubic-bezier(0.6, 0, 0.8, 0.6)",
|
|
587
|
+
"keyframes": ["SlideOutLeft", "FadeOut"]
|
|
588
|
+
},
|
|
589
|
+
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
590
|
+
"isSource": true,
|
|
591
|
+
"original": {
|
|
592
|
+
"attributes": {
|
|
593
|
+
"group": "motion",
|
|
594
|
+
"state": "experimental",
|
|
595
|
+
"introduced": "11.2.0",
|
|
596
|
+
"description": ""
|
|
597
|
+
},
|
|
598
|
+
"value": {
|
|
599
|
+
"duration": "Duration100",
|
|
600
|
+
"curve": "EasePracticalIn",
|
|
601
|
+
"keyframes": ["SlideOutLeft", "FadeOut"]
|
|
602
|
+
}
|
|
603
|
+
},
|
|
604
|
+
"name": "motion.popup.exit.left",
|
|
605
|
+
"path": ["motion", "popup", "exit", "left"],
|
|
606
|
+
"cleanName": "motion.popup.exit.left"
|
|
607
|
+
}, {
|
|
608
|
+
"attributes": {
|
|
609
|
+
"group": "motion",
|
|
610
|
+
"state": "experimental",
|
|
611
|
+
"introduced": "11.2.0",
|
|
612
|
+
"description": ""
|
|
613
|
+
},
|
|
614
|
+
"value": {
|
|
615
|
+
"duration": 100,
|
|
616
|
+
"curve": "cubic-bezier(0.6, 0, 0.8, 0.6)",
|
|
617
|
+
"keyframes": ["SlideOutRight", "FadeOut"]
|
|
618
|
+
},
|
|
619
|
+
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
620
|
+
"isSource": true,
|
|
621
|
+
"original": {
|
|
622
|
+
"attributes": {
|
|
623
|
+
"group": "motion",
|
|
624
|
+
"state": "experimental",
|
|
625
|
+
"introduced": "11.2.0",
|
|
626
|
+
"description": ""
|
|
627
|
+
},
|
|
628
|
+
"value": {
|
|
629
|
+
"duration": "Duration100",
|
|
630
|
+
"curve": "EasePracticalIn",
|
|
631
|
+
"keyframes": ["SlideOutRight", "FadeOut"]
|
|
632
|
+
}
|
|
633
|
+
},
|
|
634
|
+
"name": "motion.popup.exit.right",
|
|
635
|
+
"path": ["motion", "popup", "exit", "right"],
|
|
636
|
+
"cleanName": "motion.popup.exit.right"
|
|
637
|
+
}, {
|
|
638
|
+
"attributes": {
|
|
639
|
+
"group": "motion",
|
|
640
|
+
"state": "experimental",
|
|
641
|
+
"introduced": "11.2.0",
|
|
642
|
+
"description": ""
|
|
643
|
+
},
|
|
644
|
+
"value": {
|
|
645
|
+
"duration": 100,
|
|
646
|
+
"curve": "cubic-bezier(0.6, 0, 0.8, 0.6)",
|
|
647
|
+
"keyframes": ["SlideOutTop", "FadeOut"]
|
|
648
|
+
},
|
|
649
|
+
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
650
|
+
"isSource": true,
|
|
651
|
+
"original": {
|
|
652
|
+
"attributes": {
|
|
653
|
+
"group": "motion",
|
|
654
|
+
"state": "experimental",
|
|
655
|
+
"introduced": "11.2.0",
|
|
656
|
+
"description": ""
|
|
657
|
+
},
|
|
658
|
+
"value": {
|
|
659
|
+
"duration": "Duration100",
|
|
660
|
+
"curve": "EasePracticalIn",
|
|
661
|
+
"keyframes": ["SlideOutTop", "FadeOut"]
|
|
662
|
+
}
|
|
663
|
+
},
|
|
664
|
+
"name": "motion.popup.exit.top",
|
|
665
|
+
"path": ["motion", "popup", "exit", "top"],
|
|
666
|
+
"cleanName": "motion.popup.exit.top"
|
|
667
|
+
}, {
|
|
668
|
+
"attributes": {
|
|
669
|
+
"group": "motion",
|
|
670
|
+
"state": "experimental",
|
|
671
|
+
"introduced": "11.2.0",
|
|
672
|
+
"description": ""
|
|
673
|
+
},
|
|
674
|
+
"value": {
|
|
675
|
+
"duration": 250,
|
|
676
|
+
"curve": "cubic-bezier(0.4, 0, 0, 1)",
|
|
677
|
+
"keyframes": ["ScaleIn95", "FadeIn"]
|
|
678
|
+
},
|
|
679
|
+
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
680
|
+
"isSource": true,
|
|
681
|
+
"original": {
|
|
682
|
+
"attributes": {
|
|
683
|
+
"group": "motion",
|
|
684
|
+
"state": "experimental",
|
|
685
|
+
"introduced": "11.2.0",
|
|
686
|
+
"description": ""
|
|
687
|
+
},
|
|
688
|
+
"value": {
|
|
689
|
+
"duration": "Duration250",
|
|
690
|
+
"curve": "EaseBoldInOut",
|
|
691
|
+
"keyframes": ["ScaleIn95", "FadeIn"]
|
|
692
|
+
}
|
|
693
|
+
},
|
|
694
|
+
"name": "motion.spotlight.enter",
|
|
695
|
+
"path": ["motion", "spotlight", "enter"],
|
|
696
|
+
"cleanName": "motion.spotlight.enter"
|
|
697
|
+
}, {
|
|
698
|
+
"attributes": {
|
|
699
|
+
"group": "motion",
|
|
700
|
+
"state": "experimental",
|
|
701
|
+
"introduced": "11.2.0",
|
|
702
|
+
"description": ""
|
|
703
|
+
},
|
|
704
|
+
"value": {
|
|
705
|
+
"duration": 200,
|
|
706
|
+
"curve": "cubic-bezier(0.4, 1, 0.6, 1)",
|
|
707
|
+
"keyframes": ["ScaleOut95", "FadeOut"]
|
|
708
|
+
},
|
|
709
|
+
"filePath": "schema/themes/atlassian-motion/motion.tsx",
|
|
710
|
+
"isSource": true,
|
|
711
|
+
"original": {
|
|
712
|
+
"attributes": {
|
|
713
|
+
"group": "motion",
|
|
714
|
+
"state": "experimental",
|
|
715
|
+
"introduced": "11.2.0",
|
|
716
|
+
"description": ""
|
|
717
|
+
},
|
|
718
|
+
"value": {
|
|
719
|
+
"duration": "Duration200",
|
|
720
|
+
"curve": "EasePracticalOut",
|
|
721
|
+
"keyframes": ["ScaleOut95", "FadeOut"]
|
|
242
722
|
}
|
|
243
723
|
},
|
|
244
|
-
"name": "motion.
|
|
245
|
-
"path": ["motion", "
|
|
246
|
-
"cleanName": "motion.
|
|
724
|
+
"name": "motion.spotlight.exit",
|
|
725
|
+
"path": ["motion", "spotlight", "exit"],
|
|
726
|
+
"cleanName": "motion.spotlight.exit"
|
|
247
727
|
}];
|
|
248
728
|
export default tokens;
|