@learningpool/ui 1.8.7 → 1.9.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/components/atoms/Button/Button.d.ts +1 -1
- package/components/landmarks/Header/HeaderStyles.d.ts +1 -1
- package/components/navigation/Drawer/Drawer.d.ts +1 -1
- package/components/navigation/MobileNavigation/MobileNavigationAvatar.js +46 -31
- package/components/navigation/MobileNavigation/MobileNavigationAvatarStyles.d.ts +207 -141
- package/components/navigation/MobileNavigation/MobileNavigationDrawer.js +39 -27
- package/components/navigation/MobileNavigation/MobileNavigationDrawerStyles.d.ts +75 -53
- package/components/navigation/MobileNavigation/MobileNavigationItem/MobileNavigationItemFlyoutMenuStyles.d.ts +4 -4
- package/components/navigation/MobileNavigation/MobileNavigationItem/MobileNavigationItemStyles.d.ts +6 -6
- package/components/navigation/MobileNavigation/MobileNavigationSearchStyles.d.ts +68 -46
- package/components/navigation/MobileNavigation/MobileNavigationStyles.d.ts +1 -1
- package/components/navigation/VerticalNavigation/VerticalNavigation.js +131 -105
- package/components/navigation/VerticalNavigation/VerticalNavigationAvatar.js +42 -18
- package/components/navigation/VerticalNavigation/VerticalNavigationAvatarStyles.d.ts +207 -141
- package/components/navigation/VerticalNavigation/VerticalNavigationItem/VerticalNavigationItemFlyoutMenuStyles.d.ts +4 -4
- package/components/navigation/VerticalNavigation/VerticalNavigationItem/VerticalNavigationItemStyles.d.ts +6 -6
- package/components/navigation/VerticalNavigation/VerticalNavigationStyles.d.ts +69 -47
- package/components/stream/AppHub/AppHubCustomStyles.d.ts +4 -4
- package/components/stream/AppHub/AppHubProductStyles.d.ts +3 -3
- package/components/stream/AppHub/AppHubStyles.d.ts +2 -2
- package/components/stream/AppSwitcher/AppSwitcher.d.ts +10 -2
- package/components/stream/AppSwitcher/AppSwitcher.js +9 -7
- package/components/stream/AppSwitcher/AppSwitcherStylesStandalone.d.ts +16 -0
- package/components/stream/AppSwitcher/AppSwitcherStylesStandalone.js +22 -0
- package/components/stream/AppSwitcher/constants.d.ts +19 -0
- package/components/stream/AppSwitcher/constants.js +19 -0
- package/package.json +4 -3
- package/utils/helpers.d.ts +12 -9
- package/utils/helpers.js +41 -21
|
@@ -9,6 +9,15 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
9
|
};
|
|
10
10
|
return __assign.apply(this, arguments);
|
|
11
11
|
};
|
|
12
|
+
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
13
|
+
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
14
|
+
if (ar || !(i in from)) {
|
|
15
|
+
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
16
|
+
ar[i] = from[i];
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
20
|
+
};
|
|
12
21
|
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
13
22
|
import * as React from 'react';
|
|
14
23
|
import { useTheme } from '@mui/material/styles';
|
|
@@ -16,7 +25,7 @@ import { List, ListItemText } from '../../../index';
|
|
|
16
25
|
import { StyledSwipeableDrawer, StyledBox, StyledListItem, StyledDivider, StyledListSecondaryItem, StyledDrawerLogo, StyledDrawerLogoText, StyledListSecondaryList, StyledListItemText, StyledListSecondaryButton, StyledChildList, StyledChildListItem, StyledChildListItemText, StyledListItemButton, StyledChildListItemButton } from './MobileNavigationDrawerStyles';
|
|
17
26
|
import { StreamSuiteLogo } from '../../../assets/Images';
|
|
18
27
|
import { animated } from '@react-spring/web';
|
|
19
|
-
import {
|
|
28
|
+
import { useFadeIn } from '../../../utils/helpers';
|
|
20
29
|
import { getOffsetNavigationContrastText } from '../helpers';
|
|
21
30
|
import { defaultAttributes } from '../../../utils/dataAttributes';
|
|
22
31
|
export default function SwipeableTemporaryDrawer(props) {
|
|
@@ -39,33 +48,36 @@ export default function SwipeableTemporaryDrawer(props) {
|
|
|
39
48
|
handleOpenState(open);
|
|
40
49
|
};
|
|
41
50
|
};
|
|
42
|
-
//
|
|
43
|
-
//
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
}) })), secondaryItems && secondaryItems.length > 0 && (_jsxs(_Fragment, { children: [_jsx(animated.div, __assign({ style: useStaggerAnimation(isDrawerOpen, animationCount, incrementAnimationCount) }, { children: _jsx(StyledDivider, {}) })), _jsx(StyledListSecondaryList, __assign({ "data-id": dataIds.MobileNavDrawerSecondaryList }, { children: secondaryItems && secondaryItems.length > 0 && secondaryItems.map(function (item, index) { return (_jsx(StyledListSecondaryItem, __assign({ "data-id": dataIds.MobileNavDrawerSecondaryItem, disablePadding: true,
|
|
51
|
+
// Workaround to handle the react-spring calls without
|
|
52
|
+
// adding additional hook calls on prop or state changes
|
|
53
|
+
// --
|
|
54
|
+
// Store the total possible number of animations in a ref
|
|
55
|
+
// this way the number of hook calls never changes
|
|
56
|
+
// --
|
|
57
|
+
// First item starts at 70ms, see STAGGER_ITEMS_DELAY in helpers.js
|
|
58
|
+
var additionalItems = ['logo', 'divider'];
|
|
59
|
+
var totalItems = __spreadArray(__spreadArray(__spreadArray([], items !== null && items !== void 0 ? items : [], true), secondaryItems !== null && secondaryItems !== void 0 ? secondaryItems : [], true), additionalItems, true);
|
|
60
|
+
var animationRefs = React.useRef(totalItems && totalItems.map(function (item, index) { return useFadeIn(index, !isOpen); }));
|
|
61
|
+
var list = function () {
|
|
62
|
+
var _a;
|
|
63
|
+
return (_jsxs(StyledBox, __assign({ onClick: toggleDrawer(false), onKeyDown: toggleDrawer(false) }, { children: [_jsxs(StyledDrawerLogo, __assign({ "data-id": dataIds.MobileNavDrawerBrand, onClick: logoOnClick !== null && logoOnClick !== void 0 ? logoOnClick : null, style: animationRefs.current[0] }, { children: [logo
|
|
64
|
+
? typeof logo === 'string'
|
|
65
|
+
? (_jsx("img", { height: 38, width: 38, src: logo, alt: logoText !== null && logoText !== void 0 ? logoText : 'Site Logo' }))
|
|
66
|
+
: logo
|
|
67
|
+
: (_jsx(StreamSuiteLogo, { style: {
|
|
68
|
+
fill: getOffsetNavigationContrastText(theme)
|
|
69
|
+
} })), _jsx(StyledDrawerLogoText, __assign({ variant: 'body1' }, { children: logoText !== null && logoText !== void 0 ? logoText : 'Site Logo' }))] })), _jsx(List, __assign({ "data-id": dataIds.MobileNavDrawerPrimaryList }, { children: items && items.length > 0 && items.map(function (item, index) {
|
|
70
|
+
var label = item.label, children = item.children, onClick = item.onClick;
|
|
71
|
+
return (_jsxs(StyledListItem, __assign({ "data-id": dataIds.MobileNavDrawerPrimaryItem, disablePadding: true,
|
|
64
72
|
// @ts-expect-error
|
|
65
|
-
component: animated.li, style:
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
73
|
+
component: animated.li, style: animationRefs.current[index] }, { children: [_jsx(StyledListItemButton, __assign({ onClick: onClick }, { children: _jsx(StyledListItemText, { primary: label }) })), children && children.length > 0 && (_jsx(StyledChildList, __assign({ "data-id": dataIds.MobileNavDrawerPrimaryChildList, "aria-label": label }, { children: children.map(function (childItem) { return (_jsx(StyledChildListItem, __assign({ "data-id": dataIds.MobileNavDrawerPrimaryChildItem }, { children: _jsx(StyledChildListItemButton, __assign({ onClick: childItem === null || childItem === void 0 ? void 0 : childItem.onClick }, { children: _jsx(StyledChildListItemText, { primary: childItem === null || childItem === void 0 ? void 0 : childItem.label }, childItem === null || childItem === void 0 ? void 0 : childItem.label) })) }), childItem === null || childItem === void 0 ? void 0 : childItem.label)); }) })))] }), label));
|
|
74
|
+
}) })), secondaryItems && secondaryItems.length > 0 && (_jsxs(_Fragment, { children: [_jsx(animated.div, __assign({ style: animationRefs.current[((_a = items === null || items === void 0 ? void 0 : items.length) !== null && _a !== void 0 ? _a : 0) + 1] }, { children: _jsx(StyledDivider, {}) })), _jsx(StyledListSecondaryList, __assign({ "data-id": dataIds.MobileNavDrawerSecondaryList }, { children: secondaryItems && secondaryItems.length > 0 && secondaryItems.map(function (item, index) {
|
|
75
|
+
var _a;
|
|
76
|
+
return (_jsx(StyledListSecondaryItem, __assign({ "data-id": dataIds.MobileNavDrawerSecondaryItem, disablePadding: true,
|
|
77
|
+
// @ts-expect-error
|
|
78
|
+
component: animated.li, style: animationRefs.current[((_a = items === null || items === void 0 ? void 0 : items.length) !== null && _a !== void 0 ? _a : 0) + index + 2] }, { children: _jsx(StyledListSecondaryButton, __assign({ onClick: item === null || item === void 0 ? void 0 : item.onClick }, { children: _jsx(ListItemText, { primary: item.label }) })) }), item.label));
|
|
79
|
+
}) }))] }))] })));
|
|
80
|
+
};
|
|
69
81
|
return (_jsx("aside", { children: _jsx(StyledSwipeableDrawer, __assign({ "data-id": dataIds.MobileNavDrawerPanel, anchor: 'bottom', open: isOpen, onClose: toggleDrawer(false), hideBackdrop: true, ModalProps: {
|
|
70
82
|
keepMounted: true
|
|
71
83
|
} }, { children: list() })) }));
|
|
@@ -16,6 +16,7 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
16
16
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
17
17
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
18
18
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
19
|
+
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
19
20
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
20
21
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
21
22
|
animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -95,6 +96,7 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
95
96
|
breakInside?: import("csstype").Property.BreakInside | undefined;
|
|
96
97
|
captionSide?: import("csstype").Property.CaptionSide | undefined;
|
|
97
98
|
caretColor?: import("csstype").Property.CaretColor | undefined;
|
|
99
|
+
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
98
100
|
clear?: import("csstype").Property.Clear | undefined;
|
|
99
101
|
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
100
102
|
color?: import("csstype").Property.Color | undefined;
|
|
@@ -109,6 +111,12 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
109
111
|
columnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
110
112
|
columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
111
113
|
contain?: import("csstype").Property.Contain | undefined;
|
|
114
|
+
containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
|
|
115
|
+
containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
|
|
116
|
+
containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
|
|
117
|
+
containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
|
|
118
|
+
containerName?: import("csstype").Property.ContainerName | undefined;
|
|
119
|
+
containerType?: import("csstype").Property.ContainerType | undefined;
|
|
112
120
|
content?: import("csstype").Property.Content | undefined;
|
|
113
121
|
contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
|
|
114
122
|
counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
|
|
@@ -130,6 +138,7 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
130
138
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
131
139
|
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
132
140
|
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
|
|
141
|
+
fontPalette?: import("csstype").Property.FontPalette | undefined;
|
|
133
142
|
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
134
143
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
135
144
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
@@ -140,6 +149,7 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
140
149
|
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
141
150
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
142
151
|
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
|
|
152
|
+
fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
|
|
143
153
|
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
|
|
144
154
|
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
|
|
145
155
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
@@ -159,6 +169,7 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
159
169
|
hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
|
|
160
170
|
height?: import("csstype").Property.Height<string | number> | undefined;
|
|
161
171
|
hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
|
|
172
|
+
hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
|
|
162
173
|
hyphens?: import("csstype").Property.Hyphens | undefined;
|
|
163
174
|
imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
|
|
164
175
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
@@ -166,11 +177,8 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
166
177
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
167
178
|
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
168
179
|
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
169
|
-
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
170
|
-
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
171
180
|
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
172
181
|
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
173
|
-
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
174
182
|
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
175
183
|
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
176
184
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
@@ -186,16 +194,15 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
186
194
|
listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
|
|
187
195
|
listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
|
|
188
196
|
listStyleType?: import("csstype").Property.ListStyleType | undefined;
|
|
189
|
-
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
190
197
|
marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
|
|
191
198
|
marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
|
|
192
199
|
marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
|
|
193
|
-
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
194
200
|
marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
195
201
|
marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
196
202
|
marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
|
|
197
203
|
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
198
204
|
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
205
|
+
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
199
206
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
200
207
|
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
201
208
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
@@ -211,6 +218,8 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
211
218
|
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
212
219
|
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
213
220
|
maskType?: import("csstype").Property.MaskType | undefined;
|
|
221
|
+
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
222
|
+
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
214
223
|
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
215
224
|
maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
|
|
216
225
|
maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
|
|
@@ -230,6 +239,7 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
230
239
|
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
231
240
|
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
232
241
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
242
|
+
offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
|
|
233
243
|
offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
|
|
234
244
|
offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
235
245
|
opacity?: import("csstype").Property.Opacity | undefined;
|
|
@@ -251,23 +261,21 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
251
261
|
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
252
262
|
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
253
263
|
overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
|
|
254
|
-
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
255
264
|
paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
|
|
256
265
|
paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
|
|
257
266
|
paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
|
|
258
|
-
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
259
267
|
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
260
268
|
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
261
269
|
paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
|
|
262
270
|
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
263
271
|
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
272
|
+
page?: import("csstype").Property.Page | undefined;
|
|
264
273
|
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
265
274
|
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
266
275
|
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
267
276
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
268
277
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
269
278
|
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
270
|
-
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
271
279
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
272
280
|
position?: import("csstype").Property.Position | undefined;
|
|
273
281
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
@@ -281,36 +289,31 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
281
289
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
282
290
|
scale?: string | number | readonly [number, number] | undefined;
|
|
283
291
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
284
|
-
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
285
|
-
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
286
292
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
287
293
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
288
294
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
289
|
-
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
290
295
|
scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
|
|
291
296
|
scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
|
|
292
297
|
scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
293
298
|
scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
294
299
|
scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
295
|
-
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
296
|
-
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
297
300
|
scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
|
|
298
301
|
scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
|
|
299
302
|
scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
|
|
300
|
-
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
301
303
|
scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
|
|
302
304
|
scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
|
|
303
305
|
scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
|
|
304
306
|
scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
|
|
305
307
|
scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
|
|
306
308
|
scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
|
|
307
|
-
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
308
309
|
scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
309
310
|
scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
310
311
|
scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
311
312
|
scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
312
313
|
scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
|
|
313
314
|
scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
|
|
315
|
+
scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
|
|
316
|
+
scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
|
|
314
317
|
scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
|
|
315
318
|
scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
|
|
316
319
|
scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
|
|
@@ -328,7 +331,6 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
328
331
|
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
|
|
329
332
|
textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
330
333
|
textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
331
|
-
textDecorationWidth?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
332
334
|
textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
333
335
|
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
334
336
|
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
@@ -356,6 +358,7 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
356
358
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
357
359
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
358
360
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
361
|
+
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
359
362
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
360
363
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
361
364
|
widows?: import("csstype").Property.Widows | undefined;
|
|
@@ -387,8 +390,11 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
387
390
|
borderStyle?: import("csstype").Property.BorderStyle | undefined;
|
|
388
391
|
borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
|
|
389
392
|
borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
|
|
393
|
+
caret?: import("csstype").Property.Caret | undefined;
|
|
390
394
|
columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
391
395
|
columns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
396
|
+
containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
|
|
397
|
+
container?: import("csstype").Property.Container | undefined;
|
|
392
398
|
flex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
393
399
|
flexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
394
400
|
font?: import("csstype").Property.Font | undefined;
|
|
@@ -398,9 +404,14 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
398
404
|
gridColumn?: import("csstype").Property.GridColumn | undefined;
|
|
399
405
|
gridRow?: import("csstype").Property.GridRow | undefined;
|
|
400
406
|
gridTemplate?: import("csstype").Property.GridTemplate | undefined;
|
|
407
|
+
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
408
|
+
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
409
|
+
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
401
410
|
lineClamp?: import("csstype").Property.LineClamp | undefined;
|
|
402
411
|
listStyle?: import("csstype").Property.ListStyle | undefined;
|
|
403
412
|
margin?: import("csstype").Property.Margin<string | number> | undefined;
|
|
413
|
+
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
414
|
+
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
404
415
|
mask?: import("csstype").Property.Mask<string | number> | undefined;
|
|
405
416
|
maskBorder?: import("csstype").Property.MaskBorder | undefined;
|
|
406
417
|
motion?: import("csstype").Property.Offset<string | number> | undefined;
|
|
@@ -409,8 +420,19 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
409
420
|
overflow?: import("csstype").Property.Overflow | undefined;
|
|
410
421
|
overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
|
|
411
422
|
padding?: import("csstype").Property.Padding<string | number> | undefined;
|
|
423
|
+
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
424
|
+
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
425
|
+
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
412
426
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
413
427
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
428
|
+
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
429
|
+
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
430
|
+
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
431
|
+
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
432
|
+
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
433
|
+
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
434
|
+
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
435
|
+
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
414
436
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
415
437
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
416
438
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
@@ -424,6 +446,7 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
424
446
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
425
447
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
426
448
|
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
449
|
+
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
427
450
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
428
451
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
429
452
|
MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
@@ -436,7 +459,6 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
436
459
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
437
460
|
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
438
461
|
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
439
|
-
MozColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
440
462
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
441
463
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
442
464
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -470,7 +492,6 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
470
492
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
471
493
|
MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
|
|
472
494
|
msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
|
|
473
|
-
msAlignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
474
495
|
msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
|
|
475
496
|
msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
|
|
476
497
|
msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
|
|
@@ -491,7 +512,6 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
491
512
|
msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
492
513
|
msHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
493
514
|
msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
|
|
494
|
-
msJustifySelf?: import("csstype").Property.JustifySelf | undefined;
|
|
495
515
|
msLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
496
516
|
msOrder?: import("csstype").Property.Order | undefined;
|
|
497
517
|
msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
|
|
@@ -514,6 +534,7 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
514
534
|
msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
|
|
515
535
|
msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
|
|
516
536
|
msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
|
|
537
|
+
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
517
538
|
msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
|
|
518
539
|
msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
|
|
519
540
|
msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
@@ -563,7 +584,6 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
563
584
|
WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
|
|
564
585
|
WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
565
586
|
WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
566
|
-
WebkitColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
567
587
|
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
568
588
|
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
569
589
|
WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -692,7 +712,6 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
692
712
|
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
693
713
|
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
|
|
694
714
|
scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
|
|
695
|
-
scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
696
715
|
KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
697
716
|
KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
698
717
|
KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -708,7 +727,6 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
708
727
|
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
709
728
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
710
729
|
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
711
|
-
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
712
730
|
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
713
731
|
MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
714
732
|
MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -739,7 +757,6 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
739
757
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
740
758
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
741
759
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
742
|
-
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
743
760
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
744
761
|
OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
745
762
|
OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
@@ -831,25 +848,30 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
831
848
|
suppressContentEditableWarning?: boolean | undefined;
|
|
832
849
|
suppressHydrationWarning?: boolean | undefined;
|
|
833
850
|
accessKey?: string | undefined;
|
|
834
|
-
|
|
851
|
+
autoFocus?: boolean | undefined;
|
|
852
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | undefined;
|
|
835
853
|
contextMenu?: string | undefined;
|
|
836
854
|
dir?: string | undefined;
|
|
837
|
-
draggable?: (boolean | "
|
|
855
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
|
838
856
|
hidden?: boolean | undefined;
|
|
839
857
|
id?: string | undefined;
|
|
840
858
|
lang?: string | undefined;
|
|
859
|
+
nonce?: string | undefined;
|
|
841
860
|
placeholder?: string | undefined;
|
|
842
|
-
spellCheck?: (boolean | "
|
|
861
|
+
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
843
862
|
tabIndex?: number | undefined;
|
|
844
863
|
translate?: "yes" | "no" | undefined;
|
|
845
864
|
radioGroup?: string | undefined;
|
|
846
865
|
role?: import("react").AriaRole | undefined;
|
|
847
866
|
about?: string | undefined;
|
|
867
|
+
content?: string | undefined;
|
|
848
868
|
datatype?: string | undefined;
|
|
849
869
|
inlist?: any;
|
|
850
870
|
prefix?: string | undefined;
|
|
851
871
|
property?: string | undefined;
|
|
872
|
+
rel?: string | undefined;
|
|
852
873
|
resource?: string | undefined;
|
|
874
|
+
rev?: string | undefined;
|
|
853
875
|
typeof?: string | undefined;
|
|
854
876
|
vocab?: string | undefined;
|
|
855
877
|
autoCapitalize?: string | undefined;
|
|
@@ -864,50 +886,50 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
864
886
|
results?: number | undefined;
|
|
865
887
|
security?: string | undefined;
|
|
866
888
|
unselectable?: "on" | "off" | undefined;
|
|
867
|
-
inputMode?: "text" | "
|
|
889
|
+
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
868
890
|
is?: string | undefined;
|
|
869
891
|
'aria-activedescendant'?: string | undefined;
|
|
870
|
-
'aria-atomic'?: (boolean | "
|
|
871
|
-
'aria-autocomplete'?: "
|
|
872
|
-
'aria-busy'?: (boolean | "
|
|
873
|
-
'aria-checked'?: boolean | "
|
|
892
|
+
'aria-atomic'?: (boolean | "false" | "true") | undefined;
|
|
893
|
+
'aria-autocomplete'?: "none" | "list" | "both" | "inline" | undefined;
|
|
894
|
+
'aria-busy'?: (boolean | "false" | "true") | undefined;
|
|
895
|
+
'aria-checked'?: boolean | "mixed" | "false" | "true" | undefined;
|
|
874
896
|
'aria-colcount'?: number | undefined;
|
|
875
897
|
'aria-colindex'?: number | undefined;
|
|
876
898
|
'aria-colspan'?: number | undefined;
|
|
877
899
|
'aria-controls'?: string | undefined;
|
|
878
|
-
'aria-current'?: boolean | "time" | "
|
|
900
|
+
'aria-current'?: boolean | "time" | "page" | "step" | "false" | "true" | "location" | "date" | undefined;
|
|
879
901
|
'aria-describedby'?: string | undefined;
|
|
880
902
|
'aria-details'?: string | undefined;
|
|
881
|
-
'aria-disabled'?: (boolean | "
|
|
882
|
-
'aria-dropeffect'?: "link" | "none" | "copy" | "
|
|
903
|
+
'aria-disabled'?: (boolean | "false" | "true") | undefined;
|
|
904
|
+
'aria-dropeffect'?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
|
883
905
|
'aria-errormessage'?: string | undefined;
|
|
884
|
-
'aria-expanded'?: (boolean | "
|
|
906
|
+
'aria-expanded'?: (boolean | "false" | "true") | undefined;
|
|
885
907
|
'aria-flowto'?: string | undefined;
|
|
886
|
-
'aria-grabbed'?: (boolean | "
|
|
887
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
888
|
-
'aria-hidden'?: (boolean | "
|
|
889
|
-
'aria-invalid'?: boolean | "
|
|
908
|
+
'aria-grabbed'?: (boolean | "false" | "true") | undefined;
|
|
909
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "listbox" | "false" | "true" | "tree" | undefined;
|
|
910
|
+
'aria-hidden'?: (boolean | "false" | "true") | undefined;
|
|
911
|
+
'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
890
912
|
'aria-keyshortcuts'?: string | undefined;
|
|
891
913
|
'aria-label'?: string | undefined;
|
|
892
914
|
'aria-labelledby'?: string | undefined;
|
|
893
915
|
'aria-level'?: number | undefined;
|
|
894
916
|
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
|
895
|
-
'aria-modal'?: (boolean | "
|
|
896
|
-
'aria-multiline'?: (boolean | "
|
|
897
|
-
'aria-multiselectable'?: (boolean | "
|
|
917
|
+
'aria-modal'?: (boolean | "false" | "true") | undefined;
|
|
918
|
+
'aria-multiline'?: (boolean | "false" | "true") | undefined;
|
|
919
|
+
'aria-multiselectable'?: (boolean | "false" | "true") | undefined;
|
|
898
920
|
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
|
899
921
|
'aria-owns'?: string | undefined;
|
|
900
922
|
'aria-placeholder'?: string | undefined;
|
|
901
923
|
'aria-posinset'?: number | undefined;
|
|
902
|
-
'aria-pressed'?: boolean | "
|
|
903
|
-
'aria-readonly'?: (boolean | "
|
|
924
|
+
'aria-pressed'?: boolean | "mixed" | "false" | "true" | undefined;
|
|
925
|
+
'aria-readonly'?: (boolean | "false" | "true") | undefined;
|
|
904
926
|
'aria-relevant'?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
905
|
-
'aria-required'?: (boolean | "
|
|
927
|
+
'aria-required'?: (boolean | "false" | "true") | undefined;
|
|
906
928
|
'aria-roledescription'?: string | undefined;
|
|
907
929
|
'aria-rowcount'?: number | undefined;
|
|
908
930
|
'aria-rowindex'?: number | undefined;
|
|
909
931
|
'aria-rowspan'?: number | undefined;
|
|
910
|
-
'aria-selected'?: (boolean | "
|
|
932
|
+
'aria-selected'?: (boolean | "false" | "true") | undefined;
|
|
911
933
|
'aria-setsize'?: number | undefined;
|
|
912
934
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
913
935
|
'aria-valuemax'?: number | undefined;
|
|
@@ -1085,7 +1107,7 @@ export declare const StyledDrawerLogo: import("@emotion/styled").StyledComponent
|
|
|
1085
1107
|
viewBox?: string | import("@react-spring/shared/dist/declarations/src/fluids").FluidValue<string, any> | undefined;
|
|
1086
1108
|
} & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
1087
1109
|
export declare const StyledDrawerLogoText: import("@emotion/styled").StyledComponent<import("@mui/system").SystemProps<import("@mui/material").Theme> & {
|
|
1088
|
-
align?: "
|
|
1110
|
+
align?: "left" | "right" | "inherit" | "center" | "justify" | undefined;
|
|
1089
1111
|
children?: import("react").ReactNode;
|
|
1090
1112
|
classes?: Partial<import("@mui/material").TypographyClasses> | undefined;
|
|
1091
1113
|
gutterBottom?: boolean | undefined;
|
|
@@ -1108,7 +1130,7 @@ export declare const StyledListItem: import("@emotion/styled").StyledComponent<{
|
|
|
1108
1130
|
} | undefined;
|
|
1109
1131
|
} & import("@mui/material/OverridableComponent").CommonProps & Omit<Pick<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "key" | keyof import("react").LiHTMLAttributes<HTMLLIElement>> & {
|
|
1110
1132
|
ref?: ((instance: HTMLLIElement | null) => void) | import("react").RefObject<HTMLLIElement> | null | undefined;
|
|
1111
|
-
}, "className" | "style" | "classes" | "button" | "
|
|
1133
|
+
}, "className" | "style" | "classes" | "button" | "autoFocus" | "children" | "sx" | "alignItems" | "disabled" | "selected" | "dense" | "components" | "componentsProps" | "disablePadding" | "disableGutters" | "divider" | "ContainerComponent" | "ContainerProps" | "secondaryAction"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
1112
1134
|
export declare const StyledListItemButton: import("@emotion/styled").StyledComponent<import("@mui/material").ListItemButtonBaseProps & Omit<{
|
|
1113
1135
|
action?: import("react").Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
1114
1136
|
centerRipple?: boolean | undefined;
|
|
@@ -1127,7 +1149,7 @@ export declare const StyledListItemButton: import("@emotion/styled").StyledCompo
|
|
|
1127
1149
|
touchRippleRef?: import("react").Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
1128
1150
|
}, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof import("react").HTMLAttributes<HTMLDivElement>> & {
|
|
1129
1151
|
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
1130
|
-
}, "className" | "style" | "classes" | "tabIndex" | "children" | "sx" | "alignItems" | "action" | "centerRipple" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "
|
|
1152
|
+
}, "className" | "style" | "classes" | "autoFocus" | "tabIndex" | "children" | "sx" | "alignItems" | "action" | "centerRipple" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "selected" | "dense" | "disableGutters" | "divider"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
1131
1153
|
export declare const StyledListItemText: import("@emotion/styled").StyledComponent<import("@mui/material").ListItemTextProps<import("react").ElementType<any>, import("react").ElementType<any>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
1132
1154
|
export declare const StyledChildList: import("@emotion/styled").StyledComponent<{
|
|
1133
1155
|
children?: import("react").ReactNode;
|
|
@@ -1150,7 +1172,7 @@ export declare const StyledChildListItem: import("@emotion/styled").StyledCompon
|
|
|
1150
1172
|
} | undefined;
|
|
1151
1173
|
} & import("@mui/material/OverridableComponent").CommonProps & Omit<Pick<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "key" | keyof import("react").LiHTMLAttributes<HTMLLIElement>> & {
|
|
1152
1174
|
ref?: ((instance: HTMLLIElement | null) => void) | import("react").RefObject<HTMLLIElement> | null | undefined;
|
|
1153
|
-
}, "className" | "style" | "classes" | "button" | "
|
|
1175
|
+
}, "className" | "style" | "classes" | "button" | "autoFocus" | "children" | "sx" | "alignItems" | "disabled" | "selected" | "dense" | "components" | "componentsProps" | "disablePadding" | "disableGutters" | "divider" | "ContainerComponent" | "ContainerProps" | "secondaryAction"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
1154
1176
|
export declare const StyledChildListItemButton: import("@emotion/styled").StyledComponent<import("@mui/material").ListItemButtonBaseProps & Omit<{
|
|
1155
1177
|
action?: import("react").Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
1156
1178
|
centerRipple?: boolean | undefined;
|
|
@@ -1169,7 +1191,7 @@ export declare const StyledChildListItemButton: import("@emotion/styled").Styled
|
|
|
1169
1191
|
touchRippleRef?: import("react").Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
1170
1192
|
}, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof import("react").HTMLAttributes<HTMLDivElement>> & {
|
|
1171
1193
|
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
1172
|
-
}, "className" | "style" | "classes" | "tabIndex" | "children" | "sx" | "alignItems" | "action" | "centerRipple" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "
|
|
1194
|
+
}, "className" | "style" | "classes" | "autoFocus" | "tabIndex" | "children" | "sx" | "alignItems" | "action" | "centerRipple" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "selected" | "dense" | "disableGutters" | "divider"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
1173
1195
|
export declare const StyledChildListItemText: import("@emotion/styled").StyledComponent<import("@mui/material").ListItemTextProps<import("react").ElementType<any>, import("react").ElementType<any>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
1174
1196
|
export declare const StyledListSecondaryList: import("@emotion/styled").StyledComponent<{
|
|
1175
1197
|
children?: import("react").ReactNode;
|
|
@@ -1192,7 +1214,7 @@ export declare const StyledListSecondaryItem: import("@emotion/styled").StyledCo
|
|
|
1192
1214
|
} | undefined;
|
|
1193
1215
|
} & import("@mui/material/OverridableComponent").CommonProps & Omit<Pick<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "key" | keyof import("react").LiHTMLAttributes<HTMLLIElement>> & {
|
|
1194
1216
|
ref?: ((instance: HTMLLIElement | null) => void) | import("react").RefObject<HTMLLIElement> | null | undefined;
|
|
1195
|
-
}, "className" | "style" | "classes" | "button" | "
|
|
1217
|
+
}, "className" | "style" | "classes" | "button" | "autoFocus" | "children" | "sx" | "alignItems" | "disabled" | "selected" | "dense" | "components" | "componentsProps" | "disablePadding" | "disableGutters" | "divider" | "ContainerComponent" | "ContainerProps" | "secondaryAction"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
1196
1218
|
export declare const StyledListSecondaryButton: import("@emotion/styled").StyledComponent<import("@mui/material").ListItemButtonBaseProps & Omit<{
|
|
1197
1219
|
action?: import("react").Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
1198
1220
|
centerRipple?: boolean | undefined;
|
|
@@ -1211,5 +1233,5 @@ export declare const StyledListSecondaryButton: import("@emotion/styled").Styled
|
|
|
1211
1233
|
touchRippleRef?: import("react").Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
1212
1234
|
}, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof import("react").HTMLAttributes<HTMLDivElement>> & {
|
|
1213
1235
|
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
1214
|
-
}, "className" | "style" | "classes" | "tabIndex" | "children" | "sx" | "alignItems" | "action" | "centerRipple" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "
|
|
1236
|
+
}, "className" | "style" | "classes" | "autoFocus" | "tabIndex" | "children" | "sx" | "alignItems" | "action" | "centerRipple" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "selected" | "dense" | "disableGutters" | "divider"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
1215
1237
|
export declare const StyledDivider: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|