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