@telus-uds/theme-allium 1.0.0 → 2.1.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/CHANGELOG.md +49 -0
- package/README.md +1 -1
- package/build/schema.json +2101 -450
- package/build/theme.js +29 -7
- package/package.json +4 -4
- package/theme.json +32 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,55 @@
|
|
|
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
|
+
### [2.1.1](https://github.com/telus/universal-design-system/compare/@telus-uds/theme-allium/v2.1.0...@telus-uds/theme-allium/v2.1.1) (2022-03-21)
|
|
6
|
+
|
|
7
|
+
### Change summary (does not include documentation changes)
|
|
8
|
+
|
|
9
|
+
## [2.1.0](https://github.com/telus/universal-design-system/compare/@telus-uds/theme-allium/v2.0.0...@telus-uds/theme-allium/v2.1.0) (2022-03-03)
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
- **components-base:** add ToggleSwitchGroup ([#1307](https://github.com/telus/universal-design-system/issues/1307)) ([402630a](https://github.com/telus/universal-design-system/commit/402630ad04c2d81c4f882fed564cf4ae33096cea))
|
|
14
|
+
|
|
15
|
+
### Change summary (does not include documentation changes)
|
|
16
|
+
|
|
17
|
+
#### New keys
|
|
18
|
+
|
|
19
|
+
- `components.ToggleSwitch.rules.9.tokens.labelColor`
|
|
20
|
+
- `components.ToggleSwitch.tokens.labelColor`
|
|
21
|
+
- `components.ToggleSwitch.tokens.labelFontName`
|
|
22
|
+
- `components.ToggleSwitch.tokens.labelFontSize`
|
|
23
|
+
- `components.ToggleSwitch.tokens.labelFontWeight`
|
|
24
|
+
- `components.ToggleSwitch.tokens.labelLineHeight`
|
|
25
|
+
- `components.ToggleSwitch.tokens.labelMarginLeft`
|
|
26
|
+
- `components.ToggleSwitchGroup.appearances.viewport`
|
|
27
|
+
- `components.ToggleSwitchGroup.rules.0.if.viewport.0`
|
|
28
|
+
- `components.ToggleSwitchGroup.rules.0.if.viewport.1`
|
|
29
|
+
- `components.ToggleSwitchGroup.rules.0.tokens.space`
|
|
30
|
+
- `components.ToggleSwitchGroup.tokens.alignItems`
|
|
31
|
+
- `components.ToggleSwitchGroup.tokens.direction`
|
|
32
|
+
- `components.ToggleSwitchGroup.tokens.flexGrow`
|
|
33
|
+
- `components.ToggleSwitchGroup.tokens.flexShrink`
|
|
34
|
+
- `components.ToggleSwitchGroup.tokens.justifyContent`
|
|
35
|
+
- `components.ToggleSwitchGroup.tokens.space`
|
|
36
|
+
|
|
37
|
+
## [2.0.0](https://github.com/telus/universal-design-system/compare/@telus-uds/theme-allium/v1.0.0...@telus-uds/theme-allium/v2.0.0) (2022-02-28)
|
|
38
|
+
|
|
39
|
+
### Features
|
|
40
|
+
|
|
41
|
+
- **component-base:** add some fixes to the list component ([#1226](https://github.com/telus/universal-design-system/issues/1226)) ([35a42e0](https://github.com/telus/universal-design-system/commit/35a42e05e23630696286e7c8607e7a1e8da9d6c2))
|
|
42
|
+
- **tools:** autogenerate theme metadata on build ([#1280](https://github.com/telus/universal-design-system/issues/1280)) ([ae88b91](https://github.com/telus/universal-design-system/commit/ae88b910134d362f62b5ed74b983da3a6190a097))
|
|
43
|
+
|
|
44
|
+
### Change summary (does not include documentation changes)
|
|
45
|
+
|
|
46
|
+
#### New keys
|
|
47
|
+
|
|
48
|
+
- `components.List.tokens.iconMarginTop`
|
|
49
|
+
|
|
50
|
+
#### Updated keys
|
|
51
|
+
|
|
52
|
+
- `components.List.tokens.listGutter`
|
|
53
|
+
|
|
5
54
|
## [1.0.0](https://github.com/telus/universal-design-system/compare/@telus-uds/theme-allium/v1.0.0-prerelease.0...@telus-uds/theme-allium/v1.0.0) (2022-02-03)
|
|
6
55
|
|
|
7
56
|
### Features
|
package/README.md
CHANGED