@atlaskit/tokens 11.4.2 → 12.0.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 +66 -0
- package/dist/cjs/artifacts/palettes-raw/motion-palette.js +123 -305
- package/dist/cjs/artifacts/replacement-mapping.js +82 -7
- package/dist/cjs/artifacts/themes/atlassian-motion.js +2 -2
- package/dist/cjs/artifacts/token-default-values.js +50 -25
- package/dist/cjs/artifacts/token-names.js +32 -7
- package/dist/cjs/artifacts/tokens-raw/atlassian-motion.js +653 -135
- package/dist/es2019/artifacts/palettes-raw/motion-palette.js +123 -305
- package/dist/es2019/artifacts/replacement-mapping.js +82 -7
- package/dist/es2019/artifacts/themes/atlassian-motion.js +64 -91
- package/dist/es2019/artifacts/token-default-values.js +50 -25
- package/dist/es2019/artifacts/token-names.js +32 -7
- package/dist/es2019/artifacts/tokens-raw/atlassian-motion.js +653 -135
- package/dist/esm/artifacts/palettes-raw/motion-palette.js +123 -305
- package/dist/esm/artifacts/replacement-mapping.js +82 -7
- package/dist/esm/artifacts/themes/atlassian-motion.js +2 -2
- package/dist/esm/artifacts/token-default-values.js +50 -25
- package/dist/esm/artifacts/token-names.js +32 -7
- package/dist/esm/artifacts/tokens-raw/atlassian-motion.js +653 -135
- package/dist/types/artifacts/palettes-raw/motion-palette.d.ts +3 -15
- 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 +50 -25
- package/dist/types/artifacts/token-names.d.ts +63 -13
- package/dist/types/artifacts/tokens-raw/atlassian-motion.d.ts +5 -5
- package/dist/types/entry-points/css-type-schema.codegen.d.ts +5 -2
- package/dist/types/types.d.ts +93 -14
- package/dist/types-ts4.5/artifacts/palettes-raw/motion-palette.d.ts +3 -15
- 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 +50 -25
- package/dist/types-ts4.5/artifacts/token-names.d.ts +63 -13
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-motion.d.ts +5 -5
- package/dist/types-ts4.5/entry-points/css-type-schema.codegen.d.ts +5 -2
- package/dist/types-ts4.5/types.d.ts +93 -14
- package/package.json +18 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,71 @@
|
|
|
1
1
|
# @atlaskit/tokens
|
|
2
2
|
|
|
3
|
+
## 12.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`de60749da093b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/de60749da093b) -
|
|
8
|
+
This releases introduces a new set of experimental semantic base tokens for Motion.
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- `motion.duration.instant`
|
|
12
|
+
- `motion.duration.xxshort`
|
|
13
|
+
- `motion.duration.xshort`
|
|
14
|
+
- `motion.duration.short`
|
|
15
|
+
- `motion.duration.medium`
|
|
16
|
+
- `motion.duration.long`
|
|
17
|
+
- `motion.duration.xlong`
|
|
18
|
+
- `motion.duration.xxlong`
|
|
19
|
+
|
|
20
|
+
- `motion.easing.in.practical`
|
|
21
|
+
- `motion.easing.inout.bold`
|
|
22
|
+
- `motion.easing.out.practical`
|
|
23
|
+
- `motion.easing.out.bold`
|
|
24
|
+
- `motion.easing.spring`
|
|
25
|
+
|
|
26
|
+
- `motion.keyframe.fade.in`
|
|
27
|
+
- `motion.keyframe.fade.out`
|
|
28
|
+
- `motion.keyframe.scale.in.medium`
|
|
29
|
+
- `motion.keyframe.scale.in.small`
|
|
30
|
+
- `motion.keyframe.scale.out.medium`
|
|
31
|
+
- `motion.keyframe.scale.out.small`
|
|
32
|
+
- `motion.keyframe.slide.in.bottom.short`
|
|
33
|
+
- `motion.keyframe.slide.in.left.half`
|
|
34
|
+
- `motion.keyframe.slide.in.left.short`
|
|
35
|
+
- `motion.keyframe.slide.in.right.short`
|
|
36
|
+
- `motion.keyframe.slide.in.top.short`
|
|
37
|
+
- `motion.keyframe.slide.out.bottom.short`
|
|
38
|
+
- `motion.keyframe.slide.out.left.half`
|
|
39
|
+
- `motion.keyframe.slide.out.left.short`
|
|
40
|
+
- `motion.keyframe.slide.out.right.short`
|
|
41
|
+
- `motion.keyframe.slide.out.top.short`
|
|
42
|
+
|
|
43
|
+
Added and removed experimental semantic tokens for Motion.
|
|
44
|
+
|
|
45
|
+
### Added
|
|
46
|
+
- `motion.blanket.enter`
|
|
47
|
+
- `motion.blanket.exit`
|
|
48
|
+
|
|
49
|
+
### Removed
|
|
50
|
+
- `motion.content.enter.short`
|
|
51
|
+
- `motion.content.enter.medium`
|
|
52
|
+
- `motion.content.enter.long`
|
|
53
|
+
- `motion.content.exit.short`
|
|
54
|
+
- `motion.content.exit.medium`
|
|
55
|
+
- `motion.content.exit.long`
|
|
56
|
+
|
|
57
|
+
### Patch Changes
|
|
58
|
+
|
|
59
|
+
- Updated dependencies
|
|
60
|
+
|
|
61
|
+
## 11.4.3
|
|
62
|
+
|
|
63
|
+
### Patch Changes
|
|
64
|
+
|
|
65
|
+
- [`02483200273ec`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/02483200273ec) -
|
|
66
|
+
Enrol all Design System UI packages into the React Compiler with platform gating via
|
|
67
|
+
isReactCompilerActivePlatform.
|
|
68
|
+
|
|
3
69
|
## 11.4.2
|
|
4
70
|
|
|
5
71
|
### Patch Changes
|