@telicent-oss/ds 0.30.0 → 0.30.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/export.d.ts CHANGED
@@ -3,6 +3,7 @@ import { AutocompleteProps } from '@mui/material';
3
3
  import { AvatarProps } from '@mui/material/Avatar';
4
4
  import { AxiosInstance } from 'axios';
5
5
  import { BoxProps } from '@mui/material';
6
+ import { BoxTypeMap } from '@mui/system';
6
7
  import { ButtonBaseProps } from '@mui/material';
7
8
  import { ButtonProps as ButtonProps_2 } from '@mui/material/Button';
8
9
  import { ButtonTypeMap } from '@mui/material';
@@ -52,7 +53,8 @@ import { MenuItemProps } from '@mui/material';
52
53
  import { MenuProps } from '@mui/material';
53
54
  import { ModalProps as ModalProps_2 } from '@mui/material/Modal';
54
55
  import { OntologyService } from '@telicent-oss/ontologyservice';
55
- import { OverridableComponent } from '@mui/material/OverridableComponent';
56
+ import { OverridableComponent } from '@mui/types';
57
+ import { OverridableComponent as OverridableComponent_2 } from '@mui/material/OverridableComponent';
56
58
  import { PaperProps } from '@mui/material/Paper';
57
59
  import { PopoverOrigin } from '@mui/material/Popover';
58
60
  import { PopoverPosition } from '@mui/material/Popover';
@@ -307,6 +309,10 @@ declare interface ContainerProps extends default_2.HTMLAttributes<HTMLDivElement
307
309
  maxWidth?: "xs" | "sm" | "md" | "lg" | "xl" | false;
308
310
  }
309
311
 
312
+ declare interface ControlAreaProps extends Omit<BoxProps, 'position'> {
313
+ position: Position;
314
+ }
315
+
310
316
  export declare const createApi: (baseURL?: string) => ApiFactory;
311
317
 
312
318
  declare interface CustomCheckboxProps extends CheckboxProps {
@@ -608,9 +614,16 @@ export declare interface IESTypeProps extends default_2.HTMLAttributes<HTMLEleme
608
614
 
609
615
  export declare const InsetInMap: default_2.FC<RootPropsType & {
610
616
  content: default_2.ReactNode;
617
+ children?: default_2.ReactNode;
611
618
  controlArea?: Partial<Record<Position, default_2.ReactNode>>;
612
619
  }>;
613
620
 
621
+ export declare const insetInMap: {
622
+ Background: default_2.FC<BoxProps>;
623
+ Content: default_2.FC<BoxProps>;
624
+ ControlArea: default_2.FC<ControlAreaProps>;
625
+ };
626
+
614
627
  export declare interface LayerOption {
615
628
  uri: string;
616
629
  image: string;
@@ -876,6 +889,7 @@ export declare type ModalProps = Omit<ModalProps_2, "slots" | "slotProps" | "Bac
876
889
  export declare const mui: {
877
890
  IconButton: ExtendButtonBase<IconButtonTypeMap< {}, "button">>;
878
891
  Button: ExtendButtonBase<ButtonTypeMap< {}, "button">>;
892
+ Box: OverridableComponent<BoxTypeMap< {}, "div", Theme>>;
879
893
  };
880
894
 
881
895
  declare type MUIAutocompleteProps<Option> = AutocompleteProps<Option, false, false, true>;
@@ -1223,7 +1237,7 @@ declare interface SessionHandlingConfig {
1223
1237
  keysToInvalidate?: QueryKey[];
1224
1238
  }
1225
1239
 
1226
- export declare const Skeleton: OverridableComponent<SkeletonTypeMap< {}, "span">>;
1240
+ export declare const Skeleton: OverridableComponent_2<SkeletonTypeMap< {}, "span">>;
1227
1241
 
1228
1242
  declare interface StandardLayoutProps {
1229
1243
  /**
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "url": "https://github.com/telicent-oss/telicent-ds.git"
8
8
  },
9
9
  "type": "module",
10
- "version": "0.30.0",
10
+ "version": "0.30.1",
11
11
  "private": false,
12
12
  "dependencies": {
13
13
  "@emotion/react": "^11.10.6",