Skip to content

Commit 23f6882

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents ccd5366 + 06a15b4 commit 23f6882

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+615
-91
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,12 @@ yarn-error.log*
2121
.LSOverride
2222
.idea
2323
.cloud
24+
.gradle
2425
.project
26+
.yarn
2527
tmp/
2628
package-lock.json
29+
yarn.lock
2730

2831
!.eslintrc.js
2932
!.prettierrc.js

.npmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
shamefully-hoist=true
22
strict-peer-dependencies=false
33
loglevel=error
4-
engine-strict=true
4+
engine-strict=true

CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,45 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [7.0.28](https://github.com/nativescript-community/ui-material-component/compare/v7.0.27...v7.0.28) (2022-09-16)
7+
8+
9+
### Bug Fixes
10+
11+
* correctly search for the tab fragment ([#405](https://github.com/nativescript-community/ui-material-component/issues/405)) ([2e91650](https://github.com/nativescript-community/ui-material-component/commit/2e916508622faf06e9bfc76de9c8c0b31cb417c1))
12+
13+
14+
15+
16+
17+
## [7.0.27](https://github.com/nativescript-community/ui-material-component/compare/v7.0.26...v7.0.27) (2022-09-16)
18+
19+
20+
### Bug Fixes
21+
22+
* **bottomsheet:** android ensure props are set in the right order ([9076a8d](https://github.com/nativescript-community/ui-material-component/commit/9076a8d87706de4ced3d78b68d8c7fc23a0d4650))
23+
24+
25+
26+
27+
28+
## [7.0.26](https://github.com/nativescript-community/ui-material-component/compare/v7.0.25...v7.0.26) (2022-09-14)
29+
30+
31+
### Bug Fixes
32+
33+
* **bottomsheet:** android ensure coordinator is a view ([8a7bed7](https://github.com/nativescript-community/ui-material-component/commit/8a7bed7d62e9100f5422925ea14700fe8239b4cb))
34+
* **tabs:** ensure we return the correct fragment manager ([23b25b9](https://github.com/nativescript-community/ui-material-component/commit/23b25b9055faddee4a2cb73f977d60f76145aadf))
35+
36+
37+
### Features
38+
39+
* **BottomSheet:** (Android only) allows to interact with the screen behind the sheet ([aaf9e0e](https://github.com/nativescript-community/ui-material-component/commit/aaf9e0e8c04a81fce6e6fd46055dd57dd615e6ce))
40+
41+
42+
43+
44+
645
## [7.0.25](https://github.com/nativescript-community/ui-material-component/compare/v7.0.24...v7.0.25) (2022-07-19)
746

847

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
]
1818
}
1919
},
20-
"version": "7.0.25"
20+
"version": "7.0.28"
2121
}

package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
"build.all": "lerna run build.all",
1818
"build.all.win": "lerna run build.all.win",
1919
"build.angular": "lerna run build.angular",
20-
"clean": "rimraf 'packages/**/*.d.ts' 'packages/**/*.js' 'packages/**/*.js.map' 'packages/**/*.metadata.json' 'packages/**/*.ngsummary.json' 'packages/**/*.mjs' 'packages/**/*.mjs.map' 'packages/**/node_modules' 'packages/**/angular/package.json' 'package-lock.json' 'pnpm-lock.yaml' 'node_modules'",
20+
"clean": "rimraf 'packages/**/*.d.ts' 'packages/**/*.js' 'packages/**/*.js.map' 'packages/**/*.metadata.json' 'packages/**/*.ngsummary.json' 'packages/**/*.mjs' 'packages/**/*.mjs.map' 'packages/**/angular/package.json'",
21+
"fullclean": "npm run clean && rimraf 'packages/**/node_modules' 'package-lock.json' 'pnpm-lock.yaml' 'node_modules'",
2122
"commitmsg": "commitlint -e $GIT_PARAMS",
2223
"demo.ng.android": "cd ./demo-ng && ns run android --no-hmr",
2324
"demo.ng.clean": "cd ./demo-ng && ns clean",
@@ -32,15 +33,16 @@
3233
"demo.vue.clean": "cd ./demo-vue && ns clean",
3334
"demo.vue.ios": "cd ./demo-vue && ns run ios --no-hmr",
3435
"postinstall": "npm run setup",
35-
"publish": "npm run setup && npm run build.all && lerna publish --create-release=github --force-publish",
36+
"publish": "npm run setup && npm run clean && npm run build.all && lerna publish --create-release=github --force-publish",
3637
"readme": "node ./tools/readme.js",
3738
"setup": "npm run submodules && ts-patch install -s",
3839
"start": "./node_modules/.bin/ntl -A -s 15 -o",
3940
"submodules": "git submodule update --init",
4041
"sync": "node ./tools/sync.js",
4142
"sync.test": "node ./tools/sync.js",
4243
"tsc": "cpy '**/*.d.ts' '../plugin' --parents --cwd=src && tsc -skipLibCheck -d",
43-
"update": "node ./tools/update.js"
44+
"update": "node ./tools/update.js",
45+
"doc": "node tools/builddoc.mjs && git add docs/* && git commit -m \"chore:doc\""
4446
},
4547
"keywords": [
4648
"NativeScript",
@@ -80,7 +82,7 @@
8082
}
8183
},
8284
"engines": {
83-
"npm": "please-use-yarn-or-pnpm",
85+
"npm": "please use yarn or pnpm",
8486
"yarn": ">= 1.19.1",
8587
"pnpm": ">= 7.0.0"
8688
}

packages/activityindicator/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,30 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [7.0.28](https://github.com/nativescript-community/ui-material-components/compare/v7.0.27...v7.0.28) (2022-09-16)
7+
8+
**Note:** Version bump only for package @nativescript-community/ui-material-activityindicator
9+
10+
11+
12+
13+
14+
## [7.0.27](https://github.com/nativescript-community/ui-material-components/compare/v7.0.26...v7.0.27) (2022-09-16)
15+
16+
**Note:** Version bump only for package @nativescript-community/ui-material-activityindicator
17+
18+
19+
20+
21+
22+
## [7.0.26](https://github.com/nativescript-community/ui-material-components/compare/v7.0.25...v7.0.26) (2022-09-14)
23+
24+
**Note:** Version bump only for package @nativescript-community/ui-material-activityindicator
25+
26+
27+
28+
29+
630
## [7.0.25](https://github.com/nativescript-community/ui-material-components/compare/v7.0.24...v7.0.25) (2022-07-19)
731

832
**Note:** Version bump only for package @nativescript-community/ui-material-activityindicator

packages/activityindicator/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/activityindicator/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nativescript-community/ui-material-activityindicator",
3-
"version": "7.0.25",
3+
"version": "7.0.28",
44
"description": "Material Design Activity Indicator expresses an unspecified wait time.",
55
"main": "./index",
66
"sideEffects": false,
@@ -47,7 +47,7 @@
4747
"readmeFilename": "README.md",
4848
"homepage": "https://nativescript-community.github.io/ui-material-components/modules/_nativescript_community_ui_material_activityindicator.html",
4949
"dependencies": {
50-
"@nativescript-community/ui-material-core": "^7.0.25"
50+
"@nativescript-community/ui-material-core": "^7.0.28"
5151
},
5252
"gitHead": "240457b7952c4f0258aabc46615de63d1473ead1"
5353
}

packages/bottom-navigation/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,30 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [7.0.28](https://github.com/nativescript-community/ui-material-components/compare/v7.0.27...v7.0.28) (2022-09-16)
7+
8+
**Note:** Version bump only for package @nativescript-community/ui-material-bottom-navigation
9+
10+
11+
12+
13+
14+
## [7.0.27](https://github.com/nativescript-community/ui-material-components/compare/v7.0.26...v7.0.27) (2022-09-16)
15+
16+
**Note:** Version bump only for package @nativescript-community/ui-material-bottom-navigation
17+
18+
19+
20+
21+
22+
## [7.0.26](https://github.com/nativescript-community/ui-material-components/compare/v7.0.25...v7.0.26) (2022-09-14)
23+
24+
**Note:** Version bump only for package @nativescript-community/ui-material-bottom-navigation
25+
26+
27+
28+
29+
630
## [7.0.25](https://github.com/nativescript-community/ui-material-components/compare/v7.0.24...v7.0.25) (2022-07-19)
731

832
**Note:** Version bump only for package @nativescript-community/ui-material-bottom-navigation

packages/bottom-navigation/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/bottom-navigation/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nativescript-community/ui-material-bottom-navigation",
3-
"version": "7.0.25",
3+
"version": "7.0.28",
44
"description": "Material Design Bottom Navigation bars allow movement between primary destinations in an app. Tapping on a bottom navigation icon takes you directly to the associated view or refreshes the currently active view.",
55
"main": "bottomnavigation",
66
"sideEffects": false,
@@ -51,8 +51,8 @@
5151
},
5252
"readmeFilename": "README.md",
5353
"dependencies": {
54-
"@nativescript-community/ui-material-core": "^7.0.25",
55-
"@nativescript-community/ui-material-core-tabs": "^7.0.25"
54+
"@nativescript-community/ui-material-core": "^7.0.28",
55+
"@nativescript-community/ui-material-core-tabs": "^7.0.28"
5656
},
5757
"gitHead": "240457b7952c4f0258aabc46615de63d1473ead1"
5858
}

packages/bottomnavigationbar/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,30 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [7.0.28](https://github.com/nativescript-community/ui-material-components/compare/v7.0.27...v7.0.28) (2022-09-16)
7+
8+
**Note:** Version bump only for package @nativescript-community/ui-material-bottomnavigationbar
9+
10+
11+
12+
13+
14+
## [7.0.27](https://github.com/nativescript-community/ui-material-components/compare/v7.0.26...v7.0.27) (2022-09-16)
15+
16+
**Note:** Version bump only for package @nativescript-community/ui-material-bottomnavigationbar
17+
18+
19+
20+
21+
22+
## [7.0.26](https://github.com/nativescript-community/ui-material-components/compare/v7.0.25...v7.0.26) (2022-09-14)
23+
24+
**Note:** Version bump only for package @nativescript-community/ui-material-bottomnavigationbar
25+
26+
27+
28+
29+
630
## [7.0.25](https://github.com/nativescript-community/ui-material-components/compare/v7.0.24...v7.0.25) (2022-07-19)
731

832
**Note:** Version bump only for package @nativescript-community/ui-material-bottomnavigationbar

packages/bottomnavigationbar/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/bottomnavigationbar/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nativescript-community/ui-material-bottomnavigationbar",
3-
"version": "7.0.25",
3+
"version": "7.0.28",
44
"description": "Material Design Bottom Navigation bars allow movement between primary destinations in an app. Tapping on a bottom navigation icon takes you directly to the associated view or refreshes the currently active view.",
55
"main": "bottomnavigationbar",
66
"sideEffects": false,
@@ -52,7 +52,7 @@
5252
},
5353
"readmeFilename": "README.md",
5454
"dependencies": {
55-
"@nativescript-community/ui-material-core": "^7.0.25"
55+
"@nativescript-community/ui-material-core": "^7.0.28"
5656
},
5757
"gitHead": "240457b7952c4f0258aabc46615de63d1473ead1"
5858
}

packages/bottomsheet/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,30 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [7.0.28](https://github.com/nativescript-community/ui-material-components/compare/v7.0.27...v7.0.28) (2022-09-16)
7+
8+
**Note:** Version bump only for package @nativescript-community/ui-material-bottomsheet
9+
10+
11+
12+
13+
14+
## [7.0.27](https://github.com/nativescript-community/ui-material-components/compare/v7.0.26...v7.0.27) (2022-09-16)
15+
16+
**Note:** Version bump only for package @nativescript-community/ui-material-bottomsheet
17+
18+
19+
20+
21+
22+
## [7.0.26](https://github.com/nativescript-community/ui-material-components/compare/v7.0.25...v7.0.26) (2022-09-14)
23+
24+
**Note:** Version bump only for package @nativescript-community/ui-material-bottomsheet
25+
26+
27+
28+
29+
630
## [7.0.25](https://github.com/nativescript-community/ui-material-components/compare/v7.0.24...v7.0.25) (2022-07-19)
731

832
**Note:** Version bump only for package @nativescript-community/ui-material-bottomsheet

packages/bottomsheet/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ export interface BottomSheetOptions {
7474
//(iOS only) A Boolean value that controls whether the height of the keyboard should affect the bottom sheet's frame when the keyboard shows on the screen. (Default: true)
7575
onChangeState?: onChangeStateBottomSheet;
7676
// One works to be called on the scroll of the sheet. Parameters: state (CLOSED, DRAGGING, DRAGGING, COLLAPSED) and slideOffset is the new offset of this bottom sheet within [-1,1] range. Offset increases as this bottom sheet is moving upward. From 0 to 1 the sheet is between collapsed and expanded states and from -1 to 0 it is between hidden and collapsed states.
77+
canTouchBehind?: boolean //(Android only) allows to interact with the screen behind the sheet. For it to work properly need dismissOnBackgroundTap set to true.
7778
}
7879
```
7980

packages/bottomsheet/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/bottomsheet/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nativescript-community/ui-material-bottomsheet",
3-
"version": "7.0.25",
3+
"version": "7.0.28",
44
"description": "Material Design Bottom Sheets slide up from the bottom of the screen to reveal more content. Bottom sheets integrate with the app to display supporting content or present deep-linked content from other apps.",
55
"main": "./bottomsheet",
66
"sideEffects": false,
@@ -46,7 +46,7 @@
4646
},
4747
"readmeFilename": "README.md",
4848
"dependencies": {
49-
"@nativescript-community/ui-material-core": "^7.0.25"
49+
"@nativescript-community/ui-material-core": "^7.0.28"
5050
},
5151
"gitHead": "240457b7952c4f0258aabc46615de63d1473ead1"
5252
}

packages/button/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,30 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [7.0.28](https://github.com/nativescript-community/ui-material-components/compare/v7.0.27...v7.0.28) (2022-09-16)
7+
8+
**Note:** Version bump only for package @nativescript-community/ui-material-button
9+
10+
11+
12+
13+
14+
## [7.0.27](https://github.com/nativescript-community/ui-material-components/compare/v7.0.26...v7.0.27) (2022-09-16)
15+
16+
**Note:** Version bump only for package @nativescript-community/ui-material-button
17+
18+
19+
20+
21+
22+
## [7.0.26](https://github.com/nativescript-community/ui-material-components/compare/v7.0.25...v7.0.26) (2022-09-14)
23+
24+
**Note:** Version bump only for package @nativescript-community/ui-material-button
25+
26+
27+
28+
29+
630
## [7.0.25](https://github.com/nativescript-community/ui-material-components/compare/v7.0.24...v7.0.25) (2022-07-19)
731

832
**Note:** Version bump only for package @nativescript-community/ui-material-button

packages/button/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nativescript-community/ui-material-button",
3-
"version": "7.0.25",
3+
"version": "7.0.28",
44
"description": "Material Design Buttons allow users to take actions, and make choices, with a single tap.",
55
"main": "./button",
66
"sideEffects": false,
@@ -47,7 +47,7 @@
4747
"readmeFilename": "README.md",
4848
"dependencies": {
4949
"@nativescript-community/text": "^1.5.2",
50-
"@nativescript-community/ui-material-core": "^7.0.25"
50+
"@nativescript-community/ui-material-core": "^7.0.28"
5151
},
5252
"gitHead": "240457b7952c4f0258aabc46615de63d1473ead1"
5353
}

0 commit comments

Comments
 (0)