@geowiki/design-system 0.16.9 → 0.16.10-dev.1
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 +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +250 -184
- package/dist/index.mjs +234 -168
- package/dist/styles.css +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -1124,8 +1124,9 @@ interface CarouselGalleryItemProps {
|
|
|
1124
1124
|
|
|
1125
1125
|
interface Props$6 {
|
|
1126
1126
|
galleryItems: CarouselGalleryItemProps[];
|
|
1127
|
+
saveRotationChanges?: (base64: string | null) => void;
|
|
1127
1128
|
}
|
|
1128
|
-
declare const CarouselItemList: ({ galleryItems }: Props$6) => react_jsx_runtime.JSX.Element;
|
|
1129
|
+
declare const CarouselItemList: ({ galleryItems, saveRotationChanges }: Props$6) => react_jsx_runtime.JSX.Element;
|
|
1129
1130
|
|
|
1130
1131
|
declare const OldButton: ({ label, appearance, compact, handleClick, loading, type, }: any) => react_jsx_runtime.JSX.Element;
|
|
1131
1132
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1124,8 +1124,9 @@ interface CarouselGalleryItemProps {
|
|
|
1124
1124
|
|
|
1125
1125
|
interface Props$6 {
|
|
1126
1126
|
galleryItems: CarouselGalleryItemProps[];
|
|
1127
|
+
saveRotationChanges?: (base64: string | null) => void;
|
|
1127
1128
|
}
|
|
1128
|
-
declare const CarouselItemList: ({ galleryItems }: Props$6) => react_jsx_runtime.JSX.Element;
|
|
1129
|
+
declare const CarouselItemList: ({ galleryItems, saveRotationChanges }: Props$6) => react_jsx_runtime.JSX.Element;
|
|
1129
1130
|
|
|
1130
1131
|
declare const OldButton: ({ label, appearance, compact, handleClick, loading, type, }: any) => react_jsx_runtime.JSX.Element;
|
|
1131
1132
|
|