@zanichelli/delta_share 4.2.1 → 4.2.2
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/react/components.d.ts +0 -0
- package/dist/react/components.js +0 -0
- package/dist/react/components.js.map +0 -0
- package/dist/react/index.d.ts +0 -0
- package/dist/react/index.js +0 -0
- package/dist/react/index.js.map +0 -0
- package/dist/react/react-component-lib/createComponent.d.ts +0 -0
- package/dist/react/react-component-lib/createComponent.js +0 -0
- package/dist/react/react-component-lib/createComponent.js.map +0 -0
- package/dist/react/react-component-lib/createOverlayComponent.d.ts +0 -0
- package/dist/react/react-component-lib/createOverlayComponent.js +0 -0
- package/dist/react/react-component-lib/createOverlayComponent.js.map +0 -0
- package/dist/react/react-component-lib/index.d.ts +0 -0
- package/dist/react/react-component-lib/index.js +0 -0
- package/dist/react/react-component-lib/index.js.map +0 -0
- package/dist/react/react-component-lib/interfaces.d.ts +0 -0
- package/dist/react/react-component-lib/interfaces.js +0 -0
- package/dist/react/react-component-lib/interfaces.js.map +0 -0
- package/dist/react/react-component-lib/utils/attachProps.d.ts +0 -0
- package/dist/react/react-component-lib/utils/attachProps.js +0 -0
- package/dist/react/react-component-lib/utils/attachProps.js.map +0 -0
- package/dist/react/react-component-lib/utils/case.d.ts +0 -0
- package/dist/react/react-component-lib/utils/case.js +0 -0
- package/dist/react/react-component-lib/utils/case.js.map +0 -0
- package/dist/react/react-component-lib/utils/dev.d.ts +0 -0
- package/dist/react/react-component-lib/utils/dev.js +0 -0
- package/dist/react/react-component-lib/utils/dev.js.map +0 -0
- package/dist/react/react-component-lib/utils/index.d.ts +0 -0
- package/dist/react/react-component-lib/utils/index.js +0 -0
- package/dist/react/react-component-lib/utils/index.js.map +0 -0
- package/dist/wc/cjs/license-activation_10.cjs.entry.js +5 -3
- package/dist/wc/collection/components/license-activation/license-activation.js +2 -0
- package/dist/wc/collection/components/license-activation-form/license-activation-form.js +4 -4
- package/dist/wc/custom-elements/index.d.ts +0 -0
- package/dist/wc/custom-elements/index.js +5 -3
- package/dist/wc/delta_share/delta_share.esm.js +1 -1
- package/dist/wc/delta_share/index.esm.js +0 -0
- package/dist/wc/delta_share/p-caec8649.entry.js +3 -0
- package/dist/wc/esm/license-activation_10.entry.js +5 -3
- package/dist/wc/types/beans/index.d.ts +1 -0
- package/dist/wc/types/components/license-activation/license-activation.d.ts +0 -0
- package/dist/wc/types/components/license-activation-box/license-activation-box.d.ts +0 -0
- package/dist/wc/types/components/license-activation-form/license-activation-form.d.ts +0 -0
- package/dist/wc/types/components/license-activation-modal/license-activation-modal.d.ts +0 -0
- package/dist/wc/types/components.d.ts +0 -0
- package/dist/wc/types/index.d.ts +0 -0
- package/dist/wc/types/stencil-public-runtime.d.ts +0 -0
- package/dist/wc/types/store/CMS/index.d.ts +0 -0
- package/dist/wc/types/store/index.d.ts +0 -0
- package/dist/wc/types/utils/env.d.ts +0 -0
- package/dist/wc/types/utils/request.d.ts +0 -0
- package/dist/wc/types/utils/utils.d.ts +0 -0
- package/package.json +1 -1
- package/dist/wc/delta_share/p-ca0c9c66.entry.js +0 -3
|
@@ -1870,6 +1870,8 @@ const LicenseActivation = class {
|
|
|
1870
1870
|
previewButtonSize,
|
|
1871
1871
|
linkLabel: this.cms["newdashboard.licenseActivation.helperLink"],
|
|
1872
1872
|
errorButtonLabel: this.cms["newdashboard.licenseActivation.contactUs.btnLabel"],
|
|
1873
|
+
errorButtonAriaLabel: this.cms["newdashboard.licenseActivation.contactUs.btnLabel"] +
|
|
1874
|
+
this.cms["newdashboard.openInNewTab"],
|
|
1873
1875
|
errorSectionMessage: this.cms["newdashboard.licenseActivation.contactUs.message"],
|
|
1874
1876
|
infoBoxIcon: `${this.environment.URL_S3_IMAGES_FOLDER}bollinoSIAE.svg`,
|
|
1875
1877
|
infoBoxContent: this.cms["newdashboard.licenseActivation.infoBoxContent"],
|
|
@@ -2014,7 +2016,7 @@ const LicenseActivationForm = class {
|
|
|
2014
2016
|
return;
|
|
2015
2017
|
if (this.variant === LicenseActivationVariantEnum.modal)
|
|
2016
2018
|
return (h("span", { class: "infobox-content body-4-sb" }, h("z-icon", { name: "question-mark" }), " ", linkLabel));
|
|
2017
|
-
return (h("button", { class: "z-link z-link-blue z-link-icon z-link-sb", "aria-label": `${linkLabel} clicca per avere maggiori informazioni`, onClick: () => this.handleInfoClick() }, h("z-icon", { name: "question-mark" }), linkLabel));
|
|
2019
|
+
return (h("button", { class: "z-link z-link-blue z-link-icon z-link-sb", "aria-label": `${linkLabel} clicca per avere maggiori informazioni`, "aria-haspopup": "dialog", onClick: () => this.handleInfoClick() }, h("z-icon", { name: "question-mark" }), linkLabel));
|
|
2018
2020
|
}
|
|
2019
2021
|
renderInfoBox() {
|
|
2020
2022
|
if (this.variant !== LicenseActivationVariantEnum.modal)
|
|
@@ -2031,8 +2033,8 @@ const LicenseActivationForm = class {
|
|
|
2031
2033
|
renderErrorSection() {
|
|
2032
2034
|
if (this.variant !== LicenseActivationVariantEnum.modal || !this.error)
|
|
2033
2035
|
return;
|
|
2034
|
-
const { errorButtonLabel, errorSectionMessage } = this.formTexts;
|
|
2035
|
-
return (h("section", { class: "error-section" }, h("span", { class: "body-4-sb" }, errorSectionMessage), h("z-button", { variant: ButtonVariant.secondary, onClick: this.redirectToSupport, role: "link" }, errorButtonLabel)));
|
|
2036
|
+
const { errorButtonLabel, errorSectionMessage, errorButtonAriaLabel } = this.formTexts;
|
|
2037
|
+
return (h("section", { class: "error-section" }, h("span", { class: "body-4-sb" }, errorSectionMessage), h("z-button", { variant: ButtonVariant.secondary, onClick: this.redirectToSupport, role: "link", ariaLabel: errorButtonAriaLabel }, errorButtonLabel)));
|
|
2036
2038
|
}
|
|
2037
2039
|
getButtonSize(variant) {
|
|
2038
2040
|
const { previewButtonSize } = this.formTexts;
|
|
@@ -30,6 +30,7 @@ export declare type LicenseActivationFormTexts = {
|
|
|
30
30
|
previewButtonSize: null | string;
|
|
31
31
|
linkLabel: null | string;
|
|
32
32
|
errorButtonLabel: null | string;
|
|
33
|
+
errorButtonAriaLabel: null | string;
|
|
33
34
|
errorSectionMessage: null | string;
|
|
34
35
|
infoBoxIcon: null | string;
|
|
35
36
|
infoBoxContent: null | string;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/dist/wc/types/index.d.ts
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|