@dev-blinq/ui-systems 1.0.109 → 1.0.111
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/components/common/Steps/DataPanel/DataPanel.d.ts +2 -0
- package/dist/components/common/Steps/DataPanel/ExampleSection.d.ts +2 -1
- package/dist/components/common/Steps/index.style.d.ts +2 -0
- package/dist/components/common/TourGuide/TourGuide.d.ts +15 -0
- package/dist/components/common/TourGuide/index.style.d.ts +49 -0
- package/dist/components/common/index.d.ts +1 -0
- package/dist/index.js +211 -109
- package/dist/index.mjs +10285 -5251
- package/package.json +6 -5
|
@@ -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;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
interface TourStep {
|
|
2
|
+
title: string;
|
|
3
|
+
description: string;
|
|
4
|
+
targetRef?: HTMLElement | null;
|
|
5
|
+
}
|
|
6
|
+
interface GuidedTourProps {
|
|
7
|
+
steps: TourStep[];
|
|
8
|
+
currentStep: number;
|
|
9
|
+
onNext: () => void;
|
|
10
|
+
onClose: () => void;
|
|
11
|
+
show: boolean;
|
|
12
|
+
canClose?: boolean;
|
|
13
|
+
}
|
|
14
|
+
export declare function GuidedTour({ steps, currentStep, onNext, onClose, show, canClose, }: GuidedTourProps): import("react/jsx-runtime").JSX.Element | null;
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
export declare const Overlay: import('@emotion/styled').StyledComponent<Omit<import('motion/react').HTMLMotionProps<"div">, "ref"> & import('react').RefAttributes<HTMLDivElement> & {
|
|
2
|
+
theme?: import('@emotion/react').Theme;
|
|
3
|
+
}, {}, {}>;
|
|
4
|
+
export declare const Spotlight: import('@emotion/styled').StyledComponent<Omit<import('motion/react').HTMLMotionProps<"div">, "ref"> & import('react').RefAttributes<HTMLDivElement> & {
|
|
5
|
+
theme?: import('@emotion/react').Theme;
|
|
6
|
+
} & {
|
|
7
|
+
rect: DOMRect;
|
|
8
|
+
}, {}, {}>;
|
|
9
|
+
export declare const TooltipContainer: import('@emotion/styled').StyledComponent<Omit<import('motion/react').HTMLMotionProps<"div">, "ref"> & import('react').RefAttributes<HTMLDivElement> & {
|
|
10
|
+
theme?: import('@emotion/react').Theme;
|
|
11
|
+
}, {}, {}>;
|
|
12
|
+
export declare const TooltipHeader: import('@emotion/styled').StyledComponent<{
|
|
13
|
+
theme?: import('@emotion/react').Theme;
|
|
14
|
+
as?: React.ElementType;
|
|
15
|
+
}, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
16
|
+
export declare const HeaderTitle: import('@emotion/styled').StyledComponent<{
|
|
17
|
+
theme?: import('@emotion/react').Theme;
|
|
18
|
+
as?: React.ElementType;
|
|
19
|
+
}, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
20
|
+
export declare const HeaderSubtitle: import('@emotion/styled').StyledComponent<{
|
|
21
|
+
theme?: import('@emotion/react').Theme;
|
|
22
|
+
as?: React.ElementType;
|
|
23
|
+
}, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
24
|
+
export declare const CloseButton: import('@emotion/styled').StyledComponent<{
|
|
25
|
+
theme?: import('@emotion/react').Theme;
|
|
26
|
+
as?: React.ElementType;
|
|
27
|
+
}, import('react').DetailedHTMLProps<import('react').ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {}>;
|
|
28
|
+
export declare const Content: import('@emotion/styled').StyledComponent<{
|
|
29
|
+
theme?: import('@emotion/react').Theme;
|
|
30
|
+
as?: React.ElementType;
|
|
31
|
+
}, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
32
|
+
export declare const Description: import('@emotion/styled').StyledComponent<{
|
|
33
|
+
theme?: import('@emotion/react').Theme;
|
|
34
|
+
as?: React.ElementType;
|
|
35
|
+
}, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, {}>;
|
|
36
|
+
export declare const Footer: import('@emotion/styled').StyledComponent<{
|
|
37
|
+
theme?: import('@emotion/react').Theme;
|
|
38
|
+
as?: React.ElementType;
|
|
39
|
+
}, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
40
|
+
export declare const NextButton: import('@emotion/styled').StyledComponent<{
|
|
41
|
+
theme?: import('@emotion/react').Theme;
|
|
42
|
+
as?: React.ElementType;
|
|
43
|
+
}, import('react').DetailedHTMLProps<import('react').ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {}>;
|
|
44
|
+
export declare const Arrow: import('@emotion/styled').StyledComponent<{
|
|
45
|
+
theme?: import('@emotion/react').Theme;
|
|
46
|
+
as?: React.ElementType;
|
|
47
|
+
} & {
|
|
48
|
+
pos: "top" | "bottom";
|
|
49
|
+
}, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|