@banyan_cloud/roots 2.0.35 → 2.0.36
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/esm/index.js +231 -392
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/components/icons/AlertIcon/AlertIcon.d.ts +17 -7
- package/dist/esm/src/components/icons/AlertIcon/index.d.ts +1 -1
- package/dist/esm/src/components/icons/Arrow/Arrow.d.ts +8 -7
- package/dist/esm/src/components/icons/Arrow/index.d.ts +1 -1
- package/dist/esm/src/components/icons/Caret/Caret.d.ts +4 -1
- package/dist/esm/src/components/icons/Caret/index.d.ts +1 -1
- package/dist/esm/src/components/icons/CheckboxIcon/CheckboxIcon.d.ts +11 -14
- package/dist/esm/src/components/icons/CheckboxIcon/index.d.ts +1 -1
- package/dist/esm/src/components/icons/Plus/Plus.d.ts +3 -6
- package/dist/esm/src/components/icons/Plus/index.d.ts +1 -1
- package/dist/esm/src/components/icons/RadioIcon/RadioIcon.d.ts +8 -14
- package/dist/esm/src/components/icons/RadioIcon/index.d.ts +1 -1
- package/dist/esm/src/components/icons/Refresh/Refresh.d.ts +3 -6
- package/dist/esm/src/components/icons/Refresh/index.d.ts +1 -1
- package/dist/esm/src/components/icons/SearchIcon/SearchIcon.d.ts +3 -4
- package/dist/esm/src/components/icons/SearchIcon/index.d.ts +1 -1
- package/dist/esm/src/components/icons/index.d.ts +0 -5
- package/package.json +1 -1
- package/dist/esm/src/components/icons/AngleDouble/AngleDouble.d.ts +0 -7
- package/dist/esm/src/components/icons/AngleDouble/index.d.ts +0 -1
- package/dist/esm/src/components/icons/BreadcrumbSeperator/BreadcrumbSeperator.d.ts +0 -7
- package/dist/esm/src/components/icons/BreadcrumbSeperator/index.d.ts +0 -1
- package/dist/esm/src/components/icons/Dropdown/DropdownIcon.d.ts +0 -7
- package/dist/esm/src/components/icons/Dropdown/index.d.ts +0 -1
- package/dist/esm/src/components/icons/Settings/Settings.d.ts +0 -2
- package/dist/esm/src/components/icons/Settings/index.d.ts +0 -1
- package/dist/esm/src/components/icons/Trash/Trash.d.ts +0 -4
- package/dist/esm/src/components/icons/Trash/index.d.ts +0 -1
|
@@ -1,8 +1,18 @@
|
|
|
1
|
+
declare const AlertIcon: {
|
|
2
|
+
Info: (props: {
|
|
3
|
+
className?: string | undefined;
|
|
4
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
Warning: (props: {
|
|
6
|
+
className?: string | undefined;
|
|
7
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
Error: (props: {
|
|
9
|
+
className?: string | undefined;
|
|
10
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
Success: (props: {
|
|
12
|
+
className?: string | undefined;
|
|
13
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
Danger: (props: {
|
|
15
|
+
className?: string | undefined;
|
|
16
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
};
|
|
1
18
|
export default AlertIcon;
|
|
2
|
-
declare namespace AlertIcon {
|
|
3
|
-
function Info(props: any): import("react/jsx-runtime").JSX.Element;
|
|
4
|
-
function Warning(props: any): import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
function Error(props: any): import("react/jsx-runtime").JSX.Element;
|
|
6
|
-
function Success(props: any): import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
function Danger(props: any): import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as AlertIcon } from
|
|
1
|
+
export { default as AlertIcon } from './AlertIcon';
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}
|
|
1
|
+
interface ArrowIconProps {
|
|
2
|
+
className?: string | undefined;
|
|
3
|
+
position?: 'right' | 'left' | 'top' | 'bottom';
|
|
4
|
+
width?: number | string;
|
|
5
|
+
height?: number | string;
|
|
6
|
+
color?: string;
|
|
8
7
|
}
|
|
8
|
+
declare const Arrow: (props: ArrowIconProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export default Arrow;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as ArrowIcon } from
|
|
1
|
+
export { default as ArrowIcon } from './Arrow';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as CaretIcon } from
|
|
1
|
+
export { default as CaretIcon } from './Caret';
|
|
@@ -1,15 +1,12 @@
|
|
|
1
|
+
declare const CheckboxIcon: {
|
|
2
|
+
Checked: (props: {
|
|
3
|
+
className?: string | undefined;
|
|
4
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
UnChecked: (props: {
|
|
6
|
+
className?: string | undefined;
|
|
7
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
Intermediate: (props: {
|
|
9
|
+
className?: string | undefined;
|
|
10
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
};
|
|
1
12
|
export default CheckboxIcon;
|
|
2
|
-
declare namespace CheckboxIcon {
|
|
3
|
-
namespace Checked {
|
|
4
|
-
namespace defaultProps {
|
|
5
|
-
let className: string;
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
namespace UnChecked {
|
|
9
|
-
export namespace defaultProps_1 {
|
|
10
|
-
let className_1: string;
|
|
11
|
-
export { className_1 as className };
|
|
12
|
-
}
|
|
13
|
-
export { defaultProps_1 as defaultProps };
|
|
14
|
-
}
|
|
15
|
-
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as CheckboxIcon } from
|
|
1
|
+
export { default as CheckboxIcon } from './CheckboxIcon';
|
|
@@ -1,7 +1,4 @@
|
|
|
1
|
+
declare const Plus: (props: {
|
|
2
|
+
className?: string | undefined;
|
|
3
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
1
4
|
export default Plus;
|
|
2
|
-
declare function Plus(props: any): import("react/jsx-runtime").JSX.Element;
|
|
3
|
-
declare namespace Plus {
|
|
4
|
-
namespace defaultProps {
|
|
5
|
-
let className: string;
|
|
6
|
-
}
|
|
7
|
-
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as PlusIcon } from
|
|
1
|
+
export { default as PlusIcon } from './Plus';
|
|
@@ -1,15 +1,9 @@
|
|
|
1
|
+
declare const RadioIcon: {
|
|
2
|
+
Checked: (props: {
|
|
3
|
+
className?: string | undefined;
|
|
4
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
UnChecked: (props: {
|
|
6
|
+
className?: string | undefined;
|
|
7
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
};
|
|
1
9
|
export default RadioIcon;
|
|
2
|
-
declare namespace RadioIcon {
|
|
3
|
-
namespace Checked {
|
|
4
|
-
namespace defaultProps {
|
|
5
|
-
let className: string;
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
namespace UnChecked {
|
|
9
|
-
export namespace defaultProps_1 {
|
|
10
|
-
let className_1: string;
|
|
11
|
-
export { className_1 as className };
|
|
12
|
-
}
|
|
13
|
-
export { defaultProps_1 as defaultProps };
|
|
14
|
-
}
|
|
15
|
-
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as RadioIcon } from
|
|
1
|
+
export { default as RadioIcon } from './RadioIcon';
|
|
@@ -1,7 +1,4 @@
|
|
|
1
|
+
declare const Refresh: (props: {
|
|
2
|
+
className?: string | undefined;
|
|
3
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
1
4
|
export default Refresh;
|
|
2
|
-
declare function Refresh(props: any): import("react/jsx-runtime").JSX.Element;
|
|
3
|
-
declare namespace Refresh {
|
|
4
|
-
namespace defaultProps {
|
|
5
|
-
let className: string;
|
|
6
|
-
}
|
|
7
|
-
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as RefreshIcon } from
|
|
1
|
+
export { default as RefreshIcon } from './Refresh';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
+
declare const SearchIcon: ({ className }: {
|
|
2
|
+
className?: string | undefined;
|
|
3
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
1
4
|
export default SearchIcon;
|
|
2
|
-
declare function SearchIcon({ className, ...rest }: {
|
|
3
|
-
[x: string]: any;
|
|
4
|
-
className: any;
|
|
5
|
-
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as SearchIcon } from
|
|
1
|
+
export { default as SearchIcon } from './SearchIcon';
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
export * from './AlertIcon';
|
|
2
|
-
export * from './AngleDouble';
|
|
3
2
|
export * from './Arrow';
|
|
4
|
-
export * from './BreadcrumbSeperator';
|
|
5
3
|
export * from './Calender';
|
|
6
4
|
export * from './Caret';
|
|
7
5
|
export * from './ChartsIcon';
|
|
@@ -14,7 +12,6 @@ export * from './Columns';
|
|
|
14
12
|
export * from './Copy';
|
|
15
13
|
export * from './Cross';
|
|
16
14
|
export * from './Delete';
|
|
17
|
-
export * from './Dropdown';
|
|
18
15
|
export * from './Edit';
|
|
19
16
|
export * from './Email';
|
|
20
17
|
export * from './ExpandArrowAlt';
|
|
@@ -38,9 +35,7 @@ export * from './Reset';
|
|
|
38
35
|
export * from './SearchButton';
|
|
39
36
|
export * from './SearchIcon';
|
|
40
37
|
export * from './Server';
|
|
41
|
-
export * from './Settings';
|
|
42
38
|
export * from './Sort';
|
|
43
39
|
export * from './Tick';
|
|
44
|
-
export * from './Trash';
|
|
45
40
|
export * from './UnlockPassword';
|
|
46
41
|
export * from './ViewPassword';
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as AngleDoubleIcon } from "./AngleDouble";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as BreadcrumbSeperatorIcon } from "./BreadcrumbSeperator";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as DropdownIcon } from "./DropdownIcon";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as SettingsIcon } from "./Settings";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as TrashIcon } from './Trash';
|