@zanichelli/albe-web-components 2.30.1 → 2.31.0-clav-272

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 (48) hide show
  1. package/CHANGELOG.md +1177 -0
  2. package/dist/cjs/loader.cjs.js +1 -1
  3. package/dist/cjs/web-components-library.cjs.js +1 -1
  4. package/dist/cjs/z-alert_66.cjs.entry.js +36 -15
  5. package/dist/cjs/z-myz-topbar.cjs.entry.js +1 -1
  6. package/dist/cjs/z-visually-hidden.cjs.entry.js +19 -0
  7. package/dist/collection/collection-manifest.json +1 -0
  8. package/dist/collection/components/footer/z-footer/index.js +161 -19
  9. package/dist/collection/components/footer/z-footer/styles.css +105 -43
  10. package/dist/collection/components/footer/z-footer-link/styles.css +1 -1
  11. package/dist/collection/components/footer/z-footer-section/styles.css +7 -8
  12. package/dist/collection/components/footer/z-footer-social/styles.css +1 -1
  13. package/dist/collection/components/logo/z-logo/index.js +25 -8
  14. package/dist/collection/components/logo/z-logo/styles.css +9 -11
  15. package/dist/collection/components/navigation/z-app-topbar/index.js +1 -1
  16. package/dist/collection/components/z-visually-hidden/index.js +15 -0
  17. package/dist/collection/components/z-visually-hidden/styles.css +15 -0
  18. package/dist/collection/snowflakes/myz/topbar/index.js +1 -1
  19. package/dist/esm/loader.js +1 -1
  20. package/dist/esm/web-components-library.js +1 -1
  21. package/dist/esm/z-alert_66.entry.js +36 -15
  22. package/dist/esm/z-myz-topbar.entry.js +1 -1
  23. package/dist/esm/z-visually-hidden.entry.js +15 -0
  24. package/dist/types/components/footer/z-footer/index.d.ts +23 -2
  25. package/dist/types/components/logo/z-logo/index.d.ts +4 -2
  26. package/dist/types/components/z-visually-hidden/index.d.ts +3 -0
  27. package/dist/types/components.d.ts +69 -8
  28. package/dist/web-components-library/p-16197e3c.entry.js +7 -0
  29. package/dist/web-components-library/p-dc51dcc8.entry.js +1 -0
  30. package/dist/web-components-library/p-f83347fd.entry.js +1 -0
  31. package/dist/web-components-library/web-components-library.esm.js +1 -1
  32. package/package.json +1 -1
  33. package/react/components.d.ts +1 -0
  34. package/react/components.js +2 -1
  35. package/react/components.js.map +1 -1
  36. package/src-react/index.ts +1 -0
  37. package/www/build/p-16197e3c.entry.js +7 -0
  38. package/www/build/p-beb043f8.js +1 -0
  39. package/www/build/p-dc51dcc8.entry.js +1 -0
  40. package/www/build/p-f83347fd.entry.js +1 -0
  41. package/www/build/web-components-library.esm.js +1 -1
  42. package/www/index.html +3 -3
  43. package/www/pages/notification.html +3 -6
  44. package/dist/web-components-library/p-14543c46.entry.js +0 -1
  45. package/dist/web-components-library/p-b89ae2ca.entry.js +0 -7
  46. package/www/build/p-14543c46.entry.js +0 -1
  47. package/www/build/p-b89ae2ca.entry.js +0 -7
  48. package/www/build/p-e4e9baf3.js +0 -1
@@ -314,13 +314,29 @@ export namespace Components {
314
314
  }
315
315
  interface ZFooter {
316
316
  /**
317
- * deprecated - set copyright user
317
+ * Maximum width of footer content
318
318
  */
319
- "copyrightuser"?: string;
319
+ "contentMaxWidth"?: number;
320
320
  /**
321
321
  * deprecated - JSON stringified data to fill the footer
322
322
  */
323
323
  "data"?: string;
324
+ /**
325
+ * 'undefined' or 'null' means 'don't show Credits', empty string means 'emit creditsLinkClick event', not empty string means 'open the url and emit creditsLinkClick event'
326
+ */
327
+ "productCreditsLink"?: string;
328
+ /**
329
+ * The product name to be displayed on the top panel of the footer
330
+ */
331
+ "productName"?: string;
332
+ /**
333
+ * The product version to be displayed on the top panel of the footer
334
+ */
335
+ "productVersion"?: string;
336
+ /**
337
+ * True if the product must display a "Report a problem" button on the top panel of the footer
338
+ */
339
+ "showReportAProblemButton"?: boolean;
324
340
  }
325
341
  interface ZFooterLink {
326
342
  /**
@@ -644,15 +660,19 @@ export namespace Components {
644
660
  /**
645
661
  * alternative image text
646
662
  */
647
- "imagealt"?: string;
663
+ "imageAlt"?: string;
648
664
  /**
649
665
  * link url (optional)
650
666
  */
651
667
  "link"?: string;
668
+ /**
669
+ * if true, the mobile logo is displayed, otherwise the desktop one
670
+ */
671
+ "mobileLogo"?: boolean;
652
672
  /**
653
673
  * link target: true means _blank, false means _self
654
674
  */
655
- "targetblank"?: boolean;
675
+ "targetBlank"?: boolean;
656
676
  /**
657
677
  * image width
658
678
  */
@@ -1519,6 +1539,8 @@ export namespace Components {
1519
1539
  */
1520
1540
  "userFullName"?: string;
1521
1541
  }
1542
+ interface ZVisuallyHidden {
1543
+ }
1522
1544
  }
