@vodafone_de/brix-components 11.3.4 → 11.4.0
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.
|
@@ -101,7 +101,7 @@ const ConsentMessage = ({
|
|
|
101
101
|
}
|
|
102
102
|
const openConsentBanner = () => {
|
|
103
103
|
try {
|
|
104
|
-
window.
|
|
104
|
+
(window._ddq || (window._ddq = [])).push(["permissions show", {}]);
|
|
105
105
|
} catch (e) {
|
|
106
106
|
console.log("Could not open consentBanner");
|
|
107
107
|
}
|
|
@@ -47,7 +47,7 @@ const Pickers = ({
|
|
|
47
47
|
}) => {
|
|
48
48
|
const isChecked = checked === picker.value;
|
|
49
49
|
key = key ? key : picker.value;
|
|
50
|
-
return /* @__PURE__ */ jsx(PickerGridItemStyled, { gridConfig, children: /* @__PURE__ */ jsx(Picker, { ...picker, name: props.name, isChecked, isDisabled: props.disabled, handleChange, children: picker.children }) }, key);
|
|
50
|
+
return /* @__PURE__ */ jsx(PickerGridItemStyled, { gridConfig, children: /* @__PURE__ */ jsx(Picker, { ...picker, name: props.name, isChecked, isDisabled: props.disabled || picker.isDisabled, handleChange, children: picker.children }) }, key);
|
|
51
51
|
});
|
|
52
52
|
return /* @__PURE__ */ jsx(PickerGridStyled, { bottomSpacing: props.bottomSpacing, children: pickers });
|
|
53
53
|
};
|
|
@@ -8,11 +8,7 @@ export type ConsentStorage = {
|
|
|
8
8
|
[key in typeof consentStorageFeature]?: ConsentPermissionStorage;
|
|
9
9
|
};
|
|
10
10
|
export interface WindowWithScodeLoaded extends Window {
|
|
11
|
-
|
|
12
|
-
consent: {
|
|
13
|
-
showBanner: () => void;
|
|
14
|
-
};
|
|
15
|
-
};
|
|
11
|
+
_ddq?: unknown[];
|
|
16
12
|
}
|
|
17
13
|
export declare const checkThirdPartyConsentStorage: () => boolean;
|
|
18
14
|
/**
|