@opengeoweb/theme 2.10.0 → 2.12.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/README.md +9 -3
- package/index.d.ts +1 -0
- package/index.esm.js +676 -6
- package/index.umd.js +742 -4
- package/lib/components/Icons/Icons.d.ts +77 -0
- package/lib/components/Icons/Icons.spec.d.ts +1 -0
- package/lib/components/Icons/index.d.ts +1 -0
- package/lib/stories/{Breakpoints.d.ts → Breakpoints.stories.d.ts} +0 -0
- package/lib/stories/Icons.stories.d.ts +7 -0
- package/lib/{components/Story → stories}/StoryHeader.d.ts +0 -0
- package/lib/stories/index.stories.d.ts +2 -1
- package/lib/stories/snapshots/Icons.stories.d.ts +11 -0
- package/package.json +2 -3
- package/lib/components/Story/index.d.ts +0 -1
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SvgIconProps } from '@mui/material';
|
|
3
|
+
export declare const HorizontalSplit: React.FC;
|
|
4
|
+
export declare const VerticalSplit: React.FC;
|
|
5
|
+
export declare const Expand: React.FC;
|
|
6
|
+
export declare const UnExpand: React.FC;
|
|
7
|
+
export declare const Delete: (props: SvgIconProps) => JSX.Element;
|
|
8
|
+
export declare const RegionDraw: (props: SvgIconProps) => JSX.Element;
|
|
9
|
+
export declare const PolygonDraw: (props: SvgIconProps) => JSX.Element;
|
|
10
|
+
export declare const FIRLandDraw: (props: SvgIconProps) => JSX.Element;
|
|
11
|
+
export declare const Location: (props: SvgIconProps) => JSX.Element;
|
|
12
|
+
export declare const ThumbsUp: (props: SvgIconProps) => JSX.Element;
|
|
13
|
+
export declare const Edit: (props: SvgIconProps) => JSX.Element;
|
|
14
|
+
export declare const Export: (props: SvgIconProps) => JSX.Element;
|
|
15
|
+
export declare const ListItem: (props: SvgIconProps) => JSX.Element;
|
|
16
|
+
export declare const TimeSeriesManager: React.FC;
|
|
17
|
+
export declare const Close: React.FC<SvgIconProps>;
|
|
18
|
+
export declare const OptionKey: React.FC;
|
|
19
|
+
export declare const CommandKey: React.FC;
|
|
20
|
+
export declare const ArrowLeft: React.FC;
|
|
21
|
+
export declare const ArrowRight: React.FC;
|
|
22
|
+
export declare const ArrowDown: React.FC;
|
|
23
|
+
export declare const ArrowUp: React.FC;
|
|
24
|
+
export declare const Exclamation: React.FC<SvgIconProps>;
|
|
25
|
+
export declare const Visibility: React.FC<SvgIconProps>;
|
|
26
|
+
export declare const VisibilityOff: React.FC<SvgIconProps>;
|
|
27
|
+
export declare const HamburgerMenu: React.FC<SvgIconProps>;
|
|
28
|
+
export declare const GeoWebLogo: React.FC<SvgIconProps>;
|
|
29
|
+
export declare const Add: (props: SvgIconProps) => JSX.Element;
|
|
30
|
+
export declare const Clock: (props: SvgIconProps) => JSX.Element;
|
|
31
|
+
export declare const Success: (props: SvgIconProps) => JSX.Element;
|
|
32
|
+
export declare const Cancel: (props: SvgIconProps) => JSX.Element;
|
|
33
|
+
export declare const DragHandle: (props: SvgIconProps) => JSX.Element;
|
|
34
|
+
export declare const AutoUpdateActive: (props: SvgIconProps) => JSX.Element;
|
|
35
|
+
export declare const AutoUpdateInActive: (props: SvgIconProps) => JSX.Element;
|
|
36
|
+
export declare const Pause: (props: SvgIconProps) => JSX.Element;
|
|
37
|
+
export declare const Play: (props: SvgIconProps) => JSX.Element;
|
|
38
|
+
export declare const Info: (props: SvgIconProps) => JSX.Element;
|
|
39
|
+
interface TextIconProps extends SvgIconProps {
|
|
40
|
+
text?: string;
|
|
41
|
+
}
|
|
42
|
+
export declare const TextIcon: ({ text, ...props }: TextIconProps) => JSX.Element;
|
|
43
|
+
export declare const FastForward: (props: SvgIconProps) => JSX.Element;
|
|
44
|
+
export declare const TextIconTimeStepButton: ({ text, ...props }: TextIconProps) => JSX.Element;
|
|
45
|
+
export declare const SliderThumb: (props: SvgIconProps) => JSX.Element;
|
|
46
|
+
export declare const Options: (props: SvgIconProps) => JSX.Element;
|
|
47
|
+
export declare const ChevronLeft: (props: SvgIconProps) => JSX.Element;
|
|
48
|
+
export declare const ChevronRight: (props: SvgIconProps) => JSX.Element;
|
|
49
|
+
export declare const ChevronUp: (props: SvgIconProps) => JSX.Element;
|
|
50
|
+
export declare const ChevronDown: (props: SvgIconProps) => JSX.Element;
|
|
51
|
+
export declare const Layers: (props: SvgIconProps) => JSX.Element;
|
|
52
|
+
export declare const Copy: (props: SvgIconProps) => JSX.Element;
|
|
53
|
+
export declare const Filter: (props: SvgIconProps) => JSX.Element;
|
|
54
|
+
export declare const Clear: (props: SvgIconProps) => JSX.Element;
|
|
55
|
+
export declare const Search: (props: SvgIconProps) => JSX.Element;
|
|
56
|
+
export declare const Flag: (props: SvgIconProps) => JSX.Element;
|
|
57
|
+
interface ResizeIconProps extends SvgIconProps {
|
|
58
|
+
isRightAligned?: boolean;
|
|
59
|
+
}
|
|
60
|
+
export declare const Resize: ({ isRightAligned, ...props }: ResizeIconProps) => JSX.Element;
|
|
61
|
+
export declare const Workspace: (props: SvgIconProps) => JSX.Element;
|
|
62
|
+
export declare const Preset: (props: SvgIconProps) => JSX.Element;
|
|
63
|
+
export declare const PresetTiles: (props: SvgIconProps) => JSX.Element;
|
|
64
|
+
export declare const List: React.FC;
|
|
65
|
+
export declare const Home: React.FC;
|
|
66
|
+
export declare const Minus: React.FC;
|
|
67
|
+
export declare const Sort: React.FC;
|
|
68
|
+
export declare const Equalizer: React.FC;
|
|
69
|
+
export declare const Link: React.FC;
|
|
70
|
+
export declare const LinkOff: React.FC;
|
|
71
|
+
export declare const Cached: React.FC;
|
|
72
|
+
export declare const CalendarToday: React.FC<SvgIconProps>;
|
|
73
|
+
export declare const WebAssetOff: React.FC<SvgIconProps>;
|
|
74
|
+
export declare const Notifications: React.FC<SvgIconProps>;
|
|
75
|
+
export declare const Update: React.FC<SvgIconProps>;
|
|
76
|
+
export declare const SubdirectoryArrowRight: React.FC<SvgIconProps>;
|
|
77
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Icons';
|
|
File without changes
|
|
File without changes
|
|
@@ -13,7 +13,8 @@ export { ToggleButtons } from './ToggleButton.stories';
|
|
|
13
13
|
export { IconButtons } from './IconButton.stories';
|
|
14
14
|
export { MenuItem } from './MenuItem.stories';
|
|
15
15
|
export { TextFields } from './TextField.stories';
|
|
16
|
-
export { Breakpoints } from './Breakpoints';
|
|
16
|
+
export { Breakpoints } from './Breakpoints.stories';
|
|
17
|
+
export { Icons } from './Icons.stories';
|
|
17
18
|
export { FormElementsGWTheme, FormElements } from './FormElements.stories';
|
|
18
19
|
declare const _default: {
|
|
19
20
|
title: string;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
};
|
|
5
|
+
export default _default;
|
|
6
|
+
export interface IconGridItemProps {
|
|
7
|
+
name: string;
|
|
8
|
+
icon: React.ReactNode;
|
|
9
|
+
}
|
|
10
|
+
export declare const IconsLight: () => React.ReactElement;
|
|
11
|
+
export declare const IconsDark: () => React.ReactElement;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengeoweb/theme",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.12.0",
|
|
4
4
|
"description": "GeoWeb Theme library for the opengeoweb project",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
"peerDependencies": {
|
|
15
15
|
"react": "^17.0.2",
|
|
16
16
|
"@mui/material": "^5.2.8",
|
|
17
|
-
"@mui/styles": "^5.2.3"
|
|
18
|
-
"@mui/icons-material": "^5.2.5"
|
|
17
|
+
"@mui/styles": "^5.2.3"
|
|
19
18
|
}
|
|
20
19
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './StoryHeader';
|