@telus-uds/theme-allium 0.1.0-prerelease.0 → 1.0.0-prerelease.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 +52 -0
- package/README.md +3 -9
- package/build/schema.json +9959 -0
- package/build/theme.js +68 -52
- package/package.json +6 -5
- package/theme.json +61 -44
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,58 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [1.0.0-prerelease.0](https://github.com/telus/universal-design-system/compare/@telus-uds/theme-allium/v0.1.0-prerelease.0...@telus-uds/theme-allium/v1.0.0-prerelease.0) (2022-01-20)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- **base:** validate theme token version ([#1067](https://github.com/telus/universal-design-system/issues/1067)) ([b853f78](https://github.com/telus/universal-design-system/commit/b853f7883543264ebd649f323f10bf714dbdea08))
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
- **base:** fix issues found doing Link/Button docs ([#1084](https://github.com/telus/universal-design-system/issues/1084)) ([0047323](https://github.com/telus/universal-design-system/commit/0047323af561e93359f117a5641cf1ed94993411))
|
|
14
|
+
|
|
15
|
+
### Change summary (does not include documentation changes)
|
|
16
|
+
|
|
17
|
+
#### New keys
|
|
18
|
+
|
|
19
|
+
- `components.ButtonGroup.tokens.flexShrink`
|
|
20
|
+
- `components.ChevronLink.appearances.size.values.0`
|
|
21
|
+
- `components.ChevronLink.appearances.size.values.1`
|
|
22
|
+
- `components.ChevronLink.appearances.size.values.2`
|
|
23
|
+
- `components.ChevronLink.appearances.size.type`
|
|
24
|
+
- `components.ChevronLink.tokens.iconSize`
|
|
25
|
+
- `components.ChevronLink.rules.1.if.size`
|
|
26
|
+
- `components.ChevronLink.rules.1.tokens.iconSize`
|
|
27
|
+
- `components.HorizontalScrollButton.appearances.hover`
|
|
28
|
+
- `components.HorizontalScrollButton.appearances.focus`
|
|
29
|
+
- `components.HorizontalScrollButton.appearances.pressed`
|
|
30
|
+
- `components.HorizontalScrollButton.tokens.borderRadius`
|
|
31
|
+
- `components.HorizontalScrollButton.tokens.backgroundColor`
|
|
32
|
+
- `components.HorizontalScrollButton.tokens.borderColor`
|
|
33
|
+
- `components.HorizontalScrollButton.tokens.borderWidth`
|
|
34
|
+
- `components.HorizontalScrollButton.tokens.padding`
|
|
35
|
+
- `components.HorizontalScrollButton.tokens.shadow`
|
|
36
|
+
- `components.HorizontalScrollButton.tokens.iconSize`
|
|
37
|
+
- `components.HorizontalScrollButton.tokens.iconColor`
|
|
38
|
+
- `components.HorizontalScrollButton.rules.0.if.hover`
|
|
39
|
+
- `components.HorizontalScrollButton.rules.0.tokens.borderColor`
|
|
40
|
+
- `components.HorizontalScrollButton.rules.0.tokens.iconColor`
|
|
41
|
+
- `components.HorizontalScrollButton.rules.1.if.pressed`
|
|
42
|
+
- `components.HorizontalScrollButton.rules.1.tokens.backgroundColor`
|
|
43
|
+
- `components.HorizontalScrollButton.rules.1.tokens.iconColor`
|
|
44
|
+
- `components.StackView.tokens.flexShrink`
|
|
45
|
+
- `components.Tags.tokens.flexShrink`
|
|
46
|
+
|
|
47
|
+
#### Deleted keys
|
|
48
|
+
|
|
49
|
+
- `components.TabsScrollButton`
|
|
50
|
+
|
|
51
|
+
#### Updated keys
|
|
52
|
+
|
|
53
|
+
- `components.ChevronLink.tokens.iconSpace`
|
|
54
|
+
- `components.ExpandCollapse.tokens.borderWidth`
|
|
55
|
+
- `components.RadioCard.tokens.minWidth`
|
|
56
|
+
|
|
5
57
|
## [0.1.0-prerelease.0](https://github.com/telus/universal-design-system/compare/@telus-uds/theme-allium/v0.0.2-prerelease.6...@telus-uds/theme-allium/v0.1.0-prerelease.0) (2021-12-29)
|
|
6
58
|
|
|
7
59
|
### Features
|
package/README.md
CHANGED
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Allium theme
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Allium design system theme.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
```
|
|
8
|
-
const alliumTheme = require('allium-theme');
|
|
9
|
-
|
|
10
|
-
// TODO: DEMONSTRATE API
|
|
11
|
-
```
|
|
5
|
+
Refer to the [UDS monorepo README](../../README.md) for details.
|