@nextrap/nte-nav 0.2.4 → 0.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 +23 -0
- package/index.css +1 -1
- package/index.js +459 -447
- package/lib/nte-nav.d.ts +7 -6
- package/lib/nte-navbar.d.ts +1 -0
- package/package.json +3 -3
package/lib/nte-nav.d.ts
CHANGED
|
@@ -11,15 +11,16 @@ import { LitElement, PropertyValues } from 'lit';
|
|
|
11
11
|
export declare class NteNav extends LitElement {
|
|
12
12
|
static DEFINITION: NtElementDefinition;
|
|
13
13
|
static styles: import('lit').CSSResult[];
|
|
14
|
-
mode: '
|
|
15
|
-
text: string;
|
|
14
|
+
mode: 'master' | 'slave';
|
|
16
15
|
breakpoint: string | number;
|
|
17
|
-
|
|
18
|
-
private
|
|
16
|
+
transferTo: string;
|
|
17
|
+
private _isTransferred;
|
|
18
|
+
private getOffcanvas;
|
|
19
|
+
private getOffcanvasNav;
|
|
19
20
|
constructor();
|
|
20
21
|
render(): import('lit-html').TemplateResult<1>;
|
|
22
|
+
transferToElement(targetElement: NteNav): void;
|
|
21
23
|
protected updated(_changedProperties: PropertyValues): void;
|
|
22
24
|
protected firstUpdated(_changedProperties: PropertyValues): void;
|
|
23
|
-
|
|
24
|
-
connectedCallback(): void;
|
|
25
|
+
connectedCallback(): Promise<void>;
|
|
25
26
|
}
|
package/lib/nte-navbar.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nextrap/nte-nav",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"main": "./index.js",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@nextrap/nt-framework": "^0.0.1",
|
|
7
7
|
"@nextrap/nte-burger": "^0.0.1",
|
|
8
|
-
"@nextrap/nte-offcanvas": "^0.0.
|
|
8
|
+
"@nextrap/nte-offcanvas": "^0.0.4"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
11
|
"@nextrap/style-base": "^0.0.1",
|
|
12
|
-
"@nextrap/style-reset": "^0.
|
|
12
|
+
"@nextrap/style-reset": "^0.1.1"
|
|
13
13
|
},
|
|
14
14
|
"type": "module",
|
|
15
15
|
"style": "./index.css",
|