@zanichelli/albe-web-components 19.0.2-rc → 19.1.1

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.
Files changed (36) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/dist/cjs/z-app-header_12.cjs.entry.js +8 -4
  3. package/dist/cjs/z-app-header_12.cjs.entry.js.map +1 -1
  4. package/dist/cjs/z-toast-notification.cjs.entry.js +1 -1
  5. package/dist/cjs/z-toast-notification.cjs.entry.js.map +1 -1
  6. package/dist/collection/components/z-tag/index.js +7 -3
  7. package/dist/collection/components/z-tag/index.js.map +1 -1
  8. package/dist/collection/components/z-tag/styles.css +5 -6
  9. package/dist/collection/components/z-toast-notification/index.js +6 -1
  10. package/dist/collection/components/z-toast-notification/index.js.map +1 -1
  11. package/dist/components/index26.js +8 -4
  12. package/dist/components/index26.js.map +1 -1
  13. package/dist/components/z-toast-notification.js +1 -1
  14. package/dist/components/z-toast-notification.js.map +1 -1
  15. package/dist/esm/z-app-header_12.entry.js +8 -4
  16. package/dist/esm/z-app-header_12.entry.js.map +1 -1
  17. package/dist/esm/z-toast-notification.entry.js +1 -1
  18. package/dist/esm/z-toast-notification.entry.js.map +1 -1
  19. package/dist/types/components/z-tag/index.d.ts +1 -0
  20. package/dist/types/components/z-toast-notification/index.d.ts +5 -0
  21. package/dist/types/components.d.ts +12 -0
  22. package/{www/build/p-469f320a.entry.js → dist/web-components-library/p-c6995296.entry.js} +2 -2
  23. package/dist/web-components-library/p-c6995296.entry.js.map +1 -0
  24. package/dist/web-components-library/{p-250bcc68.entry.js → p-c778bf87.entry.js} +3 -3
  25. package/{www/build/p-250bcc68.entry.js.map → dist/web-components-library/p-c778bf87.entry.js.map} +1 -1
  26. package/dist/web-components-library/web-components-library.esm.js +1 -1
  27. package/package.json +2 -3
  28. package/www/build/{p-ed876e2c.js → p-9e5b7f0d.js} +1 -1
  29. package/{dist/web-components-library/p-469f320a.entry.js → www/build/p-c6995296.entry.js} +2 -2
  30. package/www/build/p-c6995296.entry.js.map +1 -0
  31. package/www/build/{p-250bcc68.entry.js → p-c778bf87.entry.js} +3 -3
  32. package/{dist/web-components-library/p-250bcc68.entry.js.map → www/build/p-c778bf87.entry.js.map} +1 -1
  33. package/www/build/web-components-library.esm.js +1 -1
  34. package/www/index.html +1 -1
  35. package/dist/web-components-library/p-469f320a.entry.js.map +0 -1
  36. package/www/build/p-469f320a.entry.js.map +0 -1
@@ -5,6 +5,7 @@
5
5
  * @cssprop --z-tag-bg - background color of the z-tag.
6
6
  */
7
7
  export declare class ZTag {
8
+ host: HTMLZTagElement;
8
9
  /** [optional] Tag icon */
9
10
  icon?: string;
10
11
  /** [optional] Hide the text and show it on hover*/
@@ -1,5 +1,10 @@
1
1
  import { EventEmitter } from "../../stencil-public-runtime";
2
2
  import { ToastNotification, ToastNotificationTransition } from "../../beans";
3
+ /**
4
+ * ZToastNotification component.
5
+ * @slot message - Custom HTML message
6
+ * @slot button - Custom button
7
+ */
3
8
  export declare class ZToastNotification {
4
9
  hostElement: HTMLZToastNotificationElement;
5
10
  /** toast notification's title */
@@ -2138,6 +2138,9 @@ export namespace Components {
2138
2138
  */
2139
2139
  "sticky": boolean;
2140
2140
  }
2141
+ /**
2142
+ * ZToastNotification component.
2143
+ */
2141
2144
  interface ZToastNotification {
2142
2145
  /**
2143
2146
  * toast notification closing timeout (ms)
@@ -3581,6 +3584,9 @@ declare global {
3581
3584
  interface HTMLZToastNotificationElementEventMap {
3582
3585
  "toastClose": any;
3583
3586
  }
3587
+ /**
3588
+ * ZToastNotification component.
3589
+ */
3584
3590
  interface HTMLZToastNotificationElement extends Components.ZToastNotification, HTMLStencilElement {
3585
3591
  addEventListener<K extends keyof HTMLZToastNotificationElementEventMap>(type: K, listener: (this: HTMLZToastNotificationElement, ev: ZToastNotificationCustomEvent<HTMLZToastNotificationElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
3586
3592
  addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -6096,6 +6102,9 @@ declare namespace LocalJSX {
6096
6102
  */
6097
6103
  "sticky"?: boolean;
6098
6104
  }
6105
+ /**
6106
+ * ZToastNotification component.
6107
+ */
6099
6108
  interface ZToastNotification {
6100
6109
  /**
6101
6110
  * toast notification closing timeout (ms)
@@ -6657,6 +6666,9 @@ declare module "@stencil/core" {
6657
6666
  * ZThead component.
6658
6667
  */
6659
6668
  "z-thead": LocalJSX.ZThead & JSXBase.HTMLAttributes<HTMLZTheadElement>;
6669
+ /**
6670
+ * ZToastNotification component.
6671
+ */
6660
6672
  "z-toast-notification": LocalJSX.ZToastNotification & JSXBase.HTMLAttributes<HTMLZToastNotificationElement>;
6661
6673
  "z-toast-notification-list": LocalJSX.ZToastNotificationList & JSXBase.HTMLAttributes<HTMLZToastNotificationListElement>;
6662
6674
  "z-toggle-button": LocalJSX.ZToggleButton & JSXBase.HTMLAttributes<HTMLZToggleButtonElement>;