xv-webcomponents 0.1.38 → 0.1.39
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/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/{xv-accordion-v2_26.cjs.entry.js → xv-accordion-v2_27.cjs.entry.js} +109 -18
- package/dist/cjs/xv-accordion-v2_27.cjs.entry.js.map +1 -0
- package/dist/cjs/xv-webcomponents.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +1 -0
- package/dist/collection/components/xv-header/xv-header.js +10 -2
- package/dist/collection/components/xv-header/xv-header.js.map +1 -1
- package/dist/collection/components/xv-link/xv-link.js +1 -1
- package/dist/collection/components/xv-login-modal/xv-login-modal.css +22575 -0
- package/dist/collection/components/xv-login-modal/xv-login-modal.js +146 -0
- package/dist/collection/components/xv-login-modal/xv-login-modal.js.map +1 -0
- package/dist/collection/components/xv-modal/xv-modal.js +1 -1
- package/dist/collection/components/xv-notification/xv-notification.js +1 -1
- package/dist/collection/components/xv-overflow-menu/xv-overflow-menu-item/xv-overflow-menu-item.js +1 -1
- package/dist/collection/components/xv-overflow-menu/xv-overflow-menu.js +1 -1
- package/dist/collection/components/xv-progress-indicator/xv-progress-indicator-item/xv-progress-indicator-item.js +1 -1
- package/dist/collection/components/xv-progress-indicator/xv-progress-indicator.js +1 -1
- package/dist/collection/components/xv-table/xv-table-cell/xv-table-cell.js +1 -1
- package/dist/collection/components/xv-table/xv-table-expand/xv-table-expand.js +1 -1
- package/dist/collection/components/xv-table/xv-table-row/xv-table-row.js +1 -1
- package/dist/collection/components/xv-table/xv-table.js +1 -1
- package/dist/collection/components/xv-tabs/xv-tab/xv-tab.js +1 -1
- package/dist/collection/components/xv-tag/xv-tag.js +1 -1
- package/dist/collection/components/xv-text-input/xv-text-input.js +1 -1
- package/dist/collection/components/xv-tooltip/xv-tooltip.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/{xv-accordion-v2_26.entry.js → xv-accordion-v2_27.entry.js} +109 -19
- package/dist/esm/xv-accordion-v2_27.entry.js.map +1 -0
- package/dist/esm/xv-webcomponents.js +1 -1
- package/dist/types/components/xv-header/xv-header.d.ts +3 -0
- package/dist/types/components/xv-login-modal/xv-login-modal.d.ts +29 -0
- package/dist/types/components.d.ts +31 -0
- package/dist/xv-webcomponents/p-6a4cc790.entry.js +2 -0
- package/dist/xv-webcomponents/p-6a4cc790.entry.js.map +1 -0
- package/dist/xv-webcomponents/xv-webcomponents.esm.js +1 -1
- package/package.json +1 -1
- package/dist/cjs/xv-accordion-v2_26.cjs.entry.js.map +0 -1
- package/dist/esm/xv-accordion-v2_26.entry.js.map +0 -1
- package/dist/xv-webcomponents/p-4d970ae4.entry.js +0 -2
- package/dist/xv-webcomponents/p-4d970ae4.entry.js.map +0 -1
|
@@ -154,6 +154,9 @@ export namespace Components {
|
|
|
154
154
|
*/
|
|
155
155
|
"variant": 'vertical' | 'horizontal';
|
|
156
156
|
}
|
|
157
|
+
interface XvLoginModal {
|
|
158
|
+
"visible": boolean;
|
|
159
|
+
}
|
|
157
160
|
interface XvModalV2 {
|
|
158
161
|
"closeModal": () => Promise<boolean>;
|
|
159
162
|
/**
|
|
@@ -318,6 +321,10 @@ export interface XvDropdownV2ItemCustomEvent<T> extends CustomEvent<T> {
|
|
|
318
321
|
detail: T;
|
|
319
322
|
target: HTMLXvDropdownV2ItemElement;
|
|
320
323
|
}
|
|
324
|
+
export interface XvLoginModalCustomEvent<T> extends CustomEvent<T> {
|
|
325
|
+
detail: T;
|
|
326
|
+
target: HTMLXvLoginModalElement;
|
|
327
|
+
}
|
|
321
328
|
export interface XvModalV2CustomEvent<T> extends CustomEvent<T> {
|
|
322
329
|
detail: T;
|
|
323
330
|
target: HTMLXvModalV2Element;
|
|
@@ -502,6 +509,23 @@ declare global {
|
|
|
502
509
|
prototype: HTMLXvLoaderV2Element;
|
|
503
510
|
new (): HTMLXvLoaderV2Element;
|
|
504
511
|
};
|
|
512
|
+
interface HTMLXvLoginModalElementEventMap {
|
|
513
|
+
"close": void;
|
|
514
|
+
}
|
|
515
|
+
interface HTMLXvLoginModalElement extends Components.XvLoginModal, HTMLStencilElement {
|
|
516
|
+
addEventListener<K extends keyof HTMLXvLoginModalElementEventMap>(type: K, listener: (this: HTMLXvLoginModalElement, ev: XvLoginModalCustomEvent<HTMLXvLoginModalElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
|
|
517
|
+
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
518
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
519
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
520
|
+
removeEventListener<K extends keyof HTMLXvLoginModalElementEventMap>(type: K, listener: (this: HTMLXvLoginModalElement, ev: XvLoginModalCustomEvent<HTMLXvLoginModalElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
|
|
521
|
+
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
522
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
523
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
524
|
+
}
|
|
525
|
+
var HTMLXvLoginModalElement: {
|
|
526
|
+
prototype: HTMLXvLoginModalElement;
|
|
527
|
+
new (): HTMLXvLoginModalElement;
|
|
528
|
+
};
|
|
505
529
|
interface HTMLXvModalV2ElementEventMap {
|
|
506
530
|
"openChange": boolean;
|
|
507
531
|
}
|
|
@@ -710,6 +734,7 @@ declare global {
|
|
|
710
734
|
"xv-header": HTMLXvHeaderElement;
|
|
711
735
|
"xv-link-v2": HTMLXvLinkV2Element;
|
|
712
736
|
"xv-loader-v2": HTMLXvLoaderV2Element;
|
|
737
|
+
"xv-login-modal": HTMLXvLoginModalElement;
|
|
713
738
|
"xv-modal-v2": HTMLXvModalV2Element;
|
|
714
739
|
"xv-notification-v2": HTMLXvNotificationV2Element;
|
|
715
740
|
"xv-overflow-menu-v2": HTMLXvOverflowMenuV2Element;
|
|
@@ -883,6 +908,10 @@ declare namespace LocalJSX {
|
|
|
883
908
|
*/
|
|
884
909
|
"variant"?: 'vertical' | 'horizontal';
|
|
885
910
|
}
|
|
911
|
+
interface XvLoginModal {
|
|
912
|
+
"onClose"?: (event: XvLoginModalCustomEvent<void>) => void;
|
|
913
|
+
"visible"?: boolean;
|
|
914
|
+
}
|
|
886
915
|
interface XvModalV2 {
|
|
887
916
|
"onOpenChange"?: (event: XvModalV2CustomEvent<boolean>) => void;
|
|
888
917
|
/**
|
|
@@ -1046,6 +1075,7 @@ declare namespace LocalJSX {
|
|
|
1046
1075
|
"xv-header": XvHeader;
|
|
1047
1076
|
"xv-link-v2": XvLinkV2;
|
|
1048
1077
|
"xv-loader-v2": XvLoaderV2;
|
|
1078
|
+
"xv-login-modal": XvLoginModal;
|
|
1049
1079
|
"xv-modal-v2": XvModalV2;
|
|
1050
1080
|
"xv-notification-v2": XvNotificationV2;
|
|
1051
1081
|
"xv-overflow-menu-v2": XvOverflowMenuV2;
|
|
@@ -1085,6 +1115,7 @@ declare module "@stencil/core" {
|
|
|
1085
1115
|
"xv-header": LocalJSX.XvHeader & JSXBase.HTMLAttributes<HTMLXvHeaderElement>;
|
|
1086
1116
|
"xv-link-v2": LocalJSX.XvLinkV2 & JSXBase.HTMLAttributes<HTMLXvLinkV2Element>;
|
|
1087
1117
|
"xv-loader-v2": LocalJSX.XvLoaderV2 & JSXBase.HTMLAttributes<HTMLXvLoaderV2Element>;
|
|
1118
|
+
"xv-login-modal": LocalJSX.XvLoginModal & JSXBase.HTMLAttributes<HTMLXvLoginModalElement>;
|
|
1088
1119
|
"xv-modal-v2": LocalJSX.XvModalV2 & JSXBase.HTMLAttributes<HTMLXvModalV2Element>;
|
|
1089
1120
|
"xv-notification-v2": LocalJSX.XvNotificationV2 & JSXBase.HTMLAttributes<HTMLXvNotificationV2Element>;
|
|
1090
1121
|
"xv-overflow-menu-v2": LocalJSX.XvOverflowMenuV2 & JSXBase.HTMLAttributes<HTMLXvOverflowMenuV2Element>;
|