@nativescript-community/ui-material-bottomsheet 7.0.21 → 7.0.22
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/CHANGELOG.md +11 -0
- package/README.md +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,17 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## [7.0.22](https://github.com/nativescript-community/ui-material-components/compare/v7.0.21...v7.0.22) (2022-06-22)
|
7
|
+
|
8
|
+
|
9
|
+
### Bug Fixes
|
10
|
+
|
11
|
+
* **bottomsheet:** import options in readme ([c4529a3](https://github.com/nativescript-community/ui-material-components/commit/c4529a35e98c322a5030b71981eb724d1e866b70))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
6
17
|
## [7.0.21](https://github.com/nativescript-community/ui-material-components/compare/v7.0.20...v7.0.21) (2022-06-21)
|
7
18
|
|
8
19
|
**Note:** Version bump only for package @nativescript-community/ui-material-bottomsheet
|
package/README.md
CHANGED
@@ -135,7 +135,7 @@ Then you can show a Vue component:
|
|
135
135
|
import MyComponent from 'MyComponent.vue';
|
136
136
|
|
137
137
|
//inside another Vue component
|
138
|
-
const options:
|
138
|
+
const options: VueBottomSheetOptions = {
|
139
139
|
};
|
140
140
|
this.$showBottomSheet(MyComponent, options)
|
141
141
|
```
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nativescript-community/ui-material-bottomsheet",
|
3
|
-
"version": "7.0.
|
3
|
+
"version": "7.0.22",
|
4
4
|
"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.",
|
5
5
|
"main": "./bottomsheet",
|
6
6
|
"sideEffects": false,
|
@@ -46,7 +46,7 @@
|
|
46
46
|
},
|
47
47
|
"readmeFilename": "README.md",
|
48
48
|
"dependencies": {
|
49
|
-
"@nativescript-community/ui-material-core": "^7.0.
|
49
|
+
"@nativescript-community/ui-material-core": "^7.0.22"
|
50
50
|
},
|
51
|
-
"gitHead": "
|
51
|
+
"gitHead": "d3e30fe263c4c0f4168c57d720d5ea413ca5df09"
|
52
52
|
}
|