enjanga-components-library 1.0.22 → 1.0.24
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.d.mts +7 -2
- package/dist/index.d.ts +7 -2
- package/dist/index.js +4151 -5680
- package/dist/index.mjs +3494 -5070
- package/dist/styles.css +1 -1
- package/package.json +4 -3
package/dist/index.d.mts
CHANGED
|
@@ -95,10 +95,15 @@ declare const CP_getPictogram: ({ name, }: {
|
|
|
95
95
|
}) => ComponentType<SVGProps<SVGSVGElement>>;
|
|
96
96
|
|
|
97
97
|
interface CQ_propsType {
|
|
98
|
-
quotes:
|
|
98
|
+
quotes: CQ_quote_propsType[];
|
|
99
99
|
rotationTimer?: number;
|
|
100
100
|
className?: string;
|
|
101
101
|
}
|
|
102
|
+
type CQ_quote_propsType = {
|
|
103
|
+
json: {
|
|
104
|
+
content: Node[];
|
|
105
|
+
};
|
|
106
|
+
};
|
|
102
107
|
|
|
103
108
|
declare const CustomQuotes: ({ className, quotes, rotationTimer }: CQ_propsType) => react_jsx_runtime.JSX.Element;
|
|
104
109
|
|
|
@@ -215,4 +220,4 @@ interface CRT_propsType {
|
|
|
215
220
|
|
|
216
221
|
declare const CMSRichText: ({ data, className }: CRT_propsType) => react_jsx_runtime.JSX.Element;
|
|
217
222
|
|
|
218
|
-
export { AppHeader, Banner, BrandLogo, CMSRichText, CP_getPictogram, type CP_nameType, CP_pictogramMap, type CTL_valid_linkTo, ContactButton, CustomPictogram, CustomQuotes, CustomTabs, CustomTile, FeatureText, HeadlinedList, List, SmartText };
|
|
223
|
+
export { AppHeader, Banner, BrandLogo, CMSRichText, CP_getPictogram, type CP_nameType, CP_pictogramMap, type CQ_quote_propsType, type CTL_valid_linkTo, ContactButton, CustomPictogram, CustomQuotes, CustomTabs, CustomTile, FeatureText, HeadlinedList, List, SmartText };
|
package/dist/index.d.ts
CHANGED
|
@@ -95,10 +95,15 @@ declare const CP_getPictogram: ({ name, }: {
|
|
|
95
95
|
}) => ComponentType<SVGProps<SVGSVGElement>>;
|
|
96
96
|
|
|
97
97
|
interface CQ_propsType {
|
|
98
|
-
quotes:
|
|
98
|
+
quotes: CQ_quote_propsType[];
|
|
99
99
|
rotationTimer?: number;
|
|
100
100
|
className?: string;
|
|
101
101
|
}
|
|
102
|
+
type CQ_quote_propsType = {
|
|
103
|
+
json: {
|
|
104
|
+
content: Node[];
|
|
105
|
+
};
|
|
106
|
+
};
|
|
102
107
|
|
|
103
108
|
declare const CustomQuotes: ({ className, quotes, rotationTimer }: CQ_propsType) => react_jsx_runtime.JSX.Element;
|
|
104
109
|
|
|
@@ -215,4 +220,4 @@ interface CRT_propsType {
|
|
|
215
220
|
|
|
216
221
|
declare const CMSRichText: ({ data, className }: CRT_propsType) => react_jsx_runtime.JSX.Element;
|
|
217
222
|
|
|
218
|
-
export { AppHeader, Banner, BrandLogo, CMSRichText, CP_getPictogram, type CP_nameType, CP_pictogramMap, type CTL_valid_linkTo, ContactButton, CustomPictogram, CustomQuotes, CustomTabs, CustomTile, FeatureText, HeadlinedList, List, SmartText };
|
|
223
|
+
export { AppHeader, Banner, BrandLogo, CMSRichText, CP_getPictogram, type CP_nameType, CP_pictogramMap, type CQ_quote_propsType, type CTL_valid_linkTo, ContactButton, CustomPictogram, CustomQuotes, CustomTabs, CustomTile, FeatureText, HeadlinedList, List, SmartText };
|