@quandis/qbo4.ui-bridge 4.0.1-CI-20241107-011213 → 4.0.1-CI-20241108-204654
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/package.json +1 -1
- package/src/qbo-mainmenu.d.ts +7 -39
- package/src/qbo-mainmenu.js +309 -290
- package/src/qbo-mainmenu.ts +311 -260
- package/wwwroot/css/ui-bridge.css +438 -90
- package/wwwroot/css/ui-bridge.css.map +1 -1
- package/wwwroot/css/ui-bridge.min.css +1 -1
- package/wwwroot/js/esm/ui-bridge.js +2910 -8160
- package/wwwroot/js/esm/ui-bridge.min.js +384 -137
- package/wwwroot/js/esm/ui-bridge.min.js.LICENSE.txt +0 -6
- package/wwwroot/js/esm/ui-bridge.min.js.map +1 -1
- package/wwwroot/js/qbo4.ui-bridge.js +2915 -8220
- package/wwwroot/js/qbo4.ui-bridge.min.js +384 -137
- package/wwwroot/js/qbo4.ui-bridge.min.js.LICENSE.txt +0 -6
- package/wwwroot/js/qbo4.ui-bridge.min.js.map +1 -1
package/package.json
CHANGED
package/src/qbo-mainmenu.d.ts
CHANGED
|
@@ -1,41 +1,9 @@
|
|
|
1
|
-
import { LitElement,
|
|
1
|
+
import { LitElement, TemplateResult } from 'lit';
|
|
2
|
+
type TemplateFunction = (component: any) => TemplateResult;
|
|
3
|
+
export declare const mainmenuMap: Map<string, TemplateFunction>;
|
|
2
4
|
export declare class QboMainMenu extends LitElement {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
collapseToggle: string;
|
|
7
|
-
dblClickClass: string;
|
|
8
|
-
dropdownId: string;
|
|
9
|
-
dropdownToggle: string;
|
|
10
|
-
iconClass: string;
|
|
11
|
-
liLinkToggleClass: string;
|
|
12
|
-
liLinkClass: string;
|
|
13
|
-
liAMenuClass: string;
|
|
14
|
-
navClass: string;
|
|
15
|
-
popoverContainer: string;
|
|
16
|
-
popoverHtml: string;
|
|
17
|
-
popoverPlacement: string;
|
|
18
|
-
popoverToggle: string;
|
|
19
|
-
popoverTrigger: string;
|
|
20
|
-
spanMenuClass: string;
|
|
21
|
-
spanMenuValue: string;
|
|
22
|
-
ulMainMenuToggleClass: string;
|
|
23
|
-
ulSubMenuClass: string;
|
|
24
|
-
ulSubMenuToggleClass: string;
|
|
25
|
-
apiEndpoint: string;
|
|
26
|
-
renderInHost: boolean;
|
|
27
|
-
jsonData: any | null;
|
|
28
|
-
targetElement: Element | null;
|
|
29
|
-
createRenderRoot(): HTMLElement | DocumentFragment;
|
|
30
|
-
connectedCallback(): Promise<void>;
|
|
31
|
-
disconnectedCallback(): void;
|
|
32
|
-
handleResize: () => void;
|
|
33
|
-
updated(changedProperties: PropertyValues): void;
|
|
34
|
-
renderImage(image: any): import("lit-html").TemplateResult<1>;
|
|
35
|
-
renderMenu(json: any, isDropdown: any, isSubmenu: any): import("lit-html").TemplateResult<1>;
|
|
36
|
-
renderMenuDivider(): import("lit-html").TemplateResult<1>;
|
|
37
|
-
renderMenuDropdown(json: any, isSubmenu: any): import("lit-html").TemplateResult<1>;
|
|
38
|
-
renderMenuDropdownLink(url: any, text: any, icon: any): import("lit-html").TemplateResult<1>;
|
|
39
|
-
renderMenuLink(menu: any): import("lit-html").TemplateResult<1>;
|
|
40
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
5
|
+
type: string | null;
|
|
6
|
+
static styles: import("lit").CSSResult;
|
|
7
|
+
render(): TemplateResult<1>;
|
|
41
8
|
}
|
|
9
|
+
export {};
|