@telus-uds/components-web 2.4.0 → 2.6.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 CHANGED
@@ -1,12 +1,37 @@
1
1
  # Change Log - @telus-uds/components-web
2
2
 
3
- This log was last generated on Tue, 30 May 2023 02:42:51 GMT and should not be manually modified.
3
+ This log was last generated on Tue, 06 Jun 2023 20:37:42 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 2.6.0
8
+
9
+ Tue, 06 Jun 2023 20:37:42 GMT
10
+
11
+ ### Minor changes
12
+
13
+ - allow 'FootnoteLink' to inherit color (kyle.king2@telus.com)
14
+ - Bump @telus-uds/components-base to v1.48.0
15
+ - Bump @telus-uds/system-theme-tokens to v2.30.0
16
+
17
+ ### Patches
18
+
19
+ - Testing: Snapshots updated (oscar.palencia@telus.com)
20
+ - Fix an issue where `Button` may not align as expected in a flex container (shahzaibkhalidmalik@outlook.com)
21
+
22
+ ## 2.5.0
23
+
24
+ Fri, 02 Jun 2023 00:34:55 GMT
25
+
26
+ ### Minor changes
27
+
28
+ - expand collapse mini standardization (akshay.pandey1@telus.com)
29
+ - Bump @telus-uds/components-base to v1.47.0
30
+ - Bump @telus-uds/system-theme-tokens to v2.29.0
31
+
7
32
  ## 2.4.0
8
33
 
9
- Tue, 30 May 2023 02:42:51 GMT
34
+ Tue, 30 May 2023 02:46:46 GMT
10
35
 
11
36
  ### Minor changes
12
37
 
@@ -4262,7 +4262,13 @@
4262
4262
  "name": "custom",
4263
4263
  "raw": {
4264
4264
  "backgroundColor": "color",
4265
- "gradient": "gradient"
4265
+ "gradient": "gradient",
4266
+ "borderWidth": "border",
4267
+ "borderColor": "color",
4268
+ "borderTopLeftRadius": "radius",
4269
+ "borderTopRightRadius": "radius",
4270
+ "borderBottomLeftRadius": "radius",
4271
+ "borderBottomRightRadius": "radius"
4266
4272
  }
4267
4273
  },
4268
4274
  "required": false,
@@ -4429,7 +4435,6 @@
4429
4435
  "color": "color",
4430
4436
  "lineHeight": "lineHeight",
4431
4437
  "textAlign": "flexJustifyContent",
4432
- "alignSelf": "flexAlign",
4433
4438
  "fontName": "fontName",
4434
4439
  "fontWeight": "fontWeight",
4435
4440
  "backgroundColor": "color",
@@ -4628,7 +4633,6 @@
4628
4633
  "color": "color",
4629
4634
  "lineHeight": "lineHeight",
4630
4635
  "textAlign": "flexJustifyContent",
4631
- "alignSelf": "flexAlign",
4632
4636
  "fontName": "fontName",
4633
4637
  "fontWeight": "fontWeight",
4634
4638
  "backgroundColor": "color",
@@ -5054,7 +5058,6 @@
5054
5058
  "color": "color",
5055
5059
  "lineHeight": "lineHeight",
5056
5060
  "textAlign": "flexJustifyContent",
5057
- "alignSelf": "flexAlign",
5058
5061
  "fontName": "fontName",
5059
5062
  "fontWeight": "fontWeight",
5060
5063
  "backgroundColor": "color",
@@ -6637,7 +6640,6 @@
6637
6640
  "name": "custom",
6638
6641
  "raw": {
6639
6642
  "fontSize": "fontSize",
6640
- "textLineHeight": "lineHeight",
6641
6643
  "color": "color",
6642
6644
  "outerBorderColor": "color",
6643
6645
  "leftIcon": "icon",
@@ -6857,6 +6859,13 @@
6857
6859
  "required": false,
6858
6860
  "description": "Array of the ids of currently open groups"
6859
6861
  },
6862
+ "isMiniExpandCollapse": {
6863
+ "defaultValue": {
6864
+ "value": "false",
6865
+ "computed": false
6866
+ },
6867
+ "required": false
6868
+ },
6860
6869
  "variant": {
6861
6870
  "type": {
6862
6871
  "name": "objectOf",
@@ -6893,7 +6902,7 @@
6893
6902
  "borderRadius": "radius",
6894
6903
  "borderWidth": "border",
6895
6904
  "expandDividerColor": "color",
6896
- "expanddDividerWidth": "size"
6905
+ "expandDividerWidth": "size"
6897
6906
  }
6898
6907
  },
6899
6908
  "required": false,
@@ -11066,6 +11075,8 @@
11066
11075
  "name": "custom",
11067
11076
  "raw": {
11068
11077
  "color": "color",
11078
+ "secondColor": "color",
11079
+ "animationDuration": "integer",
11069
11080
  "size": "size",
11070
11081
  "radius": "radius",
11071
11082
  "baseWidth": "size",
@@ -49,6 +49,7 @@ const ExpandCollapseMini = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
49
49
  onChange: handleChange,
50
50
  children: expandProps => /*#__PURE__*/(0, _jsxRuntime.jsx)(_componentsBase.ExpandCollapse.Panel, { ...expandProps,
51
51
  panelId: "ExpandCollapseMiniPanel",
52
+ isMiniExpandCollapse: true,
52
53
  controlTokens: {
53
54
  icon: null
54
55
  } // TODO refactor
@@ -31,6 +31,7 @@ const ExpandCollapseMini = /*#__PURE__*/forwardRef((_ref, ref) => {
31
31
  onChange: handleChange,
32
32
  children: expandProps => /*#__PURE__*/_jsx(ExpandCollapse.Panel, { ...expandProps,
33
33
  panelId: "ExpandCollapseMiniPanel",
34
+ isMiniExpandCollapse: true,
34
35
  controlTokens: {
35
36
  icon: null
36
37
  } // TODO refactor
package/package.json CHANGED
@@ -5,14 +5,14 @@
5
5
  ],
6
6
  "dependencies": {
7
7
  "@gorhom/portal": "^1.0.14",
8
- "@telus-uds/components-base": "1.46.0",
8
+ "@telus-uds/components-base": "1.48.0",
9
9
  "@telus-uds/system-constants": "^1.2.1",
10
10
  "fscreen": "^1.2.0",
11
11
  "lodash.omit": "^4.5.0",
12
12
  "react-dates": "^21.8.0",
13
13
  "react-helmet-async": "^1.3.0",
14
14
  "react-moment-proptypes": "^1.8.1",
15
- "@telus-uds/system-theme-tokens": "^2.28.0",
15
+ "@telus-uds/system-theme-tokens": "^2.30.0",
16
16
  "prop-types": "^15.7.2",
17
17
  "lodash.throttle": "^4.1.1",
18
18
  "react-youtube": "^10.1.0"
@@ -62,5 +62,5 @@
62
62
  "skip": true
63
63
  },
64
64
  "types": "types/index.d.ts",
65
- "version": "2.4.0"
65
+ "version": "2.6.0"
66
66
  }
@@ -20,6 +20,7 @@ const ExpandCollapseMini = forwardRef(({ children, onToggle, tokens, ...rest },
20
20
  <ExpandCollapse.Panel
21
21
  {...expandProps}
22
22
  panelId="ExpandCollapseMiniPanel"
23
+ isMiniExpandCollapse={true}
23
24
  controlTokens={{ icon: null }}
24
25
  // TODO refactor
25
26
  // eslint-disable-next-line react/no-unstable-nested-components