@jumpgroup/jump-design-system 0.3.96 → 0.3.97
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/jump-design-system.cjs.js +1 -1
- package/dist/cjs/jump-notice.cjs.entry.js +41 -0
- package/dist/cjs/jump-notice.cjs.entry.js.map +1 -0
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +1 -0
- package/dist/collection/components/jump-notice/jump-notice.css +59 -0
- package/dist/collection/components/jump-notice/jump-notice.js +190 -0
- package/dist/collection/components/jump-notice/jump-notice.js.map +1 -0
- package/dist/collection/components/jump-notice/jump-notice.stories.js +90 -0
- package/dist/collection/components/jump-notice/jump-notice.stories.js.map +1 -0
- package/dist/components/jump-notice.d.ts +11 -0
- package/dist/components/jump-notice.js +76 -0
- package/dist/components/jump-notice.js.map +1 -0
- package/dist/esm/jump-design-system.js +1 -1
- package/dist/esm/jump-notice.entry.js +37 -0
- package/dist/esm/jump-notice.entry.js.map +1 -0
- package/dist/esm/loader.js +1 -1
- package/dist/jump-design-system/jump-design-system.esm.js +1 -1
- package/dist/jump-design-system/jump-design-system.esm.js.map +1 -1
- package/dist/jump-design-system/p-4737672b.entry.js +2 -0
- package/dist/jump-design-system/p-4737672b.entry.js.map +1 -0
- package/dist/jump-design-system-elements.json +37 -0
- package/dist/types/components/jump-notice/jump-notice.d.ts +19 -0
- package/dist/types/components/jump-notice/jump-notice.stories.d.ts +48 -0
- package/dist/types/components.d.ts +49 -0
- package/package.json +1 -1
|
@@ -600,6 +600,18 @@ export namespace Components {
|
|
|
600
600
|
target: '_blank' | '_parent' | '_self' | '_top'
|
|
601
601
|
} | null;
|
|
602
602
|
}
|
|
603
|
+
interface JumpNotice {
|
|
604
|
+
"closable": boolean;
|
|
605
|
+
"description": string;
|
|
606
|
+
/**
|
|
607
|
+
* @Prop () id: string; Serve per identificare il componente nel DOM, utile per test o script esterni.
|
|
608
|
+
*/
|
|
609
|
+
"id": string;
|
|
610
|
+
"link": string;
|
|
611
|
+
"linkText": string;
|
|
612
|
+
"title": string;
|
|
613
|
+
"type": string;
|
|
614
|
+
}
|
|
603
615
|
interface JumpPagination {
|
|
604
616
|
/**
|
|
605
617
|
* Last element of the page
|
|
@@ -781,6 +793,10 @@ export interface JumpFiltergroupCustomEvent<T> extends CustomEvent<T> {
|
|
|
781
793
|
detail: T;
|
|
782
794
|
target: HTMLJumpFiltergroupElement;
|
|
783
795
|
}
|
|
796
|
+
export interface JumpNoticeCustomEvent<T> extends CustomEvent<T> {
|
|
797
|
+
detail: T;
|
|
798
|
+
target: HTMLJumpNoticeElement;
|
|
799
|
+
}
|
|
784
800
|
export interface JumpPaginationCustomEvent<T> extends CustomEvent<T> {
|
|
785
801
|
detail: T;
|
|
786
802
|
target: HTMLJumpPaginationElement;
|
|
@@ -1010,6 +1026,23 @@ declare global {
|
|
|
1010
1026
|
prototype: HTMLJumpNavbarElement;
|
|
1011
1027
|
new (): HTMLJumpNavbarElement;
|
|
1012
1028
|
};
|
|
1029
|
+
interface HTMLJumpNoticeElementEventMap {
|
|
1030
|
+
"jump-notice-close": any;
|
|
1031
|
+
}
|
|
1032
|
+
interface HTMLJumpNoticeElement extends Components.JumpNotice, HTMLStencilElement {
|
|
1033
|
+
addEventListener<K extends keyof HTMLJumpNoticeElementEventMap>(type: K, listener: (this: HTMLJumpNoticeElement, ev: JumpNoticeCustomEvent<HTMLJumpNoticeElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1034
|
+
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1035
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1036
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1037
|
+
removeEventListener<K extends keyof HTMLJumpNoticeElementEventMap>(type: K, listener: (this: HTMLJumpNoticeElement, ev: JumpNoticeCustomEvent<HTMLJumpNoticeElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
|
|
1038
|
+
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1039
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1040
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
1041
|
+
}
|
|
1042
|
+
var HTMLJumpNoticeElement: {
|
|
1043
|
+
prototype: HTMLJumpNoticeElement;
|
|
1044
|
+
new (): HTMLJumpNoticeElement;
|
|
1045
|
+
};
|
|
1013
1046
|
interface HTMLJumpPaginationElementEventMap {
|
|
1014
1047
|
"jump-change-page": any;
|
|
1015
1048
|
}
|
|
@@ -1202,6 +1235,7 @@ declare global {
|
|
|
1202
1235
|
"jump-filtergroup": HTMLJumpFiltergroupElement;
|
|
1203
1236
|
"jump-icon": HTMLJumpIconElement;
|
|
1204
1237
|
"jump-navbar": HTMLJumpNavbarElement;
|
|
1238
|
+
"jump-notice": HTMLJumpNoticeElement;
|
|
1205
1239
|
"jump-pagination": HTMLJumpPaginationElement;
|
|
1206
1240
|
"jump-pagination-table": HTMLJumpPaginationTableElement;
|
|
1207
1241
|
"jump-quantity": HTMLJumpQuantityElement;
|
|
@@ -1756,6 +1790,19 @@ declare namespace LocalJSX {
|
|
|
1756
1790
|
target: '_blank' | '_parent' | '_self' | '_top'
|
|
1757
1791
|
} | null;
|
|
1758
1792
|
}
|
|
1793
|
+
interface JumpNotice {
|
|
1794
|
+
"closable"?: boolean;
|
|
1795
|
+
"description"?: string;
|
|
1796
|
+
/**
|
|
1797
|
+
* @Prop () id: string; Serve per identificare il componente nel DOM, utile per test o script esterni.
|
|
1798
|
+
*/
|
|
1799
|
+
"id"?: string;
|
|
1800
|
+
"link"?: string;
|
|
1801
|
+
"linkText"?: string;
|
|
1802
|
+
"onJump-notice-close"?: (event: JumpNoticeCustomEvent<any>) => void;
|
|
1803
|
+
"title"?: string;
|
|
1804
|
+
"type"?: string;
|
|
1805
|
+
}
|
|
1759
1806
|
interface JumpPagination {
|
|
1760
1807
|
/**
|
|
1761
1808
|
* Last element of the page
|
|
@@ -1938,6 +1985,7 @@ declare namespace LocalJSX {
|
|
|
1938
1985
|
"jump-filtergroup": JumpFiltergroup;
|
|
1939
1986
|
"jump-icon": JumpIcon;
|
|
1940
1987
|
"jump-navbar": JumpNavbar;
|
|
1988
|
+
"jump-notice": JumpNotice;
|
|
1941
1989
|
"jump-pagination": JumpPagination;
|
|
1942
1990
|
"jump-pagination-table": JumpPaginationTable;
|
|
1943
1991
|
"jump-quantity": JumpQuantity;
|
|
@@ -1976,6 +2024,7 @@ declare module "@stencil/core" {
|
|
|
1976
2024
|
"jump-filtergroup": LocalJSX.JumpFiltergroup & JSXBase.HTMLAttributes<HTMLJumpFiltergroupElement>;
|
|
1977
2025
|
"jump-icon": LocalJSX.JumpIcon & JSXBase.HTMLAttributes<HTMLJumpIconElement>;
|
|
1978
2026
|
"jump-navbar": LocalJSX.JumpNavbar & JSXBase.HTMLAttributes<HTMLJumpNavbarElement>;
|
|
2027
|
+
"jump-notice": LocalJSX.JumpNotice & JSXBase.HTMLAttributes<HTMLJumpNoticeElement>;
|
|
1979
2028
|
"jump-pagination": LocalJSX.JumpPagination & JSXBase.HTMLAttributes<HTMLJumpPaginationElement>;
|
|
1980
2029
|
"jump-pagination-table": LocalJSX.JumpPaginationTable & JSXBase.HTMLAttributes<HTMLJumpPaginationTableElement>;
|
|
1981
2030
|
"jump-quantity": LocalJSX.JumpQuantity & JSXBase.HTMLAttributes<HTMLJumpQuantityElement>;
|