1523
1545
  declare global {
1524
1546
  interface HTMLZAlertElement extends Components.ZAlert, HTMLStencilElement {
@@ -2043,6 +2065,12 @@ declare global {
2043
2065
  prototype: HTMLZUserDropdownElement;
2044
2066
  new (): HTMLZUserDropdownElement;
2045
2067
  };
2068
+ interface HTMLZVisuallyHiddenElement extends Components.ZVisuallyHidden, HTMLStencilElement {
2069
+ }
2070
+ var HTMLZVisuallyHiddenElement: {
2071
+ prototype: HTMLZVisuallyHiddenElement;
2072
+ new (): HTMLZVisuallyHiddenElement;
2073
+ };
2046
2074
  interface HTMLElementTagNameMap {
2047
2075
  "z-alert": HTMLZAlertElement;
2048
2076
  "z-app-header": HTMLZAppHeaderElement;
@@ -2131,6 +2159,7 @@ declare global {
2131
2159
  "z-tooltip": HTMLZTooltipElement;
2132
2160
  "z-typography": HTMLZTypographyElement;
2133
2161
  "z-user-dropdown": HTMLZUserDropdownElement;
2162
+ "z-visually-hidden": HTMLZVisuallyHiddenElement;
2134
2163
  }
2135
2164
  }
2136
2165
  declare namespace LocalJSX {
@@ -2466,13 +2495,37 @@ declare namespace LocalJSX {
2466
2495
  }
2467
2496
  interface ZFooter {
2468
2497
  /**
2469
- * deprecated - set copyright user
2498
+ * Maximum width of footer content
2470
2499
  */
2471
- "copyrightuser"?: string;
2500
+ "contentMaxWidth"?: number;
2472
2501
  /**
2473
2502
  * deprecated - JSON stringified data to fill the footer
2474
2503
  */
2475
2504
  "data"?: string;
2505
+ /**
2506
+ * Emitted on credits link click
2507
+ */
2508
+ "onCreditsLinkClick"?: (event: CustomEvent<any>) => void;
2509
+ /**
2510
+ * Emitted on report a problem button click
2511
+ */
2512
+ "onReportAProblemButtonClick"?: (event: CustomEvent<any>) => void;
2513
+ /**
2514
+ * 'undefined' or 'null' means 'don't show Credits', empty string means 'emit creditsLinkClick event', not empty string means 'open the url and emit creditsLinkClick event'
2515
+ */
2516
+ "productCreditsLink"?: string;
2517
+ /**
2518
+ * The product name to be displayed on the top panel of the footer
2519
+ */
2520
+ "productName"?: string;
2521
+ /**
2522
+ * The product version to be displayed on the top panel of the footer
2523
+ */
2524
+ "productVersion"?: string;
2525
+ /**
2526
+ * True if the product must display a "Report a problem" button on the top panel of the footer
2527
+ */
2528
+ "showReportAProblemButton"?: boolean;
2476
2529
  }
2477
2530
  interface ZFooterLink {
2478
2531
  /**
@@ -2820,15 +2873,19 @@ declare namespace LocalJSX {
2820
2873
  /**
2821
2874
  * alternative image text
2822
2875
  */
2823
- "imagealt"?: string;
2876
+ "imageAlt"?: string;
2824
2877
  /**
2825
2878
  * link url (optional)
2826
2879
  */
2827
2880
  "link"?: string;
2881
+ /**
2882
+ * if true, the mobile logo is displayed, otherwise the desktop one
2883
+ */
2884
+ "mobileLogo"?: boolean;
2828
2885
  /**
2829
2886
  * link target: true means _blank, false means _self
2830
2887
  */
2831
- "targetblank"?: boolean;
2888
+ "targetBlank"?: boolean;
2832
2889
  /**
2833
2890
  * image width
2834
2891
  */
@@ -3810,6 +3867,8 @@ declare namespace LocalJSX {
3810
3867
  */
3811
3868
  "userFullName"?: string;
3812
3869
  }
3870
+ interface ZVisuallyHidden {
3871
+ }
3813
3872
  interface IntrinsicElements {
3814
3873
  "z-alert": ZAlert;
3815
3874
  "z-app-header": ZAppHeader;
@@ -3898,6 +3957,7 @@ declare namespace LocalJSX {
3898
3957
  "z-tooltip": ZTooltip;
3899
3958
  "z-typography": ZTypography;
3900
3959
  "z-user-dropdown": ZUserDropdown;
3960
+ "z-visually-hidden": ZVisuallyHidden;
3901
3961
  }
3902
3962
  }
3903
3963
  export { LocalJSX as JSX };
@@ -3991,6 +4051,7 @@ declare module "@stencil/core" {
3991
4051
  "z-tooltip": LocalJSX.ZTooltip & JSXBase.HTMLAttributes<HTMLZTooltipElement>;
3992
4052
  "z-typography": LocalJSX.ZTypography & JSXBase.HTMLAttributes<HTMLZTypographyElement>;
3993
4053
  "z-user-dropdown": LocalJSX.ZUserDropdown & JSXBase.HTMLAttributes<HTMLZUserDropdownElement>;
4054
+ "z-visually-hidden": LocalJSX.ZVisuallyHidden & JSXBase.HTMLAttributes<HTMLZVisuallyHiddenElement>;
3994
4055
  }
3995
4056
  }
3996
4057
  }