jderobot-ide-interface 0.1.63 → 0.1.65

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.
@@ -35,6 +35,11 @@ export declare const ModalRow: {
35
35
  type: string;
36
36
  };
37
37
  };
38
+ export declare const ModalRowDataText: ({ id, title, data, }: {
39
+ id?: string;
40
+ title: string;
41
+ data: string[];
42
+ }) => JSX.Element;
38
43
  interface ModalInputBoxProps extends React.InputHTMLAttributes<HTMLInputElement> {
39
44
  ref: React.RefObject<HTMLInputElement>;
40
45
  id: string;
@@ -41,12 +41,25 @@ interface StyledModalRowProps {
41
41
  roundness?: number;
42
42
  }
43
43
  export declare const StyledModalRow: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledModalRowProps>> & string;
44
+ export declare const StyledModalRowDataText: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
45
+ interface StyledModalRowDataTextTitleProps {
46
+ color?: string;
47
+ buttonColor?: string;
48
+ roundness?: number;
49
+ }
50
+ export declare const StyledModalRowDataTextTitle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, StyledModalRowDataTextTitleProps>> & string;
51
+ export declare const StyledModalRowDataTextEntries: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
44
52
  interface StyledModalButtonRowProps {
45
53
  color?: string;
46
54
  buttonColor?: string;
47
55
  roundness?: number;
48
56
  }
49
57
  export declare const StyledModalButtonRow: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledModalButtonRowProps>> & string;
58
+ interface StyledModalImageRowProps {
59
+ color?: string;
60
+ roundness?: number;
61
+ }
62
+ export declare const StyledModalImageRow: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledModalImageRowProps>> & string;
50
63
  interface StyledModalButtonDeleteProps {
51
64
  bgColor?: string;
52
65
  }
@@ -1,4 +1,4 @@
1
- export { default as Modal, ModalTitlebar, ModalInputBox, ModalRow, ModalInputDropdown, ModalEditableList, ModalInputDropArea, ModalInputSelectIcon, ModalActionList, } from "./Modal";
1
+ export { default as Modal, ModalTitlebar, ModalInputBox, ModalRow, ModalInputDropdown, ModalEditableList, ModalInputDropArea, ModalInputSelectIcon, ModalActionList, ModalRowDataText, } from "./Modal";
2
2
  export { default as DeleteModal } from "./DeleteModal";
3
3
  export { default as NewFileModal } from "./NewFileModal";
4
4
  export { default as NewFolderModal } from "./NewFolderModal";
package/dist/index.d.ts CHANGED
@@ -4,6 +4,6 @@ export { VncViewer } from "./components";
4
4
  export { StatusBarCustomUniverseSelector } from "./components";
5
5
  export { ProgressBar } from "./components";
6
6
  export { Button, MenuButton, MenuButtonStroke, MenuButtonLabel, } from "./components";
7
- export { Modal, ModalTitlebar, ModalRow, ModalInputBox, ModalInputDropdown, ModalEditableList, ModalInputDropArea, ModalInputSelectIcon, ModalActionList } from "./components";
7
+ export { Modal, ModalTitlebar, ModalRow, ModalInputBox, ModalInputDropdown, ModalEditableList, ModalInputDropArea, ModalInputSelectIcon, ModalActionList, ModalRowDataText, } from "./components";
8
8
  export { ThemeProvider, useTheme, OptionsProvider, useOptions, ErrorProvider, useError, } from "./utils";
9
9
  export type { ExtraEditorProps, Layout, Entry, Options, Theme, ExplorerEntry, EditorsEntry, ViewersEntry, ExtraApi, StatusBarComponents, ModelRowTypes, ModalInputSelectIconEntry, } from "./types";