@telus-uds/components-web 2.40.0 → 2.41.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 Mon, 16 Sep 2024 12:26:18 GMT and should not be manually modified.
3
+ This log was last generated on Wed, 25 Sep 2024 16:57:49 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 2.41.0
8
+
9
+ Wed, 25 Sep 2024 16:57:49 GMT
10
+
11
+ ### Minor changes
12
+
13
+ - `TabBar`: new component added (35577399+JoshHC@users.noreply.github.com)
14
+ - `DownloadApp`: add component (Mauricio.BatresMontejo@telus.com)
15
+ - Bump @telus-uds/components-base to v1.95.0
16
+ - Bump @telus-uds/system-theme-tokens to v2.64.0
17
+
18
+ ### Patches
19
+
20
+ - `Typography`: added strikethrough to components-web typography props as it was missing (chris.tafts@telus.com)
21
+
7
22
  ## 2.40.0
8
23
 
9
- Mon, 16 Sep 2024 12:26:18 GMT
24
+ Mon, 16 Sep 2024 12:35:38 GMT
10
25
 
11
26
  ### Minor changes
12
27
 
@@ -117,6 +117,12 @@ Object.defineProperty(exports, "Divider", {
117
117
  return _componentsBase.Divider;
118
118
  }
119
119
  });
120
+ Object.defineProperty(exports, "DownloadApp", {
121
+ enumerable: true,
122
+ get: function () {
123
+ return _componentsBase.DownloadApp;
124
+ }
125
+ });
120
126
  Object.defineProperty(exports, "ExpandCollapse", {
121
127
  enumerable: true,
122
128
  get: function () {
@@ -303,6 +309,12 @@ Object.defineProperty(exports, "StepTracker", {
303
309
  return _componentsBase.StepTracker;
304
310
  }
305
311
  });
312
+ Object.defineProperty(exports, "TabBar", {
313
+ enumerable: true,
314
+ get: function () {
315
+ return _componentsBase.TabBar;
316
+ }
317
+ });
306
318
  Object.defineProperty(exports, "Tabs", {
307
319
  enumerable: true,
308
320
  get: function () {
@@ -5,7 +5,7 @@ export {
5
5
  /**
6
6
  * Most base components should be re-exported as-is.
7
7
  */
8
- ActionCard, A11yText, ActivityIndicator, Autocomplete, Box, Button, BaseProvider, A11yInfoProvider, ViewportProvider, ThemeProvider, ButtonDropdown, ButtonGroup, ButtonLink, CardGroup, Carousel, CarouselTabs, Checkbox, CheckboxGroup, ChevronLink, ColourToggle, Divider, ExpandCollapse, Feedback, FlexGrid, FileUpload, Icon, InputLabel, InputSupports, Link, Listbox, Modal, MultiSelectFilter, Notification, Pagination, Portal, QuickLinks, QuickLinksFeature, Radio, RadioGroup, RadioCard, RadioCardGroup, Responsive, Search, Select, SideNav, Skeleton, SkipLink, Spacer, StackView, StackWrap, StepTracker, Status, Tabs, Tags, TextButton, TextArea, TextInput, Timeline, ToggleSwitch, ToggleSwitchGroup, TooltipButton, Tooltip, Typography, Validator,
8
+ ActionCard, A11yText, ActivityIndicator, Autocomplete, Box, Button, BaseProvider, A11yInfoProvider, ViewportProvider, ThemeProvider, ButtonDropdown, ButtonGroup, ButtonLink, CardGroup, Carousel, CarouselTabs, Checkbox, CheckboxGroup, ChevronLink, ColourToggle, Divider, DownloadApp, ExpandCollapse, Feedback, FlexGrid, FileUpload, Icon, InputLabel, InputSupports, Link, Listbox, Modal, MultiSelectFilter, Notification, Pagination, Portal, QuickLinks, QuickLinksFeature, Radio, RadioGroup, RadioCard, RadioCardGroup, Responsive, Search, Select, SideNav, Skeleton, SkipLink, Spacer, StackView, StackWrap, StepTracker, Status, Tabs, TabBar, Tags, TextButton, TextArea, TextInput, Timeline, ToggleSwitch, ToggleSwitchGroup, TooltipButton, Tooltip, Typography, Validator,
9
9
  /*
10
10
  * Most utilities exported from @telus-uds/components-base are for building systems, not apps.
11
11
  * Re-export only those utilities with a stable API and known use cases within apps / pages.
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.94.0",
8
+ "@telus-uds/components-base": "1.95.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.63.0",
16
+ "@telus-uds/system-theme-tokens": "^2.64.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.40.0"
86
+ "version": "2.41.0"
87
87
  }
@@ -26,6 +26,7 @@ export {
26
26
  ChevronLink,
27
27
  ColourToggle,
28
28
  Divider,
29
+ DownloadApp,
29
30
  ExpandCollapse,
30
31
  Feedback,
31
32
  FlexGrid,
@@ -58,6 +59,7 @@ export {
58
59
  StepTracker,
59
60
  Status,
60
61
  Tabs,
62
+ TabBar,
61
63
  Tags,
62
64
  TextButton,
63
65
  TextArea,
@@ -18,6 +18,7 @@ export interface TypographyProps extends A11yProps, TextProps, ViewProps {
18
18
  tag?: 'blockquote' | 'code' | 'del' | 'em' | 'ins' | 'li' | 'strong' | 'label' | HeadingTag
19
19
  block?: boolean
20
20
  align?: TextAlign
21
+ strikeThrough?: boolean
21
22
  children?: ReactNode
22
23
  skeleton?: SkeletonProps
23
24
  }