@nativescript-community/ui-material-bottom-navigation 6.2.3 → 6.2.7
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 +35 -0
- package/README.md +2 -2
- package/angular/{esm2015/index.js → esm2020/index.mjs} +2 -2
- package/angular/{esm2015/nativescript-community-ui-material-bottom-navigation-angular.js → esm2020/nativescript-community-ui-material-bottom-navigation-angular.mjs} +0 -0
- package/angular/fesm2015/nativescript-community-ui-material-bottom-navigation-angular.mjs +37 -0
- package/angular/{fesm2015/nativescript-community-ui-material-bottom-navigation-angular.js → fesm2020/nativescript-community-ui-material-bottom-navigation-angular.mjs} +2 -2
- package/angular/index.d.ts +5 -5
- package/angular/package.json +21 -7
- package/index.ios.js +2 -1
- package/package.json +3 -3
- package/angular/bundles/nativescript-community-ui-material-bottom-navigation-angular.umd.js +0 -71
- package/angular/bundles/nativescript-community-ui-material-bottom-navigation-angular.umd.min.js +0 -2
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,41 @@
|
|
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
|
+
## [6.2.7](https://github.com/nativescript-community/ui-material-components/tree/master/packages/bottom-navigation/compare/v6.2.6...v6.2.7) (2022-01-19)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @nativescript-community/ui-material-bottom-navigation
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
## [6.2.6](https://github.com/nativescript-community/ui-material-components/tree/master/packages/bottom-navigation/compare/v6.2.5...v6.2.6) (2022-01-15)
|
15
|
+
|
16
|
+
**Note:** Version bump only for package @nativescript-community/ui-material-bottom-navigation
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
## [6.2.5](https://github.com/nativescript-community/ui-material-components/tree/master/packages/bottom-navigation/compare/v6.2.4...v6.2.5) (2021-12-02)
|
23
|
+
|
24
|
+
**Note:** Version bump only for package @nativescript-community/ui-material-bottom-navigation
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
## [6.2.4](https://github.com/nativescript-community/ui-material-components/tree/master/packages/bottom-navigation/compare/v6.2.3...v6.2.4) (2021-11-25)
|
31
|
+
|
32
|
+
|
33
|
+
### Bug Fixes
|
34
|
+
|
35
|
+
* **bottom-navigation:** fix readme for css class name ([8c0c286](https://github.com/nativescript-community/ui-material-components/tree/master/packages/bottom-navigation/commit/8c0c286371b2b4daf4f42c64015269d9c135a4a1))
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
|
40
|
+
|
6
41
|
## [6.2.3](https://github.com/nativescript-community/ui-material-components/tree/master/packages/bottom-navigation/compare/v6.2.2...v6.2.3) (2021-11-09)
|
7
42
|
|
8
43
|
**Note:** Version bump only for package @nativescript-community/ui-material-bottom-navigation
|
package/README.md
CHANGED
@@ -84,7 +84,7 @@ IMPORTANT: _Make sure you include `xmlns:mds="@nativescript-community/ui-materia
|
|
84
84
|
#### CSS
|
85
85
|
|
86
86
|
```CSS
|
87
|
-
|
87
|
+
BottomNavigation.bottom-nav {
|
88
88
|
background-color: orangered;
|
89
89
|
color: gold;
|
90
90
|
font-size: 18;
|
@@ -110,7 +110,7 @@ MDTabContentItem.third-tabcontent {
|
|
110
110
|
background-color: blueviolet;
|
111
111
|
color: antiquewhite;
|
112
112
|
}
|
113
|
-
|
113
|
+
BottomNavigation TabStrip {
|
114
114
|
highlight-color: red;
|
115
115
|
}
|
116
116
|
```
|
@@ -15,7 +15,6 @@ export class NativeScriptMaterialBottomNavigationModule {
|
|
15
15
|
NativeScriptMaterialBottomNavigationModule.ɵfac = function NativeScriptMaterialBottomNavigationModule_Factory(t) { return new (t || NativeScriptMaterialBottomNavigationModule)(); };
|
16
16
|
NativeScriptMaterialBottomNavigationModule.ɵmod = i0.ɵɵdefineNgModule({ type: NativeScriptMaterialBottomNavigationModule });
|
17
17
|
NativeScriptMaterialBottomNavigationModule.ɵinj = i0.ɵɵdefineInjector({});
|
18
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(NativeScriptMaterialBottomNavigationModule, { declarations: [MaterialBottomNavigationDirective], exports: [MaterialBottomNavigationDirective] }); })();
|
19
18
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NativeScriptMaterialBottomNavigationModule, [{
|
20
19
|
type: NgModule,
|
21
20
|
args: [{
|
@@ -23,8 +22,9 @@ NativeScriptMaterialBottomNavigationModule.ɵinj = i0.ɵɵdefineInjector({});
|
|
23
22
|
exports: [MaterialBottomNavigationDirective]
|
24
23
|
}]
|
25
24
|
}], null, null); })();
|
25
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(NativeScriptMaterialBottomNavigationModule, { declarations: [MaterialBottomNavigationDirective], exports: [MaterialBottomNavigationDirective] }); })();
|
26
26
|
registerElement('MDBottomNavigation', () => BottomNavigation);
|
27
27
|
registerElement('MDTabStrip', () => TabStrip);
|
28
28
|
registerElement('MDTabStripItem', () => TabStripItem);
|
29
29
|
registerElement('MDTabContentItem', () => TabContentItem);
|
30
|
-
//# sourceMappingURL=data:application/json;base64,
|
30
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvYm90dG9tLW5hdmlnYXRpb24vYW5ndWxhci9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNwRCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sdUJBQXVCLENBQUM7QUFDeEQsT0FBTyxFQUFFLGdCQUFnQixFQUFFLGNBQWMsRUFBRSxRQUFRLEVBQUUsWUFBWSxFQUFFLE1BQU0sdURBQXVELENBQUM7O0FBR2pJLE1BQU0sT0FBTyxpQ0FBaUM7O2tIQUFqQyxpQ0FBaUM7c0VBQWpDLGlDQUFpQzt1RkFBakMsaUNBQWlDO2NBRDdDLFNBQVM7ZUFBQyxFQUFFLFFBQVEsRUFBRSxvQkFBb0IsRUFBRTs7QUFPN0MsTUFBTSxPQUFPLDBDQUEwQzs7b0lBQTFDLDBDQUEwQzs4RUFBMUMsMENBQTBDOzt1RkFBMUMsMENBQTBDO2NBSnRELFFBQVE7ZUFBQztnQkFDTixZQUFZLEVBQUUsQ0FBQyxpQ0FBaUMsQ0FBQztnQkFDakQsT0FBTyxFQUFFLENBQUMsaUNBQWlDLENBQUM7YUFDL0M7O3dGQUNZLDBDQUEwQyxtQkFOMUMsaUNBQWlDLGFBQWpDLGlDQUFpQztBQVE5QyxlQUFlLENBQUMsb0JBQW9CLEVBQUUsR0FBRyxFQUFFLENBQUMsZ0JBQWdCLENBQUMsQ0FBQztBQUM5RCxlQUFlLENBQUMsWUFBWSxFQUFFLEdBQUcsRUFBRSxDQUFDLFFBQVEsQ0FBQyxDQUFDO0FBQzlDLGVBQWUsQ0FBQyxnQkFBZ0IsRUFBRSxHQUFHLEVBQUUsQ0FBQyxZQUFZLENBQUMsQ0FBQztBQUN0RCxlQUFlLENBQUMsa0JBQWtCLEVBQUUsR0FBRyxFQUFFLENBQUMsY0FBYyxDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyByZWdpc3RlckVsZW1lbnQgfSBmcm9tICdAbmF0aXZlc2NyaXB0L2FuZ3VsYXInO1xuaW1wb3J0IHsgQm90dG9tTmF2aWdhdGlvbiwgVGFiQ29udGVudEl0ZW0sIFRhYlN0cmlwLCBUYWJTdHJpcEl0ZW0gfSBmcm9tICdAbmF0aXZlc2NyaXB0LWNvbW11bml0eS91aS1tYXRlcmlhbC1ib3R0b20tbmF2aWdhdGlvbic7XG5cbkBEaXJlY3RpdmUoeyBzZWxlY3RvcjogJ01EQm90dG9tTmF2aWdhdGlvbicgfSlcbmV4cG9ydCBjbGFzcyBNYXRlcmlhbEJvdHRvbU5hdmlnYXRpb25EaXJlY3RpdmUge31cblxuQE5nTW9kdWxlKHtcbiAgICBkZWNsYXJhdGlvbnM6IFtNYXRlcmlhbEJvdHRvbU5hdmlnYXRpb25EaXJlY3RpdmVdLFxuICAgIGV4cG9ydHM6IFtNYXRlcmlhbEJvdHRvbU5hdmlnYXRpb25EaXJlY3RpdmVdXG59KVxuZXhwb3J0IGNsYXNzIE5hdGl2ZVNjcmlwdE1hdGVyaWFsQm90dG9tTmF2aWdhdGlvbk1vZHVsZSB7fVxuXG5yZWdpc3RlckVsZW1lbnQoJ01EQm90dG9tTmF2aWdhdGlvbicsICgpID0+IEJvdHRvbU5hdmlnYXRpb24pO1xucmVnaXN0ZXJFbGVtZW50KCdNRFRhYlN0cmlwJywgKCkgPT4gVGFiU3RyaXApO1xucmVnaXN0ZXJFbGVtZW50KCdNRFRhYlN0cmlwSXRlbScsICgpID0+IFRhYlN0cmlwSXRlbSk7XG5yZWdpc3RlckVsZW1lbnQoJ01EVGFiQ29udGVudEl0ZW0nLCAoKSA9PiBUYWJDb250ZW50SXRlbSk7XG4iXX0=
|
File without changes
|
@@ -0,0 +1,37 @@
|
|
1
|
+
import * as i0 from '@angular/core';
|
2
|
+
import { Directive, NgModule } from '@angular/core';
|
3
|
+
import { registerElement } from '@nativescript/angular';
|
4
|
+
import { BottomNavigation, TabStrip, TabStripItem, TabContentItem } from '@nativescript-community/ui-material-bottom-navigation';
|
5
|
+
|
6
|
+
class MaterialBottomNavigationDirective {
|
7
|
+
}
|
8
|
+
MaterialBottomNavigationDirective.ɵfac = function MaterialBottomNavigationDirective_Factory(t) { return new (t || MaterialBottomNavigationDirective)(); };
|
9
|
+
MaterialBottomNavigationDirective.ɵdir = i0.ɵɵdefineDirective({ type: MaterialBottomNavigationDirective, selectors: [["MDBottomNavigation"]] });
|
10
|
+
(function () {
|
11
|
+
(typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MaterialBottomNavigationDirective, [{
|
12
|
+
type: Directive,
|
13
|
+
args: [{ selector: 'MDBottomNavigation' }]
|
14
|
+
}], null, null);
|
15
|
+
})();
|
16
|
+
class NativeScriptMaterialBottomNavigationModule {
|
17
|
+
}
|
18
|
+
NativeScriptMaterialBottomNavigationModule.ɵfac = function NativeScriptMaterialBottomNavigationModule_Factory(t) { return new (t || NativeScriptMaterialBottomNavigationModule)(); };
|
19
|
+
NativeScriptMaterialBottomNavigationModule.ɵmod = i0.ɵɵdefineNgModule({ type: NativeScriptMaterialBottomNavigationModule });
|
20
|
+
NativeScriptMaterialBottomNavigationModule.ɵinj = i0.ɵɵdefineInjector({});
|
21
|
+
(function () {
|
22
|
+
(typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NativeScriptMaterialBottomNavigationModule, [{
|
23
|
+
type: NgModule,
|
24
|
+
args: [{
|
25
|
+
declarations: [MaterialBottomNavigationDirective],
|
26
|
+
exports: [MaterialBottomNavigationDirective]
|
27
|
+
}]
|
28
|
+
}], null, null);
|
29
|
+
})();
|
30
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(NativeScriptMaterialBottomNavigationModule, { declarations: [MaterialBottomNavigationDirective], exports: [MaterialBottomNavigationDirective] }); })();
|
31
|
+
registerElement('MDBottomNavigation', () => BottomNavigation);
|
32
|
+
registerElement('MDTabStrip', () => TabStrip);
|
33
|
+
registerElement('MDTabStripItem', () => TabStripItem);
|
34
|
+
registerElement('MDTabContentItem', () => TabContentItem);
|
35
|
+
|
36
|
+
export { MaterialBottomNavigationDirective, NativeScriptMaterialBottomNavigationModule };
|
37
|
+
//# sourceMappingURL=nativescript-community-ui-material-bottom-navigation-angular.mjs.map
|
@@ -16,7 +16,6 @@ class NativeScriptMaterialBottomNavigationModule {
|
|
16
16
|
NativeScriptMaterialBottomNavigationModule.ɵfac = function NativeScriptMaterialBottomNavigationModule_Factory(t) { return new (t || NativeScriptMaterialBottomNavigationModule)(); };
|
17
17
|
NativeScriptMaterialBottomNavigationModule.ɵmod = i0.ɵɵdefineNgModule({ type: NativeScriptMaterialBottomNavigationModule });
|
18
18
|
NativeScriptMaterialBottomNavigationModule.ɵinj = i0.ɵɵdefineInjector({});
|
19
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(NativeScriptMaterialBottomNavigationModule, { declarations: [MaterialBottomNavigationDirective], exports: [MaterialBottomNavigationDirective] }); })();
|
20
19
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NativeScriptMaterialBottomNavigationModule, [{
|
21
20
|
type: NgModule,
|
22
21
|
args: [{
|
@@ -24,10 +23,11 @@ NativeScriptMaterialBottomNavigationModule.ɵinj = i0.ɵɵdefineInjector({});
|
|
24
23
|
exports: [MaterialBottomNavigationDirective]
|
25
24
|
}]
|
26
25
|
}], null, null); })();
|
26
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(NativeScriptMaterialBottomNavigationModule, { declarations: [MaterialBottomNavigationDirective], exports: [MaterialBottomNavigationDirective] }); })();
|
27
27
|
registerElement('MDBottomNavigation', () => BottomNavigation);
|
28
28
|
registerElement('MDTabStrip', () => TabStrip);
|
29
29
|
registerElement('MDTabStripItem', () => TabStripItem);
|
30
30
|
registerElement('MDTabContentItem', () => TabContentItem);
|
31
31
|
|
32
32
|
export { MaterialBottomNavigationDirective, NativeScriptMaterialBottomNavigationModule };
|
33
|
-
//# sourceMappingURL=nativescript-community-ui-material-bottom-navigation-angular.
|
33
|
+
//# sourceMappingURL=nativescript-community-ui-material-bottom-navigation-angular.mjs.map
|
package/angular/index.d.ts
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
export declare class MaterialBottomNavigationDirective {
|
3
|
-
static ɵfac: i0.ɵɵ
|
4
|
-
static ɵdir: i0.ɵɵ
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MaterialBottomNavigationDirective, never>;
|
4
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MaterialBottomNavigationDirective, "MDBottomNavigation", never, {}, {}, never>;
|
5
5
|
}
|
6
6
|
export declare class NativeScriptMaterialBottomNavigationModule {
|
7
|
-
static ɵfac: i0.ɵɵ
|
8
|
-
static ɵmod: i0.ɵɵ
|
9
|
-
static ɵinj: i0.ɵɵ
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NativeScriptMaterialBottomNavigationModule, never>;
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NativeScriptMaterialBottomNavigationModule, [typeof MaterialBottomNavigationDirective], never, [typeof MaterialBottomNavigationDirective]>;
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NativeScriptMaterialBottomNavigationModule>;
|
10
10
|
}
|
package/angular/package.json
CHANGED
@@ -1,16 +1,30 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nativescript-community/ui-material-bottom-navigation-angular",
|
3
|
-
"main": "
|
4
|
-
"module": "fesm2015/nativescript-community-ui-material-bottom-navigation-angular.
|
5
|
-
"
|
6
|
-
"
|
7
|
-
"
|
3
|
+
"main": "index.js",
|
4
|
+
"module": "fesm2015/nativescript-community-ui-material-bottom-navigation-angular.mjs",
|
5
|
+
"es2020": "fesm2020/nativescript-community-ui-material-bottom-navigation-angular.mjs",
|
6
|
+
"esm2020": "esm2020/nativescript-community-ui-material-bottom-navigation-angular.mjs",
|
7
|
+
"fesm2020": "fesm2020/nativescript-community-ui-material-bottom-navigation-angular.mjs",
|
8
|
+
"fesm2015": "fesm2015/nativescript-community-ui-material-bottom-navigation-angular.mjs",
|
8
9
|
"typings": "nativescript-community-ui-material-bottom-navigation-angular.d.ts",
|
10
|
+
"exports": {
|
11
|
+
"./package.json": {
|
12
|
+
"default": "./package.json"
|
13
|
+
},
|
14
|
+
".": {
|
15
|
+
"types": "./nativescript-community-ui-material-bottom-navigation-angular.d.ts",
|
16
|
+
"esm2020": "./esm2020/nativescript-community-ui-material-bottom-navigation-angular.mjs",
|
17
|
+
"es2020": "./fesm2020/nativescript-community-ui-material-bottom-navigation-angular.mjs",
|
18
|
+
"es2015": "./fesm2015/nativescript-community-ui-material-bottom-navigation-angular.mjs",
|
19
|
+
"node": "./fesm2015/nativescript-community-ui-material-bottom-navigation-angular.mjs",
|
20
|
+
"default": "./fesm2020/nativescript-community-ui-material-bottom-navigation-angular.mjs"
|
21
|
+
}
|
22
|
+
},
|
9
23
|
"sideEffects": false,
|
10
24
|
"dependencies": {
|
11
|
-
"tslib": "^2.
|
25
|
+
"tslib": "^2.3.0"
|
12
26
|
},
|
13
27
|
"scripts": {
|
14
|
-
"prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled by Ivy. This is not allowed.\\nPlease delete and rebuild the package
|
28
|
+
"prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled by Ivy in full compilation mode. This is not allowed.\\nPlease delete and rebuild the package with Ivy partial compilation mode, before attempting to publish.\\n')\" && exit 1"
|
15
29
|
}
|
16
30
|
}
|
package/index.ios.js
CHANGED
@@ -37,8 +37,9 @@ var UITabBarControllerImpl = /** @class */ (function (_super) {
|
|
37
37
|
// TODO
|
38
38
|
// @profile
|
39
39
|
UITabBarControllerImpl.prototype.viewDidDisappear = function (animated) {
|
40
|
+
var _a;
|
40
41
|
_super.prototype.viewDidDisappear.call(this, animated);
|
41
|
-
var owner = this._owner.get();
|
42
|
+
var owner = (_a = this._owner) === null || _a === void 0 ? void 0 : _a.get();
|
42
43
|
if (owner && !owner.parent && owner.isLoaded && !this.presentedViewController) {
|
43
44
|
owner.callUnloaded();
|
44
45
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nativescript-community/ui-material-bottom-navigation",
|
3
|
-
"version": "6.2.
|
3
|
+
"version": "6.2.7",
|
4
4
|
"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.",
|
5
5
|
"main": "bottomnavigation",
|
6
6
|
"sideEffects": false,
|
@@ -50,7 +50,7 @@
|
|
50
50
|
},
|
51
51
|
"readmeFilename": "README.md",
|
52
52
|
"dependencies": {
|
53
|
-
"@nativescript-community/ui-material-core": "^6.2.
|
53
|
+
"@nativescript-community/ui-material-core": "^6.2.7"
|
54
54
|
},
|
55
|
-
"gitHead": "
|
55
|
+
"gitHead": "242df7d6c63e777fe22546ec08470db6bce97dd2"
|
56
56
|
}
|
@@ -1,71 +0,0 @@
|
|
1
|
-
(function (global, factory) {
|
2
|
-
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@nativescript/angular'), require('@nativescript-community/ui-material-bottom-navigation')) :
|
3
|
-
typeof define === 'function' && define.amd ? define('@nativescript-community/ui-material-bottom-navigation-angular', ['exports', '@angular/core', '@nativescript/angular', '@nativescript-community/ui-material-bottom-navigation'], factory) :
|
4
|
-
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global['nativescript-community'] = global['nativescript-community'] || {}, global['nativescript-community']['ui-material-bottom-navigation-angular'] = {}), global.ng.core, global['ns-angular'], global['ns-material-bottom-navigation']));
|
5
|
-
}(this, (function (exports, i0, angular, uiMaterialBottomNavigation) { 'use strict';
|
6
|
-
|
7
|
-
function _interopNamespace(e) {
|
8
|
-
if (e && e.__esModule) return e;
|
9
|
-
var n = Object.create(null);
|
10
|
-
if (e) {
|
11
|
-
Object.keys(e).forEach(function (k) {
|
12
|
-
if (k !== 'default') {
|
13
|
-
var d = Object.getOwnPropertyDescriptor(e, k);
|
14
|
-
Object.defineProperty(n, k, d.get ? d : {
|
15
|
-
enumerable: true,
|
16
|
-
get: function () {
|
17
|
-
return e[k];
|
18
|
-
}
|
19
|
-
});
|
20
|
-
}
|
21
|
-
});
|
22
|
-
}
|
23
|
-
n['default'] = e;
|
24
|
-
return Object.freeze(n);
|
25
|
-
}
|
26
|
-
|
27
|
-
var i0__namespace = /*#__PURE__*/_interopNamespace(i0);
|
28
|
-
|
29
|
-
var MaterialBottomNavigationDirective = /** @class */ (function () {
|
30
|
-
function MaterialBottomNavigationDirective() {
|
31
|
-
}
|
32
|
-
return MaterialBottomNavigationDirective;
|
33
|
-
}());
|
34
|
-
MaterialBottomNavigationDirective.ɵfac = function MaterialBottomNavigationDirective_Factory(t) { return new (t || MaterialBottomNavigationDirective)(); };
|
35
|
-
MaterialBottomNavigationDirective.ɵdir = i0__namespace.ɵɵdefineDirective({ type: MaterialBottomNavigationDirective, selectors: [["MDBottomNavigation"]] });
|
36
|
-
(function () {
|
37
|
-
(typeof ngDevMode === "undefined" || ngDevMode) && i0__namespace.ɵsetClassMetadata(MaterialBottomNavigationDirective, [{
|
38
|
-
type: i0.Directive,
|
39
|
-
args: [{ selector: 'MDBottomNavigation' }]
|
40
|
-
}], null, null);
|
41
|
-
})();
|
42
|
-
var NativeScriptMaterialBottomNavigationModule = /** @class */ (function () {
|
43
|
-
function NativeScriptMaterialBottomNavigationModule() {
|
44
|
-
}
|
45
|
-
return NativeScriptMaterialBottomNavigationModule;
|
46
|
-
}());
|
47
|
-
NativeScriptMaterialBottomNavigationModule.ɵfac = function NativeScriptMaterialBottomNavigationModule_Factory(t) { return new (t || NativeScriptMaterialBottomNavigationModule)(); };
|
48
|
-
NativeScriptMaterialBottomNavigationModule.ɵmod = i0__namespace.ɵɵdefineNgModule({ type: NativeScriptMaterialBottomNavigationModule });
|
49
|
-
NativeScriptMaterialBottomNavigationModule.ɵinj = i0__namespace.ɵɵdefineInjector({});
|
50
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0__namespace.ɵɵsetNgModuleScope(NativeScriptMaterialBottomNavigationModule, { declarations: [MaterialBottomNavigationDirective], exports: [MaterialBottomNavigationDirective] }); })();
|
51
|
-
(function () {
|
52
|
-
(typeof ngDevMode === "undefined" || ngDevMode) && i0__namespace.ɵsetClassMetadata(NativeScriptMaterialBottomNavigationModule, [{
|
53
|
-
type: i0.NgModule,
|
54
|
-
args: [{
|
55
|
-
declarations: [MaterialBottomNavigationDirective],
|
56
|
-
exports: [MaterialBottomNavigationDirective]
|
57
|
-
}]
|
58
|
-
}], null, null);
|
59
|
-
})();
|
60
|
-
angular.registerElement('MDBottomNavigation', function () { return uiMaterialBottomNavigation.BottomNavigation; });
|
61
|
-
angular.registerElement('MDTabStrip', function () { return uiMaterialBottomNavigation.TabStrip; });
|
62
|
-
angular.registerElement('MDTabStripItem', function () { return uiMaterialBottomNavigation.TabStripItem; });
|
63
|
-
angular.registerElement('MDTabContentItem', function () { return uiMaterialBottomNavigation.TabContentItem; });
|
64
|
-
|
65
|
-
exports.MaterialBottomNavigationDirective = MaterialBottomNavigationDirective;
|
66
|
-
exports.NativeScriptMaterialBottomNavigationModule = NativeScriptMaterialBottomNavigationModule;
|
67
|
-
|
68
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
69
|
-
|
70
|
-
})));
|
71
|
-
//# sourceMappingURL=nativescript-community-ui-material-bottom-navigation-angular.umd.js.map
|
package/angular/bundles/nativescript-community-ui-material-bottom-navigation-angular.umd.min.js
DELETED
@@ -1,2 +0,0 @@
|
|
1
|
-
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@angular/core"),require("@nativescript/angular"),require("@nativescript-community/ui-material-bottom-navigation")):"function"==typeof define&&define.amd?define("@nativescript-community/ui-material-bottom-navigation-angular",["exports","@angular/core","@nativescript/angular","@nativescript-community/ui-material-bottom-navigation"],t):t(((e="undefined"!=typeof globalThis?globalThis:e||self)["nativescript-community"]=e["nativescript-community"]||{},e["nativescript-community"]["ui-material-bottom-navigation-angular"]={}),e.ng.core,e["ns-angular"],e["ns-material-bottom-navigation"])}(this,(function(e,t,n,i){"use strict";function o(e){if(e&&e.__esModule)return e;var t=Object.create(null);return e&&Object.keys(e).forEach((function(n){if("default"!==n){var i=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(t,n,i.get?i:{enumerable:!0,get:function(){return e[n]}})}})),t.default=e,Object.freeze(t)}var r=o(t),a=function(){};a.ɵfac=function(e){return new(e||a)},a.ɵdir=r.ɵɵdefineDirective({type:a,selectors:[["MDBottomNavigation"]]}),("undefined"==typeof ngDevMode||ngDevMode)&&r.ɵsetClassMetadata(a,[{type:t.Directive,args:[{selector:"MDBottomNavigation"}]}],null,null);var u=function(){};u.ɵfac=function(e){return new(e||u)},u.ɵmod=r.ɵɵdefineNgModule({type:u}),u.ɵinj=r.ɵɵdefineInjector({}),("undefined"==typeof ngJitMode||ngJitMode)&&r.ɵɵsetNgModuleScope(u,{declarations:[a],exports:[a]}),("undefined"==typeof ngDevMode||ngDevMode)&&r.ɵsetClassMetadata(u,[{type:t.NgModule,args:[{declarations:[a],exports:[a]}]}],null,null),n.registerElement("MDBottomNavigation",(function(){return i.BottomNavigation})),n.registerElement("MDTabStrip",(function(){return i.TabStrip})),n.registerElement("MDTabStripItem",(function(){return i.TabStripItem})),n.registerElement("MDTabContentItem",(function(){return i.TabContentItem})),e.MaterialBottomNavigationDirective=a,e.NativeScriptMaterialBottomNavigationModule=u,Object.defineProperty(e,"__esModule",{value:!0})}));
|
2
|
-
//# sourceMappingURL=nativescript-community-ui-material-bottom-navigation-angular.umd.min.js.map
|