Skip to content

Commit 2ec4ccd

Browse files
artyorshArtur Yorsh
authored and
Artur Yorsh
committed
release: v4.3.0
1 parent b581387 commit 2ec4ccd

File tree

13 files changed

+70
-54
lines changed

13 files changed

+70
-54
lines changed

Diff for: CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 4.3.0 (2019-12-04)
2+
3+
* chore: rename main package to @ui-kitten/components ([b6cf0b9](https://github.com/akveo/react-native-ui-kitten/commit/b6cf0b9))
4+
* chore: upgrade templates to latest react-native ([3759572](https://github.com/akveo/react-native-ui-kitten/commit/3759572))
5+
* fix(components): calendar - date bounds disabling behavior ([61e4806](https://github.com/akveo/react-native-ui-kitten/commit/61e4806))
6+
* fix(components): calendar - replace UTC dates with regular dates ([700a902](https://github.com/akveo/react-native-ui-kitten/commit/700a902))
7+
* fix(components): list - add ability to override keyExtractor ([d5ee185](https://github.com/akveo/react-native-ui-kitten/commit/d5ee185))
8+
* fix(components): modal center positioning ([301e3f4](https://github.com/akveo/react-native-ui-kitten/commit/301e3f4))
9+
* feat(components): card component add ([f6c5899](https://github.com/akveo/react-native-ui-kitten/commit/f6c5899))
10+
* feat(components): datepicker - add placeholder property ([d34bcd4](https://github.com/akveo/react-native-ui-kitten/commit/d34bcd4))
11+
* refactor(components): unify icon prop stylings ([156646d](https://github.com/akveo/react-native-ui-kitten/commit/156646d))
12+
* chore(components): update components to eva 1.3 ([c958482](https://github.com/akveo/react-native-ui-kitten/commit/c958482))
13+
* docs(guides): simplify getting-started ([a93bfed](https://github.com/akveo/react-native-ui-kitten/commit/a93bfed))
14+
15+
16+
117
## 4.3.0-beta.1 (2019-10-17)
218

319
* feat(docs): clickable examples ([a08e1d3](https://github.com/akveo/react-native-ui-kitten/commit/a08e1d3))

Diff for: package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ui-kitten",
3-
"version": "4.3.0-beta.1",
3+
"version": "4.3.0",
44
"private": true,
55
"license": "MIT",
66
"author": "akveo <[email protected]>",
@@ -28,7 +28,7 @@
2828
},
2929
"devDependencies": {
3030
"@babel/core": "^7.4.4",
31-
"@eva-design/eva": "^1.3.0-beta.1",
31+
"@eva-design/eva": "^1.3.0",
3232
"@types/gulp": "ts3.5",
3333
"@types/gulp-replace": "ts3.5",
3434
"@types/jest": "ts3.5",

Diff for: src/components/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ui-kitten/components",
33
"description": "React Native components based on Eva Design System",
4-
"version": "4.3.0-beta.1",
4+
"version": "4.3.0",
55
"author": "akveo <[email protected]>",
66
"license": "MIT",
77
"homepage": "https://github.com/akveo/react-native-ui-kitten#readme",
@@ -21,8 +21,8 @@
2121
"access": "public"
2222
},
2323
"dependencies": {
24-
"@eva-design/dss": "^1.3.0-beta.1",
25-
"@eva-design/processor": "^1.3.0-beta.1",
24+
"@eva-design/dss": "^1.3.0",
25+
"@eva-design/processor": "^1.3.0",
2626
"hoist-non-react-statics": "^3.2.1",
2727
"lodash.merge": "^4.6.1",
2828
"fecha": "3.0.3"

Diff for: src/date-fns/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ui-kitten/date-fns",
33
"description": "date-fns services for UI Kitten",
4-
"version": "4.3.0-beta.1",
4+
"version": "4.3.0",
55
"author": "akveo <[email protected]>",
66
"license": "MIT",
77
"homepage": "https://github.com/akveo/react-native-ui-kitten#readme",
@@ -24,8 +24,8 @@
2424
"date-fns": "^1.30.1"
2525
},
2626
"peerDependencies": {
27-
"@ui-kitten/components": "4.3.0-beta.1",
27+
"@ui-kitten/components": "4.3.0",
2828
"date-fns": "^1.30.1"
2929
},
3030
"sideEffects": false
31-
}
31+
}

Diff for: src/eva-icons/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ui-kitten/eva-icons",
33
"description": "Eva Icons for React Native",
4-
"version": "4.3.0-beta.1",
4+
"version": "4.3.0",
55
"author": "akveo <[email protected]>",
66
"license": "MIT",
77
"homepage": "https://github.com/akveo/react-native-ui-kitten#readme",
@@ -27,8 +27,8 @@
2727
"react-native-svg": "^9.4.0"
2828
},
2929
"peerDependencies": {
30-
"@ui-kitten/components": "4.3.0-beta.1",
30+
"@ui-kitten/components": "4.3.0",
3131
"react-native-svg": "^9.4.0"
3232
},
3333
"sideEffects": false
34-
}
34+
}

Diff for: src/moment/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ui-kitten/moment",
33
"description": "moment.js services for UI Kitten",
4-
"version": "4.3.0-beta.1",
4+
"version": "4.3.0",
55
"author": "akveo <[email protected]>",
66
"license": "MIT",
77
"homepage": "https://github.com/akveo/react-native-ui-kitten#readme",
@@ -24,8 +24,8 @@
2424
"moment": "^2.24.0"
2525
},
2626
"peerDependencies": {
27-
"@ui-kitten/components": "4.3.0-beta.1",
27+
"@ui-kitten/components": "4.3.0",
2828
"moment": "^2.24.0"
2929
},
3030
"sideEffects": false
31-
}
31+
}

Diff for: src/playground/env/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const path = require('path');
22

33
module.exports = {
4-
ENV: 'dev',
5-
EVA_PATH: path.resolve(__dirname, '../../../../eva/packages'),
4+
ENV: 'prod',
5+
EVA_PATH: path.resolve(__dirname, '../../../node_modules/@eva-design'),
66
};

Diff for: src/playground/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ui-kitten/playground",
3-
"version": "4.3.0-beta.1",
3+
"version": "4.3.0",
44
"private": true,
55
"workspaces": {
66
"nohoist": [

Diff for: src/template-js/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ui-kitten/template-js",
33
"description": "React Native template project with UI Kitten",
4-
"version": "4.3.0-beta.1",
4+
"version": "4.3.0",
55
"author": "akveo <[email protected]>",
66
"license": "MIT",
77
"homepage": "https://github.com/akveo/react-native-ui-kitten#readme",
@@ -22,4 +22,4 @@
2222
"publishConfig": {
2323
"access": "public"
2424
}
25-
}
25+
}

Diff for: src/template-js/template/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"postinstall": "react-native link"
1111
},
1212
"dependencies": {
13-
"@eva-design/eva": "^1.3.0-beta.1",
14-
"@ui-kitten/components": "^4.3.0-beta.1",
15-
"@ui-kitten/eva-icons": "^4.3.0-beta.1",
13+
"@eva-design/eva": "^1.3.0",
14+
"@ui-kitten/components": "4.3.0",
15+
"@ui-kitten/eva-icons": "4.3.0",
1616
"react": "16.9.0",
1717
"react-native": "0.61.5",
1818
"react-native-svg": "^9.13.3"

Diff for: src/template-ts/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ui-kitten/template-ts",
33
"description": "React Native template project with UI Kitten and TypeScript",
4-
"version": "4.3.0-beta.1",
4+
"version": "4.3.0",
55
"author": "akveo <[email protected]>",
66
"license": "MIT",
77
"homepage": "https://github.com/akveo/react-native-ui-kitten#readme",
@@ -22,4 +22,4 @@
2222
"publishConfig": {
2323
"access": "public"
2424
}
25-
}
25+
}

Diff for: src/template-ts/template/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"postinstall": "react-native link"
1111
},
1212
"dependencies": {
13-
"@eva-design/eva": "^1.3.0-beta.1",
14-
"@ui-kitten/components": "^4.3.0-beta.1",
15-
"@ui-kitten/eva-icons": "^4.3.0-beta.1",
13+
"@eva-design/eva": "^1.3.0",
14+
"@ui-kitten/components": "4.3.0",
15+
"@ui-kitten/eva-icons": "4.3.0",
1616
"react": "16.9.0",
1717
"react-native": "0.61.5",
1818
"react-native-svg": "^9.13.3"

Diff for: yarn.lock

+27-27
Original file line numberDiff line numberDiff line change
@@ -1124,20 +1124,20 @@
11241124
exec-sh "^0.3.2"
11251125
minimist "^1.2.0"
11261126

1127-
"@eva-design/dss@^1.3.0-beta.1":
1128-
version "1.3.0-beta.1"
1129-
resolved "https://registry.yarnpkg.com/@eva-design/dss/-/dss-1.3.0-beta.1.tgz#5acad80422ba5980655a6b3f187675a82d045e8f"
1130-
integrity sha512-AMW4MGx1Nqm5pwxY+aHQjwRjDN6ernvd9rBgFlePzbBgRUIdcwSWsn963j2QiXSx78PrC8VODqUPGEWHnWCw3w==
1127+
"@eva-design/dss@^1.3.0":
1128+
version "1.3.0"
1129+
resolved "https://registry.yarnpkg.com/@eva-design/dss/-/dss-1.3.0.tgz#f3e33192681d6ddc3dbddbe4040b248bc10e3612"
1130+
integrity sha512-g5VdOXycxRInC+aZif60q6IySLga78CuhYEdU7ry+oOUul6GXVhGcRe0q+4MVkZXBA90IDdqh/e8gN2SOqfIRQ==
11311131

1132-
"@eva-design/eva@^1.3.0-beta.1":
1133-
version "1.3.0-beta.1"
1134-
resolved "https://registry.yarnpkg.com/@eva-design/eva/-/eva-1.3.0-beta.1.tgz#c1e593bc458a1706a40357ae3501111fa326d665"
1135-
integrity sha512-UE2dH1twVXKnLTbU8rrX20ChxblqZZjy7U3CXpFNpf3XPtQsetuNmElNHL6iLC4+YtD21xwu8+oDcmyqS1ijEQ==
1132+
"@eva-design/eva@^1.3.0":
1133+
version "1.3.0"
1134+
resolved "https://registry.yarnpkg.com/@eva-design/eva/-/eva-1.3.0.tgz#9e20da2a5bd0f4420728f32d8ab93452c6fcc238"
1135+
integrity sha512-wdi+wolofBrEzGtSGv2mzLTndS61A+pQMrpqUhd0TH1cH3D5sjS8C81lzonwrv0qCRapNnb3X9mg8Bw0To/xNQ==
11361136

1137-
"@eva-design/processor@^1.3.0-beta.1":
1138-
version "1.3.0-beta.1"
1139-
resolved "https://registry.yarnpkg.com/@eva-design/processor/-/processor-1.3.0-beta.1.tgz#26ed5c8fb2bda0535ea113c90af4575631c367e5"
1140-
integrity sha512-Avt9TXSQ5Kg+uXn8LlESo+INudoikItm1BZUGUHluARrLIjnMJgu+twjzz0jk4k6WB+giXZU4JAWYAoDvnahrw==
1137+
"@eva-design/processor@^1.3.0":
1138+
version "1.3.0"
1139+
resolved "https://registry.yarnpkg.com/@eva-design/processor/-/processor-1.3.0.tgz#8fd0e7b946d3c3f5969fc8484bb609f3f8606eb4"
1140+
integrity sha512-wuVI00tjBfA6S4bKLLpxJFBVThFPyQUR+1uBN8OH7pEUUCfo/0u8UoW41SM2+BYdHbhaYCZzw6BXHXsHULZ2Ig==
11411141

11421142
"@expo/config@^2.1.5", "@expo/config@^2.5.1":
11431143
version "2.5.1"
@@ -3449,19 +3449,19 @@ caniuse-api@^3.0.0:
34493449
lodash.uniq "^4.5.0"
34503450

34513451
caniuse-db@^1.0.30000187, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639:
3452-
version "1.0.30001013"
3453-
resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30001013.tgz#7fde3c19efcdb7d9f8d24185e219e586933d31b0"
3454-
integrity sha512-wvXRZ9Ov0rwDEN2Eqir2OGHMEGS1roQvc90DejA5mbsLGUws8H339GZYxXm2CTT2PT3DhpxLPq7FrYp6XcEWkg==
3452+
version "1.0.30001015"
3453+
resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30001015.tgz#9f1b4fa158c747dcc04b15f9c5359ddcf0390d90"
3454+
integrity sha512-+Fqdu7tOxSD0HDs922QPxseHlwnUzdjLC1Oq32HZ1/LWrMfYNt8JaUWnoiIAR+G4fRzM3tdgc4Lrqo5Nx76UsQ==
34553455

34563456
34573457
version "1.0.30000974"
34583458
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000974.tgz#b7afe14ee004e97ce6dc73e3f878290a12928ad8"
34593459
integrity sha512-xc3rkNS/Zc3CmpMKuczWEdY2sZgx09BkAxfvkxlAEBTqcMHeL8QnPqhKse+5sRTi3nrw2pJwToD2WvKn1Uhvww==
34603460

34613461
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000957, caniuse-lite@^1.0.30000960, caniuse-lite@^1.0.30000984, caniuse-lite@^1.0.30001012:
3462-
version "1.0.30001013"
3463-
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001013.tgz#da2440d4d266a17d40eb79bd19c0c8cc1d029c72"
3464-
integrity sha512-hOAXaWKuq/UVFgYawxIOdPdyMQdYcwOCDOjnZcKn7wCgFUrhP7smuNZjGLuJlPSgE6aRA4cRJ+bGSrhtEt7ZAg==
3462+
version "1.0.30001015"
3463+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001015.tgz#15a7ddf66aba786a71d99626bc8f2b91c6f0f5f0"
3464+
integrity sha512-/xL2AbW/XWHNu1gnIrO8UitBGoFthcsDgU9VLK1/dpsoxbaD5LscHozKze05R6WLsBvLhqv78dAPozMFQBYLbQ==
34653465

34663466
34673467
version "1.0.0"
@@ -10109,9 +10109,9 @@ node-pre-gyp@^0.12.0:
1010910109
tar "^4"
1011010110

1011110111
node-releases@^1.1.14, node-releases@^1.1.25, node-releases@^1.1.41:
10112-
version "1.1.41"
10113-
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.41.tgz#57674a82a37f812d18e3b26118aefaf53a00afed"
10114-
integrity sha512-+IctMa7wIs8Cfsa8iYzeaLTFwv5Y4r5jZud+4AnfymzeEXKBCavFX0KBgzVaPVqf0ywa6PrO8/b+bPqdwjGBSg==
10112+
version "1.1.42"
10113+
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.42.tgz#a999f6a62f8746981f6da90627a8d2fc090bbad7"
10114+
integrity sha512-OQ/ESmUqGawI2PRX+XIRao44qWYBBfN54ImQYdWVTQqUckuejOg76ysSqDBK8NG3zwySRVnX36JwDQ6x+9GxzA==
1011510115
dependencies:
1011610116
semver "^6.3.0"
1011710117

@@ -12128,9 +12128,9 @@ react-navigation-stack@^1.10.3:
1212812128
prop-types "^15.7.2"
1212912129

1213012130
react-navigation-tabs@^2.6.0:
12131-
version "2.6.0"
12132-
resolved "https://registry.yarnpkg.com/react-navigation-tabs/-/react-navigation-tabs-2.6.0.tgz#e7b7af54e6dab3f7cf7747859862c9684713d7df"
12133-
integrity sha512-ffDB9CquA+f+bV1WV228Z3VY3sqUa9eerFnwHw096wgG3YafPDYKo+Xs28N9jQWMQ9Sfb0JB8HvkpR/9pcIS1A==
12131+
version "2.6.2"
12132+
resolved "https://registry.yarnpkg.com/react-navigation-tabs/-/react-navigation-tabs-2.6.2.tgz#6611f3bbc5fcbc004a96a457e1dbe8d957d09ef5"
12133+
integrity sha512-b7Bwio3pOyb2dJOsfICm1eXUCekULO63VitLlkslsuwB5v5qXD9u+TkuSGADPiAybRH3Fts4cQX/xA5WGsIsfg==
1213412134
dependencies:
1213512135
hoist-non-react-statics "^3.3.0"
1213612136
react-lifecycles-compat "^3.0.4"
@@ -14586,9 +14586,9 @@ [email protected]:
1458614586
integrity sha512-YycBxUb49UUhdNMU5aJ7z5Ej2XGmaIBL0x34vZ82fn3hGvD+bgrMrVDpatgz2f7YxUMJxMkbWxJZeAvDxVe7Vw==
1458714587

1458814588
[email protected], typescript@^3.5.1:
14589-
version "3.7.2"
14590-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.7.2.tgz#27e489b95fa5909445e9fef5ee48d81697ad18fb"
14591-
integrity sha512-ml7V7JfiN2Xwvcer+XAf2csGO1bPBdRbFCkYBczNZggrBZ9c7G3riSUeJmqEU5uOtXNPMhE3n+R4FA/3YOAWOQ==
14589+
version "3.7.3"
14590+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.7.3.tgz#b36840668a16458a7025b9eabfad11b66ab85c69"
14591+
integrity sha512-Mcr/Qk7hXqFBXMN7p7Lusj1ktCBydylfQM/FZCk5glCNQJrCUKPkMHdo9R0MTFWsC/4kPFvDS0fDPvukfCkFsw==
1459214592

1459314593
typescript@^2.7.0:
1459414594
version "2.9.2"

0 commit comments

Comments
 (0)