@opengeoweb/theme 2.12.0 → 2.13.0
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/index.d.ts +2 -0
- package/index.esm.js +2124 -2182
- package/index.umd.js +2063 -2121
- package/lib/components/Icons/Icons.d.ts +8 -9
- package/package.json +1 -1
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { SvgIconProps } from '@mui/material';
|
|
3
|
-
export declare const
|
|
4
|
-
export declare const
|
|
3
|
+
export declare const SplitHorizontal: React.FC;
|
|
4
|
+
export declare const SplitVertical: React.FC;
|
|
5
5
|
export declare const Expand: React.FC;
|
|
6
6
|
export declare const UnExpand: React.FC;
|
|
7
7
|
export declare const Delete: (props: SvgIconProps) => JSX.Element;
|
|
8
|
-
export declare const
|
|
9
|
-
export declare const
|
|
10
|
-
export declare const
|
|
8
|
+
export declare const DrawRegion: (props: SvgIconProps) => JSX.Element;
|
|
9
|
+
export declare const DrawPolygon: (props: SvgIconProps) => JSX.Element;
|
|
10
|
+
export declare const DrawFIRLand: (props: SvgIconProps) => JSX.Element;
|
|
11
11
|
export declare const Location: (props: SvgIconProps) => JSX.Element;
|
|
12
12
|
export declare const ThumbsUp: (props: SvgIconProps) => JSX.Element;
|
|
13
13
|
export declare const Edit: (props: SvgIconProps) => JSX.Element;
|
|
@@ -15,8 +15,8 @@ export declare const Export: (props: SvgIconProps) => JSX.Element;
|
|
|
15
15
|
export declare const ListItem: (props: SvgIconProps) => JSX.Element;
|
|
16
16
|
export declare const TimeSeriesManager: React.FC;
|
|
17
17
|
export declare const Close: React.FC<SvgIconProps>;
|
|
18
|
-
export declare const
|
|
19
|
-
export declare const
|
|
18
|
+
export declare const KeyOption: React.FC;
|
|
19
|
+
export declare const KeyCommand: React.FC;
|
|
20
20
|
export declare const ArrowLeft: React.FC;
|
|
21
21
|
export declare const ArrowRight: React.FC;
|
|
22
22
|
export declare const ArrowDown: React.FC;
|
|
@@ -41,7 +41,6 @@ interface TextIconProps extends SvgIconProps {
|
|
|
41
41
|
}
|
|
42
42
|
export declare const TextIcon: ({ text, ...props }: TextIconProps) => JSX.Element;
|
|
43
43
|
export declare const FastForward: (props: SvgIconProps) => JSX.Element;
|
|
44
|
-
export declare const TextIconTimeStepButton: ({ text, ...props }: TextIconProps) => JSX.Element;
|
|
45
44
|
export declare const SliderThumb: (props: SvgIconProps) => JSX.Element;
|
|
46
45
|
export declare const Options: (props: SvgIconProps) => JSX.Element;
|
|
47
46
|
export declare const ChevronLeft: (props: SvgIconProps) => JSX.Element;
|
|
@@ -58,7 +57,7 @@ interface ResizeIconProps extends SvgIconProps {
|
|
|
58
57
|
isRightAligned?: boolean;
|
|
59
58
|
}
|
|
60
59
|
export declare const Resize: ({ isRightAligned, ...props }: ResizeIconProps) => JSX.Element;
|
|
61
|
-
export declare const
|
|
60
|
+
export declare const PresetWorkspace: (props: SvgIconProps) => JSX.Element;
|
|
62
61
|
export declare const Preset: (props: SvgIconProps) => JSX.Element;
|
|
63
62
|
export declare const PresetTiles: (props: SvgIconProps) => JSX.Element;
|
|
64
63
|
export declare const List: React.FC;
|