@opengeoweb/theme 15.3.0 → 17.0.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.esm.js +623 -514
- package/package.json +2 -2
- package/src/index.d.ts +0 -15
- package/src/lib/components/Icons/Icons.d.ts +0 -156
- package/src/lib/components/Icons/Icons.spec.d.ts +0 -1
- package/src/lib/components/Icons/index.d.ts +0 -1
- package/src/lib/components/Paths/Paths.d.ts +0 -4
- package/src/lib/components/Paths/index.d.ts +0 -1
- package/src/lib/components/Providers/Providers.d.ts +0 -6
- package/src/lib/components/Providers/index.d.ts +0 -1
- package/src/lib/components/Storybook/StoryHeader.d.ts +0 -6
- package/src/lib/components/Storybook/index.d.ts +0 -1
- package/src/lib/components/Theme/ThemeContext.d.ts +0 -19
- package/src/lib/components/Theme/ThemeContext.spec.d.ts +0 -1
- package/src/lib/components/Theme/index.d.ts +0 -1
- package/src/lib/stories/Accordion.stories.d.ts +0 -9
- package/src/lib/stories/Avatar.stories.d.ts +0 -9
- package/src/lib/stories/Backdrop.stories.d.ts +0 -11
- package/src/lib/stories/Breakpoints.stories.d.ts +0 -8
- package/src/lib/stories/Button.stories.d.ts +0 -9
- package/src/lib/stories/Card.stories.d.ts +0 -9
- package/src/lib/stories/Colors.stories.d.ts +0 -9
- package/src/lib/stories/Elevation.stories.d.ts +0 -9
- package/src/lib/stories/FormElements.stories.d.ts +0 -9
- package/src/lib/stories/IconButton.stories.d.ts +0 -9
- package/src/lib/stories/Icons.stories.d.ts +0 -14
- package/src/lib/stories/List.stories.d.ts +0 -9
- package/src/lib/stories/MenuItem.stories.d.ts +0 -10
- package/src/lib/stories/Select.stories.d.ts +0 -9
- package/src/lib/stories/Slider.stories.d.ts +0 -9
- package/src/lib/stories/Snackbar.stories.d.ts +0 -9
- package/src/lib/stories/Switch.stories.d.ts +0 -9
- package/src/lib/stories/Table.stories.d.ts +0 -16
- package/src/lib/stories/Tabs.stories.d.ts +0 -9
- package/src/lib/stories/TextField.stories.d.ts +0 -9
- package/src/lib/stories/ToggleButton.stories.d.ts +0 -9
- package/src/lib/stories/Tooltip.stories.d.ts +0 -9
- package/src/lib/stories/Typography.stories.d.ts +0 -9
- package/src/lib/types.d.ts +0 -255
- package/src/lib/utils/EChartsThemes/darkTheme.d.ts +0 -249
- package/src/lib/utils/EChartsThemes/index.d.ts +0 -3
- package/src/lib/utils/EChartsThemes/lightTheme.d.ts +0 -244
- package/src/lib/utils/buttonStyles.d.ts +0 -10
- package/src/lib/utils/buttonStyles.test.d.ts +0 -1
- package/src/lib/utils/createTheme.d.ts +0 -16
- package/src/lib/utils/createTheme.spec.d.ts +0 -1
- package/src/lib/utils/i18n.d.ts +0 -2
- package/src/lib/utils/themes/BackdropDecoration.d.ts +0 -4
- package/src/lib/utils/themes/dark/darkTheme.d.ts +0 -3
- package/src/lib/utils/themes/demo/demoTheme.d.ts +0 -3
- package/src/lib/utils/themes/eumetnet/eumetnetTheme.d.ts +0 -3
- package/src/lib/utils/themes/index.d.ts +0 -30
- package/src/lib/utils/themes/light/lightTheme.d.ts +0 -3
- package/src/lib/utils/themes/xmas/xmasTheme.d.ts +0 -3
- package/src/lib/utils/utils.d.ts +0 -5
- package/src/lib/utils/utils.spec.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengeoweb/theme",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "17.0.0",
|
|
4
4
|
"description": "GeoWeb Theme library for the opengeoweb project",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@emotion/styled": "*"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"eslint-plugin-storybook": "
|
|
23
|
+
"eslint-plugin-storybook": "10.3.3"
|
|
24
24
|
},
|
|
25
25
|
"module": "./index.esm.js",
|
|
26
26
|
"type": "module",
|
package/src/index.d.ts
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import themeTranslations from '../locales/theme.json';
|
|
2
|
-
import * as Icons from './lib/components/Icons';
|
|
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 };
|
|
14
|
-
export { OverlayStyle, ContainerStyle, BackdropStyle, } from './lib/utils/themes/BackdropDecoration';
|
|
15
|
-
export { BORDER_RADIUS } from './lib/utils/buttonStyles';
|
|
@@ -1,156 +0,0 @@
|
|
|
1
|
-
import type { SvgIconProps } from '@mui/material';
|
|
2
|
-
import React from 'react';
|
|
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<SvgIconProps>;
|
|
25
|
-
export declare const ArrowUp: React.FC<SvgIconProps>;
|
|
26
|
-
export declare const ArrowUpCompact: React.FC<SvgIconProps>;
|
|
27
|
-
export declare const ArrowDownCompact: React.FC<SvgIconProps>;
|
|
28
|
-
export declare const Exclamation: React.FC<SvgIconProps>;
|
|
29
|
-
export declare const Visibility: React.FC<SvgIconProps>;
|
|
30
|
-
export declare const VisibilityOff: React.FC<SvgIconProps>;
|
|
31
|
-
export declare const HamburgerMenu: React.FC<SvgIconProps>;
|
|
32
|
-
export declare const GeoWebLogo: React.FC<SvgIconProps>;
|
|
33
|
-
export declare const Add: (props: SvgIconProps) => React.ReactElement;
|
|
34
|
-
export declare const LayersAdd: (props: SvgIconProps) => React.ReactElement;
|
|
35
|
-
export declare const MapAdd: (props: SvgIconProps) => React.ReactElement;
|
|
36
|
-
export declare const Clock: (props: SvgIconProps) => React.ReactElement;
|
|
37
|
-
export declare const Animation: (props: SvgIconProps) => React.ReactElement;
|
|
38
|
-
export declare const Success: (props: SvgIconProps) => React.ReactElement;
|
|
39
|
-
export declare const Cancel: (props: SvgIconProps) => React.ReactElement;
|
|
40
|
-
export declare const DragHandle: (props: SvgIconProps) => React.ReactElement;
|
|
41
|
-
export declare const AutoUpdateActive: (props: SvgIconProps) => React.ReactElement;
|
|
42
|
-
export declare const AutoUpdateInActive: (props: SvgIconProps) => React.ReactElement;
|
|
43
|
-
export declare const Now: (props: SvgIconProps) => React.ReactElement;
|
|
44
|
-
export declare const Pause: (props: SvgIconProps) => React.ReactElement;
|
|
45
|
-
export declare const Play: (props: SvgIconProps) => React.ReactElement;
|
|
46
|
-
export declare const StepBackward: (props: SvgIconProps) => React.ReactElement;
|
|
47
|
-
export declare const StepForward: (props: SvgIconProps) => React.ReactElement;
|
|
48
|
-
export declare const Info: (props: SvgIconProps) => React.ReactElement;
|
|
49
|
-
interface TextIconProps extends SvgIconProps {
|
|
50
|
-
text?: string;
|
|
51
|
-
}
|
|
52
|
-
export declare const TextIcon: ({ text, ...props }: TextIconProps) => React.ReactElement;
|
|
53
|
-
export declare const FastForward: (props: SvgIconProps) => React.ReactElement;
|
|
54
|
-
export declare const SliderThumb: (props: SvgIconProps) => React.ReactElement;
|
|
55
|
-
export declare const Options: (props: SvgIconProps) => React.ReactElement;
|
|
56
|
-
export declare const ChevronLeft: (props: SvgIconProps) => React.ReactElement;
|
|
57
|
-
export declare const ChevronRight: (props: SvgIconProps) => React.ReactElement;
|
|
58
|
-
export declare const ChevronUp: (props: SvgIconProps) => React.ReactElement;
|
|
59
|
-
export declare const ChevronDown: (props: SvgIconProps) => React.ReactElement;
|
|
60
|
-
export declare const Layers: (props: SvgIconProps) => React.ReactElement;
|
|
61
|
-
export declare const Copy: (props: SvgIconProps) => React.ReactElement;
|
|
62
|
-
export declare const Filter: (props: SvgIconProps) => React.ReactElement;
|
|
63
|
-
export declare const Clear: (props: SvgIconProps) => React.ReactElement;
|
|
64
|
-
export declare const Search: (props: SvgIconProps) => React.ReactElement;
|
|
65
|
-
interface ResizeIconProps extends SvgIconProps {
|
|
66
|
-
isRightAligned?: boolean;
|
|
67
|
-
}
|
|
68
|
-
export declare const Resize: ({ isRightAligned, sx, ...props }: ResizeIconProps) => React.ReactElement;
|
|
69
|
-
export declare const List: React.FC;
|
|
70
|
-
export declare const Home: React.FC;
|
|
71
|
-
export declare const Minus: React.FC;
|
|
72
|
-
export declare const Equalizer: React.FC;
|
|
73
|
-
export declare const Link: React.FC<SvgIconProps>;
|
|
74
|
-
export declare const LinkOff: React.FC<SvgIconProps>;
|
|
75
|
-
export declare const Cached: React.FC;
|
|
76
|
-
export declare const CalendarToday: React.FC<SvgIconProps>;
|
|
77
|
-
export declare const WebAssetOff: React.FC<SvgIconProps>;
|
|
78
|
-
export declare const Notifications: React.FC<SvgIconProps>;
|
|
79
|
-
export declare const Update: React.FC<SvgIconProps>;
|
|
80
|
-
export declare const SubdirectoryArrowRight: React.FC<SvgIconProps>;
|
|
81
|
-
export declare const Speed: (props: SvgIconProps) => React.ReactElement;
|
|
82
|
-
export declare const DimensionsElevation: (props: SvgIconProps) => React.ReactElement;
|
|
83
|
-
export declare const DimensionsTime: (props: SvgIconProps) => React.ReactElement;
|
|
84
|
-
export declare const DimensionsRefTime: (props: SvgIconProps) => React.ReactElement;
|
|
85
|
-
export declare const DimensionsOther: (props: SvgIconProps) => React.ReactElement;
|
|
86
|
-
export declare const Picture: (props: SvgIconProps) => React.ReactElement;
|
|
87
|
-
export declare const CollapseWindow: (props: SvgIconProps) => React.ReactElement;
|
|
88
|
-
export declare const ExpandWindow: (props: SvgIconProps) => React.ReactElement;
|
|
89
|
-
export declare const CollapseLarge: (props: SvgIconProps) => React.ReactElement;
|
|
90
|
-
export declare const CollapseMedium: (props: SvgIconProps) => React.ReactElement;
|
|
91
|
-
export declare const CollapseSmall: (props: SvgIconProps) => React.ReactElement;
|
|
92
|
-
export declare const ExitDomain: (props: SvgIconProps) => React.ReactElement;
|
|
93
|
-
export declare const Menu: (props: SvgIconProps) => React.ReactElement;
|
|
94
|
-
export declare const None: (props: SvgIconProps) => React.ReactElement;
|
|
95
|
-
export declare const Both: (props: SvgIconProps) => React.ReactElement;
|
|
96
|
-
export declare const Share: (props: SvgIconProps) => React.ReactElement;
|
|
97
|
-
export declare const Snow: (props: SvgIconProps) => React.ReactElement;
|
|
98
|
-
export declare const Wind: (props: SvgIconProps) => React.ReactElement;
|
|
99
|
-
export declare const Rain: (props: SvgIconProps) => React.ReactElement;
|
|
100
|
-
export declare const Lightning: (props: SvgIconProps) => React.ReactElement;
|
|
101
|
-
export declare const Fog: (props: SvgIconProps) => React.ReactElement;
|
|
102
|
-
export declare const CoastalEvent: (props: SvgIconProps) => React.ReactElement;
|
|
103
|
-
export declare const TemperatureHigh: (props: SvgIconProps) => React.ReactElement;
|
|
104
|
-
export declare const TemperatureLow: (props: SvgIconProps) => React.ReactElement;
|
|
105
|
-
export declare const LockUnlocked: (props: SvgIconProps) => React.ReactElement;
|
|
106
|
-
export declare const LockLocked: (props: SvgIconProps) => React.ReactElement;
|
|
107
|
-
export declare const ArrowDropDownDown: (props: SvgIconProps) => React.ReactElement;
|
|
108
|
-
export declare const ArrowDropDownUp: (props: SvgIconProps) => React.ReactElement;
|
|
109
|
-
export declare const WorldMapProjection: (props: SvgIconProps) => React.ReactElement;
|
|
110
|
-
export declare const FunnelCloud: (props: SvgIconProps) => React.ReactElement;
|
|
111
|
-
export declare const CloudLoading: (props: SvgIconProps) => React.ReactElement;
|
|
112
|
-
export declare const CloudIdle: (props: SvgIconProps) => React.ReactElement;
|
|
113
|
-
export declare const Admin: ({ ...props }: SvgIconProps) => React.ReactElement;
|
|
114
|
-
export declare const Remove: (props: SvgIconProps) => React.ReactElement;
|
|
115
|
-
export declare const Expire: (props: SvgIconProps) => React.ReactElement;
|
|
116
|
-
export declare const Thunderstorm: (props: SvgIconProps) => React.ReactElement;
|
|
117
|
-
export declare const SevereWaves: (props: SvgIconProps) => React.ReactElement;
|
|
118
|
-
export declare const VulcanicEruption: (props: SvgIconProps) => React.ReactElement;
|
|
119
|
-
export declare const ModerateAircraftIcing: (props: SvgIconProps) => React.ReactElement;
|
|
120
|
-
export declare const SevereAircraftIcing: (props: SvgIconProps) => React.ReactElement;
|
|
121
|
-
export declare const SandStorm: (props: SvgIconProps) => React.ReactElement;
|
|
122
|
-
export declare const SevereTurbulence: (props: SvgIconProps) => React.ReactElement;
|
|
123
|
-
export declare const RadioactiveMaterials: (props: SvgIconProps) => React.ReactElement;
|
|
124
|
-
export declare const FreezingPrecipitation: (props: SvgIconProps) => React.ReactElement;
|
|
125
|
-
export declare const Haze: (props: SvgIconProps) => React.ReactElement;
|
|
126
|
-
export declare const ModerateTurbulence: (props: SvgIconProps) => React.ReactElement;
|
|
127
|
-
export declare const FlagNetherlands: (props: SvgIconProps) => React.ReactElement;
|
|
128
|
-
export declare const FlagFinland: (props: SvgIconProps) => React.ReactElement;
|
|
129
|
-
export declare const FlagNorway: (props: SvgIconProps) => React.ReactElement;
|
|
130
|
-
export declare const FlagBritain: (props: SvgIconProps) => React.ReactElement;
|
|
131
|
-
export declare const ColumnCollapse: (props: SvgIconProps) => React.ReactElement;
|
|
132
|
-
export declare const ColumnCollapsed: (props: SvgIconProps) => React.ReactElement;
|
|
133
|
-
export declare const SharedPresetsOtherUsers: (props: SvgIconProps) => React.ReactElement;
|
|
134
|
-
export declare const SharedPresetsMyUser: (props: SvgIconProps) => React.ReactElement;
|
|
135
|
-
export declare const Sources: (props: SvgIconProps) => React.ReactElement;
|
|
136
|
-
export declare const MeteoGate: (props: SvgIconProps) => React.ReactElement;
|
|
137
|
-
export declare const Overlayers: (props: SvgIconProps) => React.ReactElement;
|
|
138
|
-
export declare const SevereMountainWaves: (props: SvgIconProps) => React.ReactElement;
|
|
139
|
-
export declare const Airplane: (props: SvgIconProps) => React.ReactElement;
|
|
140
|
-
export declare const Pinned: (props: SvgIconProps) => React.ReactElement;
|
|
141
|
-
export declare const Region: (props: SvgIconProps) => React.ReactElement;
|
|
142
|
-
export declare const WorkspacePresetsSystemIcon: (props: SvgIconProps) => React.ReactElement;
|
|
143
|
-
export declare const WorkspacePresetsMyIcon: (props: SvgIconProps) => React.ReactElement;
|
|
144
|
-
export declare const DrawToolPolygon: (props: SvgIconProps) => React.ReactElement;
|
|
145
|
-
export declare const DrawToolSquare: (props: SvgIconProps) => React.ReactElement;
|
|
146
|
-
export declare const DrawToolRectangle: (props: SvgIconProps) => React.ReactElement;
|
|
147
|
-
export declare const DrawToolSmoothLine: (props: SvgIconProps) => React.ReactElement;
|
|
148
|
-
export declare const DrawToolCircle: (props: SvgIconProps) => React.ReactElement;
|
|
149
|
-
export declare const DrawToolPoint: (props: SvgIconProps) => React.ReactElement;
|
|
150
|
-
export declare const DrawToolOval: (props: SvgIconProps) => React.ReactElement;
|
|
151
|
-
export declare const DrawToolLineString: (props: SvgIconProps) => React.ReactElement;
|
|
152
|
-
export declare const DrawToolFreehand: (props: SvgIconProps) => React.ReactElement;
|
|
153
|
-
export declare const Measure: (props: SvgIconProps) => React.ReactElement;
|
|
154
|
-
export declare const LocationInfo: (props: SvgIconProps) => React.ReactElement;
|
|
155
|
-
export declare const RotateHandle: (props: SvgIconProps) => React.ReactElement;
|
|
156
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './Icons';
|
|
@@ -1,4 +0,0 @@
|
|
|
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";
|
|
2
|
-
export declare const locationPath = "M11.58 11.758a2.177 2.177 0 1 1 0-4.354 2.177 2.177 0 0 1 0 4.354m0-8.758A6.58 6.58 0 0 0 5 9.58C5 15.15 11.58 21 11.58 21s6.582-5.85 6.582-11.42A6.58 6.58 0 0 0 11.58 3";
|
|
3
|
-
export declare const arrowUpPath = "M-.08 2.96 2.88 0l2.96 2.96H3.39v8.01H2.37V2.96z";
|
|
4
|
-
export declare const rotatePath = "M15.8535534,21.2928932 L15.8535534,18.2971068 C12.49774536,17.5550421 10.06304054,16.3583754 8.54943893,14.7071068 C7.03583731,13.0558382 6.23483987,10.72250482 6.1464466,7.7071068 L3.1464466,7.7071068 L7.1464466,2.7071068 L11.1464466,7.7071068 L8.1464466,7.7071068 C8.36229059,10.28804398 9.10584334,12.28695847 10.37710485,13.7038503 C11.64836636,15.1207421 13.4738492,15.9851609 15.8535534,16.2971068 L15.8535534,13.2928932 L20.8535534,17.2928932 L15.8535534,21.2928932 Z";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './Paths';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './Providers';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './StoryHeader';
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import type { Theme as MUITheme } from '@mui/material';
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import type { NamedTheme } from '../../types';
|
|
4
|
-
import { ThemeTypes } from '../../types';
|
|
5
|
-
interface ThemeContextProps {
|
|
6
|
-
setThemeName?: (themeName: ThemeTypes) => void;
|
|
7
|
-
namedTheme?: NamedTheme;
|
|
8
|
-
}
|
|
9
|
-
export declare const ThemeContext: React.Context<Partial<ThemeContextProps>>;
|
|
10
|
-
export interface ThemeProviderProps {
|
|
11
|
-
children: React.ReactNode;
|
|
12
|
-
theme?: MUITheme;
|
|
13
|
-
defaultThemeName?: ThemeTypes;
|
|
14
|
-
disableCssBaseline?: boolean;
|
|
15
|
-
}
|
|
16
|
-
export declare const ThemeProvider: React.FC<ThemeProviderProps>;
|
|
17
|
-
export declare const useThemeContext: () => Partial<ThemeContextProps>;
|
|
18
|
-
export declare const ThemeWrapper: React.FC<ThemeProviderProps>;
|
|
19
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './ThemeContext';
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Accordion as MuiAccordion } from '@mui/material';
|
|
2
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
3
|
-
type Story = StoryObj<typeof MuiAccordion>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
};
|
|
7
|
-
export default _default;
|
|
8
|
-
export declare const AccordionLight: Story;
|
|
9
|
-
export declare const AccordionDark: Story;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Avatar as MuiAvatar } from '@mui/material';
|
|
2
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
3
|
-
type Story = StoryObj<typeof MuiAvatar>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
};
|
|
7
|
-
export default _default;
|
|
8
|
-
export declare const AvatarLight: Story;
|
|
9
|
-
export declare const AvatarDark: Story;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { Backdrop as MuiBackdrop } from '@mui/material';
|
|
2
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
3
|
-
import React from 'react';
|
|
4
|
-
type Story = StoryObj<typeof MuiBackdrop>;
|
|
5
|
-
declare const _default: {
|
|
6
|
-
title: string;
|
|
7
|
-
};
|
|
8
|
-
export default _default;
|
|
9
|
-
export declare const BackDropDemo: () => React.ReactElement;
|
|
10
|
-
export declare const BackDropLight: Story;
|
|
11
|
-
export declare const BackDropDark: Story;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
2
|
-
import { breakpoints } from '../utils/createTheme';
|
|
3
|
-
type Story = StoryObj<typeof breakpoints>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
};
|
|
7
|
-
export default _default;
|
|
8
|
-
export declare const Breakpoints: Story;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Button } from '@mui/material';
|
|
2
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
3
|
-
type Story = StoryObj<typeof Button>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
};
|
|
7
|
-
export default _default;
|
|
8
|
-
export declare const ButtonLight: Story;
|
|
9
|
-
export declare const ButtonDark: Story;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Card } from '@mui/material';
|
|
2
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
3
|
-
type Story = StoryObj<typeof Card>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
};
|
|
7
|
-
export default _default;
|
|
8
|
-
export declare const CardsLight: Story;
|
|
9
|
-
export declare const CardsDark: Story;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Typography } from '@mui/material';
|
|
2
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
3
|
-
type Story = StoryObj<typeof Typography>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
};
|
|
7
|
-
export default _default;
|
|
8
|
-
export declare const ColorsLight: Story;
|
|
9
|
-
export declare const ColorsDark: Story;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Typography } from '@mui/material';
|
|
2
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
3
|
-
type Story = StoryObj<typeof Typography>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
};
|
|
7
|
-
export default _default;
|
|
8
|
-
export declare const ElevationLight: Story;
|
|
9
|
-
export declare const ElevationDark: Story;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Box } from '@mui/material';
|
|
2
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
3
|
-
type Story = StoryObj<typeof Box>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
};
|
|
7
|
-
export default _default;
|
|
8
|
-
export declare const FormElementsLight: Story;
|
|
9
|
-
export declare const FormElementsDark: Story;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { IconButton } from '@mui/material';
|
|
2
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
3
|
-
type Story = StoryObj<typeof IconButton>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
};
|
|
7
|
-
export default _default;
|
|
8
|
-
export declare const IconButtonLight: Story;
|
|
9
|
-
export declare const IconButtonDark: Story;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import * as IconList from '../components/Icons';
|
|
4
|
-
type Story = StoryObj<typeof IconList>;
|
|
5
|
-
declare const _default: {
|
|
6
|
-
title: string;
|
|
7
|
-
};
|
|
8
|
-
export default _default;
|
|
9
|
-
export interface IconGridItemProps {
|
|
10
|
-
name: string;
|
|
11
|
-
icon: React.ReactNode;
|
|
12
|
-
}
|
|
13
|
-
export declare const IconsLight: Story;
|
|
14
|
-
export declare const IconsDark: Story;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { List as MuiList } from '@mui/material';
|
|
2
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
3
|
-
type Story = StoryObj<typeof MuiList>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
};
|
|
7
|
-
export default _default;
|
|
8
|
-
export declare const ListLight: Story;
|
|
9
|
-
export declare const ListDark: Story;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { MenuItem as MuiMenuItem } from '@mui/material';
|
|
2
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
3
|
-
type Story = StoryObj<typeof MuiMenuItem>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
tags: string[];
|
|
7
|
-
};
|
|
8
|
-
export default _default;
|
|
9
|
-
export declare const MenuItemLight: Story;
|
|
10
|
-
export declare const MenuItemDark: Story;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Select as MuiSelect } from '@mui/material';
|
|
2
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
3
|
-
type Story = StoryObj<typeof MuiSelect>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
};
|
|
7
|
-
export default _default;
|
|
8
|
-
export declare const SelectLight: Story;
|
|
9
|
-
export declare const SelectDark: Story;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Slider as MuiSlider } from '@mui/material';
|
|
2
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
3
|
-
type Story = StoryObj<typeof MuiSlider>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
};
|
|
7
|
-
export default _default;
|
|
8
|
-
export declare const SliderLight: Story;
|
|
9
|
-
export declare const SliderDark: Story;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Snackbar as MuiSnackbar } from '@mui/material';
|
|
2
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
3
|
-
type Story = StoryObj<typeof MuiSnackbar>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
};
|
|
7
|
-
export default _default;
|
|
8
|
-
export declare const SnackbarLight: Story;
|
|
9
|
-
export declare const SnackbarDark: Story;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Switch as MuiSwitch } from '@mui/material';
|
|
2
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
3
|
-
type Story = StoryObj<typeof MuiSwitch>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
};
|
|
7
|
-
export default _default;
|
|
8
|
-
export declare const SwitchLight: Story;
|
|
9
|
-
export declare const SwitchDark: Story;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { Table as MuiTable } from '@mui/material';
|
|
2
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
3
|
-
type Story = StoryObj<typeof MuiTable>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
};
|
|
7
|
-
export default _default;
|
|
8
|
-
export interface ExampleRow {
|
|
9
|
-
name: string;
|
|
10
|
-
calories: number;
|
|
11
|
-
fat: number;
|
|
12
|
-
carbs: number;
|
|
13
|
-
protein: number;
|
|
14
|
-
}
|
|
15
|
-
export declare const TableLight: Story;
|
|
16
|
-
export declare const TableDark: Story;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Tabs as MuiTabs } from '@mui/material';
|
|
2
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
3
|
-
type Story = StoryObj<typeof MuiTabs>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
};
|
|
7
|
-
export default _default;
|
|
8
|
-
export declare const TabsLight: Story;
|
|
9
|
-
export declare const TabsDark: Story;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { TextField as MuiTextField } from '@mui/material';
|
|
2
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
3
|
-
type Story = StoryObj<typeof MuiTextField>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
};
|
|
7
|
-
export default _default;
|
|
8
|
-
export declare const TextFieldLight: Story;
|
|
9
|
-
export declare const TextFieldDark: Story;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { ToggleButton } from '@mui/material';
|
|
2
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
3
|
-
type Story = StoryObj<typeof ToggleButton>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
};
|
|
7
|
-
export default _default;
|
|
8
|
-
export declare const ToggleButtonsLight: Story;
|
|
9
|
-
export declare const ToggleButtonsDark: Story;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Tooltip } from '@mui/material';
|
|
2
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
3
|
-
type Story = StoryObj<typeof Tooltip>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
};
|
|
7
|
-
export default _default;
|
|
8
|
-
export declare const TooltipLight: Story;
|
|
9
|
-
export declare const TooltipDark: Story;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Typography as MuiTypography } from '@mui/material';
|
|
2
|
-
import type { StoryObj } from '@storybook/react-webpack5';
|
|
3
|
-
type Story = StoryObj<typeof MuiTypography>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
};
|
|
7
|
-
export default _default;
|
|
8
|
-
export declare const TypographyLight: Story;
|
|
9
|
-
export declare const TypographyDark: Story;
|