@quandis/qbo4.ui-bridge 4.0.1-CI-20240919-212538 → 4.0.1-CI-20240925-135342
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 +16 -17
- package/wwwroot/js/qbo4.ui-bridge.js +363 -199
- package/wwwroot/js/qbo4.ui-bridge.min.js +62 -61
- package/wwwroot/js/qbo4.ui-bridge.min.js.LICENSE.txt +1 -1
- package/wwwroot/js/qbo4.ui-bridge.min.js.map +1 -1
- package/src/Program.d.ts +0 -9
- package/src/qbo-badge.d.ts +0 -32
- package/src/qbo-breadcrumb.d.ts +0 -23
- package/src/qbo-contact-name.d.ts +0 -22
- package/src/qbo-contact.d.ts +0 -21
- package/src/qbo-mainmenu.d.ts +0 -41
- package/src/qbo-sidebar.d.ts +0 -10
- package/src/qbo-ssn.d.ts +0 -26
- package/src/styles.d.ts +0 -3
package/src/Program.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import 'reflect-metadata';
|
|
2
|
-
export { services } from '@quandis/qbo4.configuration';
|
|
3
|
-
export * from './qbo-badge.js';
|
|
4
|
-
export * from './qbo-contact.js';
|
|
5
|
-
export * from './qbo-contact-name.js';
|
|
6
|
-
export * from './qbo-mainmenu.js';
|
|
7
|
-
export * from './qbo-sidebar.js';
|
|
8
|
-
export * from './qbo-ssn.js';
|
|
9
|
-
export * from '@quandis/qbo4.ui';
|
package/src/qbo-badge.d.ts
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { QboFetch } from '@quandis/qbo4.ui/src/qbo/qbo-fetch.js';
|
|
2
|
-
/**
|
|
3
|
-
* Renders a <select> element with options populated from a JSON array.
|
|
4
|
-
*
|
|
5
|
-
* @remarks
|
|
6
|
-
* This element is a thin wrapper around {@link QboFetch} that renders a <select> element with options populated from a JSON array.
|
|
7
|
-
*/
|
|
8
|
-
export declare class QboBadge extends QboFetch {
|
|
9
|
-
loading: boolean;
|
|
10
|
-
/**
|
|
11
|
-
* @description A CSS selector that identifies the parent element containing the badges.
|
|
12
|
-
*/
|
|
13
|
-
target: null;
|
|
14
|
-
values: string[];
|
|
15
|
-
targetElement: Element | null;
|
|
16
|
-
/**
|
|
17
|
-
* @description A CSS selector that identifies where to render the badge elements.
|
|
18
|
-
* These elements should have a data-badge attribute that contributes to the API call.
|
|
19
|
-
* @example <div data-badge="123"/>
|
|
20
|
-
*/
|
|
21
|
-
selector: string;
|
|
22
|
-
connectedCallback(): Promise<void>;
|
|
23
|
-
disconnectedCallback(): void;
|
|
24
|
-
getPayload(headers: {
|
|
25
|
-
[key: string]: string;
|
|
26
|
-
}): void;
|
|
27
|
-
getIds(): void;
|
|
28
|
-
fetchData(headers: {
|
|
29
|
-
[key: string]: string;
|
|
30
|
-
}, payload: Object | null): Promise<void>;
|
|
31
|
-
render(): void;
|
|
32
|
-
}
|
package/src/qbo-breadcrumb.d.ts
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { QboFetch } from '@quandis/qbo4.ui/src/qbo/qbo-fetch.js';
|
|
2
|
-
export declare class QboBreadcrumb extends QboFetch {
|
|
3
|
-
ariaCurrent: string;
|
|
4
|
-
ariaLabel: string;
|
|
5
|
-
containerClass: string;
|
|
6
|
-
liClass: string;
|
|
7
|
-
liActiveClass: string;
|
|
8
|
-
navClass: string;
|
|
9
|
-
ulClass: string;
|
|
10
|
-
apiEndpoint: URL;
|
|
11
|
-
display: null;
|
|
12
|
-
object: null;
|
|
13
|
-
objectId: null;
|
|
14
|
-
operation: null;
|
|
15
|
-
options: Array<{
|
|
16
|
-
[key: string]: string;
|
|
17
|
-
}> | null;
|
|
18
|
-
renderInHost: boolean;
|
|
19
|
-
createRenderRoot(): HTMLElement | DocumentFragment;
|
|
20
|
-
connectedCallback(): void;
|
|
21
|
-
renderItem(option: any): import("lit-html").TemplateResult<1>;
|
|
22
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
23
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { TemplateResult } from 'lit';
|
|
2
|
-
import { QboFormElement } from '@quandis/qbo4.ui';
|
|
3
|
-
export declare class QboContactName extends QboFormElement {
|
|
4
|
-
buttonClass: String | null;
|
|
5
|
-
disabled: boolean;
|
|
6
|
-
elementClass: String | null;
|
|
7
|
-
elementStackedTopClass: String | null;
|
|
8
|
-
icon: String | null;
|
|
9
|
-
modalBodyDivClass: String | null;
|
|
10
|
-
modalContentDivClass: String | null;
|
|
11
|
-
modalDivClass: String | null;
|
|
12
|
-
modalDialogDivClass: String | null;
|
|
13
|
-
modalFooterDivClass: String | null;
|
|
14
|
-
modalHeaderDivClass: String | null;
|
|
15
|
-
modalHeaderText: String | null;
|
|
16
|
-
slotClass: String | null;
|
|
17
|
-
spanClass: String | null;
|
|
18
|
-
type: string | null;
|
|
19
|
-
renderInHost: boolean;
|
|
20
|
-
createRenderRoot(): HTMLElement | DocumentFragment;
|
|
21
|
-
render(): TemplateResult<1>;
|
|
22
|
-
}
|
package/src/qbo-contact.d.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { LitElement } from 'lit';
|
|
2
|
-
export declare class QboContact extends LitElement {
|
|
3
|
-
apiEndpoint: string;
|
|
4
|
-
colFourClass: String | null;
|
|
5
|
-
colSixClass: String | null;
|
|
6
|
-
colThreeClass: String | null;
|
|
7
|
-
colTwelveClass: String | null;
|
|
8
|
-
contactId: String | null;
|
|
9
|
-
contactLabel: String | null;
|
|
10
|
-
contactName: String | null;
|
|
11
|
-
disabled: boolean;
|
|
12
|
-
divSectionHeaderClass: String | null;
|
|
13
|
-
formControlSmallClass: String | null;
|
|
14
|
-
formLabelSmallClass: String | null;
|
|
15
|
-
formSelectSmallClass: String | null;
|
|
16
|
-
renderInHost: boolean;
|
|
17
|
-
jsonData: any | null;
|
|
18
|
-
createRenderRoot(): HTMLElement | DocumentFragment;
|
|
19
|
-
connectedCallback(): Promise<void>;
|
|
20
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
21
|
-
}
|
package/src/qbo-mainmenu.d.ts
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { LitElement, PropertyValues } from 'lit';
|
|
2
|
-
export declare class QboMainMenu extends LitElement {
|
|
3
|
-
ariaExpanded: string;
|
|
4
|
-
ariaLabel: string;
|
|
5
|
-
buttonType: string;
|
|
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>;
|
|
41
|
-
}
|
package/src/qbo-sidebar.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { LitElement, PropertyValues } from 'lit';
|
|
2
|
-
export declare class QboSideBar extends LitElement {
|
|
3
|
-
collapseAttribute: string;
|
|
4
|
-
collapseSelector: string;
|
|
5
|
-
menuCollapsed: string;
|
|
6
|
-
menuExpanded: string;
|
|
7
|
-
menuShow: string;
|
|
8
|
-
updated(changedProperties: PropertyValues): void;
|
|
9
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
10
|
-
}
|
package/src/qbo-ssn.d.ts
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { TemplateResult } from 'lit';
|
|
2
|
-
import { QboFormElement } from '@quandis/qbo4.ui';
|
|
3
|
-
export declare class QboSSN extends QboFormElement {
|
|
4
|
-
apiEndpoint: string;
|
|
5
|
-
disabled: boolean;
|
|
6
|
-
editMode: boolean;
|
|
7
|
-
event: String | null;
|
|
8
|
-
imageClassShow: String | null;
|
|
9
|
-
imageClassHide: String | null;
|
|
10
|
-
inputClass: String | null;
|
|
11
|
-
inputName: String | null;
|
|
12
|
-
selectorImage: String | null;
|
|
13
|
-
selectorInput: String | null;
|
|
14
|
-
selectorSpan: String | null;
|
|
15
|
-
show: boolean;
|
|
16
|
-
slotClass: String | null;
|
|
17
|
-
spanClass: String | null;
|
|
18
|
-
titleMaskText: String | null;
|
|
19
|
-
titleShowText: String | null;
|
|
20
|
-
type: string | null;
|
|
21
|
-
url: String | null;
|
|
22
|
-
renderInHost: boolean;
|
|
23
|
-
createRenderRoot(): HTMLElement | DocumentFragment;
|
|
24
|
-
toggleSSN(): Promise<void>;
|
|
25
|
-
render(): TemplateResult<1>;
|
|
26
|
-
}
|
package/src/styles.d.ts
DELETED