@telus-uds/theme-allium 3.7.3 → 3.7.4

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/build/schema.json CHANGED
@@ -3159,6 +3159,9 @@
3159
3159
  "showPanelNavigation": {
3160
3160
  "$ref": "#show"
3161
3161
  },
3162
+ "showPanelTabs": {
3163
+ "$ref": "#show"
3164
+ },
3162
3165
  "spaceBetweenSlideAndPreviousNextNavigation": {
3163
3166
  "$ref": "#size"
3164
3167
  },
@@ -3198,6 +3201,7 @@
3198
3201
  "previousIcon",
3199
3202
  "showPreviousNextNavigation",
3200
3203
  "showPanelNavigation",
3204
+ "showPanelTabs",
3201
3205
  "spaceBetweenSlideAndPreviousNextNavigation",
3202
3206
  "spaceBetweenSlideAndPanelNavigation",
3203
3207
  "thumbnailBorderColor",
@@ -3237,6 +3241,9 @@
3237
3241
  "showPanelNavigation": {
3238
3242
  "$ref": "#show"
3239
3243
  },
3244
+ "showPanelTabs": {
3245
+ "$ref": "#show"
3246
+ },
3240
3247
  "spaceBetweenSlideAndPreviousNextNavigation": {
3241
3248
  "$ref": "#size"
3242
3249
  },
package/build/theme.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  *
3
3
  * Do not edit directly
4
- * Generated on Thu, 08 Sep 2022 15:35:41 GMT
4
+ * Generated on Mon, 12 Sep 2022 20:03:02 GMT
5
5
  *
6
6
  */
7
7
 
@@ -501,13 +501,18 @@ module.exports = {
501
501
  rules: [
502
502
  {
503
503
  if: { viewport: [ 'xs', 'sm' ] },
504
- tokens: { showPreviousNextNavigation: false, thumbnailSize: 48 }
504
+ tokens: {
505
+ showPanelTabs: false,
506
+ showPreviousNextNavigation: false,
507
+ thumbnailSize: 48
508
+ }
505
509
  }
506
510
  ],
507
511
  tokens: {
508
512
  nextIcon: PaletteIconArrowRight,
509
513
  previousIcon: PaletteIconArrowLeft,
510
514
  showPanelNavigation: true,
515
+ showPanelTabs: true,
511
516
  showPreviousNextNavigation: true,
512
517
  spaceBetweenSlideAndPanelNavigation: 32,
513
518
  spaceBetweenSlideAndPreviousNextNavigation: 24,
@@ -3306,5 +3311,5 @@ module.exports = {
3306
3311
  tokens: { size: 96 }
3307
3312
  }
3308
3313
  },
3309
- metadata: { name: 'theme-allium', themeTokensVersion: '2.4.0' }
3314
+ metadata: { name: 'theme-allium', themeTokensVersion: '2.5.0' }
3310
3315
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telus-uds/theme-allium",
3
- "version": "3.7.3",
3
+ "version": "3.7.4",
4
4
  "description": "Allium theme",
5
5
  "author": "TELUS Digital",
6
6
  "homepage": "https://github.com/telus/allium-design-system#readme",
@@ -9,7 +9,7 @@
9
9
  "dependencies": {},
10
10
  "devDependencies": {
11
11
  "@telus-uds/palette-allium": "^2.6.1",
12
- "@telus-uds/system-theme-tokens": "^2.4.0",
12
+ "@telus-uds/system-theme-tokens": "^2.5.0",
13
13
  "@telus-uds/system-tokens": "^0.3.0"
14
14
  },
15
15
  "peerDependencies": {
package/theme.json CHANGED
@@ -665,6 +665,7 @@
665
665
  "viewport": ["xs", "sm"]
666
666
  },
667
667
  "tokens": {
668
+ "showPanelTabs": "{system.show.false}",
668
669
  "showPreviousNextNavigation": "{system.show.false}",
669
670
  "thumbnailSize": "{palette.size.size48}"
670
671
  }
@@ -674,6 +675,7 @@
674
675
  "nextIcon": "{palette.icon.ArrowRight}",
675
676
  "previousIcon": "{palette.icon.ArrowLeft}",
676
677
  "showPanelNavigation": "{system.show.true}",
678
+ "showPanelTabs": "{system.show.true}",
677
679
  "showPreviousNextNavigation": "{system.show.true}",
678
680
  "spaceBetweenSlideAndPanelNavigation": "{palette.size.size32}",
679
681
  "spaceBetweenSlideAndPreviousNextNavigation": "{palette.size.size24}",