@telus-uds/components-web 4.3.0 → 4.4.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,27 @@
1
1
  # Change Log - @telus-uds/components-web
2
2
 
3
- This log was last generated on Tue, 11 Mar 2025 21:13:58 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 24 Mar 2025 16:24:15 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 4.4.0
8
+
9
+ Mon, 24 Mar 2025 16:24:15 GMT
10
+
11
+ ### Minor changes
12
+
13
+ - Code, Dynatrace alerts and vulnerabilities resolved (35577399+JoshHC@users.noreply.github.com)
14
+ - `ActivityIndicator`: new animation for the spinner and new `dots` variant added (35577399+JoshHC@users.noreply.github.com)
15
+ - Bump @telus-uds/components-base to v3.5.0
16
+ - Bump @telus-uds/system-theme-tokens to v4.3.0
17
+
18
+ ### Patches
19
+
20
+ - `DatePicker`: add disabled type (sergio.ramirez@telus.com)
21
+
7
22
  ## 4.3.0
8
23
 
9
- Tue, 11 Mar 2025 21:13:58 GMT
24
+ Tue, 11 Mar 2025 21:16:58 GMT
10
25
 
11
26
  ### Minor changes
12
27
 
@@ -137,7 +137,7 @@ const VideoPicker = /*#__PURE__*/_react.default.forwardRef((_ref6, ref) => {
137
137
  ...themeTokens,
138
138
  isFramed: isFramed,
139
139
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_VideoPickerPlayer.default, {
140
- video: addVideoEventHandlers(currentVideo, onPlay, onPause, onProgress),
140
+ video: addVideoEventHandlers(currentVideo),
141
141
  videoPlayerRef: videoPlayerRef,
142
142
  onStartVideo: onStartVideo
143
143
  })
@@ -128,7 +128,7 @@ const VideoPicker = /*#__PURE__*/React.forwardRef((_ref6, ref) => {
128
128
  ...themeTokens,
129
129
  isFramed: isFramed,
130
130
  children: /*#__PURE__*/_jsx(VideoPickerPlayer, {
131
- video: addVideoEventHandlers(currentVideo, onPlay, onPause, onProgress),
131
+ video: addVideoEventHandlers(currentVideo),
132
132
  videoPlayerRef: videoPlayerRef,
133
133
  onStartVideo: onStartVideo
134
134
  })
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": "^3.4.0",
8
+ "@telus-uds/components-base": "^3.5.0",
9
9
  "@telus-uds/system-constants": "^3.0.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": "^4.2.0",
16
+ "@telus-uds/system-theme-tokens": "^4.3.0",
17
17
  "prop-types": "^15.7.2",
18
18
  "lodash.throttle": "^4.1.1",
19
19
  "react-youtube": "^10.1.0",
@@ -82,5 +82,5 @@
82
82
  "skip": true
83
83
  },
84
84
  "types": "types/index.d.ts",
85
- "version": "4.3.0"
85
+ "version": "4.4.0"
86
86
  }
@@ -136,7 +136,7 @@ const VideoPicker = React.forwardRef(
136
136
  >
137
137
  <VideoPlayerContainer {...themeTokens} isFramed={isFramed}>
138
138
  <VideoPickerPlayer
139
- video={addVideoEventHandlers(currentVideo, onPlay, onPause, onProgress)}
139
+ video={addVideoEventHandlers(currentVideo)}
140
140
  videoPlayerRef={videoPlayerRef}
141
141
  onStartVideo={onStartVideo}
142
142
  />
@@ -14,6 +14,7 @@ export interface DatePickerProps extends HTMLAttrs {
14
14
  hintPosition?: 'inline' | 'below'
15
15
  tooltip?: string
16
16
  validation?: 'error' | 'success'
17
+ disabled?: boolean
17
18
  }
18
19
 
19
20
  declare const DatePicker: ComponentType<DatePickerProps>