Skip to content

Commit 5420f12

Browse files
author
farfromrefug
committed
chore(release): publish new version 7.2.38
1 parent 53b5a01 commit 5420f12

40 files changed

+141
-280
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.2.38](https://github.com/nativescript-community/ui-material-component/compare/v7.2.37...v7.2.38) (2024-02-05)
7+
8+
**Note:** Version bump only for package @nativescript-community/ui-material-components
9+
610
## [7.2.37](https://github.com/nativescript-community/ui-material-component/compare/v7.2.36...v7.2.37) (2024-02-05)
711

812
### Features

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "7.2.37",
2+
"version": "7.2.38",
33
"$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json",
44
"packages": [
55
"packages/*"

packages/activityindicator/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.2.38](https://github.com/nativescript-community/ui-material-components/compare/v7.2.37...v7.2.38) (2024-02-05)
7+
8+
**Note:** Version bump only for package @nativescript-community/ui-material-activityindicator
9+
610
## [7.2.37](https://github.com/nativescript-community/ui-material-components/compare/v7.2.36...v7.2.37) (2024-02-05)
711

812
### Bug Fixes

packages/activityindicator/package.json

+3-15
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,10 @@
11
{
22
"name": "@nativescript-community/ui-material-activityindicator",
3-
"version": "7.2.37",
3+
"version": "7.2.38",
44
"description": "Material Design Activity Indicator expresses an unspecified wait time.",
55
"main": "./index",
66
"sideEffects": false,
77
"typings": "./index.d.ts",
8-
"scripts": {
9-
"tsc": "cpy ../../src/activityindicator/index.d.ts ./ && tsc -d",
10-
"tsc-win": "cpy ..\\..\\src\\activityindicator\\index.d.ts .\\ && tsc -d",
11-
"build": "npm run tsc",
12-
"build.watch": "npm run tsc -- -w",
13-
"build.win": "npm run tsc-win",
14-
"build.all": "npm run build && npm run build.angular",
15-
"build.all.win": "npm run build.win && npm run build.angular.win",
16-
"build.angular": "ng-packagr -p ../../src/activityindicator/angular/ng-package.json -c ../../src/activityindicator/angular/tsconfig.json",
17-
"build.angular.win": "ng-packagr -p ..\\..\\src\\activityindicator\\angular\\package.json -c ..\\..\\src\\activityindicator\\angular\\tsconfig.json",
18-
"clean": "rimraf ./*.d.ts ./*.js ./*.js.map"
19-
},
208
"nativescript": {
219
"platforms": {
2210
"android": "6.2.0",
@@ -47,7 +35,7 @@
4735
"readmeFilename": "README.md",
4836
"homepage": "https://nativescript-community.github.io/ui-material-components/modules/_nativescript_community_ui_material_activityindicator.html",
4937
"dependencies": {
50-
"@nativescript-community/ui-material-core": "^7.2.37"
38+
"@nativescript-community/ui-material-core": "^7.2.38"
5139
},
52-
"gitHead": "d8c4a676e11bb01ed7bc708aaa73716f8ae7d12f"
40+
"gitHead": "7ba6701f51ee9c445019f281eee4b5ef9fd86dae"
5341
}

packages/bottom-navigation/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.2.38](https://github.com/nativescript-community/ui-material-components/compare/v7.2.37...v7.2.38) (2024-02-05)
7+
8+
**Note:** Version bump only for package @nativescript-community/ui-material-bottom-navigation
9+
610
## [7.2.37](https://github.com/nativescript-community/ui-material-components/compare/v7.2.36...v7.2.37) (2024-02-05)
711

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

packages/bottom-navigation/package.json

+4-16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nativescript-community/ui-material-bottom-navigation",
3-
"version": "7.2.37",
3+
"version": "7.2.38",
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,
@@ -11,18 +11,6 @@
1111
"ios": "6.2.0"
1212
}
1313
},
14-
"scripts": {
15-
"tsc": "cpy ../../src/bottom-navigation/index.d.ts ./ && tsc -d",
16-
"tsc-win": "cpy ..\\..\\src\\bottom-navigation\\index.d.ts .\\ && tsc -d",
17-
"build": "npm run tsc",
18-
"build.watch": "npm run tsc -- -w",
19-
"build.win": "npm run tsc-win",
20-
"build.all": "npm run build && npm run build.angular",
21-
"build.all.win": "npm run build.win && npm run build.angular.win",
22-
"build.angular": "ng-packagr -p ../../src/bottom-navigation/angular/ng-package.json -c ../../src/bottom-navigation/angular/tsconfig.json",
23-
"build.angular.win": "ng-packagr -p ..\\..\\src\\bottom-navigation\\angular\\package.json -c ..\\..\\src\\bottom-navigation\\angular\\tsconfig.json",
24-
"clean": "rimraf ./*.d.ts ./*.js ./*.js.map"
25-
},
2614
"keywords": [
2715
"NativeScript",
2816
"JavaScript",
@@ -51,8 +39,8 @@
5139
},
5240
"readmeFilename": "README.md",
5341
"dependencies": {
54-
"@nativescript-community/ui-material-core": "^7.2.37",
55-
"@nativescript-community/ui-material-core-tabs": "^7.2.37"
42+
"@nativescript-community/ui-material-core": "^7.2.38",
43+
"@nativescript-community/ui-material-core-tabs": "^7.2.38"
5644
},
57-
"gitHead": "d8c4a676e11bb01ed7bc708aaa73716f8ae7d12f"
45+
"gitHead": "7ba6701f51ee9c445019f281eee4b5ef9fd86dae"
5846
}

packages/bottomnavigationbar/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.2.38](https://github.com/nativescript-community/ui-material-components/compare/v7.2.37...v7.2.38) (2024-02-05)
7+
8+
**Note:** Version bump only for package @nativescript-community/ui-material-bottomnavigationbar
9+
610
## [7.2.37](https://github.com/nativescript-community/ui-material-components/compare/v7.2.36...v7.2.37) (2024-02-05)
711

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

packages/bottomnavigationbar/package.json

+3-15
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nativescript-community/ui-material-bottomnavigationbar",
3-
"version": "7.2.37",
3+
"version": "7.2.38",
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,
@@ -11,18 +11,6 @@
1111
"ios": "6.2.0"
1212
}
1313
},
14-
"scripts": {
15-
"tsc": "cpy ../../src/bottomnavigationbar/bottomnavigationbar.d.ts ./ && tsc -d",
16-
"tsc-win": "cpy ..\\..\\src\\bottomnavigationbar\\bottomnavigationbar.d.ts .\\ && tsc -d",
17-
"build": "npm run tsc",
18-
"build.watch": "npm run tsc -- -w",
19-
"build.win": "npm run tsc-win",
20-
"build.all": "npm run build && npm run build.angular",
21-
"build.all.win": "npm run build.win && npm run build.angular.win",
22-
"build.angular": "ng-packagr -p ../../src/bottomnavigationbar/angular/ng-package.json -c ../../src/bottomnavigationbar/angular/tsconfig.json",
23-
"build.angular.win": "ng-packagr -p ..\\..\\src\\bottomnavigationbar\\angular\\package.json -c ..\\..\\src\\bottomnavigationbar\\angular\\tsconfig.json",
24-
"clean": "rimraf ./*.d.ts ./*.js ./*.js.map"
25-
},
2614
"keywords": [
2715
"NativeScript",
2816
"JavaScript",
@@ -52,7 +40,7 @@
5240
},
5341
"readmeFilename": "README.md",
5442
"dependencies": {
55-
"@nativescript-community/ui-material-core": "^7.2.37"
43+
"@nativescript-community/ui-material-core": "^7.2.38"
5644
},
57-
"gitHead": "d8c4a676e11bb01ed7bc708aaa73716f8ae7d12f"
45+
"gitHead": "7ba6701f51ee9c445019f281eee4b5ef9fd86dae"
5846
}

