@telus-uds/system-theme-tokens 4.14.0 → 4.15.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 +4 -4
- package/LICENSE +21 -0
- package/build/cjs/components.js +10 -6
- package/build/esm/components.js +10 -6
- package/package.json +1 -1
- package/src/components.js +10 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
# Change Log - @telus-uds/system-theme-tokens
|
|
2
2
|
|
|
3
|
-
This log was last generated on Fri,
|
|
3
|
+
This log was last generated on Fri, 03 Oct 2025 20:34:05 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 4.
|
|
7
|
+
## 4.15.0
|
|
8
8
|
|
|
9
|
-
Fri,
|
|
9
|
+
Fri, 03 Oct 2025 20:34:05 GMT
|
|
10
10
|
|
|
11
11
|
### Minor changes
|
|
12
12
|
|
|
13
|
-
- `
|
|
13
|
+
- `StepTracker`: add tokens for style bar variant (guillermo.peitzner@telus.com)
|
|
14
14
|
|
|
15
15
|
## 4.12.0
|
|
16
16
|
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 TELUS
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/build/cjs/components.js
CHANGED
|
@@ -1776,12 +1776,16 @@ var _default = exports.default = {
|
|
|
1776
1776
|
width: 'size'
|
|
1777
1777
|
},
|
|
1778
1778
|
StepTracker: {
|
|
1779
|
+
barBackgroundColor: 'color',
|
|
1780
|
+
barCompletedBackgroundColor: 'color',
|
|
1781
|
+
barCurrentBackgroundColor: 'color',
|
|
1782
|
+
barGap: 'size',
|
|
1783
|
+
barHeight: 'size',
|
|
1779
1784
|
completedIcon: 'icon',
|
|
1780
1785
|
completedIconColor: 'color',
|
|
1781
1786
|
completedIconSize: 'size',
|
|
1782
1787
|
connectorColor: 'color',
|
|
1783
1788
|
connectorCompletedColor: 'color',
|
|
1784
|
-
// TODO: should these be border or size???
|
|
1785
1789
|
connectorCompletedHeight: 'border',
|
|
1786
1790
|
connectorHeight: 'border',
|
|
1787
1791
|
connectorMinWidth: 'size',
|
|
@@ -1806,12 +1810,12 @@ var _default = exports.default = {
|
|
|
1806
1810
|
knobSize: 'size',
|
|
1807
1811
|
labelColor: 'color',
|
|
1808
1812
|
labelCurrentColor: 'color',
|
|
1809
|
-
labelCurrentFontWeight: 'fontWeight',
|
|
1810
1813
|
labelCurrentFontName: 'fontName',
|
|
1814
|
+
labelCurrentFontWeight: 'fontWeight',
|
|
1811
1815
|
labelDirection: 'direction',
|
|
1816
|
+
labelFontName: 'fontName',
|
|
1812
1817
|
labelFontSize: 'fontSize',
|
|
1813
1818
|
labelFontWeight: 'fontWeight',
|
|
1814
|
-
labelFontName: 'fontName',
|
|
1815
1819
|
labelGap: 'size',
|
|
1816
1820
|
labelLineHeight: 'lineHeight',
|
|
1817
1821
|
labelMarginTop: 'size',
|
|
@@ -1820,12 +1824,12 @@ var _default = exports.default = {
|
|
|
1820
1824
|
showStepLabel: 'show',
|
|
1821
1825
|
showStepName: 'show',
|
|
1822
1826
|
showStepTrackerLabel: 'show',
|
|
1823
|
-
textStepTrackerLabel: 'integer',
|
|
1824
1827
|
stepLabelColor: 'color',
|
|
1828
|
+
stepLabelFontName: 'fontName',
|
|
1825
1829
|
stepLabelFontSize: 'fontSize',
|
|
1826
1830
|
stepLabelFontWeight: 'fontWeight',
|
|
1827
|
-
|
|
1828
|
-
|
|
1831
|
+
stepLabelLineHeight: 'lineHeight',
|
|
1832
|
+
textStepTrackerLabel: 'integer'
|
|
1829
1833
|
},
|
|
1830
1834
|
SkipLink: {
|
|
1831
1835
|
backgroundColor: 'color',
|
package/build/esm/components.js
CHANGED
|
@@ -1770,12 +1770,16 @@ export default {
|
|
|
1770
1770
|
width: 'size'
|
|
1771
1771
|
},
|
|
1772
1772
|
StepTracker: {
|
|
1773
|
+
barBackgroundColor: 'color',
|
|
1774
|
+
barCompletedBackgroundColor: 'color',
|
|
1775
|
+
barCurrentBackgroundColor: 'color',
|
|
1776
|
+
barGap: 'size',
|
|
1777
|
+
barHeight: 'size',
|
|
1773
1778
|
completedIcon: 'icon',
|
|
1774
1779
|
completedIconColor: 'color',
|
|
1775
1780
|
completedIconSize: 'size',
|
|
1776
1781
|
connectorColor: 'color',
|
|
1777
1782
|
connectorCompletedColor: 'color',
|
|
1778
|
-
// TODO: should these be border or size???
|
|
1779
1783
|
connectorCompletedHeight: 'border',
|
|
1780
1784
|
connectorHeight: 'border',
|
|
1781
1785
|
connectorMinWidth: 'size',
|
|
@@ -1800,12 +1804,12 @@ export default {
|
|
|
1800
1804
|
knobSize: 'size',
|
|
1801
1805
|
labelColor: 'color',
|
|
1802
1806
|
labelCurrentColor: 'color',
|
|
1803
|
-
labelCurrentFontWeight: 'fontWeight',
|
|
1804
1807
|
labelCurrentFontName: 'fontName',
|
|
1808
|
+
labelCurrentFontWeight: 'fontWeight',
|
|
1805
1809
|
labelDirection: 'direction',
|
|
1810
|
+
labelFontName: 'fontName',
|
|
1806
1811
|
labelFontSize: 'fontSize',
|
|
1807
1812
|
labelFontWeight: 'fontWeight',
|
|
1808
|
-
labelFontName: 'fontName',
|
|
1809
1813
|
labelGap: 'size',
|
|
1810
1814
|
labelLineHeight: 'lineHeight',
|
|
1811
1815
|
labelMarginTop: 'size',
|
|
@@ -1814,12 +1818,12 @@ export default {
|
|
|
1814
1818
|
showStepLabel: 'show',
|
|
1815
1819
|
showStepName: 'show',
|
|
1816
1820
|
showStepTrackerLabel: 'show',
|
|
1817
|
-
textStepTrackerLabel: 'integer',
|
|
1818
1821
|
stepLabelColor: 'color',
|
|
1822
|
+
stepLabelFontName: 'fontName',
|
|
1819
1823
|
stepLabelFontSize: 'fontSize',
|
|
1820
1824
|
stepLabelFontWeight: 'fontWeight',
|
|
1821
|
-
|
|
1822
|
-
|
|
1825
|
+
stepLabelLineHeight: 'lineHeight',
|
|
1826
|
+
textStepTrackerLabel: 'integer'
|
|
1823
1827
|
},
|
|
1824
1828
|
SkipLink: {
|
|
1825
1829
|
backgroundColor: 'color',
|
package/package.json
CHANGED
package/src/components.js
CHANGED
|
@@ -1780,12 +1780,16 @@ export default {
|
|
|
1780
1780
|
width: 'size'
|
|
1781
1781
|
},
|
|
1782
1782
|
StepTracker: {
|
|
1783
|
+
barBackgroundColor: 'color',
|
|
1784
|
+
barCompletedBackgroundColor: 'color',
|
|
1785
|
+
barCurrentBackgroundColor: 'color',
|
|
1786
|
+
barGap: 'size',
|
|
1787
|
+
barHeight: 'size',
|
|
1783
1788
|
completedIcon: 'icon',
|
|
1784
1789
|
completedIconColor: 'color',
|
|
1785
1790
|
completedIconSize: 'size',
|
|
1786
1791
|
connectorColor: 'color',
|
|
1787
1792
|
connectorCompletedColor: 'color',
|
|
1788
|
-
// TODO: should these be border or size???
|
|
1789
1793
|
connectorCompletedHeight: 'border',
|
|
1790
1794
|
connectorHeight: 'border',
|
|
1791
1795
|
connectorMinWidth: 'size',
|
|
@@ -1810,12 +1814,12 @@ export default {
|
|
|
1810
1814
|
knobSize: 'size',
|
|
1811
1815
|
labelColor: 'color',
|
|
1812
1816
|
labelCurrentColor: 'color',
|
|
1813
|
-
labelCurrentFontWeight: 'fontWeight',
|
|
1814
1817
|
labelCurrentFontName: 'fontName',
|
|
1818
|
+
labelCurrentFontWeight: 'fontWeight',
|
|
1815
1819
|
labelDirection: 'direction',
|
|
1820
|
+
labelFontName: 'fontName',
|
|
1816
1821
|
labelFontSize: 'fontSize',
|
|
1817
1822
|
labelFontWeight: 'fontWeight',
|
|
1818
|
-
labelFontName: 'fontName',
|
|
1819
1823
|
labelGap: 'size',
|
|
1820
1824
|
labelLineHeight: 'lineHeight',
|
|
1821
1825
|
labelMarginTop: 'size',
|
|
@@ -1824,12 +1828,12 @@ export default {
|
|
|
1824
1828
|
showStepLabel: 'show',
|
|
1825
1829
|
showStepName: 'show',
|
|
1826
1830
|
showStepTrackerLabel: 'show',
|
|
1827
|
-
textStepTrackerLabel: 'integer',
|
|
1828
1831
|
stepLabelColor: 'color',
|
|
1832
|
+
stepLabelFontName: 'fontName',
|
|
1829
1833
|
stepLabelFontSize: 'fontSize',
|
|
1830
1834
|
stepLabelFontWeight: 'fontWeight',
|
|
1831
|
-
|
|
1832
|
-
|
|
1835
|
+
stepLabelLineHeight: 'lineHeight',
|
|
1836
|
+
textStepTrackerLabel: 'integer'
|
|
1833
1837
|
},
|
|
1834
1838
|
SkipLink: {
|
|
1835
1839
|
backgroundColor: 'color',
|