@telus-uds/components-base 1.11.0 → 1.12.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,20 @@
1
1
  # Change Log - @telus-uds/components-base
2
2
 
3
- This log was last generated on Mon, 25 Jul 2022 18:17:39 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 28 Jul 2022 19:37:23 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 1.12.0
8
+
9
+ Thu, 28 Jul 2022 19:37:23 GMT
10
+
11
+ ### Minor changes
12
+
13
+ - export useScrollBlocking for using on allium (tiagohldb@gmail.com)
14
+
7
15
  ## 1.11.0
8
16
 
9
- Mon, 25 Jul 2022 18:17:39 GMT
17
+ Mon, 25 Jul 2022 18:18:31 GMT
10
18
 
11
19
  ### Minor changes
12
20
 
@@ -9,6 +9,7 @@ var _exportNames = {
9
9
  useHash: true,
10
10
  useSpacingScale: true,
11
11
  useResponsiveProp: true,
12
+ useScrollBlocking: true,
12
13
  useUniqueId: true,
13
14
  withLinkRouter: true,
14
15
  containUniqueFields: true
@@ -43,6 +44,12 @@ Object.defineProperty(exports, "useResponsiveProp", {
43
44
  return _useResponsiveProp.default;
44
45
  }
45
46
  });
47
+ Object.defineProperty(exports, "useScrollBlocking", {
48
+ enumerable: true,
49
+ get: function () {
50
+ return _useScrollBlocking.default;
51
+ }
52
+ });
46
53
  Object.defineProperty(exports, "useSpacingScale", {
47
54
  enumerable: true,
48
55
  get: function () {
@@ -168,6 +175,8 @@ Object.keys(_useResponsiveProp).forEach(function (key) {
168
175
  });
169
176
  });
170
177
 
178
+ var _useScrollBlocking = _interopRequireDefault(require("./useScrollBlocking"));
179
+
171
180
  var _useUniqueId = _interopRequireDefault(require("./useUniqueId"));
172
181
 
173
182
  var _withLinkRouter = _interopRequireDefault(require("./withLinkRouter"));
@@ -9,6 +9,7 @@ export { default as useCopy } from './useCopy';
9
9
  export { default as useHash } from './useHash';
10
10
  export { default as useSpacingScale } from './useSpacingScale';
11
11
  export { default as useResponsiveProp } from './useResponsiveProp';
12
+ export { default as useScrollBlocking } from './useScrollBlocking';
12
13
  export * from './useResponsiveProp';
13
14
  export { default as useUniqueId } from './useUniqueId';
14
15
  export { default as withLinkRouter } from './withLinkRouter';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telus-uds/components-base",
3
- "version": "1.11.0",
3
+ "version": "1.12.0",
4
4
  "description": "Base components",
5
5
  "keywords": [
6
6
  "base"
@@ -10,6 +10,7 @@ export { default as useCopy } from './useCopy'
10
10
  export { default as useHash } from './useHash'
11
11
  export { default as useSpacingScale } from './useSpacingScale'
12
12
  export { default as useResponsiveProp } from './useResponsiveProp'
13
+ export { default as useScrollBlocking } from './useScrollBlocking'
13
14
  export * from './useResponsiveProp'
14
15
  export { default as useUniqueId } from './useUniqueId'
15
16
  export { default as withLinkRouter } from './withLinkRouter'