@telus-uds/components-web 2.35.0 → 2.35.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 +13 -2
- package/lib/Breadcrumbs/Item/Item.js +16 -23
- package/lib/OrderedList/Item.js +2 -2
- package/lib-module/Breadcrumbs/Item/Item.js +16 -23
- package/lib-module/OrderedList/Item.js +2 -2
- package/package.json +3 -3
- package/src/Breadcrumbs/Item/Item.jsx +4 -6
- package/src/OrderedList/Item.jsx +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,23 @@
|
|
|
1
1
|
# Change Log - @telus-uds/components-web
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Thu, 04 Jul 2024 19:28:59 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.35.1
|
|
8
|
+
|
|
9
|
+
Thu, 04 Jul 2024 19:28:59 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- `Breadcrumbs`: fix line break (guillermo.peitzner@telus.com)
|
|
14
|
+
- `OrderedList`: fix numbered text alignment (guillermo.peitzner@telus.com)
|
|
15
|
+
- Bump @telus-uds/components-base to v1.88.0
|
|
16
|
+
- Bump @telus-uds/system-theme-tokens to v2.59.0
|
|
17
|
+
|
|
7
18
|
## 2.35.0
|
|
8
19
|
|
|
9
|
-
Mon, 24 Jun 2024 16:
|
|
20
|
+
Mon, 24 Jun 2024 16:28:34 GMT
|
|
10
21
|
|
|
11
22
|
### Minor changes
|
|
12
23
|
|
|
@@ -16,7 +16,7 @@ const StyledItemContainer = /*#__PURE__*/_styledComponents.default.li.withConfig
|
|
|
16
16
|
displayName: "Item__StyledItemContainer",
|
|
17
17
|
componentId: "components-web__sc-1rfdaul-0"
|
|
18
18
|
})({
|
|
19
|
-
display: '
|
|
19
|
+
display: 'inline-block',
|
|
20
20
|
paddingLeft: _ref => {
|
|
21
21
|
let {
|
|
22
22
|
listItemPadding
|
|
@@ -30,58 +30,51 @@ const StyledItemContainer = /*#__PURE__*/_styledComponents.default.li.withConfig
|
|
|
30
30
|
} = _ref2;
|
|
31
31
|
return `${Math.ceil(lineHeight * fontSize)}px`;
|
|
32
32
|
},
|
|
33
|
-
height: _ref3 => {
|
|
34
|
-
let {
|
|
35
|
-
iconContainerSize
|
|
36
|
-
} = _ref3;
|
|
37
|
-
return `${iconContainerSize}px`;
|
|
38
|
-
},
|
|
39
33
|
marginBottom: '8px'
|
|
40
34
|
});
|
|
41
35
|
const IconContainer = /*#__PURE__*/_styledComponents.default.span.withConfig({
|
|
42
36
|
displayName: "Item__IconContainer",
|
|
43
37
|
componentId: "components-web__sc-1rfdaul-1"
|
|
44
38
|
})({
|
|
45
|
-
display: '
|
|
46
|
-
|
|
47
|
-
alignItems: 'center',
|
|
48
|
-
paddingLeft: _ref4 => {
|
|
39
|
+
display: 'inline-block',
|
|
40
|
+
paddingLeft: _ref3 => {
|
|
49
41
|
let {
|
|
50
42
|
iconPadding
|
|
51
|
-
} =
|
|
43
|
+
} = _ref3;
|
|
52
44
|
return `${iconPadding}px`;
|
|
53
45
|
},
|
|
54
|
-
paddingRight:
|
|
46
|
+
paddingRight: _ref4 => {
|
|
55
47
|
let {
|
|
56
48
|
iconPadding
|
|
57
|
-
} =
|
|
49
|
+
} = _ref4;
|
|
58
50
|
return `${iconPadding}px`;
|
|
59
51
|
},
|
|
60
|
-
fontFamily:
|
|
52
|
+
fontFamily: _ref5 => {
|
|
61
53
|
let {
|
|
62
54
|
fontName,
|
|
63
55
|
fontWeight
|
|
64
|
-
} =
|
|
56
|
+
} = _ref5;
|
|
65
57
|
return (0, _componentsBase.applyTextStyles)({
|
|
66
58
|
fontName,
|
|
67
59
|
fontWeight
|
|
68
60
|
}).fontFamily;
|
|
69
61
|
},
|
|
70
|
-
height:
|
|
62
|
+
height: _ref6 => {
|
|
71
63
|
let {
|
|
72
64
|
iconContainerSize
|
|
73
|
-
} =
|
|
65
|
+
} = _ref6;
|
|
74
66
|
return `${iconContainerSize}px`;
|
|
75
67
|
},
|
|
76
|
-
width:
|
|
68
|
+
width: _ref7 => {
|
|
77
69
|
let {
|
|
78
70
|
iconContainerSize,
|
|
79
71
|
iconPadding
|
|
80
|
-
} =
|
|
72
|
+
} = _ref7;
|
|
81
73
|
return `${iconContainerSize + iconPadding * 2}px`;
|
|
82
|
-
}
|
|
74
|
+
},
|
|
75
|
+
verticalAlign: 'bottom'
|
|
83
76
|
});
|
|
84
|
-
const Item = /*#__PURE__*/_react.default.forwardRef((
|
|
77
|
+
const Item = /*#__PURE__*/_react.default.forwardRef((_ref8, ref) => {
|
|
85
78
|
let {
|
|
86
79
|
href,
|
|
87
80
|
children,
|
|
@@ -94,7 +87,7 @@ const Item = /*#__PURE__*/_react.default.forwardRef((_ref9, ref) => {
|
|
|
94
87
|
LinkRouter,
|
|
95
88
|
linkRouterProps,
|
|
96
89
|
...rest
|
|
97
|
-
} =
|
|
90
|
+
} = _ref8;
|
|
98
91
|
const {
|
|
99
92
|
iconColor,
|
|
100
93
|
icon: ChevronRightIcon,
|
package/lib/OrderedList/Item.js
CHANGED
|
@@ -38,7 +38,7 @@ const StyledItemBase = /*#__PURE__*/(0, _styledComponents.default)(_ItemBase.def
|
|
|
38
38
|
let {
|
|
39
39
|
interItemMargin,
|
|
40
40
|
itemBulletContainerWidth,
|
|
41
|
-
|
|
41
|
+
itemBulletTextAlign,
|
|
42
42
|
itemFontWeight,
|
|
43
43
|
itemFontSize,
|
|
44
44
|
itemFontName,
|
|
@@ -55,7 +55,7 @@ const StyledItemBase = /*#__PURE__*/(0, _styledComponents.default)(_ItemBase.def
|
|
|
55
55
|
color: itemColor,
|
|
56
56
|
width: itemBulletContainerWidth,
|
|
57
57
|
paddingRight: listGutter,
|
|
58
|
-
|
|
58
|
+
justifyContent: itemBulletTextAlign,
|
|
59
59
|
...(0, _componentsBase.applyTextStyles)({
|
|
60
60
|
fontWeight: itemFontWeight,
|
|
61
61
|
fontSize: itemFontSize,
|
|
@@ -11,7 +11,7 @@ const StyledItemContainer = /*#__PURE__*/styled.li.withConfig({
|
|
|
11
11
|
displayName: "Item__StyledItemContainer",
|
|
12
12
|
componentId: "components-web__sc-1rfdaul-0"
|
|
13
13
|
})({
|
|
14
|
-
display: '
|
|
14
|
+
display: 'inline-block',
|
|
15
15
|
paddingLeft: _ref => {
|
|
16
16
|
let {
|
|
17
17
|
listItemPadding
|
|
@@ -25,58 +25,51 @@ const StyledItemContainer = /*#__PURE__*/styled.li.withConfig({
|
|
|
25
25
|
} = _ref2;
|
|
26
26
|
return `${Math.ceil(lineHeight * fontSize)}px`;
|
|
27
27
|
},
|
|
28
|
-
height: _ref3 => {
|
|
29
|
-
let {
|
|
30
|
-
iconContainerSize
|
|
31
|
-
} = _ref3;
|
|
32
|
-
return `${iconContainerSize}px`;
|
|
33
|
-
},
|
|
34
28
|
marginBottom: '8px'
|
|
35
29
|
});
|
|
36
30
|
const IconContainer = /*#__PURE__*/styled.span.withConfig({
|
|
37
31
|
displayName: "Item__IconContainer",
|
|
38
32
|
componentId: "components-web__sc-1rfdaul-1"
|
|
39
33
|
})({
|
|
40
|
-
display: '
|
|
41
|
-
|
|
42
|
-
alignItems: 'center',
|
|
43
|
-
paddingLeft: _ref4 => {
|
|
34
|
+
display: 'inline-block',
|
|
35
|
+
paddingLeft: _ref3 => {
|
|
44
36
|
let {
|
|
45
37
|
iconPadding
|
|
46
|
-
} =
|
|
38
|
+
} = _ref3;
|
|
47
39
|
return `${iconPadding}px`;
|
|
48
40
|
},
|
|
49
|
-
paddingRight:
|
|
41
|
+
paddingRight: _ref4 => {
|
|
50
42
|
let {
|
|
51
43
|
iconPadding
|
|
52
|
-
} =
|
|
44
|
+
} = _ref4;
|
|
53
45
|
return `${iconPadding}px`;
|
|
54
46
|
},
|
|
55
|
-
fontFamily:
|
|
47
|
+
fontFamily: _ref5 => {
|
|
56
48
|
let {
|
|
57
49
|
fontName,
|
|
58
50
|
fontWeight
|
|
59
|
-
} =
|
|
51
|
+
} = _ref5;
|
|
60
52
|
return applyTextStyles({
|
|
61
53
|
fontName,
|
|
62
54
|
fontWeight
|
|
63
55
|
}).fontFamily;
|
|
64
56
|
},
|
|
65
|
-
height:
|
|
57
|
+
height: _ref6 => {
|
|
66
58
|
let {
|
|
67
59
|
iconContainerSize
|
|
68
|
-
} =
|
|
60
|
+
} = _ref6;
|
|
69
61
|
return `${iconContainerSize}px`;
|
|
70
62
|
},
|
|
71
|
-
width:
|
|
63
|
+
width: _ref7 => {
|
|
72
64
|
let {
|
|
73
65
|
iconContainerSize,
|
|
74
66
|
iconPadding
|
|
75
|
-
} =
|
|
67
|
+
} = _ref7;
|
|
76
68
|
return `${iconContainerSize + iconPadding * 2}px`;
|
|
77
|
-
}
|
|
69
|
+
},
|
|
70
|
+
verticalAlign: 'bottom'
|
|
78
71
|
});
|
|
79
|
-
const Item = /*#__PURE__*/React.forwardRef((
|
|
72
|
+
const Item = /*#__PURE__*/React.forwardRef((_ref8, ref) => {
|
|
80
73
|
let {
|
|
81
74
|
href,
|
|
82
75
|
children,
|
|
@@ -89,7 +82,7 @@ const Item = /*#__PURE__*/React.forwardRef((_ref9, ref) => {
|
|
|
89
82
|
LinkRouter,
|
|
90
83
|
linkRouterProps,
|
|
91
84
|
...rest
|
|
92
|
-
} =
|
|
85
|
+
} = _ref8;
|
|
93
86
|
const {
|
|
94
87
|
iconColor,
|
|
95
88
|
icon: ChevronRightIcon,
|
|
@@ -32,7 +32,7 @@ const StyledItemBase = /*#__PURE__*/styled(ItemBase).withConfig({
|
|
|
32
32
|
let {
|
|
33
33
|
interItemMargin,
|
|
34
34
|
itemBulletContainerWidth,
|
|
35
|
-
|
|
35
|
+
itemBulletTextAlign,
|
|
36
36
|
itemFontWeight,
|
|
37
37
|
itemFontSize,
|
|
38
38
|
itemFontName,
|
|
@@ -49,7 +49,7 @@ const StyledItemBase = /*#__PURE__*/styled(ItemBase).withConfig({
|
|
|
49
49
|
color: itemColor,
|
|
50
50
|
width: itemBulletContainerWidth,
|
|
51
51
|
paddingRight: listGutter,
|
|
52
|
-
|
|
52
|
+
justifyContent: itemBulletTextAlign,
|
|
53
53
|
...applyTextStyles({
|
|
54
54
|
fontWeight: itemFontWeight,
|
|
55
55
|
fontSize: itemFontSize,
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
],
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@gorhom/portal": "^1.0.14",
|
|
8
|
-
"@telus-uds/components-base": "1.
|
|
8
|
+
"@telus-uds/components-base": "1.88.0",
|
|
9
9
|
"@telus-uds/system-constants": "^1.3.0",
|
|
10
10
|
"fscreen": "^1.2.0",
|
|
11
11
|
"lodash.omit": "^4.5.0",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"react-dates": "^21.8.0",
|
|
14
14
|
"react-helmet-async": "^1.3.0",
|
|
15
15
|
"react-moment-proptypes": "^1.8.1",
|
|
16
|
-
"@telus-uds/system-theme-tokens": "^2.
|
|
16
|
+
"@telus-uds/system-theme-tokens": "^2.59.0",
|
|
17
17
|
"prop-types": "^15.7.2",
|
|
18
18
|
"lodash.throttle": "^4.1.1",
|
|
19
19
|
"react-youtube": "^10.1.0",
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
"skip": true
|
|
84
84
|
},
|
|
85
85
|
"types": "types/index.d.ts",
|
|
86
|
-
"version": "2.35.
|
|
86
|
+
"version": "2.35.1"
|
|
87
87
|
}
|
|
@@ -14,22 +14,20 @@ import { htmlAttrs } from '../../utils'
|
|
|
14
14
|
const [selectProps, selectedSystemPropTypes] = selectSystemProps([htmlAttrs])
|
|
15
15
|
|
|
16
16
|
const StyledItemContainer = styled.li({
|
|
17
|
-
display: '
|
|
17
|
+
display: 'inline-block',
|
|
18
18
|
paddingLeft: ({ listItemPadding }) => `${listItemPadding}px`,
|
|
19
19
|
lineHeight: ({ lineHeight, fontSize }) => `${Math.ceil(lineHeight * fontSize)}px`,
|
|
20
|
-
height: ({ iconContainerSize }) => `${iconContainerSize}px`,
|
|
21
20
|
marginBottom: '8px'
|
|
22
21
|
})
|
|
23
22
|
|
|
24
23
|
const IconContainer = styled.span({
|
|
25
|
-
display: '
|
|
26
|
-
justifyContent: 'center',
|
|
27
|
-
alignItems: 'center',
|
|
24
|
+
display: 'inline-block',
|
|
28
25
|
paddingLeft: ({ iconPadding }) => `${iconPadding}px`,
|
|
29
26
|
paddingRight: ({ iconPadding }) => `${iconPadding}px`,
|
|
30
27
|
fontFamily: ({ fontName, fontWeight }) => applyTextStyles({ fontName, fontWeight }).fontFamily,
|
|
31
28
|
height: ({ iconContainerSize }) => `${iconContainerSize}px`,
|
|
32
|
-
width: ({ iconContainerSize, iconPadding }) => `${iconContainerSize + iconPadding * 2}px
|
|
29
|
+
width: ({ iconContainerSize, iconPadding }) => `${iconContainerSize + iconPadding * 2}px`,
|
|
30
|
+
verticalAlign: 'bottom'
|
|
33
31
|
})
|
|
34
32
|
|
|
35
33
|
const Item = React.forwardRef(
|
package/src/OrderedList/Item.jsx
CHANGED
|
@@ -34,7 +34,7 @@ const StyledItemBase = styled(ItemBase)(
|
|
|
34
34
|
({
|
|
35
35
|
interItemMargin,
|
|
36
36
|
itemBulletContainerWidth,
|
|
37
|
-
|
|
37
|
+
itemBulletTextAlign,
|
|
38
38
|
itemFontWeight,
|
|
39
39
|
itemFontSize,
|
|
40
40
|
itemFontName,
|
|
@@ -50,7 +50,7 @@ const StyledItemBase = styled(ItemBase)(
|
|
|
50
50
|
color: itemColor,
|
|
51
51
|
width: itemBulletContainerWidth,
|
|
52
52
|
paddingRight: listGutter,
|
|
53
|
-
|
|
53
|
+
justifyContent: itemBulletTextAlign,
|
|
54
54
|
...applyTextStyles({
|
|
55
55
|
fontWeight: itemFontWeight,
|
|
56
56
|
fontSize: itemFontSize,
|