@iqworksai/consentiq-react 0.1.1 → 0.1.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/index.js +24 -1
- package/dist/index.mjs +24 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -864,7 +864,30 @@ function PreferenceCenter({ className, theme, style }) {
|
|
|
864
864
|
/* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { style: footerStyle, children: [
|
|
865
865
|
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("button", { onClick: hidePreferenceCenter, style: buttonSecondaryStyle, type: "button", children: "Cancel" }),
|
|
866
866
|
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("button", { onClick: handleSave, style: buttonPrimaryStyle, type: "button", children: translations.savePreferencesText || "Save Preferences" })
|
|
867
|
-
] })
|
|
867
|
+
] }),
|
|
868
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("div", { style: {
|
|
869
|
+
padding: "0.5rem 1.5rem 0.75rem",
|
|
870
|
+
textAlign: "center"
|
|
871
|
+
}, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
872
|
+
"a",
|
|
873
|
+
{
|
|
874
|
+
href: "https://consent.iqworks.ai",
|
|
875
|
+
target: "_blank",
|
|
876
|
+
rel: "noopener noreferrer",
|
|
877
|
+
style: {
|
|
878
|
+
display: "inline-flex",
|
|
879
|
+
alignItems: "center",
|
|
880
|
+
gap: "0.35rem",
|
|
881
|
+
fontSize: "0.7rem",
|
|
882
|
+
color: isDark ? "#64748b" : "#94a3b8",
|
|
883
|
+
textDecoration: "none"
|
|
884
|
+
},
|
|
885
|
+
children: [
|
|
886
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("svg", { width: "14", height: "14", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z" }) }),
|
|
887
|
+
"Powered by ConsentIQ"
|
|
888
|
+
]
|
|
889
|
+
}
|
|
890
|
+
) })
|
|
868
891
|
] })
|
|
869
892
|
] });
|
|
870
893
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -826,7 +826,30 @@ function PreferenceCenter({ className, theme, style }) {
|
|
|
826
826
|
/* @__PURE__ */ jsxs2("div", { style: footerStyle, children: [
|
|
827
827
|
/* @__PURE__ */ jsx3("button", { onClick: hidePreferenceCenter, style: buttonSecondaryStyle, type: "button", children: "Cancel" }),
|
|
828
828
|
/* @__PURE__ */ jsx3("button", { onClick: handleSave, style: buttonPrimaryStyle, type: "button", children: translations.savePreferencesText || "Save Preferences" })
|
|
829
|
-
] })
|
|
829
|
+
] }),
|
|
830
|
+
/* @__PURE__ */ jsx3("div", { style: {
|
|
831
|
+
padding: "0.5rem 1.5rem 0.75rem",
|
|
832
|
+
textAlign: "center"
|
|
833
|
+
}, children: /* @__PURE__ */ jsxs2(
|
|
834
|
+
"a",
|
|
835
|
+
{
|
|
836
|
+
href: "https://consent.iqworks.ai",
|
|
837
|
+
target: "_blank",
|
|
838
|
+
rel: "noopener noreferrer",
|
|
839
|
+
style: {
|
|
840
|
+
display: "inline-flex",
|
|
841
|
+
alignItems: "center",
|
|
842
|
+
gap: "0.35rem",
|
|
843
|
+
fontSize: "0.7rem",
|
|
844
|
+
color: isDark ? "#64748b" : "#94a3b8",
|
|
845
|
+
textDecoration: "none"
|
|
846
|
+
},
|
|
847
|
+
children: [
|
|
848
|
+
/* @__PURE__ */ jsx3("svg", { width: "14", height: "14", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", children: /* @__PURE__ */ jsx3("path", { d: "M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z" }) }),
|
|
849
|
+
"Powered by ConsentIQ"
|
|
850
|
+
]
|
|
851
|
+
}
|
|
852
|
+
) })
|
|
830
853
|
] })
|
|
831
854
|
] });
|
|
832
855
|
}
|