@telus-uds/components-web 4.3.0 → 4.4.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 CHANGED
@@ -1,12 +1,36 @@
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 Fri, 28 Mar 2025 01:00:41 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 4.4.1
8
+
9
+ Fri, 28 Mar 2025 01:00:41 GMT
10
+
11
+ ### Patches
12
+
13
+ - `DatePicker`: Fix for missing dateformat prop TS definition (sam.obisesan@telus.com)
14
+ - Bump @telus-uds/components-base to v3.5.1
15
+
16
+ ## 4.4.0
17
+
18
+ Mon, 24 Mar 2025 16:30:05 GMT
19
+
20
+ ### Minor changes
21
+
22
+ - Code, Dynatrace alerts and vulnerabilities resolved (35577399+JoshHC@users.noreply.github.com)
23
+ - `ActivityIndicator`: new animation for the spinner and new `dots` variant added (35577399+JoshHC@users.noreply.github.com)
24
+ - Bump @telus-uds/components-base to v3.5.0
25
+ - Bump @telus-uds/system-theme-tokens to v4.3.0
26
+
27
+ ### Patches
28
+
29
+ - `DatePicker`: add disabled type (sergio.ramirez@telus.com)
30
+
7
31
  ## 4.3.0
8
32
 
9
- Tue, 11 Mar 2025 21:13:58 GMT
33
+ Tue, 11 Mar 2025 21:16:58 GMT
10
34
 
11
35
  ### Minor changes
12
36
 
@@ -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.1",
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.1"
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,8 @@ export interface DatePickerProps extends HTMLAttrs {
14
14
  hintPosition?: 'inline' | 'below'
15
15
  tooltip?: string
16
16
  validation?: 'error' | 'success'
17
+ disabled?: boolean
18
+ dateFormat?: string
17
19
  }
18
20
 
19
21
  declare const DatePicker: ComponentType<DatePickerProps>