@geowiki/design-system 0.16.11 → 0.16.12
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 +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +264 -189
- package/dist/index.mjs +243 -168
- package/dist/styles.css +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -1120,12 +1120,14 @@ declare const SummaryCard: (props: SummaryCardProps) => react_jsx_runtime.JSX.El
|
|
|
1120
1120
|
interface CarouselGalleryItemProps {
|
|
1121
1121
|
text: string;
|
|
1122
1122
|
url: string;
|
|
1123
|
+
id?: any;
|
|
1123
1124
|
}
|
|
1124
1125
|
|
|
1125
1126
|
interface Props$6 {
|
|
1126
1127
|
galleryItems: CarouselGalleryItemProps[];
|
|
1128
|
+
saveRotationChanges?: (base64: string | null, id?: any) => void;
|
|
1127
1129
|
}
|
|
1128
|
-
declare const CarouselItemList: ({ galleryItems }: Props$6) => react_jsx_runtime.JSX.Element;
|
|
1130
|
+
declare const CarouselItemList: ({ galleryItems, saveRotationChanges }: Props$6) => react_jsx_runtime.JSX.Element;
|
|
1129
1131
|
|
|
1130
1132
|
declare const OldButton: ({ label, appearance, compact, handleClick, loading, type, }: any) => react_jsx_runtime.JSX.Element;
|
|
1131
1133
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1120,12 +1120,14 @@ declare const SummaryCard: (props: SummaryCardProps) => react_jsx_runtime.JSX.El
|
|
|
1120
1120
|
interface CarouselGalleryItemProps {
|
|
1121
1121
|
text: string;
|
|
1122
1122
|
url: string;
|
|
1123
|
+
id?: any;
|
|
1123
1124
|
}
|
|
1124
1125
|
|
|
1125
1126
|
interface Props$6 {
|
|
1126
1127
|
galleryItems: CarouselGalleryItemProps[];
|
|
1128
|
+
saveRotationChanges?: (base64: string | null, id?: any) => void;
|
|
1127
1129
|
}
|
|
1128
|
-
declare const CarouselItemList: ({ galleryItems }: Props$6) => react_jsx_runtime.JSX.Element;
|
|
1130
|
+
declare const CarouselItemList: ({ galleryItems, saveRotationChanges }: Props$6) => react_jsx_runtime.JSX.Element;
|
|
1129
1131
|
|
|
1130
1132
|
declare const OldButton: ({ label, appearance, compact, handleClick, loading, type, }: any) => react_jsx_runtime.JSX.Element;
|
|
1131
1133
|
|