@opengeoweb/theme 9.28.1 → 9.29.1
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.esm.js +207 -207
- package/package.json +1 -1
- package/src/index.d.ts +13 -13
- package/src/lib/components/Icons/Icons.d.ts +128 -128
- package/src/lib/components/Icons/Icons.spec.d.ts +1 -1
- package/src/lib/components/Icons/index.d.ts +1 -1
- package/src/lib/components/Paths/Paths.d.ts +1 -1
- package/src/lib/components/Paths/index.d.ts +1 -1
- package/src/lib/components/Providers/Providers.d.ts +6 -6
- package/src/lib/components/Providers/index.d.ts +1 -1
- package/src/lib/components/Theme/ThemeContext.d.ts +18 -18
- package/src/lib/components/Theme/ThemeContext.spec.d.ts +1 -1
- package/src/lib/components/Theme/index.d.ts +1 -1
- package/src/lib/stories/Accordion.stories.d.ts +15 -15
- package/src/lib/stories/Avatar.stories.d.ts +27 -27
- package/src/lib/stories/Backdrop.stories.d.ts +16 -16
- package/src/lib/stories/Breakpoints.stories.d.ts +14 -14
- package/src/lib/stories/Button.stories.d.ts +27 -27
- package/src/lib/stories/Card.stories.d.ts +27 -27
- package/src/lib/stories/Colors.stories.d.ts +29 -29
- package/src/lib/stories/Elevation.stories.d.ts +30 -30
- package/src/lib/stories/FormElements.stories.d.ts +27 -27
- package/src/lib/stories/IconButton.stories.d.ts +27 -27
- package/src/lib/stories/Icons.stories.d.ts +19 -19
- package/src/lib/stories/List.stories.d.ts +27 -27
- package/src/lib/stories/MenuItem.stories.d.ts +28 -28
- package/src/lib/stories/Select.stories.d.ts +27 -27
- package/src/lib/stories/Slider.stories.d.ts +27 -27
- package/src/lib/stories/Snackbar.stories.d.ts +27 -27
- package/src/lib/stories/StoryHeader.d.ts +6 -6
- package/src/lib/stories/StoryWrapper.d.ts +7 -7
- package/src/lib/stories/Switch.stories.d.ts +27 -27
- package/src/lib/stories/Table.stories.d.ts +36 -36
- package/src/lib/stories/Tabs.stories.d.ts +27 -27
- package/src/lib/stories/TextField.stories.d.ts +27 -27
- package/src/lib/stories/ToggleButton.stories.d.ts +27 -27
- package/src/lib/stories/Tooltip.stories.d.ts +27 -27
- package/src/lib/stories/Typography.stories.d.ts +27 -27
- package/src/lib/types.d.ts +222 -222
- package/src/lib/utils/EChartsThemes/darkTheme.d.ts +249 -249
- package/src/lib/utils/EChartsThemes/index.d.ts +3 -3
- package/src/lib/utils/EChartsThemes/lightTheme.d.ts +244 -244
- package/src/lib/utils/buttonStyles.d.ts +10 -10
- package/src/lib/utils/buttonStyles.test.d.ts +1 -1
- package/src/lib/utils/createTheme.d.ts +16 -16
- package/src/lib/utils/createTheme.spec.d.ts +1 -1
- package/src/lib/utils/i18n.d.ts +2 -2
- package/src/lib/utils/themes/darkTheme.d.ts +3 -3
- package/src/lib/utils/themes/index.d.ts +4 -4
- package/src/lib/utils/themes/lightTheme.d.ts +3 -3
- package/src/lib/utils/utils.d.ts +5 -5
- package/src/lib/utils/utils.spec.d.ts +1 -1
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import * as Icons from './lib/components/Icons';
|
|
2
|
-
import themeTranslations from '../locales/theme.json';
|
|
3
|
-
export { Icons };
|
|
4
|
-
export * from './lib/components/Theme';
|
|
5
|
-
export { parseColors, createShadows } from './lib/utils/utils';
|
|
6
|
-
export * from './lib/utils/themes';
|
|
7
|
-
export { createTheme, breakpoints } from './lib/utils/createTheme';
|
|
8
|
-
export * from './lib/components/Icons';
|
|
9
|
-
export * from './lib/components/Paths';
|
|
10
|
-
export * from './lib/types';
|
|
11
|
-
export * from './lib/utils/EChartsThemes';
|
|
12
|
-
export { THEME_NAMESPACE } from './lib/utils/i18n';
|
|
13
|
-
export { themeTranslations };
|
|
1
|
+
import * as Icons from './lib/components/Icons';
|
|
2
|
+
import themeTranslations from '../locales/theme.json';
|
|
3
|
+
export { Icons };
|
|
4
|
+
export * from './lib/components/Theme';
|
|
5
|
+
export { parseColors, createShadows } from './lib/utils/utils';
|
|
6
|
+
export * from './lib/utils/themes';
|
|
7
|
+
export { createTheme, breakpoints } from './lib/utils/createTheme';
|
|
8
|
+
export * from './lib/components/Icons';
|
|
9
|
+
export * from './lib/components/Paths';
|
|
10
|
+
export * from './lib/types';
|
|
11
|
+
export * from './lib/utils/EChartsThemes';
|
|
12
|
+
export { THEME_NAMESPACE } from './lib/utils/i18n';
|
|
13
|
+
export { themeTranslations };
|
|
@@ -1,128 +1,128 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { SvgIconProps } from '@mui/material';
|
|
3
|
-
export declare const SplitHorizontal: React.FC;
|
|
4
|
-
export declare const SplitVertical: React.FC;
|
|
5
|
-
export declare const Expand: React.FC;
|
|
6
|
-
export declare const UnExpand: React.FC;
|
|
7
|
-
export declare const Delete: (props: SvgIconProps) =>
|
|
8
|
-
export declare const DrawRegion: (props: SvgIconProps) =>
|
|
9
|
-
export declare const DrawPolygon: (props: SvgIconProps) =>
|
|
10
|
-
export declare const DrawFIRLand: (props: SvgIconProps) =>
|
|
11
|
-
export declare const Polygons: (props: SvgIconProps) =>
|
|
12
|
-
export declare const Location: (props: SvgIconProps) =>
|
|
13
|
-
export declare const MyLocation: (props: SvgIconProps) =>
|
|
14
|
-
export declare const ThumbsUp: (props: SvgIconProps) =>
|
|
15
|
-
export declare const Edit: (props: SvgIconProps) =>
|
|
16
|
-
export declare const Export: (props: SvgIconProps) =>
|
|
17
|
-
export declare const ListItem: (props: SvgIconProps) =>
|
|
18
|
-
export declare const TimeSeriesSelect: React.FC;
|
|
19
|
-
export declare const Close: React.FC<SvgIconProps>;
|
|
20
|
-
export declare const KeyOption: React.FC;
|
|
21
|
-
export declare const KeyCommand: React.FC;
|
|
22
|
-
export declare const ArrowLeft: React.FC;
|
|
23
|
-
export declare const ArrowRight: React.FC;
|
|
24
|
-
export declare const ArrowDown: React.FC;
|
|
25
|
-
export declare const ArrowUp: React.FC;
|
|
26
|
-
export declare const Exclamation: React.FC<SvgIconProps>;
|
|
27
|
-
export declare const Visibility: React.FC<SvgIconProps>;
|
|
28
|
-
export declare const VisibilityOff: React.FC<SvgIconProps>;
|
|
29
|
-
export declare const HamburgerMenu: React.FC<SvgIconProps>;
|
|
30
|
-
export declare const GeoWebLogo: React.FC<SvgIconProps>;
|
|
31
|
-
export declare const Add: (props: SvgIconProps) =>
|
|
32
|
-
export declare const LayersAdd: (props: SvgIconProps) =>
|
|
33
|
-
export declare const MapAdd: (props: SvgIconProps) =>
|
|
34
|
-
export declare const Clock: (props: SvgIconProps) =>
|
|
35
|
-
export declare const Animation: (props: SvgIconProps) =>
|
|
36
|
-
export declare const Success: (props: SvgIconProps) =>
|
|
37
|
-
export declare const Cancel: (props: SvgIconProps) =>
|
|
38
|
-
export declare const DragHandle: (props: SvgIconProps) =>
|
|
39
|
-
export declare const AutoUpdateActive: (props: SvgIconProps) =>
|
|
40
|
-
export declare const AutoUpdateInActive: (props: SvgIconProps) =>
|
|
41
|
-
export declare const Now: (props: SvgIconProps) =>
|
|
42
|
-
export declare const Pause: (props: SvgIconProps) =>
|
|
43
|
-
export declare const Play: (props: SvgIconProps) =>
|
|
44
|
-
export declare const StepBackward: (props: SvgIconProps) =>
|
|
45
|
-
export declare const StepForward: (props: SvgIconProps) =>
|
|
46
|
-
export declare const Info: (props: SvgIconProps) =>
|
|
47
|
-
interface TextIconProps extends SvgIconProps {
|
|
48
|
-
text?: string;
|
|
49
|
-
}
|
|
50
|
-
export declare const TextIcon: ({ text, ...props }: TextIconProps) =>
|
|
51
|
-
export declare const FastForward: (props: SvgIconProps) =>
|
|
52
|
-
export declare const SliderThumb: (props: SvgIconProps) =>
|
|
53
|
-
export declare const Options: (props: SvgIconProps) =>
|
|
54
|
-
export declare const ChevronLeft: (props: SvgIconProps) =>
|
|
55
|
-
export declare const ChevronRight: (props: SvgIconProps) =>
|
|
56
|
-
export declare const ChevronUp: (props: SvgIconProps) =>
|
|
57
|
-
export declare const ChevronDown: (props: SvgIconProps) =>
|
|
58
|
-
export declare const Layers: (props: SvgIconProps) =>
|
|
59
|
-
export declare const Copy: (props: SvgIconProps) =>
|
|
60
|
-
export declare const Filter: (props: SvgIconProps) =>
|
|
61
|
-
export declare const Clear: (props: SvgIconProps) =>
|
|
62
|
-
export declare const Search: (props: SvgIconProps) =>
|
|
63
|
-
interface ResizeIconProps extends SvgIconProps {
|
|
64
|
-
isRightAligned?: boolean;
|
|
65
|
-
}
|
|
66
|
-
export declare const Resize: ({ isRightAligned, sx, ...props }: ResizeIconProps) =>
|
|
67
|
-
export declare const PresetWorkspace: (props: SvgIconProps) =>
|
|
68
|
-
export declare const Preset: (props: SvgIconProps) =>
|
|
69
|
-
export declare const PresetTiles: (props: SvgIconProps) =>
|
|
70
|
-
export declare const List: React.FC;
|
|
71
|
-
export declare const Home: React.FC;
|
|
72
|
-
export declare const Minus: React.FC;
|
|
73
|
-
export declare const Equalizer: React.FC;
|
|
74
|
-
export declare const Link: React.FC;
|
|
75
|
-
export declare const LinkOff: React.FC;
|
|
76
|
-
export declare const Cached: React.FC;
|
|
77
|
-
export declare const CalendarToday: React.FC<SvgIconProps>;
|
|
78
|
-
export declare const WebAssetOff: React.FC<SvgIconProps>;
|
|
79
|
-
export declare const Notifications: React.FC<SvgIconProps>;
|
|
80
|
-
export declare const Update: React.FC<SvgIconProps>;
|
|
81
|
-
export declare const SubdirectoryArrowRight: React.FC<SvgIconProps>;
|
|
82
|
-
export declare const Speed: (props: SvgIconProps) =>
|
|
83
|
-
export declare const DimensionsElevation: (props: SvgIconProps) =>
|
|
84
|
-
export declare const DimensionsTime: (props: SvgIconProps) =>
|
|
85
|
-
export declare const DimensionsRefTime: (props: SvgIconProps) =>
|
|
86
|
-
export declare const DimensionsOther: (props: SvgIconProps) =>
|
|
87
|
-
export declare const Picture: (props: SvgIconProps) =>
|
|
88
|
-
export declare const CollapseWindow: (props: SvgIconProps) =>
|
|
89
|
-
export declare const ExpandWindow: (props: SvgIconProps) =>
|
|
90
|
-
export declare const CollapseLarge: (props: SvgIconProps) =>
|
|
91
|
-
export declare const CollapseMedium: (props: SvgIconProps) =>
|
|
92
|
-
export declare const CollapseSmall: (props: SvgIconProps) =>
|
|
93
|
-
export declare const ExitDomain: (props: SvgIconProps) =>
|
|
94
|
-
export declare const Menu: (props: SvgIconProps) =>
|
|
95
|
-
export declare const None: (props: SvgIconProps) =>
|
|
96
|
-
export declare const Both: (props: SvgIconProps) =>
|
|
97
|
-
export declare const Share: (props: SvgIconProps) =>
|
|
98
|
-
export declare const Snow: (props: SvgIconProps) =>
|
|
99
|
-
export declare const Wind: (props: SvgIconProps) =>
|
|
100
|
-
export declare const Rain: (props: SvgIconProps) =>
|
|
101
|
-
export declare const Lightning: (props: SvgIconProps) =>
|
|
102
|
-
export declare const Fog: (props: SvgIconProps) =>
|
|
103
|
-
export declare const CoastalEvent: (props: SvgIconProps) =>
|
|
104
|
-
export declare const TemperatureHigh: (props: SvgIconProps) =>
|
|
105
|
-
export declare const TemperatureLow: (props: SvgIconProps) =>
|
|
106
|
-
export declare const LockUnlocked: (props: SvgIconProps) =>
|
|
107
|
-
export declare const LockLocked: (props: SvgIconProps) =>
|
|
108
|
-
export declare const ArrowDropDownDown: (props: SvgIconProps) =>
|
|
109
|
-
export declare const ArrowDropDownUp: (props: SvgIconProps) =>
|
|
110
|
-
export declare const WorldMapProjection: (props: SvgIconProps) =>
|
|
111
|
-
export declare const FunnelCloud: (props: SvgIconProps) =>
|
|
112
|
-
export declare const CloudLoading: (props: SvgIconProps) =>
|
|
113
|
-
export declare const CloudIdle: (props: SvgIconProps) =>
|
|
114
|
-
export declare const Admin: ({ ...props }: SvgIconProps) =>
|
|
115
|
-
export declare const Remove: (props: SvgIconProps) =>
|
|
116
|
-
export declare const Expire: (props: SvgIconProps) =>
|
|
117
|
-
export declare const Thunderstorm: (props: SvgIconProps) =>
|
|
118
|
-
export declare const SevereWaves: (props: SvgIconProps) =>
|
|
119
|
-
export declare const VulcanicEruption: (props: SvgIconProps) =>
|
|
120
|
-
export declare const ModerateAircraftIcing: (props: SvgIconProps) =>
|
|
121
|
-
export declare const SevereAircraftIcing: (props: SvgIconProps) =>
|
|
122
|
-
export declare const SandStorm: (props: SvgIconProps) =>
|
|
123
|
-
export declare const SevereTurbulence: (props: SvgIconProps) =>
|
|
124
|
-
export declare const RadioactiveMaterials: (props: SvgIconProps) =>
|
|
125
|
-
export declare const FreezingPrecipitation: (props: SvgIconProps) =>
|
|
126
|
-
export declare const Haze: (props: SvgIconProps) =>
|
|
127
|
-
export declare const ModerateTurbulence: (props: SvgIconProps) =>
|
|
128
|
-
export {};
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SvgIconProps } from '@mui/material';
|
|
3
|
+
export declare const SplitHorizontal: React.FC;
|
|
4
|
+
export declare const SplitVertical: React.FC;
|
|
5
|
+
export declare const Expand: React.FC;
|
|
6
|
+
export declare const UnExpand: React.FC;
|
|
7
|
+
export declare const Delete: (props: SvgIconProps) => React.ReactElement;
|
|
8
|
+
export declare const DrawRegion: (props: SvgIconProps) => React.ReactElement;
|
|
9
|
+
export declare const DrawPolygon: (props: SvgIconProps) => React.ReactElement;
|
|
10
|
+
export declare const DrawFIRLand: (props: SvgIconProps) => React.ReactElement;
|
|
11
|
+
export declare const Polygons: (props: SvgIconProps) => React.ReactElement;
|
|
12
|
+
export declare const Location: (props: SvgIconProps) => React.ReactElement;
|
|
13
|
+
export declare const MyLocation: (props: SvgIconProps) => React.ReactElement;
|
|
14
|
+
export declare const ThumbsUp: (props: SvgIconProps) => React.ReactElement;
|
|
15
|
+
export declare const Edit: (props: SvgIconProps) => React.ReactElement;
|
|
16
|
+
export declare const Export: (props: SvgIconProps) => React.ReactElement;
|
|
17
|
+
export declare const ListItem: (props: SvgIconProps) => React.ReactElement;
|
|
18
|
+
export declare const TimeSeriesSelect: React.FC;
|
|
19
|
+
export declare const Close: React.FC<SvgIconProps>;
|
|
20
|
+
export declare const KeyOption: React.FC;
|
|
21
|
+
export declare const KeyCommand: React.FC;
|
|
22
|
+
export declare const ArrowLeft: React.FC;
|
|
23
|
+
export declare const ArrowRight: React.FC;
|
|
24
|
+
export declare const ArrowDown: React.FC;
|
|
25
|
+
export declare const ArrowUp: React.FC;
|
|
26
|
+
export declare const Exclamation: React.FC<SvgIconProps>;
|
|
27
|
+
export declare const Visibility: React.FC<SvgIconProps>;
|
|
28
|
+
export declare const VisibilityOff: React.FC<SvgIconProps>;
|
|
29
|
+
export declare const HamburgerMenu: React.FC<SvgIconProps>;
|
|
30
|
+
export declare const GeoWebLogo: React.FC<SvgIconProps>;
|
|
31
|
+
export declare const Add: (props: SvgIconProps) => React.ReactElement;
|
|
32
|
+
export declare const LayersAdd: (props: SvgIconProps) => React.ReactElement;
|
|
33
|
+
export declare const MapAdd: (props: SvgIconProps) => React.ReactElement;
|
|
34
|
+
export declare const Clock: (props: SvgIconProps) => React.ReactElement;
|
|
35
|
+
export declare const Animation: (props: SvgIconProps) => React.ReactElement;
|
|
36
|
+
export declare const Success: (props: SvgIconProps) => React.ReactElement;
|
|
37
|
+
export declare const Cancel: (props: SvgIconProps) => React.ReactElement;
|
|
38
|
+
export declare const DragHandle: (props: SvgIconProps) => React.ReactElement;
|
|
39
|
+
export declare const AutoUpdateActive: (props: SvgIconProps) => React.ReactElement;
|
|
40
|
+
export declare const AutoUpdateInActive: (props: SvgIconProps) => React.ReactElement;
|
|
41
|
+
export declare const Now: (props: SvgIconProps) => React.ReactElement;
|
|
42
|
+
export declare const Pause: (props: SvgIconProps) => React.ReactElement;
|
|
43
|
+
export declare const Play: (props: SvgIconProps) => React.ReactElement;
|
|
44
|
+
export declare const StepBackward: (props: SvgIconProps) => React.ReactElement;
|
|
45
|
+
export declare const StepForward: (props: SvgIconProps) => React.ReactElement;
|
|
46
|
+
export declare const Info: (props: SvgIconProps) => React.ReactElement;
|
|
47
|
+
interface TextIconProps extends SvgIconProps {
|
|
48
|
+
text?: string;
|
|
49
|
+
}
|
|
50
|
+
export declare const TextIcon: ({ text, ...props }: TextIconProps) => React.ReactElement;
|
|
51
|
+
export declare const FastForward: (props: SvgIconProps) => React.ReactElement;
|
|
52
|
+
export declare const SliderThumb: (props: SvgIconProps) => React.ReactElement;
|
|
53
|
+
export declare const Options: (props: SvgIconProps) => React.ReactElement;
|
|
54
|
+
export declare const ChevronLeft: (props: SvgIconProps) => React.ReactElement;
|
|
55
|
+
export declare const ChevronRight: (props: SvgIconProps) => React.ReactElement;
|
|
56
|
+
export declare const ChevronUp: (props: SvgIconProps) => React.ReactElement;
|
|
57
|
+
export declare const ChevronDown: (props: SvgIconProps) => React.ReactElement;
|
|
58
|
+
export declare const Layers: (props: SvgIconProps) => React.ReactElement;
|
|
59
|
+
export declare const Copy: (props: SvgIconProps) => React.ReactElement;
|
|
60
|
+
export declare const Filter: (props: SvgIconProps) => React.ReactElement;
|
|
61
|
+
export declare const Clear: (props: SvgIconProps) => React.ReactElement;
|
|
62
|
+
export declare const Search: (props: SvgIconProps) => React.ReactElement;
|
|
63
|
+
interface ResizeIconProps extends SvgIconProps {
|
|
64
|
+
isRightAligned?: boolean;
|
|
65
|
+
}
|
|
66
|
+
export declare const Resize: ({ isRightAligned, sx, ...props }: ResizeIconProps) => React.ReactElement;
|
|
67
|
+
export declare const PresetWorkspace: (props: SvgIconProps) => React.ReactElement;
|
|
68
|
+
export declare const Preset: (props: SvgIconProps) => React.ReactElement;
|
|
69
|
+
export declare const PresetTiles: (props: SvgIconProps) => React.ReactElement;
|
|
70
|
+
export declare const List: React.FC;
|
|
71
|
+
export declare const Home: React.FC;
|
|
72
|
+
export declare const Minus: React.FC;
|
|
73
|
+
export declare const Equalizer: React.FC;
|
|
74
|
+
export declare const Link: React.FC;
|
|
75
|
+
export declare const LinkOff: React.FC;
|
|
76
|
+
export declare const Cached: React.FC;
|
|
77
|
+
export declare const CalendarToday: React.FC<SvgIconProps>;
|
|
78
|
+
export declare const WebAssetOff: React.FC<SvgIconProps>;
|
|
79
|
+
export declare const Notifications: React.FC<SvgIconProps>;
|
|
80
|
+
export declare const Update: React.FC<SvgIconProps>;
|
|
81
|
+
export declare const SubdirectoryArrowRight: React.FC<SvgIconProps>;
|
|
82
|
+
export declare const Speed: (props: SvgIconProps) => React.ReactElement;
|
|
83
|
+
export declare const DimensionsElevation: (props: SvgIconProps) => React.ReactElement;
|
|
84
|
+
export declare const DimensionsTime: (props: SvgIconProps) => React.ReactElement;
|
|
85
|
+
export declare const DimensionsRefTime: (props: SvgIconProps) => React.ReactElement;
|
|
86
|
+
export declare const DimensionsOther: (props: SvgIconProps) => React.ReactElement;
|
|
87
|
+
export declare const Picture: (props: SvgIconProps) => React.ReactElement;
|
|
88
|
+
export declare const CollapseWindow: (props: SvgIconProps) => React.ReactElement;
|
|
89
|
+
export declare const ExpandWindow: (props: SvgIconProps) => React.ReactElement;
|
|
90
|
+
export declare const CollapseLarge: (props: SvgIconProps) => React.ReactElement;
|
|
91
|
+
export declare const CollapseMedium: (props: SvgIconProps) => React.ReactElement;
|
|
92
|
+
export declare const CollapseSmall: (props: SvgIconProps) => React.ReactElement;
|
|
93
|
+
export declare const ExitDomain: (props: SvgIconProps) => React.ReactElement;
|
|
94
|
+
export declare const Menu: (props: SvgIconProps) => React.ReactElement;
|
|
95
|
+
export declare const None: (props: SvgIconProps) => React.ReactElement;
|
|
96
|
+
export declare const Both: (props: SvgIconProps) => React.ReactElement;
|
|
97
|
+
export declare const Share: (props: SvgIconProps) => React.ReactElement;
|
|
98
|
+
export declare const Snow: (props: SvgIconProps) => React.ReactElement;
|
|
99
|
+
export declare const Wind: (props: SvgIconProps) => React.ReactElement;
|
|
100
|
+
export declare const Rain: (props: SvgIconProps) => React.ReactElement;
|
|
101
|
+
export declare const Lightning: (props: SvgIconProps) => React.ReactElement;
|
|
102
|
+
export declare const Fog: (props: SvgIconProps) => React.ReactElement;
|
|
103
|
+
export declare const CoastalEvent: (props: SvgIconProps) => React.ReactElement;
|
|
104
|
+
export declare const TemperatureHigh: (props: SvgIconProps) => React.ReactElement;
|
|
105
|
+
export declare const TemperatureLow: (props: SvgIconProps) => React.ReactElement;
|
|
106
|
+
export declare const LockUnlocked: (props: SvgIconProps) => React.ReactElement;
|
|
107
|
+
export declare const LockLocked: (props: SvgIconProps) => React.ReactElement;
|
|
108
|
+
export declare const ArrowDropDownDown: (props: SvgIconProps) => React.ReactElement;
|
|
109
|
+
export declare const ArrowDropDownUp: (props: SvgIconProps) => React.ReactElement;
|
|
110
|
+
export declare const WorldMapProjection: (props: SvgIconProps) => React.ReactElement;
|
|
111
|
+
export declare const FunnelCloud: (props: SvgIconProps) => React.ReactElement;
|
|
112
|
+
export declare const CloudLoading: (props: SvgIconProps) => React.ReactElement;
|
|
113
|
+
export declare const CloudIdle: (props: SvgIconProps) => React.ReactElement;
|
|
114
|
+
export declare const Admin: ({ ...props }: SvgIconProps) => React.ReactElement;
|
|
115
|
+
export declare const Remove: (props: SvgIconProps) => React.ReactElement;
|
|
116
|
+
export declare const Expire: (props: SvgIconProps) => React.ReactElement;
|
|
117
|
+
export declare const Thunderstorm: (props: SvgIconProps) => React.ReactElement;
|
|
118
|
+
export declare const SevereWaves: (props: SvgIconProps) => React.ReactElement;
|
|
119
|
+
export declare const VulcanicEruption: (props: SvgIconProps) => React.ReactElement;
|
|
120
|
+
export declare const ModerateAircraftIcing: (props: SvgIconProps) => React.ReactElement;
|
|
121
|
+
export declare const SevereAircraftIcing: (props: SvgIconProps) => React.ReactElement;
|
|
122
|
+
export declare const SandStorm: (props: SvgIconProps) => React.ReactElement;
|
|
123
|
+
export declare const SevereTurbulence: (props: SvgIconProps) => React.ReactElement;
|
|
124
|
+
export declare const RadioactiveMaterials: (props: SvgIconProps) => React.ReactElement;
|
|
125
|
+
export declare const FreezingPrecipitation: (props: SvgIconProps) => React.ReactElement;
|
|
126
|
+
export declare const Haze: (props: SvgIconProps) => React.ReactElement;
|
|
127
|
+
export declare const ModerateTurbulence: (props: SvgIconProps) => React.ReactElement;
|
|
128
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {};
|
|
1
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './Icons';
|
|
1
|
+
export * from './Icons';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const dragHandlePath = "M9.5 8a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm5 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm-5 5.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm5 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm-5 5.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm5 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z";
|
|
1
|
+
export declare const dragHandlePath = "M9.5 8a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm5 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm-5 5.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm5 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm-5 5.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm5 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './Paths';
|
|
1
|
+
export * from './Paths';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
interface ThemeTranslationWrapperProps {
|
|
3
|
-
children?: React.ReactNode;
|
|
4
|
-
}
|
|
5
|
-
export declare const ThemeI18nProvider: React.FC<ThemeTranslationWrapperProps>;
|
|
6
|
-
export {};
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface ThemeTranslationWrapperProps {
|
|
3
|
+
children?: React.ReactNode;
|
|
4
|
+
}
|
|
5
|
+
export declare const ThemeI18nProvider: React.FC<ThemeTranslationWrapperProps>;
|
|
6
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './Providers';
|
|
1
|
+
export * from './Providers';
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { Theme as MUITheme } from '@mui/material';
|
|
3
|
-
import { ThemeTypes } from '../../types';
|
|
4
|
-
interface ThemeContextProps {
|
|
5
|
-
toggleTheme?: () => void;
|
|
6
|
-
isDark?: boolean;
|
|
7
|
-
}
|
|
8
|
-
export declare const ThemeContext: React.Context<Partial<ThemeContextProps>>;
|
|
9
|
-
export interface ThemeProviderProps {
|
|
10
|
-
children: React.ReactNode;
|
|
11
|
-
theme?: MUITheme;
|
|
12
|
-
defaultThemeName?: ThemeTypes;
|
|
13
|
-
disableCssBaseline?: boolean;
|
|
14
|
-
}
|
|
15
|
-
export declare const ThemeProvider: React.FC<ThemeProviderProps>;
|
|
16
|
-
export declare const useThemeContext: () => Partial<ThemeContextProps>;
|
|
17
|
-
export declare const ThemeWrapper: React.FC<ThemeProviderProps>;
|
|
18
|
-
export {};
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Theme as MUITheme } from '@mui/material';
|
|
3
|
+
import { ThemeTypes } from '../../types';
|
|
4
|
+
interface ThemeContextProps {
|
|
5
|
+
toggleTheme?: () => void;
|
|
6
|
+
isDark?: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare const ThemeContext: React.Context<Partial<ThemeContextProps>>;
|
|
9
|
+
export interface ThemeProviderProps {
|
|
10
|
+
children: React.ReactNode;
|
|
11
|
+
theme?: MUITheme;
|
|
12
|
+
defaultThemeName?: ThemeTypes;
|
|
13
|
+
disableCssBaseline?: boolean;
|
|
14
|
+
}
|
|
15
|
+
export declare const ThemeProvider: React.FC<ThemeProviderProps>;
|
|
16
|
+
export declare const useThemeContext: () => Partial<ThemeContextProps>;
|
|
17
|
+
export declare const ThemeWrapper: React.FC<ThemeProviderProps>;
|
|
18
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {};
|
|
1
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './ThemeContext';
|
|
1
|
+
export * from './ThemeContext';
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
declare const _default: {
|
|
3
|
-
title: string;
|
|
4
|
-
};
|
|
5
|
-
export default _default;
|
|
6
|
-
export declare const AccordionLight: {
|
|
7
|
-
(): React.ReactElement;
|
|
8
|
-
storyName: string;
|
|
9
|
-
tags: string[];
|
|
10
|
-
};
|
|
11
|
-
export declare const AccordionDark: {
|
|
12
|
-
(): React.ReactElement;
|
|
13
|
-
storyName: string;
|
|
14
|
-
tags: string[];
|
|
15
|
-
};
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
};
|
|
5
|
+
export default _default;
|
|
6
|
+
export declare const AccordionLight: {
|
|
7
|
+
(): React.ReactElement;
|
|
8
|
+
storyName: string;
|
|
9
|
+
tags: string[];
|
|
10
|
+
};
|
|
11
|
+
export declare const AccordionDark: {
|
|
12
|
+
(): React.ReactElement;
|
|
13
|
+
storyName: string;
|
|
14
|
+
tags: string[];
|
|
15
|
+
};
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
declare const _default: {
|
|
3
|
-
title: string;
|
|
4
|
-
};
|
|
5
|
-
export default _default;
|
|
6
|
-
export declare const AvatarLight: {
|
|
7
|
-
(): React.ReactElement;
|
|
8
|
-
storyName: string;
|
|
9
|
-
tags: string[];
|
|
10
|
-
parameters: {
|
|
11
|
-
zeplinLink: {
|
|
12
|
-
name: string;
|
|
13
|
-
link: string;
|
|
14
|
-
}[];
|
|
15
|
-
};
|
|
16
|
-
};
|
|
17
|
-
export declare const AvatarDark: {
|
|
18
|
-
(): React.ReactElement;
|
|
19
|
-
storyName: string;
|
|
20
|
-
tags: string[];
|
|
21
|
-
parameters: {
|
|
22
|
-
zeplinLink: {
|
|
23
|
-
name: string;
|
|
24
|
-
link: string;
|
|
25
|
-
}[];
|
|
26
|
-
};
|
|
27
|
-
};
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
};
|
|
5
|
+
export default _default;
|
|
6
|
+
export declare const AvatarLight: {
|
|
7
|
+
(): React.ReactElement;
|
|
8
|
+
storyName: string;
|
|
9
|
+
tags: string[];
|
|
10
|
+
parameters: {
|
|
11
|
+
zeplinLink: {
|
|
12
|
+
name: string;
|
|
13
|
+
link: string;
|
|
14
|
+
}[];
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
export declare const AvatarDark: {
|
|
18
|
+
(): React.ReactElement;
|
|
19
|
+
storyName: string;
|
|
20
|
+
tags: string[];
|
|
21
|
+
parameters: {
|
|
22
|
+
zeplinLink: {
|
|
23
|
+
name: string;
|
|
24
|
+
link: string;
|
|
25
|
+
}[];
|
|
26
|
+
};
|
|
27
|
+
};
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
declare const _default: {
|
|
3
|
-
title: string;
|
|
4
|
-
};
|
|
5
|
-
export default _default;
|
|
6
|
-
export declare const BackDropDemo: () => React.ReactElement;
|
|
7
|
-
export declare const BackDropLight: {
|
|
8
|
-
(): React.ReactElement;
|
|
9
|
-
storyName: string;
|
|
10
|
-
tags: string[];
|
|
11
|
-
};
|
|
12
|
-
export declare const BackDropDark: {
|
|
13
|
-
(): React.ReactElement;
|
|
14
|
-
storyName: string;
|
|
15
|
-
tags: string[];
|
|
16
|
-
};
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
};
|
|
5
|
+
export default _default;
|
|
6
|
+
export declare const BackDropDemo: () => React.ReactElement;
|
|
7
|
+
export declare const BackDropLight: {
|
|
8
|
+
(): React.ReactElement;
|
|
9
|
+
storyName: string;
|
|
10
|
+
tags: string[];
|
|
11
|
+
};
|
|
12
|
+
export declare const BackDropDark: {
|
|
13
|
+
(): React.ReactElement;
|
|
14
|
+
storyName: string;
|
|
15
|
+
tags: string[];
|
|
16
|
+
};
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
declare const _default: {
|
|
3
|
-
title: string;
|
|
4
|
-
};
|
|
5
|
-
export default _default;
|
|
6
|
-
export declare const Breakpoints: {
|
|
7
|
-
(): React.ReactElement;
|
|
8
|
-
parameters: {
|
|
9
|
-
zeplinLink: {
|
|
10
|
-
name: string;
|
|
11
|
-
link: string;
|
|
12
|
-
}[];
|
|
13
|
-
};
|
|
14
|
-
};
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
};
|
|
5
|
+
export default _default;
|
|
6
|
+
export declare const Breakpoints: {
|
|
7
|
+
(): React.ReactElement;
|
|
8
|
+
parameters: {
|
|
9
|
+
zeplinLink: {
|
|
10
|
+
name: string;
|
|
11
|
+
link: string;
|
|
12
|
+
}[];
|
|
13
|
+
};
|
|
14
|
+
};
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
declare const _default: {
|
|
3
|
-
title: string;
|
|
4
|
-
};
|
|
5
|
-
export default _default;
|
|
6
|
-
export declare const ButtonLight: {
|
|
7
|
-
(): React.ReactElement;
|
|
8
|
-
storyName: string;
|
|
9
|
-
tags: string[];
|
|
10
|
-
parameters: {
|
|
11
|
-
zeplinLink: {
|
|
12
|
-
name: string;
|
|
13
|
-
link: string;
|
|
14
|
-
}[];
|
|
15
|
-
};
|
|
16
|
-
};
|
|
17
|
-
export declare const ButtonDark: {
|
|
18
|
-
(): React.ReactElement;
|
|
19
|
-
storyName: string;
|
|
20
|
-
tags: string[];
|
|
21
|
-
parameters: {
|
|
22
|
-
zeplinLink: {
|
|
23
|
-
name: string;
|
|
24
|
-
link: string;
|
|
25
|
-
}[];
|
|
26
|
-
};
|
|
27
|
-
};
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
};
|
|
5
|
+
export default _default;
|
|
6
|
+
export declare const ButtonLight: {
|
|
7
|
+
(): React.ReactElement;
|
|
8
|
+
storyName: string;
|
|
9
|
+
tags: string[];
|
|
10
|
+
parameters: {
|
|
11
|
+
zeplinLink: {
|
|
12
|
+
name: string;
|
|
13
|
+
link: string;
|
|
14
|
+
}[];
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
export declare const ButtonDark: {
|
|
18
|
+
(): React.ReactElement;
|
|
19
|
+
storyName: string;
|
|
20
|
+
tags: string[];
|
|
21
|
+
parameters: {
|
|
22
|
+
zeplinLink: {
|
|
23
|
+
name: string;
|
|
24
|
+
link: string;
|
|
25
|
+
}[];
|
|
26
|
+
};
|
|
27
|
+
};
|