enjanga-components-library 1.0.19 → 1.0.20
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 +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +3453 -647
- package/dist/index.mjs +3429 -618
- package/dist/styles.css +1 -1
- package/package.json +3 -2
package/dist/index.d.mts
CHANGED
|
@@ -94,6 +94,14 @@ declare const CP_getPictogram: ({ name, }: {
|
|
|
94
94
|
name: string;
|
|
95
95
|
}) => ComponentType<SVGProps<SVGSVGElement>>;
|
|
96
96
|
|
|
97
|
+
interface CQ_propsType {
|
|
98
|
+
quotes: string[];
|
|
99
|
+
rotationTimer?: number;
|
|
100
|
+
className?: string;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
declare const CustomQuotes: ({ className, quotes, rotationTimer }: CQ_propsType) => react_jsx_runtime.JSX.Element;
|
|
104
|
+
|
|
97
105
|
/**
|
|
98
106
|
* Props validations rules
|
|
99
107
|
* ----------
|
|
@@ -207,4 +215,4 @@ interface CRT_propsType {
|
|
|
207
215
|
|
|
208
216
|
declare const CMSRichText: ({ data, className }: CRT_propsType) => react_jsx_runtime.JSX.Element;
|
|
209
217
|
|
|
210
|
-
export { AppHeader, Banner, BrandLogo, CMSRichText, CP_getPictogram, type CP_nameType, CP_pictogramMap, type CTL_valid_linkTo, ContactButton, CustomPictogram, CustomTabs, CustomTile, FeatureText, HeadlinedList, List, SmartText };
|
|
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -94,6 +94,14 @@ declare const CP_getPictogram: ({ name, }: {
|
|
|
94
94
|
name: string;
|
|
95
95
|
}) => ComponentType<SVGProps<SVGSVGElement>>;
|
|
96
96
|
|
|
97
|
+
interface CQ_propsType {
|
|
98
|
+
quotes: string[];
|
|
99
|
+
rotationTimer?: number;
|
|
100
|
+
className?: string;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
declare const CustomQuotes: ({ className, quotes, rotationTimer }: CQ_propsType) => react_jsx_runtime.JSX.Element;
|
|
104
|
+
|
|
97
105
|
/**
|
|
98
106
|
* Props validations rules
|
|
99
107
|
* ----------
|
|
@@ -207,4 +215,4 @@ interface CRT_propsType {
|
|
|
207
215
|
|
|
208
216
|
declare const CMSRichText: ({ data, className }: CRT_propsType) => react_jsx_runtime.JSX.Element;
|
|
209
217
|
|
|
210
|
-
export { AppHeader, Banner, BrandLogo, CMSRichText, CP_getPictogram, type CP_nameType, CP_pictogramMap, type CTL_valid_linkTo, ContactButton, CustomPictogram, CustomTabs, CustomTile, FeatureText, HeadlinedList, List, SmartText };
|
|
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 };
|