Skip to content

Commit ab06079

Browse files
committed
Merge branch 'master' of github.com:nativescript-community/ui-material-components
2 parents c6a69ae + 773fdf1 commit ab06079

Some content is hidden

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

48 files changed

+321
-72
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
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.61](https://github.com/nativescript-community/ui-material-component/compare/v7.2.60...v7.2.61) (2024-07-09)
7+
8+
### Bug Fixes
9+
10+
* **textfield,textview:** android fix for `editable` property ([acf3ad7](https://github.com/nativescript-community/ui-material-component/commit/acf3ad743aaf85f27862c70cabcf50b2d2741b0b))
11+
12+
## [7.2.60](https://github.com/nativescript-community/ui-material-component/compare/v7.2.59...v7.2.60) (2024-07-04)
13+
14+
### Bug Fixes
15+
16+
* **snackbar:** android prevent error if view to attach it too is not loaded ([a3efb3a](https://github.com/nativescript-community/ui-material-component/commit/a3efb3a9c816cf4b19977b3dd507331db5afe3ea))
17+
18+
## [7.2.59](https://github.com/nativescript-community/ui-material-component/compare/v7.2.58...v7.2.59) (2024-06-18)
19+
20+
### Bug Fixes
21+
22+
* **bottomsheet:** android fix for certain dismiss cases ([b6bbcf5](https://github.com/nativescript-community/ui-material-component/commit/b6bbcf52f392bfcd693b91c767cb374ac22c05f7))
23+
624
## [7.2.58](https://github.com/nativescript-community/ui-material-component/compare/v7.2.57...v7.2.58) (2024-06-06)
725

826
### Bug Fixes

demo-snippets/vue/TextFields.vue

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,9 @@
9090
placeholderColor="blue"
9191
strokeColor="green"
9292
margin="10"
93+
:editable="!disabled"
9394
/>
95+
<MDButton :text="disabled ? 'Enable' : 'Disable'" @tap="onButtonTap" />
9496
<MDTextField
9597
id="textField6"
9698
variant="filled"
@@ -148,12 +150,15 @@ export default Vue.extend({
148150
149151
data() {
150152
return {
151-
title,
153+
disabled: false, title,
152154
value: ''
153155
};
154156
},
155157
156158
methods: {
159+
onButtonTap() {
160+
this.disabled = !this.disabled;
161+
},
157162
onNavigationButtonTap() {
158163
frameModule.Frame.topmost().goBack();
159164
},

docs/assets/navigation.js

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

docs/assets/search.js

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

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "7.2.58",
2+
"version": "7.2.61",
33
"$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json",
44
"packages": [
55
"packages/*"

packages/activityindicator/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
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.61](https://github.com/nativescript-community/ui-material-components/compare/v7.2.60...v7.2.61) (2024-07-09)
7+
8+
**Note:** Version bump only for package @nativescript-community/ui-material-activityindicator
9+
10+
## [7.2.60](https://github.com/nativescript-community/ui-material-components/compare/v7.2.59...v7.2.60) (2024-07-04)
11+
12+
**Note:** Version bump only for package @nativescript-community/ui-material-activityindicator
13+
14+
## [7.2.59](https://github.com/nativescript-community/ui-material-components/compare/v7.2.58...v7.2.59) (2024-06-18)
15+
16+
**Note:** Version bump only for package @nativescript-community/ui-material-activityindicator
17+
618
## [7.2.58](https://github.com/nativescript-community/ui-material-components/compare/v7.2.57...v7.2.58) (2024-06-06)
719

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

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.2.58",
3+
"version": "7.2.61",
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.2.58"
50+
"@nativescript-community/ui-material-core": "^7.2.61"
5151
},
5252
"gitHead": "65eb2d66b4128ce58b4d3e35c83a68a6f921222c"
5353
}

packages/bottom-navigation/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
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.61](https://github.com/nativescript-community/ui-material-components/compare/v7.2.60...v7.2.61) (2024-07-09)
7+
8+
**Note:** Version bump only for package @nativescript-community/ui-material-bottom-navigation
9+
10+
## [7.2.60](https://github.com/nativescript-community/ui-material-components/compare/v7.2.59...v7.2.60) (2024-07-04)
11+
12+
**Note:** Version bump only for package @nativescript-community/ui-material-bottom-navigation
13+
14+
## [7.2.59](https://github.com/nativescript-community/ui-material-components/compare/v7.2.58...v7.2.59) (2024-06-18)
15+
16+
**Note:** Version bump only for package @nativescript-community/ui-material-bottom-navigation
17+
618
## [7.2.58](https://github.com/nativescript-community/ui-material-components/compare/v7.2.57...v7.2.58) (2024-06-06)
719

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

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.2.58",
3+
"version": "7.2.61",
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.2.58",
55-
"@nativescript-community/ui-material-core-tabs": "^7.2.58"
54+
"@nativescript-community/ui-material-core": "^7.2.61",
55+
"@nativescript-community/ui-material-core-tabs": "^7.2.61"
5656
},
5757
"gitHead": "65eb2d66b4128ce58b4d3e35c83a68a6f921222c"
5858
}

packages/bottomnavigationbar/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
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.61](https://github.com/nativescript-community/ui-material-components/compare/v7.2.60...v7.2.61) (2024-07-09)
7+
8+
**Note:** Version bump only for package @nativescript-community/ui-material-bottomnavigationbar
9+
10+
## [7.2.60](https://github.com/nativescript-community/ui-material-components/compare/v7.2.59...v7.2.60) (2024-07-04)
11+
12+
**Note:** Version bump only for package @nativescript-community/ui-material-bottomnavigationbar
13+
14+
## [7.2.59](https://github.com/nativescript-community/ui-material-components/compare/v7.2.58...v7.2.59) (2024-06-18)
15+
16+
**Note:** Version bump only for package @nativescript-community/ui-material-bottomnavigationbar
17+
618
## [7.2.58](https://github.com/nativescript-community/ui-material-components/compare/v7.2.57...v7.2.58) (2024-06-06)
719

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

0 commit comments

Comments
 (0)