utopia-ui 3.0.69 → 3.0.72
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.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -21
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/types/src/Components/AppShell/AppShell.d.ts +1 -0
- package/dist/types/src/Components/AppShell/ContextWrapper.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -359,7 +359,6 @@ declare function AppShell({ appName, children, assetsApi, }: {
|
|
359
359
|
appName: string;
|
360
360
|
children: React.ReactNode;
|
361
361
|
assetsApi: AssetsApi;
|
362
|
-
userType: string;
|
363
362
|
}): react_jsx_runtime.JSX.Element;
|
364
363
|
|
365
364
|
interface Route {
|
@@ -570,25 +569,6 @@ interface InputTextProps {
|
|
570
569
|
*/
|
571
570
|
declare function TextInput({ labelTitle, labelStyle, type, dataField, containerStyle, inputStyle, defaultValue, placeholder, autocomplete, pattern, required, updateFormValue, }: InputTextProps): react_jsx_runtime.JSX.Element;
|
572
571
|
|
573
|
-
interface SelectBoxProps {
|
574
|
-
labelTitle?: string;
|
575
|
-
labelStyle?: string;
|
576
|
-
type?: string;
|
577
|
-
containerStyle?: string;
|
578
|
-
defaultValue: string;
|
579
|
-
placeholder?: string;
|
580
|
-
updateFormValue: (value: string) => void;
|
581
|
-
options: {
|
582
|
-
name: string;
|
583
|
-
value: string;
|
584
|
-
}[];
|
585
|
-
labelDescription?: string;
|
586
|
-
}
|
587
|
-
/**
|
588
|
-
* @category Input
|
589
|
-
*/
|
590
|
-
declare function SelectBox(props: SelectBoxProps): react_jsx_runtime.JSX.Element;
|
591
|
-
|
592
572
|
declare global {
|
593
573
|
interface Window {
|
594
574
|
my_modal_3: {
|
@@ -597,4 +577,4 @@ declare global {
|
|
597
577
|
}
|
598
578
|
}
|
599
579
|
|
600
|
-
export { AppShell, type AssetsApi, AttestationForm, AuthProvider, CardPage, Content, type Item, ItemForm, ItemView, type ItemsApi, Layer, type LayerProps, LoginPage, MapOverlayPage, MarketView, Modal, MoonCalendar, OverlayItemsIndexPage, type Permission, Permissions, type PermissionsProps, PopupButton, PopupCheckboxInput, PopupStartEndInput, PopupTextAreaInput, PopupTextInput, ProfileForm, ProfileView, Quests, RequestPasswordPage,
|
580
|
+
export { AppShell, type AssetsApi, AttestationForm, AuthProvider, CardPage, Content, type Item, ItemForm, ItemView, type ItemsApi, Layer, type LayerProps, LoginPage, MapOverlayPage, MarketView, Modal, MoonCalendar, OverlayItemsIndexPage, type Permission, Permissions, type PermissionsProps, PopupButton, PopupCheckboxInput, PopupStartEndInput, PopupTextAreaInput, PopupTextInput, ProfileForm, ProfileView, Quests, RequestPasswordPage, SelectUser, SetNewPasswordPage, SideBar, SignupPage, Sitemap, StartEndView, type Tag, Tags, TextAreaInput, TextInput, TextView, TitleCard, type UserApi, type UserItem, UserSettings, UtopiaMap };
|
package/dist/index.esm.js
CHANGED
@@ -1175,8 +1175,8 @@ const ForwardRef$e = /*#__PURE__*/ React.forwardRef(FunnelIcon);
|
|
1175
1175
|
function FilterControl() {
|
1176
1176
|
const [open, setOpen] = useState(false);
|
1177
1177
|
const groupTypes = [
|
1178
|
-
{ text: 'Regional Gruppe', value: '
|
1179
|
-
{ text: 'Themen Gruppe', value: '
|
1178
|
+
{ text: 'Regional Gruppe', value: 'Regional-Gruppe' },
|
1179
|
+
{ text: 'Themen Gruppe', value: 'Themen-Gruppe' },
|
1180
1180
|
{ text: 'liebevoll.jetzt', value: 'liebevoll.jetzt' },
|
1181
1181
|
];
|
1182
1182
|
useEffect(() => {
|