utopia-ui 3.0.100 → 3.0.101
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/Profile.cjs.js +19 -6
- package/dist/Profile.cjs.js.map +1 -1
- package/dist/Profile.esm.js +19 -6
- package/dist/Profile.esm.js.map +1 -1
- package/dist/TagView-BMjJMd4R.js +2566 -0
- package/dist/TagView-BMjJMd4R.js.map +1 -0
- package/dist/TagView-CUbZOg0C.js +2478 -0
- package/dist/TagView-CUbZOg0C.js.map +1 -0
- package/dist/index.cjs.js +29 -27
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +3 -2
- package/dist/index.esm.js +30 -28
- package/dist/index.esm.js.map +1 -1
- package/dist/types/src/Components/Map/Subcomponents/ItemPopupComponents/PopupStartEndInput.d.ts +2 -1
- package/dist/types/src/Components/Templates/OverlayItemsIndexPage.d.ts +1 -2
- package/dist/types/src/css.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -115,6 +115,7 @@ interface GalleryItem {
|
|
115
115
|
id: string
|
116
116
|
width: number
|
117
117
|
height: number
|
118
|
+
type: string
|
118
119
|
}
|
119
120
|
}
|
120
121
|
|
@@ -497,11 +498,10 @@ declare const SelectUser: () => react_jsx_runtime.JSX.Element;
|
|
497
498
|
/**
|
498
499
|
* @category Templates
|
499
500
|
*/
|
500
|
-
declare const OverlayItemsIndexPage: ({ url, layerName, parameterField,
|
501
|
+
declare const OverlayItemsIndexPage: ({ url, layerName, parameterField, }: {
|
501
502
|
layerName: string;
|
502
503
|
url: string;
|
503
504
|
parameterField?: string;
|
504
|
-
plusButton?: boolean;
|
505
505
|
}) => react_jsx_runtime.JSX.Element;
|
506
506
|
|
507
507
|
/**
|
@@ -559,6 +559,7 @@ interface StartEndInputProps {
|
|
559
559
|
labelStyle?: string;
|
560
560
|
updateStartValue?: (value: string) => void;
|
561
561
|
updateEndValue?: (value: string) => void;
|
562
|
+
containerStyle?: string;
|
562
563
|
}
|
563
564
|
|
564
565
|
/**
|