@dev-blinq/ui-systems 1.0.110 → 1.0.112

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.
@@ -19,6 +19,8 @@ interface DataPanelSectionProps {
19
19
  disabledEdit?: boolean;
20
20
  parentClassName?: string;
21
21
  contentClassName?: string;
22
+ expanded: boolean;
23
+ setExpanded: React.Dispatch<React.SetStateAction<boolean>>;
22
24
  }
23
25
  export declare function DataPanelSection(props: DataPanelSectionProps): import("react/jsx-runtime").JSX.Element;
24
26
  export {};
@@ -1,5 +1,5 @@
1
1
  import { ReactNode } from 'react';
2
- export declare const ExamplesSection: ({ onClick, params, handleUpdateParam, ParamErrors, removeParameter, dataSet, disabledEdit, }: {
2
+ export declare const ExamplesSection: ({ onClick, params, handleUpdateParam, ParamErrors, removeParameter, dataSet, disabledEdit, isMainApp, }: {
3
3
  onClick: () => void;
4
4
  params: any[];
5
5
  handleUpdateParam: (index: number, value1: string, value2: string, mask?: boolean) => void;
@@ -9,4 +9,5 @@ export declare const ExamplesSection: ({ onClick, params, handleUpdateParam, Par
9
9
  removeParameter: (index: number) => void;
10
10
  dataSet?: any;
11
11
  disabledEdit?: boolean;
12
+ isMainApp?: boolean;
12
13
  }) => import("react/jsx-runtime").JSX.Element;
@@ -29,6 +29,8 @@ export declare const StyledStepPanelListWrap: import('@emotion/styled').StyledCo
29
29
  ref?: ((instance: HTMLDivElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLDivElement> | null | undefined;
30
30
  }, keyof import('@mui/system').BoxOwnProps<import('@mui/material').Theme>> & {
31
31
  theme?: import('@emotion/react').Theme;
32
+ } & {
33
+ isMainApp?: boolean;
32
34
  }, {}, {}>;
33
35
  export declare const StyledStepWrap: import('@emotion/styled').StyledComponent<{
34
36
  theme?: import('@emotion/react').Theme;