@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.
- package/.turbo/turbo-build.log +8 -8
- package/.turbo/turbo-lint.log +1 -1
- package/CHANGELOG.json +16 -1
- package/CHANGELOG.md +10 -2
- package/lib/utils/props/textInputProps.js +2 -1
- package/lib-module/utils/props/textInputProps.js +2 -1
- package/package.json +1 -1
- package/src/utils/props/textInputProps.js +2 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
[
|
|
2
|
-
[
|
|
3
|
-
[
|
|
4
|
-
[
|
|
5
|
-
[
|
|
6
|
-
[
|
|
7
|
-
[
|
|
8
|
-
[
|
|
1
|
+
[32m@telus-uds/components-base:build: [0mcache hit, replaying output [2m2723a575209dd005[0m
|
|
2
|
+
[32m@telus-uds/components-base:build: [0m[2K[1G[2m$ yarn build:code && yarn build:docs[22m
|
|
3
|
+
[32m@telus-uds/components-base:build: [0m[2K[1G[2m$ yarn build:main && yarn build:module[22m
|
|
4
|
+
[32m@telus-uds/components-base:build: [0m[2K[1G[2m$ babel src -d lib[22m
|
|
5
|
+
[32m@telus-uds/components-base:build: [0mSuccessfully compiled 219 files with Babel (5370ms).
|
|
6
|
+
[32m@telus-uds/components-base:build: [0m[2K[1G[2m$ babel src -d lib-module --env-name module[22m
|
|
7
|
+
[32m@telus-uds/components-base:build: [0mSuccessfully compiled 219 files with Babel (3473ms).
|
|
8
|
+
[32m@telus-uds/components-base:build: [0m[2K[1G[2m$ babel-node --plugins=@nearform/babel-plugin-react-docgen generate-component-docs.js[22m
|
package/.turbo/turbo-lint.log
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[33m@telus-uds/components-base:lint: [0mcache hit, replaying output [
|
|
1
|
+
[33m@telus-uds/components-base:lint: [0mcache hit, replaying output [2m89b2f7c5fe1ddf01[0m
|
|
2
2
|
[33m@telus-uds/components-base:lint: [0m[2K[1G[2m$ yarn --cwd ../.. lint:path --color packages/components-base[22m
|
|
3
3
|
[33m@telus-uds/components-base:lint: [0m[2K[1G[2m$ eslint --ignore-path .gitignore --ext .js,.jsx,.mjs,.cjs --color packages/components-base[22m
|
|
4
4
|
[33m@telus-uds/components-base:lint: [0m[0m[0m
|
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
|
|
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
|
|
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:
|
|
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