packages/bottomsheet/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.2.38](https://github.com/nativescript-community/ui-material-components/compare/v7.2.37...v7.2.38) (2024-02-05)
7+
8+
**Note:** Version bump only for package @nativescript-community/ui-material-bottomsheet
9+
610
## [7.2.37](https://github.com/nativescript-community/ui-material-components/compare/v7.2.36...v7.2.37) (2024-02-05)
711

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

packages/bottomsheet/package.json

+3-15
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,10 @@
11
{
22
"name": "@nativescript-community/ui-material-bottomsheet",
3-
"version": "7.2.37",
3+
"version": "7.2.38",
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,
77
"typings": "./bottomsheet.d.ts",
8-
"scripts": {
9-
"tsc": "cpy ../../src/bottomsheet/bottomsheet.d.ts ./ && tsc -d",
10-
"tsc-win": "cpy ..\\..\\src\\bottomsheet\\bottomsheet.d.ts .\\ && tsc -d",
11-
"build": "npm run tsc",
12-
"build.watch": "npm run tsc -- -w",
13-
"build.win": "npm run tsc-win",
14-
"build.all": "npm run build && npm run build.angular",
15-
"build.all.win": "npm run build.win && npm run build.angular.win",
16-
"build.angular": "ng-packagr -p ../../src/bottomsheet/angular/ng-package.json -c ../../src/bottomsheet/angular/tsconfig.json",
17-
"build.angular.win": "ng-packagr -p ..\\..\\src\\bottomsheet\\angular\\package.json -c ..\\..\\src\\bottomsheet\\angular\\tsconfig.json",
18-
"clean": "rimraf ./*.d.ts ./*.js ./*.js.map"
19-
},
208
"nativescript": {
219
"platforms": {
2210
"android": "6.2.0",
@@ -46,7 +34,7 @@
4634
},
4735
"readmeFilename": "README.md",
4836
"dependencies": {
49-
"@nativescript-community/ui-material-core": "^7.2.37"
37+
"@nativescript-community/ui-material-core": "^7.2.38"
5038
},
51-
"gitHead": "d8c4a676e11bb01ed7bc708aaa73716f8ae7d12f"
39+
"gitHead": "7ba6701f51ee9c445019f281eee4b5ef9fd86dae"
5240
}

packages/button/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.2.38](https://github.com/nativescript-community/ui-material-components/compare/v7.2.37...v7.2.38) (2024-02-05)
7+
8+
**Note:** Version bump only for package @nativescript-community/ui-material-button
9+
610
## [7.2.37](https://github.com/nativescript-community/ui-material-components/compare/v7.2.36...v7.2.37) (2024-02-05)
711

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

packages/button/package.json

+3-15
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,10 @@
11
{
22
"name": "@nativescript-community/ui-material-button",
3-
"version": "7.2.37",
3+
"version": "7.2.38",
44
"description": "Material Design Buttons allow users to take actions, and make choices, with a single tap.",
55
"main": "./button",
66
"sideEffects": false,
77
"typings": "./button.d.ts",
8-
"scripts": {
9-
"tsc": "cpy ../../src/button/button.d.ts ./ && tsc -d",
10-
"tsc-win": "cpy ..\\..\\src\\button\\button.d.ts .\\ && tsc -d",
11-
"build": "npm run tsc",
12-
"build.watch": "npm run tsc -- -w",
13-
"build.win": "npm run tsc-win",
14-
"build.all": "npm run build && npm run build.angular",
15-
"build.all.win": "npm run build.win && npm run build.angular.win",
16-
"build.angular": "ng-packagr -p ../../src/button/angular/ng-package.json -c ../../src/button/angular/tsconfig.json",
17-
"build.angular.win": "ng-packagr -p ..\\..\\src\\button\\angular\\package.json -c ..\\..\\src\\button\\angular\\tsconfig.json",
18-
"clean": "rimraf ./*.d.ts ./*.js ./*.js.map"
19-
},
208
"nativescript": {
219
"platforms": {
2210
"android": "6.2.0",
@@ -47,7 +35,7 @@
4735
"readmeFilename": "README.md",
4836
"dependencies": {
4937
"@nativescript-community/text": "^1.5.2",
50-
"@nativescript-community/ui-material-core": "^7.2.37"
38+
"@nativescript-community/ui-material-core": "^7.2.38"
5139
},
52-
"gitHead": "d8c4a676e11bb01ed7bc708aaa73716f8ae7d12f"
40+
"gitHead": "7ba6701f51ee9c445019f281eee4b5ef9fd86dae"
5341
}

packages/cardview/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.2.38](https://github.com/nativescript-community/ui-material-components/compare/v7.2.37...v7.2.38) (2024-02-05)
7+
8+
**Note:** Version bump only for package @nativescript-community/ui-material-cardview
9+
610
## [7.2.37](https://github.com/nativescript-community/ui-material-components/compare/v7.2.36...v7.2.37) (2024-02-05)
711

812
**Note:** Version bump only for package @nativescript-community/ui-material-cardview

packages/cardview/package.json

+3-15
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,10 @@
11
{
22
"name": "@nativescript-community/ui-material-cardview",
3-
"version": "7.2.37",
3+
"version": "7.2.38",
44
"description": "Material Design Cards contain content and actions about a single subject.",
55
"main": "./cardview",
66
"sideEffects": false,
77
"typings": "./cardview.d.ts",
8-
"scripts": {
9-
"tsc": "cpy ../../src/cardview/cardview.d.ts ./ && tsc -d",
10-
"tsc-win": "cpy ..\\..\\src\\cardview\\cardview.d.ts .\\ && tsc -d",
11-
"build": "npm run tsc",
12-
"build.watch": "npm run tsc -- -w",
13-
"build.win": "npm run tsc-win",
14-
"build.all": "npm run build && npm run build.angular",
15-
"build.all.win": "npm run build.win && npm run build.angular.win",
16-
"build.angular": "ng-packagr -p ../../src/cardview/angular/ng-package.json -c ../../src/cardview/angular/tsconfig.json",
17-
"build.angular.win": "ng-packagr -p ..\\..\\src\\cardview\\angular\\package.json -c ..\\..\\src\\cardview\\angular\\tsconfig.json",
18-
"clean": "rimraf ./*.d.ts ./*.js ./*.js.map"
19-
},
208
"nativescript": {
219
"platforms": {
2210
"android": "6.2.0",
@@ -46,7 +34,7 @@
4634
},
4735
"readmeFilename": "README.md",
4836
"dependencies": {
49-
"@nativescript-community/ui-material-core": "^7.2.37"
37+
"@nativescript-community/ui-material-core": "^7.2.38"
5038
},
51-
"gitHead": "d8c4a676e11bb01ed7bc708aaa73716f8ae7d12f"
39+
"gitHead": "7ba6701f51ee9c445019f281eee4b5ef9fd86dae"
5240
}

packages/core-tabs/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.2.38](https://github.com/nativescript-community/ui-material-components/compare/v7.2.37...v7.2.38) (2024-02-05)
7+
8+
**Note:** Version bump only for package @nativescript-community/ui-material-core-tabs
9+
610
## [7.2.37](https://github.com/nativescript-community/ui-material-components/compare/v7.2.36...v7.2.37) (2024-02-05)
711

812
**Note:** Version bump only for package @nativescript-community/ui-material-core-tabs

packages/core-tabs/package.json

+3-13
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,10 @@
11
{
22
"name": "@nativescript-community/ui-material-core-tabs",
3-
"version": "7.2.37",
3+
"version": "7.2.38",
44
"description": "Material Core Tabs component",
55
"main": "./index",
66
"sideEffects": false,
77
"typings": "./index.d.ts",
8-
"scripts": {
9-
"tsc": "cpy '**/*.d.ts' '../../packages/core-tabs' --cwd=../../src/core-tabs --parents && tsc -d",
10-
"tsc-win": "cpy **/*.d.ts ..\\..\\packages\\core-tabs --cwd=..\\..\\src\\core-tabs --parents && tsc -d",
11-
"build": "npm run tsc ",
12-
"build.watch": "npm run tsc -- -w",
13-
"build.win": "npm run tsc-win ",
14-
"build.all": "npm run build",
15-
"build.all.win": "npm run build.win",
16-
"clean": "rimraf ./*.d.ts ./*.js ./*.js.map android"
17-
},
188
"nativescript": {
199
"platforms": {
2010
"android": "6.2.0",
@@ -39,7 +29,7 @@
3929
"repository": "https://github.com/nativescript-community/ui-material-components",
4030
"readmeFilename": "README.md",
4131
"dependencies": {
42-
"@nativescript-community/ui-material-core": "^7.2.37"
32+
"@nativescript-community/ui-material-core": "^7.2.38"
4333
},
44-
"gitHead": "d8c4a676e11bb01ed7bc708aaa73716f8ae7d12f"
34+
"gitHead": "7ba6701f51ee9c445019f281eee4b5ef9fd86dae"
4535
}

packages/core/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.2.38](https://github.com/nativescript-community/ui-material-components/compare/v7.2.37...v7.2.38) (2024-02-05)
7+
8+
**Note:** Version bump only for package @nativescript-community/ui-material-core
9+
610
## [7.2.37](https://github.com/nativescript-community/ui-material-components/compare/v7.2.36...v7.2.37) (2024-02-05)
711

812
### Bug Fixes

packages/core/package.json

+2-12
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,10 @@
11
{
22
"name": "@nativescript-community/ui-material-core",
3-
"version": "7.2.37",
3+
"version": "7.2.38",
44
"description": "Material Core component",
55
"main": "./index",
66
"sideEffects": false,
77
"typings": "./index.d.ts",
8-
"scripts": {
9-
"tsc": "cpy '**/*.d.ts' '../../packages/core' --cwd=../../src/core --parents && tsc -d",
10-
"tsc-win": "cpy **/*.d.ts ..\\..\\packages\\core --cwd=..\\..\\src\\core --parents && tsc -d",
11-
"build": "npm run tsc",
12-
"build.watch": "npm run tsc -- -w",
13-
"build.win": "npm run tsc-win",
14-
"build.all": "npm run build",
15-
"build.all.win": "npm run build.win",
16-
"clean": "rimraf ./*.d.ts ./*.js ./*.js.map android"
17-
},
188
"nativescript": {
199
"platforms": {
2010
"android": "6.2.0",
@@ -38,5 +28,5 @@
3828
"homepage": "https://github.com/nativescript-community/ui-material-components",
3929
"repository": "https://github.com/nativescript-community/ui-material-components",
4030
"readmeFilename": "README.md",
41-
"gitHead": "d8c4a676e11bb01ed7bc708aaa73716f8ae7d12f"
31+
"gitHead": "7ba6701f51ee9c445019f281eee4b5ef9fd86dae"
4232
}

packages/dialogs/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.2.38](https://github.com/nativescript-community/ui-material-components/compare/v7.2.37...v7.2.38) (2024-02-05)
7+
8+
**Note:** Version bump only for package @nativescript-community/ui-material-dialogs
9+
610
## [7.2.37](https://github.com/nativescript-community/ui-material-components/compare/v7.2.36...v7.2.37) (2024-02-05)
711

812
**Note:** Version bump only for package @nativescript-community/ui-material-dialogs

0 commit comments

Comments
 (0)