@telus-uds/components-base 1.7.0 → 1.7.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.
@@ -1,8 +1,8 @@
1
- @telus-uds/components-base:build: cache hit, replaying output 1881992cce187510
2
- @telus-uds/components-base:build: $ yarn build:code && yarn build:docs
3
- @telus-uds/components-base:build: $ yarn build:main && yarn build:module
4
- @telus-uds/components-base:build: $ babel src -d lib
5
- @telus-uds/components-base:build: Successfully compiled 219 files with Babel (6264ms).
6
- @telus-uds/components-base:build: $ babel src -d lib-module --env-name module
7
- @telus-uds/components-base:build: Successfully compiled 219 files with Babel (4314ms).
8
- @telus-uds/components-base:build: $ babel-node --plugins=@nearform/babel-plugin-react-docgen generate-component-docs.js
1
+ @telus-uds/components-base:build: cache hit, replaying output 2723a575209dd005
2
+ @telus-uds/components-base:build: $ yarn build:code && yarn build:docs
3
+ @telus-uds/components-base:build: $ yarn build:main && yarn build:module
4
+ @telus-uds/components-base:build: $ babel src -d lib
5
+ @telus-uds/components-base:build: Successfully compiled 219 files with Babel (5370ms).
6
+ @telus-uds/components-base:build: $ babel src -d lib-module --env-name module
7
+ @telus-uds/components-base:build: Successfully compiled 219 files with Babel (3473ms).
8
+ @telus-uds/components-base:build: $ babel-node --plugins=@nearform/babel-plugin-react-docgen generate-component-docs.js
@@ -1,4 +1,4 @@
1
- @telus-uds/components-base:lint: cache hit, replaying output b72941df2cdfe4ea
1
+ @telus-uds/components-base:lint: cache hit, replaying output 89b2f7c5fe1ddf01
2
2
  @telus-uds/components-base:lint: $ yarn --cwd ../.. lint:path --color packages/components-base
3
3
  @telus-uds/components-base:lint: $ eslint --ignore-path .gitignore --ext .js,.jsx,.mjs,.cjs --color packages/components-base
4
4
  @telus-uds/components-base:lint: 
package/CHANGELOG.json CHANGED
@@ -2,7 +2,22 @@
2
2
  "name": "@telus-uds/components-base",
3
3
  "entries": [
4
4
  {
5
- "date": "Tue, 17 May 2022 15:04:41 GMT",
5
+ "date": "Tue, 17 May 2022 19:56:01 GMT",
6
+ "tag": "@telus-uds/components-base_v1.7.1",
7
+ "version": "1.7.1",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "alan.slater@nearform.com",
12
+ "package": "@telus-uds/components-base",
13
+ "commit": "135b7393e08bc5078bc73da4740da2b1f9e990fd",
14
+ "comment": "fix(components): fix inactive TextInput prop"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Tue, 17 May 2022 15:04:46 GMT",
6
21
  "tag": "@telus-uds/components-base_v1.7.0",
7
22
  "version": "1.7.0",
8
23
  "comments": {
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 Tue, 17 May 2022 15:04:41 GMT and should not be manually modified.
3
+ This log was last generated on Tue, 17 May 2022 19:56:01 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 1.7.1
8
+
9
+ Tue, 17 May 2022 19:56:01 GMT
10
+
11
+ ### Patches
12
+
13
+ - fix(components): fix inactive TextInput prop (alan.slater@nearform.com)
14
+
7
15
  ## 1.7.0
8
16
 
9
- Tue, 17 May 2022 15:04:41 GMT
17
+ Tue, 17 May 2022 15:04:46 GMT
10
18
 
11
19
  ### Minor changes
12
20
 
@@ -32,7 +32,8 @@ const textProps = {
32
32
  const inputValueProps = {
33
33
  value: _propTypes.default.string,
34
34
  initialValue: _propTypes.default.string,
35
- readOnly: _propTypes.default.bool
35
+ readOnly: _propTypes.default.bool,
36
+ inactive: _propTypes.default.bool
36
37
  };
37
38
  /**
38
39
  * This collection adds props that can be passed through to both React Native's
@@ -20,7 +20,8 @@ const textProps = {
20
20
  const inputValueProps = {
21
21
  value: PropTypes.string,
22
22
  initialValue: PropTypes.string,
23
- readOnly: PropTypes.bool
23
+ readOnly: PropTypes.bool,
24
+ inactive: PropTypes.bool
24
25
  };
25
26
  /**
26
27
  * This collection adds props that can be passed through to both React Native's
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telus-uds/components-base",
3
- "version": "1.7.0",
3
+ "version": "1.7.1",
4
4
  "description": "Base components",
5
5
  "keywords": [
6
6
  "base"
@@ -21,7 +21,8 @@ const textProps = {
21
21
  const inputValueProps = {
22
22
  value: PropTypes.string,
23
23
  initialValue: PropTypes.string,
24
- readOnly: PropTypes.bool
24
+ readOnly: PropTypes.bool,
25
+ inactive: PropTypes.bool
25
26
  }
26
27
 
27
28
  /**