@exmg/exm-navigation 1.0.0 → 1.0.1
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/index.d.ts +8 -8
- package/index.js +8 -8
- package/package.json +3 -3
- package/src/exm-navigation-base.d.ts +4 -4
- package/src/exm-navigation-base.js +3 -3
- package/src/exm-navigation-drawer-base.d.ts +2 -2
- package/src/exm-navigation-drawer-base.js +4 -4
- package/src/exm-navigation-drawer-nav.d.ts +2 -2
- package/src/exm-navigation-drawer-nav.js +5 -5
- package/src/exm-navigation-drawer.d.ts +3 -3
- package/src/exm-navigation-drawer.js +6 -6
- package/src/exm-navigation-rail-base.d.ts +1 -1
- package/src/exm-navigation-rail-base.js +1 -1
- package/src/exm-navigation-rail-nav-base.d.ts +1 -1
- package/src/exm-navigation-rail-nav-base.js +1 -1
- package/src/exm-navigation-rail-nav-item-base.d.ts +1 -1
- package/src/exm-navigation-rail-nav-item-base.js +6 -6
- package/src/exm-navigation-rail-nav-item.d.ts +3 -3
- package/src/exm-navigation-rail-nav-item.js +6 -6
- package/src/exm-navigation-rail-nav.d.ts +3 -3
- package/src/exm-navigation-rail-nav.js +6 -6
- package/src/exm-navigation-rail.d.ts +3 -3
- package/src/exm-navigation-rail.js +6 -6
- package/src/exm-navigation-toolbar-base.d.ts +1 -1
- package/src/exm-navigation-toolbar-base.js +1 -1
- package/src/exm-navigation-toolbar.d.ts +3 -3
- package/src/exm-navigation-toolbar.js +6 -6
package/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
3
|
-
export {
|
|
4
|
-
export {
|
|
5
|
-
export {
|
|
6
|
-
export {
|
|
7
|
-
export {
|
|
8
|
-
export {
|
|
1
|
+
export { ExmNavigationRailNavItem } from './src/exm-navigation-rail-nav-item.js';
|
|
2
|
+
export { ExmNavigationRailNav } from './src/exm-navigation-rail-nav.js';
|
|
3
|
+
export { ExmNavigationRailBase } from './src/exm-navigation-rail-base.js';
|
|
4
|
+
export { ExmNavigationRail } from './src/exm-navigation-rail.js';
|
|
5
|
+
export { ExmNavigationDrawerBase } from './src/exm-navigation-drawer-base.js';
|
|
6
|
+
export { ExmNavigationDrawer } from './src/exm-navigation-drawer.js';
|
|
7
|
+
export { ExmNavigationToolbarBase } from './src/exm-navigation-toolbar-base.js';
|
|
8
|
+
export { ExmNavigationBase } from './src/exm-navigation-base.js';
|
|
9
9
|
export { navigationItemHover, navigationDrawerHover, navigationDrawerOpen, navigationRailSelected, navigationRailActive, navigationDrawerPersistent, navigationRailHidden, navigationActiveHasSubmenu, navigationSubSelected, } from './src/exm-navigation-signals.js';
|
|
10
10
|
export { SignalWatcher } from '@lit-labs/preact-signals';
|
|
11
11
|
export { style as exmgRailStyles } from './src/styles/exm-navigation-rail-css.js';
|
package/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
3
|
-
export {
|
|
4
|
-
export {
|
|
5
|
-
export {
|
|
6
|
-
export {
|
|
7
|
-
export {
|
|
8
|
-
export {
|
|
1
|
+
export { ExmNavigationRailNavItem } from './src/exm-navigation-rail-nav-item.js';
|
|
2
|
+
export { ExmNavigationRailNav } from './src/exm-navigation-rail-nav.js';
|
|
3
|
+
export { ExmNavigationRailBase } from './src/exm-navigation-rail-base.js';
|
|
4
|
+
export { ExmNavigationRail } from './src/exm-navigation-rail.js';
|
|
5
|
+
export { ExmNavigationDrawerBase } from './src/exm-navigation-drawer-base.js';
|
|
6
|
+
export { ExmNavigationDrawer } from './src/exm-navigation-drawer.js';
|
|
7
|
+
export { ExmNavigationToolbarBase } from './src/exm-navigation-toolbar-base.js';
|
|
8
|
+
export { ExmNavigationBase } from './src/exm-navigation-base.js';
|
|
9
9
|
export { navigationItemHover, navigationDrawerHover, navigationDrawerOpen, navigationRailSelected, navigationRailActive, navigationDrawerPersistent, navigationRailHidden, navigationActiveHasSubmenu, navigationSubSelected, } from './src/exm-navigation-signals.js';
|
|
10
10
|
export { SignalWatcher } from '@lit-labs/preact-signals';
|
|
11
11
|
export { style as exmgRailStyles } from './src/styles/exm-navigation-rail-css.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exmg/exm-navigation",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "index.js",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"./exm-navigation-drawer.js": "./src/exm-navigation-drawer.js",
|
|
13
13
|
"./exm-navigation-toolbar.js": "./src/exm-navigation-toolbar.js",
|
|
14
14
|
"./exm-navigation-drawer-nav.js": "./src/exm-navigation-drawer-nav.js",
|
|
15
|
-
"./exm-navigation-base.js": "./src/
|
|
15
|
+
"./exm-navigation-base.js": "./src/ExmNavigationBase.js"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@exmg/lit-base": "^2.0.1",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"publishConfig": {
|
|
51
51
|
"access": "public"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "8e971cbad07fa6fab5a95aefd915937b752d2204"
|
|
54
54
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
|
-
import {
|
|
2
|
+
import { ExmNavigationDrawer } from './exm-navigation-drawer.js';
|
|
3
3
|
export interface MenuItem {
|
|
4
4
|
id: string;
|
|
5
5
|
label: string;
|
|
@@ -8,10 +8,10 @@ export interface MenuItem {
|
|
|
8
8
|
icon?: string;
|
|
9
9
|
items?: MenuItem[];
|
|
10
10
|
}
|
|
11
|
-
declare const
|
|
12
|
-
export declare class
|
|
11
|
+
declare const ExmNavigationBase_base: typeof LitElement;
|
|
12
|
+
export declare class ExmNavigationBase extends ExmNavigationBase_base {
|
|
13
13
|
pageId: string;
|
|
14
|
-
drawer?:
|
|
14
|
+
drawer?: ExmNavigationDrawer;
|
|
15
15
|
menu: MenuItem[];
|
|
16
16
|
expandedItems: {
|
|
17
17
|
[k: string]: boolean;
|
|
@@ -4,7 +4,7 @@ import { LitElement, html } from 'lit';
|
|
|
4
4
|
import { navigationDrawerHover, navigationDrawerPersistent, navigationItemHover, navigationRailActive, navigationRailSelected, navigationSubSelected, } from './exm-navigation-signals.js';
|
|
5
5
|
import { property, query } from 'lit/decorators.js';
|
|
6
6
|
// eslint-disable-next-line
|
|
7
|
-
export class
|
|
7
|
+
export class ExmNavigationBase extends SignalWatcher(LitElement) {
|
|
8
8
|
constructor() {
|
|
9
9
|
super(...arguments);
|
|
10
10
|
this.pageId = 'chat';
|
|
@@ -78,8 +78,8 @@ export class ExmgNavigationBase extends SignalWatcher(LitElement) {
|
|
|
78
78
|
}
|
|
79
79
|
__decorate([
|
|
80
80
|
property({ type: String })
|
|
81
|
-
],
|
|
81
|
+
], ExmNavigationBase.prototype, "pageId", void 0);
|
|
82
82
|
__decorate([
|
|
83
83
|
query('#drawer')
|
|
84
|
-
],
|
|
84
|
+
], ExmNavigationBase.prototype, "drawer", void 0);
|
|
85
85
|
//# sourceMappingURL=exm-navigation-base.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
2
|
import '@material/mwc-drawer';
|
|
3
3
|
import { Drawer } from '@material/mwc-drawer';
|
|
4
|
-
declare const
|
|
5
|
-
export declare class
|
|
4
|
+
declare const ExmNavigationDrawerBase_base: typeof LitElement;
|
|
5
|
+
export declare class ExmNavigationDrawerBase extends ExmNavigationDrawerBase_base {
|
|
6
6
|
open: boolean;
|
|
7
7
|
drawer?: Drawer;
|
|
8
8
|
persistent: boolean;
|
|
@@ -7,7 +7,7 @@ import { navigationDrawerHover, navigationItemHover, navigationDrawerOpen, navig
|
|
|
7
7
|
import { SignalWatcher } from '@lit-labs/preact-signals';
|
|
8
8
|
import { observer } from '@exmg/lit-base';
|
|
9
9
|
// eslint-disable-next-line
|
|
10
|
-
export class
|
|
10
|
+
export class ExmNavigationDrawerBase extends SignalWatcher(LitElement) {
|
|
11
11
|
hasActiveSubmenu() {
|
|
12
12
|
let activeHasSubMenu = false;
|
|
13
13
|
for (const key in navigationActiveHasSubmenu.value) {
|
|
@@ -160,14 +160,14 @@ __decorate([
|
|
|
160
160
|
navigationDrawerOpen.value = value;
|
|
161
161
|
this.updateInlineStyles();
|
|
162
162
|
})
|
|
163
|
-
],
|
|
163
|
+
], ExmNavigationDrawerBase.prototype, "open", void 0);
|
|
164
164
|
__decorate([
|
|
165
165
|
query('mwc-drawer')
|
|
166
|
-
],
|
|
166
|
+
], ExmNavigationDrawerBase.prototype, "drawer", void 0);
|
|
167
167
|
__decorate([
|
|
168
168
|
property({ type: Boolean }),
|
|
169
169
|
observer(function (value) {
|
|
170
170
|
navigationDrawerPersistent.value = value;
|
|
171
171
|
})
|
|
172
|
-
],
|
|
172
|
+
], ExmNavigationDrawerBase.prototype, "persistent", void 0);
|
|
173
173
|
//# sourceMappingURL=exm-navigation-drawer-base.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import '@material/web/list/list.js';
|
|
2
2
|
import '@material/web/list/list-item.js';
|
|
3
3
|
import { ExmgElement } from '@exmg/lit-base';
|
|
4
|
-
declare const
|
|
5
|
-
export declare class
|
|
4
|
+
declare const ExmNavigationDrawerNav_base: typeof ExmgElement;
|
|
5
|
+
export declare class ExmNavigationDrawerNav extends ExmNavigationDrawerNav_base {
|
|
6
6
|
static styles: import("lit").CSSResult[];
|
|
7
7
|
render(): import("lit-html").TemplateResult<1>;
|
|
8
8
|
}
|
|
@@ -6,7 +6,7 @@ import { SignalWatcher } from '@lit-labs/preact-signals';
|
|
|
6
6
|
import '@material/web/list/list.js';
|
|
7
7
|
import '@material/web/list/list-item.js';
|
|
8
8
|
import { ExmgElement } from '@exmg/lit-base';
|
|
9
|
-
let
|
|
9
|
+
let ExmNavigationDrawerNav = class ExmNavigationDrawerNav extends SignalWatcher(ExmgElement) {
|
|
10
10
|
render() {
|
|
11
11
|
return navigationRailHidden.value
|
|
12
12
|
? html `<div class="nav">
|
|
@@ -24,7 +24,7 @@ let ExmgNavigationDrawerNav = class ExmgNavigationDrawerNav extends SignalWatche
|
|
|
24
24
|
: html `<slot></slot>`;
|
|
25
25
|
}
|
|
26
26
|
};
|
|
27
|
-
|
|
27
|
+
ExmNavigationDrawerNav.styles = [
|
|
28
28
|
css `
|
|
29
29
|
:host {
|
|
30
30
|
display: block;
|
|
@@ -39,9 +39,9 @@ ExmgNavigationDrawerNav.styles = [
|
|
|
39
39
|
}
|
|
40
40
|
`,
|
|
41
41
|
];
|
|
42
|
-
|
|
42
|
+
ExmNavigationDrawerNav = __decorate([
|
|
43
43
|
customElement('exm-navigation-drawer-nav')
|
|
44
44
|
// eslint-disable-next-line
|
|
45
|
-
],
|
|
46
|
-
export {
|
|
45
|
+
], ExmNavigationDrawerNav);
|
|
46
|
+
export { ExmNavigationDrawerNav };
|
|
47
47
|
//# sourceMappingURL=exm-navigation-drawer-nav.js.map
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare class
|
|
1
|
+
import { ExmNavigationDrawerBase } from './exm-navigation-drawer-base.js';
|
|
2
|
+
export declare class ExmNavigationDrawer extends ExmNavigationDrawerBase {
|
|
3
3
|
static styles: import("lit").CSSResult[];
|
|
4
4
|
}
|
|
5
5
|
declare global {
|
|
6
6
|
interface HTMLElementTagNameMap {
|
|
7
|
-
'exm-navigation-drawer':
|
|
7
|
+
'exm-navigation-drawer': ExmNavigationDrawer;
|
|
8
8
|
}
|
|
9
9
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { __decorate } from "tslib";
|
|
2
2
|
import { customElement } from 'lit/decorators.js';
|
|
3
|
-
import {
|
|
3
|
+
import { ExmNavigationDrawerBase } from './exm-navigation-drawer-base.js';
|
|
4
4
|
import { style } from './styles/exm-navigation-drawer-css.js';
|
|
5
|
-
let
|
|
5
|
+
let ExmNavigationDrawer = class ExmNavigationDrawer extends ExmNavigationDrawerBase {
|
|
6
6
|
};
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
ExmNavigationDrawer.styles = [style];
|
|
8
|
+
ExmNavigationDrawer = __decorate([
|
|
9
9
|
customElement('exm-navigation-drawer')
|
|
10
|
-
],
|
|
11
|
-
export {
|
|
10
|
+
], ExmNavigationDrawer);
|
|
11
|
+
export { ExmNavigationDrawer };
|
|
12
12
|
//# sourceMappingURL=exm-navigation-drawer.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { html } from 'lit';
|
|
2
2
|
import { ExmgElement } from '@exmg/lit-base/index.js';
|
|
3
|
-
export class
|
|
3
|
+
export class ExmNavigationRailBase extends ExmgElement {
|
|
4
4
|
render() {
|
|
5
5
|
return html `<div class="top"><slot name="top"></slot></div>
|
|
6
6
|
<div class="nav"><slot></slot></div>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
2
|
import '@material/web/focus/md-focus-ring.js';
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class ExmNavigationRailNavItemBase extends LitElement {
|
|
4
4
|
icon: string;
|
|
5
5
|
itemId?: string;
|
|
6
6
|
label?: string;
|
|
@@ -4,7 +4,7 @@ import { property } from 'lit/decorators.js';
|
|
|
4
4
|
import { navigationItemHover, navigationRailActive, navigationActiveHasSubmenu } from './exm-navigation-signals.js';
|
|
5
5
|
import '@material/web/focus/md-focus-ring.js';
|
|
6
6
|
import { observer } from '@exmg/lit-base';
|
|
7
|
-
export class
|
|
7
|
+
export class ExmNavigationRailNavItemBase extends LitElement {
|
|
8
8
|
constructor() {
|
|
9
9
|
super();
|
|
10
10
|
this.icon = '';
|
|
@@ -45,13 +45,13 @@ export class ExmgNavigationRailNavItemBase extends LitElement {
|
|
|
45
45
|
}
|
|
46
46
|
__decorate([
|
|
47
47
|
property({ type: String })
|
|
48
|
-
],
|
|
48
|
+
], ExmNavigationRailNavItemBase.prototype, "icon", void 0);
|
|
49
49
|
__decorate([
|
|
50
50
|
property({ type: String })
|
|
51
|
-
],
|
|
51
|
+
], ExmNavigationRailNavItemBase.prototype, "itemId", void 0);
|
|
52
52
|
__decorate([
|
|
53
53
|
property({ type: String })
|
|
54
|
-
],
|
|
54
|
+
], ExmNavigationRailNavItemBase.prototype, "label", void 0);
|
|
55
55
|
__decorate([
|
|
56
56
|
property({ type: Boolean, reflect: true }),
|
|
57
57
|
observer(function (value) {
|
|
@@ -62,8 +62,8 @@ __decorate([
|
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
64
|
})
|
|
65
|
-
],
|
|
65
|
+
], ExmNavigationRailNavItemBase.prototype, "selected", void 0);
|
|
66
66
|
__decorate([
|
|
67
67
|
property({ type: Boolean })
|
|
68
|
-
],
|
|
68
|
+
], ExmNavigationRailNavItemBase.prototype, "hasSubMenu", void 0);
|
|
69
69
|
//# sourceMappingURL=exm-navigation-rail-nav-item-base.js.map
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare class
|
|
1
|
+
import { ExmNavigationRailNavItemBase } from './exm-navigation-rail-nav-item-base.js';
|
|
2
|
+
export declare class ExmNavigationRailNavItem extends ExmNavigationRailNavItemBase {
|
|
3
3
|
static styles: import("lit").CSSResult[];
|
|
4
4
|
}
|
|
5
5
|
declare global {
|
|
6
6
|
interface HTMLElementTagNameMap {
|
|
7
|
-
'exm-navigation-rail-nav-item':
|
|
7
|
+
'exm-navigation-rail-nav-item': ExmNavigationRailNavItem;
|
|
8
8
|
}
|
|
9
9
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { __decorate } from "tslib";
|
|
2
2
|
import { customElement } from 'lit/decorators.js';
|
|
3
3
|
import { style } from './styles/exm-navigation-rail-nav-item-css.js';
|
|
4
|
-
import {
|
|
5
|
-
let
|
|
4
|
+
import { ExmNavigationRailNavItemBase } from './exm-navigation-rail-nav-item-base.js';
|
|
5
|
+
let ExmNavigationRailNavItem = class ExmNavigationRailNavItem extends ExmNavigationRailNavItemBase {
|
|
6
6
|
};
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
ExmNavigationRailNavItem.styles = [style];
|
|
8
|
+
ExmNavigationRailNavItem = __decorate([
|
|
9
9
|
customElement('exm-navigation-rail-nav-item')
|
|
10
|
-
],
|
|
11
|
-
export {
|
|
10
|
+
], ExmNavigationRailNavItem);
|
|
11
|
+
export { ExmNavigationRailNavItem };
|
|
12
12
|
//# sourceMappingURL=exm-navigation-rail-nav-item.js.map
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare class
|
|
1
|
+
import { ExmNavigationRailNavBase } from './exm-navigation-rail-nav-base.js';
|
|
2
|
+
export declare class ExmNavigationRailNav extends ExmNavigationRailNavBase {
|
|
3
3
|
static styles: import("lit").CSSResult[];
|
|
4
4
|
}
|
|
5
5
|
declare global {
|
|
6
6
|
interface HTMLElementTagNameMap {
|
|
7
|
-
'exm-navigation-rail-nav':
|
|
7
|
+
'exm-navigation-rail-nav': ExmNavigationRailNav;
|
|
8
8
|
}
|
|
9
9
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { __decorate } from "tslib";
|
|
2
2
|
import { customElement } from 'lit/decorators.js';
|
|
3
3
|
import { style } from './styles/exm-navigation-rail-nav-css.js';
|
|
4
|
-
import {
|
|
5
|
-
let
|
|
4
|
+
import { ExmNavigationRailNavBase } from './exm-navigation-rail-nav-base.js';
|
|
5
|
+
let ExmNavigationRailNav = class ExmNavigationRailNav extends ExmNavigationRailNavBase {
|
|
6
6
|
};
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
ExmNavigationRailNav.styles = [style];
|
|
8
|
+
ExmNavigationRailNav = __decorate([
|
|
9
9
|
customElement('exm-navigation-rail-nav')
|
|
10
|
-
],
|
|
11
|
-
export {
|
|
10
|
+
], ExmNavigationRailNav);
|
|
11
|
+
export { ExmNavigationRailNav };
|
|
12
12
|
//# sourceMappingURL=exm-navigation-rail-nav.js.map
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare class
|
|
1
|
+
import { ExmNavigationRailBase } from './exm-navigation-rail-base.js';
|
|
2
|
+
export declare class ExmNavigationRail extends ExmNavigationRailBase {
|
|
3
3
|
static styles: import("lit").CSSResult[];
|
|
4
4
|
}
|
|
5
5
|
declare global {
|
|
6
6
|
interface HTMLElementTagNameMap {
|
|
7
|
-
'exm-navigation-rail':
|
|
7
|
+
'exm-navigation-rail': ExmNavigationRail;
|
|
8
8
|
}
|
|
9
9
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { __decorate } from "tslib";
|
|
2
2
|
import { customElement } from 'lit/decorators/custom-element.js';
|
|
3
|
-
import {
|
|
3
|
+
import { ExmNavigationRailBase } from './exm-navigation-rail-base.js';
|
|
4
4
|
import { style } from './styles/exm-navigation-rail-css.js';
|
|
5
|
-
let
|
|
5
|
+
let ExmNavigationRail = class ExmNavigationRail extends ExmNavigationRailBase {
|
|
6
6
|
};
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
ExmNavigationRail.styles = [style];
|
|
8
|
+
ExmNavigationRail = __decorate([
|
|
9
9
|
customElement('exm-navigation-rail')
|
|
10
|
-
],
|
|
11
|
-
export {
|
|
10
|
+
], ExmNavigationRail);
|
|
11
|
+
export { ExmNavigationRail };
|
|
12
12
|
//# sourceMappingURL=exm-navigation-rail.js.map
|
|
@@ -2,7 +2,7 @@ import { ExmgElement } from '@exmg/lit-base';
|
|
|
2
2
|
import '@material/web/iconbutton/icon-button.js';
|
|
3
3
|
import '@material/web/icon/icon.js';
|
|
4
4
|
import '@material/mwc-top-app-bar-fixed';
|
|
5
|
-
export declare class
|
|
5
|
+
export declare class ExmNavigationToolbarBase extends ExmgElement {
|
|
6
6
|
protected firstUpdated(): void;
|
|
7
7
|
render(): import("lit-html").TemplateResult<1>;
|
|
8
8
|
}
|
|
@@ -3,7 +3,7 @@ import { html } from 'lit';
|
|
|
3
3
|
import '@material/web/iconbutton/icon-button.js';
|
|
4
4
|
import '@material/web/icon/icon.js';
|
|
5
5
|
import '@material/mwc-top-app-bar-fixed';
|
|
6
|
-
export class
|
|
6
|
+
export class ExmNavigationToolbarBase extends ExmgElement {
|
|
7
7
|
firstUpdated() {
|
|
8
8
|
const appToolbar = this.shadowRoot.querySelector('mwc-top-app-bar-fixed');
|
|
9
9
|
if (appToolbar) {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare class
|
|
1
|
+
import { ExmNavigationToolbarBase } from './exm-navigation-toolbar-base.js';
|
|
2
|
+
export declare class ExmNavigationToolbar extends ExmNavigationToolbarBase {
|
|
3
3
|
static styles: import("lit").CSSResult[];
|
|
4
4
|
}
|
|
5
5
|
declare global {
|
|
6
6
|
interface HTMLElementTagNameMap {
|
|
7
|
-
'exm-navigation-toolbar':
|
|
7
|
+
'exm-navigation-toolbar': ExmNavigationToolbar;
|
|
8
8
|
}
|
|
9
9
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { __decorate } from "tslib";
|
|
2
2
|
import { customElement } from 'lit/decorators.js';
|
|
3
3
|
import { style } from './styles/exm-navigation-toolbar-css.js';
|
|
4
|
-
import {
|
|
5
|
-
let
|
|
4
|
+
import { ExmNavigationToolbarBase } from './exm-navigation-toolbar-base.js';
|
|
5
|
+
let ExmNavigationToolbar = class ExmNavigationToolbar extends ExmNavigationToolbarBase {
|
|
6
6
|
};
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
ExmNavigationToolbar.styles = [style];
|
|
8
|
+
ExmNavigationToolbar = __decorate([
|
|
9
9
|
customElement('exm-navigation-toolbar')
|
|
10
|
-
],
|
|
11
|
-
export {
|
|
10
|
+
], ExmNavigationToolbar);
|
|
11
|
+
export { ExmNavigationToolbar };
|
|
12
12
|
//# sourceMappingURL=exm-navigation-toolbar.js.map
|