@learningpool/ui 1.15.5 → 1.16.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/assets/Images.js +7 -18
- package/components/atoms/Autocomplete/Autocomplete.js +3 -14
- package/components/atoms/Button/Button.js +2 -13
- package/components/atoms/Checkbox/Checkbox.js +3 -26
- package/components/atoms/IconButton/IconButton.js +2 -13
- package/components/atoms/Radio/Radio.js +3 -26
- package/components/atoms/Select/Select.js +3 -26
- package/components/atoms/Slider/Slider.js +3 -26
- package/components/atoms/Switch/Switch.js +3 -26
- package/components/atoms/TextField/TextField.js +2 -13
- package/components/atoms/ToggleButton/ToggleButton.js +3 -26
- package/components/datadisplay/Avatar/Avatar.js +13 -28
- package/components/datadisplay/Chip/Chip.js +3 -26
- package/components/datadisplay/List/List.js +2 -13
- package/components/feedback/Alert/Alert.js +3 -26
- package/components/landmarks/Header/Header.js +15 -41
- package/components/landmarks/Header/HeaderActionButtons.d.ts +1 -2
- package/components/landmarks/Header/HeaderActionButtons.js +22 -33
- package/components/landmarks/Header/HeaderStyles.js +54 -11
- package/components/navigation/Drawer/Drawer.js +5 -31
- package/components/navigation/MobileNavigation/MobileNavigation.js +70 -82
- package/components/navigation/MobileNavigation/MobileNavigationAvatar.js +75 -83
- package/components/navigation/MobileNavigation/MobileNavigationAvatarStyles.d.ts +102 -52
- package/components/navigation/MobileNavigation/MobileNavigationAvatarStyles.js +71 -13
- package/components/navigation/MobileNavigation/MobileNavigationDrawer.d.ts +1 -1
- package/components/navigation/MobileNavigation/MobileNavigationDrawer.js +41 -68
- package/components/navigation/MobileNavigation/MobileNavigationDrawerStyles.d.ts +34 -18
- package/components/navigation/MobileNavigation/MobileNavigationDrawerStyles.js +133 -20
- package/components/navigation/MobileNavigation/MobileNavigationItem/MobileNavigationItem.js +22 -45
- package/components/navigation/MobileNavigation/MobileNavigationItem/MobileNavigationItemFlyoutMenu.js +8 -19
- package/components/navigation/MobileNavigation/MobileNavigationItem/MobileNavigationItemFlyoutMenuStyles.js +151 -52
- package/components/navigation/MobileNavigation/MobileNavigationItem/MobileNavigationItemStyles.js +171 -50
- package/components/navigation/MobileNavigation/MobileNavigationMotion.js +11 -11
- package/components/navigation/MobileNavigation/MobileNavigationNotchIndicator.js +11 -15
- package/components/navigation/MobileNavigation/MobileNavigationSearch.d.ts +1 -2
- package/components/navigation/MobileNavigation/MobileNavigationSearch.js +25 -34
- package/components/navigation/MobileNavigation/MobileNavigationSearchStyles.d.ts +34 -18
- package/components/navigation/MobileNavigation/MobileNavigationSearchStyles.js +47 -9
- package/components/navigation/MobileNavigation/MobileNavigationStyles.js +262 -66
- package/components/navigation/MobileNavigation/MobileNavigationToggleSearchX.js +21 -20
- package/components/navigation/MobileNavigation/MobileNavigationToggleX.js +21 -20
- package/components/navigation/VerticalNavigation/VerticalNavigation.js +150 -185
- package/components/navigation/VerticalNavigation/VerticalNavigationAvatar.js +50 -61
- package/components/navigation/VerticalNavigation/VerticalNavigationAvatarStyles.d.ts +102 -52
- package/components/navigation/VerticalNavigation/VerticalNavigationAvatarStyles.js +86 -14
- package/components/navigation/VerticalNavigation/VerticalNavigationItem/VerticalNavigationItem.js +27 -51
- package/components/navigation/VerticalNavigation/VerticalNavigationItem/VerticalNavigationItemFlyoutMenu.js +15 -28
- package/components/navigation/VerticalNavigation/VerticalNavigationItem/VerticalNavigationItemFlyoutMenuStyles.js +135 -39
- package/components/navigation/VerticalNavigation/VerticalNavigationItem/VerticalNavigationItemStyles.js +167 -29
- package/components/navigation/VerticalNavigation/VerticalNavigationMotion.js +11 -11
- package/components/navigation/VerticalNavigation/VerticalNavigationStyles.d.ts +34 -18
- package/components/navigation/VerticalNavigation/VerticalNavigationStyles.js +236 -42
- package/components/navigation/helpers.d.ts +1 -2
- package/components/navigation/helpers.js +28 -32
- package/components/pages/ErrorPage/ErrorPage.js +6 -17
- package/components/pages/ErrorPage/ErrorPageStyles.js +13 -18
- package/components/pages/SideInSide/SideInSide.js +12 -23
- package/components/pages/SideInSide/SideInSideStyles.js +6 -6
- package/components/stream/AppHub/AppHub.js +13 -42
- package/components/stream/AppHub/AppHubAdvertStyles.js +24 -8
- package/components/stream/AppHub/AppHubBannerAdvert.d.ts +1 -2
- package/components/stream/AppHub/AppHubBannerAdvert.js +9 -20
- package/components/stream/AppHub/AppHubCustom.js +8 -19
- package/components/stream/AppHub/AppHubCustomStyles.d.ts +1 -1
- package/components/stream/AppHub/AppHubCustomStyles.js +78 -18
- package/components/stream/AppHub/AppHubProduct.js +26 -48
- package/components/stream/AppHub/AppHubProductStyles.js +104 -19
- package/components/stream/AppHub/AppHubStyles.js +31 -11
- package/components/stream/AppHub/constants.d.ts +1 -2
- package/components/stream/AppHub/constants.js +14 -14
- package/components/stream/AppSwitcher/AppSwitcher.js +225 -316
- package/components/stream/AppSwitcher/AppSwitcherItem.js +11 -22
- package/components/stream/AppSwitcher/AppSwitcherStyles.js +337 -42
- package/components/stream/AppSwitcher/AppSwitcherStylesStandalone.js +255 -21
- package/components/stream/AppSwitcher/PromotionalCampaignItem.js +7 -19
- package/components/stream/AppSwitcher/constants.js +3 -3
- package/lang/en-us.js +1 -1
- package/package.json +7 -2
- package/utils/constants.d.ts +7 -0
- package/utils/constants.js +11 -4
- package/utils/dataAttributes.js +1 -1
- package/utils/helpers.js +33 -40
- package/utils/hooks.js +10 -11
- package/utils/theme.js +26 -19
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
/// <reference types="react" />
|
|
3
|
-
/// <reference types="trusted-types" />
|
|
4
3
|
export declare const StyledSwipeableAvatar: import("@emotion/styled").StyledComponent<import("@mui/material/Drawer").DrawerProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
|
|
5
4
|
export declare const StyledBox: import("@emotion/styled").StyledComponent<import("@react-spring/web").AnimatedProps<{
|
|
6
5
|
className?: string | undefined;
|
|
@@ -18,6 +17,8 @@ export declare const StyledBox: import("@emotion/styled").StyledComponent<import
|
|
|
18
17
|
animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
19
18
|
animationName?: import("csstype").Property.AnimationName | undefined;
|
|
20
19
|
animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
20
|
+
animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
|
|
21
|
+
animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
|
|
21
22
|
animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
|
|
22
23
|
animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
23
24
|
appearance?: import("csstype").Property.Appearance | undefined;
|
|
@@ -139,6 +140,10 @@ export declare const StyledBox: import("@emotion/styled").StyledComponent<import
|
|
|
139
140
|
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
140
141
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
141
142
|
fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
|
|
143
|
+
fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
144
|
+
fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
|
|
145
|
+
fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
|
|
146
|
+
fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
|
|
142
147
|
fontVariant?: import("csstype").Property.FontVariant | undefined;
|
|
143
148
|
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
144
149
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
@@ -212,6 +217,7 @@ export declare const StyledBox: import("@emotion/styled").StyledComponent<import
|
|
|
212
217
|
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
213
218
|
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
214
219
|
maskType?: import("csstype").Property.MaskType | undefined;
|
|
220
|
+
masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
|
|
215
221
|
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
216
222
|
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
217
223
|
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
@@ -251,6 +257,7 @@ export declare const StyledBox: import("@emotion/styled").StyledComponent<import
|
|
|
251
257
|
overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
|
|
252
258
|
overflowX?: import("csstype").Property.OverflowX | undefined;
|
|
253
259
|
overflowY?: import("csstype").Property.OverflowY | undefined;
|
|
260
|
+
overlay?: import("csstype").Property.Overlay | undefined;
|
|
254
261
|
overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
|
|
255
262
|
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
256
263
|
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
@@ -338,12 +345,15 @@ export declare const StyledBox: import("@emotion/styled").StyledComponent<import
|
|
|
338
345
|
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
339
346
|
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
340
347
|
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
348
|
+
textWrap?: import("csstype").Property.TextWrap | undefined;
|
|
349
|
+
timelineScope?: import("csstype").Property.TimelineScope | undefined;
|
|
341
350
|
top?: import("csstype").Property.Top<string | number> | undefined;
|
|
342
351
|
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
343
352
|
transform?: string | undefined;
|
|
344
353
|
transformBox?: import("csstype").Property.TransformBox | undefined;
|
|
345
354
|
transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
346
355
|
transformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
356
|
+
transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
|
|
347
357
|
transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
348
358
|
transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
349
359
|
transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
@@ -352,9 +362,14 @@ export declare const StyledBox: import("@emotion/styled").StyledComponent<import
|
|
|
352
362
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
353
363
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
354
364
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
365
|
+
viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
366
|
+
viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
367
|
+
viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
|
|
355
368
|
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
356
369
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
357
370
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
371
|
+
whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
372
|
+
whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
358
373
|
widows?: import("csstype").Property.Widows | undefined;
|
|
359
374
|
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
360
375
|
willChange?: import("csstype").Property.WillChange | undefined;
|
|
@@ -366,6 +381,7 @@ export declare const StyledBox: import("@emotion/styled").StyledComponent<import
|
|
|
366
381
|
zoom?: import("csstype").Property.Zoom | undefined;
|
|
367
382
|
all?: import("csstype").Globals | undefined;
|
|
368
383
|
animation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
384
|
+
animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
|
|
369
385
|
background?: import("csstype").Property.Background<string | number> | undefined;
|
|
370
386
|
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
371
387
|
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
@@ -430,6 +446,7 @@ export declare const StyledBox: import("@emotion/styled").StyledComponent<import
|
|
|
430
446
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
431
447
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
432
448
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
449
|
+
viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
|
|
433
450
|
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
434
451
|
MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
435
452
|
MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -439,7 +456,6 @@ export declare const StyledBox: import("@emotion/styled").StyledComponent<import
|
|
|
439
456
|
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
440
457
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
441
458
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
442
|
-
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
443
459
|
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
444
460
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
445
461
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
@@ -466,20 +482,16 @@ export declare const StyledBox: import("@emotion/styled").StyledComponent<import
|
|
|
466
482
|
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
467
483
|
MozOrient?: import("csstype").Property.MozOrient | undefined;
|
|
468
484
|
MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
485
|
+
MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
486
|
+
MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
487
|
+
MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
488
|
+
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
469
489
|
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
470
490
|
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
471
|
-
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
472
|
-
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
473
491
|
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
|
|
474
492
|
MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
475
493
|
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
|
|
476
494
|
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
477
|
-
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
478
|
-
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
479
|
-
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
480
|
-
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
481
|
-
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
482
|
-
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
483
495
|
MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
|
|
484
496
|
MozUserModify?: import("csstype").Property.MozUserModify | undefined;
|
|
485
497
|
MozUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
@@ -659,7 +671,7 @@ export declare const StyledBox: import("@emotion/styled").StyledComponent<import
|
|
|
659
671
|
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
660
672
|
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
661
673
|
MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
662
|
-
|
|
674
|
+
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
663
675
|
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
664
676
|
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
665
677
|
msFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
@@ -717,6 +729,7 @@ export declare const StyledBox: import("@emotion/styled").StyledComponent<import
|
|
|
717
729
|
KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
718
730
|
KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
|
|
719
731
|
KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
732
|
+
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
720
733
|
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
721
734
|
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
722
735
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
@@ -738,17 +751,22 @@ export declare const StyledBox: import("@emotion/styled").StyledComponent<import
|
|
|
738
751
|
MozOpacity?: import("csstype").Property.Opacity | undefined;
|
|
739
752
|
MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
|
|
740
753
|
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
741
|
-
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
742
|
-
MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
743
|
-
MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
744
|
-
MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
745
|
-
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
746
754
|
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
747
755
|
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
756
|
+
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
757
|
+
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
748
758
|
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
749
759
|
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
750
760
|
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
751
761
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
762
|
+
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
763
|
+
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
764
|
+
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
765
|
+
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
766
|
+
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
767
|
+
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
768
|
+
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
769
|
+
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
752
770
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
753
771
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
754
772
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
@@ -781,8 +799,6 @@ export declare const StyledBox: import("@emotion/styled").StyledComponent<import
|
|
|
781
799
|
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
782
800
|
WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
783
801
|
WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
784
|
-
WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
785
|
-
WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
786
802
|
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
787
803
|
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
788
804
|
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
@@ -1116,6 +1132,8 @@ export declare const StyledBoxProfile: import("@emotion/styled").StyledComponent
|
|
|
1116
1132
|
animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
1117
1133
|
animationName?: import("csstype").Property.AnimationName | undefined;
|
|
1118
1134
|
animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
1135
|
+
animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
|
|
1136
|
+
animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
|
|
1119
1137
|
animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
|
|
1120
1138
|
animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
1121
1139
|
appearance?: import("csstype").Property.Appearance | undefined;
|
|
@@ -1237,6 +1255,10 @@ export declare const StyledBoxProfile: import("@emotion/styled").StyledComponent
|
|
|
1237
1255
|
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
1238
1256
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
1239
1257
|
fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
|
|
1258
|
+
fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
1259
|
+
fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
|
|
1260
|
+
fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
|
|
1261
|
+
fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
|
|
1240
1262
|
fontVariant?: import("csstype").Property.FontVariant | undefined;
|
|
1241
1263
|
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
1242
1264
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
@@ -1310,6 +1332,7 @@ export declare const StyledBoxProfile: import("@emotion/styled").StyledComponent
|
|
|
1310
1332
|
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
1311
1333
|
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
1312
1334
|
maskType?: import("csstype").Property.MaskType | undefined;
|
|
1335
|
+
masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
|
|
1313
1336
|
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
1314
1337
|
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
1315
1338
|
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
@@ -1349,6 +1372,7 @@ export declare const StyledBoxProfile: import("@emotion/styled").StyledComponent
|
|
|
1349
1372
|
overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
|
|
1350
1373
|
overflowX?: import("csstype").Property.OverflowX | undefined;
|
|
1351
1374
|
overflowY?: import("csstype").Property.OverflowY | undefined;
|
|
1375
|
+
overlay?: import("csstype").Property.Overlay | undefined;
|
|
1352
1376
|
overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
|
|
1353
1377
|
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
1354
1378
|
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
@@ -1436,12 +1460,15 @@ export declare const StyledBoxProfile: import("@emotion/styled").StyledComponent
|
|
|
1436
1460
|
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
1437
1461
|
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
1438
1462
|
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
1463
|
+
textWrap?: import("csstype").Property.TextWrap | undefined;
|
|
1464
|
+
timelineScope?: import("csstype").Property.TimelineScope | undefined;
|
|
1439
1465
|
top?: import("csstype").Property.Top<string | number> | undefined;
|
|
1440
1466
|
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
1441
1467
|
transform?: string | undefined;
|
|
1442
1468
|
transformBox?: import("csstype").Property.TransformBox | undefined;
|
|
1443
1469
|
transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1444
1470
|
transformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
1471
|
+
transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
|
|
1445
1472
|
transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1446
1473
|
transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1447
1474
|
transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
@@ -1450,9 +1477,14 @@ export declare const StyledBoxProfile: import("@emotion/styled").StyledComponent
|
|
|
1450
1477
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
1451
1478
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
1452
1479
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
1480
|
+
viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
1481
|
+
viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
1482
|
+
viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
|
|
1453
1483
|
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
1454
1484
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
1455
1485
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
1486
|
+
whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
1487
|
+
whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
1456
1488
|
widows?: import("csstype").Property.Widows | undefined;
|
|
1457
1489
|
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
1458
1490
|
willChange?: import("csstype").Property.WillChange | undefined;
|
|
@@ -1464,6 +1496,7 @@ export declare const StyledBoxProfile: import("@emotion/styled").StyledComponent
|
|
|
1464
1496
|
zoom?: import("csstype").Property.Zoom | undefined;
|
|
1465
1497
|
all?: import("csstype").Globals | undefined;
|
|
1466
1498
|
animation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
1499
|
+
animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
|
|
1467
1500
|
background?: import("csstype").Property.Background<string | number> | undefined;
|
|
1468
1501
|
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
1469
1502
|
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
@@ -1528,6 +1561,7 @@ export declare const StyledBoxProfile: import("@emotion/styled").StyledComponent
|
|
|
1528
1561
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
1529
1562
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
1530
1563
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
1564
|
+
viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
|
|
1531
1565
|
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
1532
1566
|
MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
1533
1567
|
MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -1537,7 +1571,6 @@ export declare const StyledBoxProfile: import("@emotion/styled").StyledComponent
|
|
|
1537
1571
|
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
1538
1572
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
1539
1573
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
1540
|
-
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1541
1574
|
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
1542
1575
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
1543
1576
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
@@ -1564,20 +1597,16 @@ export declare const StyledBoxProfile: import("@emotion/styled").StyledComponent
|
|
|
1564
1597
|
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
1565
1598
|
MozOrient?: import("csstype").Property.MozOrient | undefined;
|
|
1566
1599
|
MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
1600
|
+
MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
1601
|
+
MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
1602
|
+
MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
1603
|
+
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
1567
1604
|
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
1568
1605
|
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
1569
|
-
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1570
|
-
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1571
1606
|
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
|
|
1572
1607
|
MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
1573
1608
|
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
|
|
1574
1609
|
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
1575
|
-
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1576
|
-
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
1577
|
-
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1578
|
-
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1579
|
-
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
1580
|
-
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1581
1610
|
MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
|
|
1582
1611
|
MozUserModify?: import("csstype").Property.MozUserModify | undefined;
|
|
1583
1612
|
MozUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
@@ -1757,7 +1786,7 @@ export declare const StyledBoxProfile: import("@emotion/styled").StyledComponent
|
|
|
1757
1786
|
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
1758
1787
|
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
1759
1788
|
MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
1760
|
-
|
|
1789
|
+
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
1761
1790
|
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
1762
1791
|
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
1763
1792
|
msFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
@@ -1815,6 +1844,7 @@ export declare const StyledBoxProfile: import("@emotion/styled").StyledComponent
|
|
|
1815
1844
|
KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
1816
1845
|
KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
|
|
1817
1846
|
KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
1847
|
+
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1818
1848
|
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
1819
1849
|
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
1820
1850
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
@@ -1836,17 +1866,22 @@ export declare const StyledBoxProfile: import("@emotion/styled").StyledComponent
|
|
|
1836
1866
|
MozOpacity?: import("csstype").Property.Opacity | undefined;
|
|
1837
1867
|
MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
|
|
1838
1868
|
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
1839
|
-
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
1840
|
-
MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
1841
|
-
MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
1842
|
-
MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
1843
|
-
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
1844
1869
|
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
1845
1870
|
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
1871
|
+
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1872
|
+
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1846
1873
|
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
1847
1874
|
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
1848
1875
|
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
1849
1876
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
1877
|
+
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
1878
|
+
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1879
|
+
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
1880
|
+
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
1881
|
+
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1882
|
+
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1883
|
+
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
1884
|
+
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1850
1885
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
1851
1886
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
1852
1887
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
@@ -1879,8 +1914,6 @@ export declare const StyledBoxProfile: import("@emotion/styled").StyledComponent
|
|
|
1879
1914
|
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
1880
1915
|
WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
1881
1916
|
WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
1882
|
-
WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
1883
|
-
WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
1884
1917
|
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
1885
1918
|
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
1886
1919
|
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
@@ -2214,6 +2247,8 @@ export declare const StyledBoxProfileEdit: import("@emotion/styled").StyledCompo
|
|
|
2214
2247
|
animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
2215
2248
|
animationName?: import("csstype").Property.AnimationName | undefined;
|
|
2216
2249
|
animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
2250
|
+
animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
|
|
2251
|
+
animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
|
|
2217
2252
|
animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
|
|
2218
2253
|
animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
2219
2254
|
appearance?: import("csstype").Property.Appearance | undefined;
|
|
@@ -2335,6 +2370,10 @@ export declare const StyledBoxProfileEdit: import("@emotion/styled").StyledCompo
|
|
|
2335
2370
|
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
2336
2371
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
2337
2372
|
fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
|
|
2373
|
+
fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
2374
|
+
fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
|
|
2375
|
+
fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
|
|
2376
|
+
fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
|
|
2338
2377
|
fontVariant?: import("csstype").Property.FontVariant | undefined;
|
|
2339
2378
|
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
2340
2379
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
@@ -2408,6 +2447,7 @@ export declare const StyledBoxProfileEdit: import("@emotion/styled").StyledCompo
|
|
|
2408
2447
|
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
2409
2448
|
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
2410
2449
|
maskType?: import("csstype").Property.MaskType | undefined;
|
|
2450
|
+
masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
|
|
2411
2451
|
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
2412
2452
|
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
2413
2453
|
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
@@ -2447,6 +2487,7 @@ export declare const StyledBoxProfileEdit: import("@emotion/styled").StyledCompo
|
|
|
2447
2487
|
overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
|
|
2448
2488
|
overflowX?: import("csstype").Property.OverflowX | undefined;
|
|
2449
2489
|
overflowY?: import("csstype").Property.OverflowY | undefined;
|
|
2490
|
+
overlay?: import("csstype").Property.Overlay | undefined;
|
|
2450
2491
|
overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
|
|
2451
2492
|
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
2452
2493
|
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
@@ -2534,12 +2575,15 @@ export declare const StyledBoxProfileEdit: import("@emotion/styled").StyledCompo
|
|
|
2534
2575
|
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
2535
2576
|
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
2536
2577
|
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
2578
|
+
textWrap?: import("csstype").Property.TextWrap | undefined;
|
|
2579
|
+
timelineScope?: import("csstype").Property.TimelineScope | undefined;
|
|
2537
2580
|
top?: import("csstype").Property.Top<string | number> | undefined;
|
|
2538
2581
|
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
2539
2582
|
transform?: string | undefined;
|
|
2540
2583
|
transformBox?: import("csstype").Property.TransformBox | undefined;
|
|
2541
2584
|
transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
2542
2585
|
transformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
2586
|
+
transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
|
|
2543
2587
|
transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
2544
2588
|
transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
2545
2589
|
transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
@@ -2548,9 +2592,14 @@ export declare const StyledBoxProfileEdit: import("@emotion/styled").StyledCompo
|
|
|
2548
2592
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
2549
2593
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
2550
2594
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
2595
|
+
viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
2596
|
+
viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
2597
|
+
viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
|
|
2551
2598
|
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
2552
2599
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
2553
2600
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
2601
|
+
whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
2602
|
+
whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
2554
2603
|
widows?: import("csstype").Property.Widows | undefined;
|
|
2555
2604
|
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
2556
2605
|
willChange?: import("csstype").Property.WillChange | undefined;
|
|
@@ -2562,6 +2611,7 @@ export declare const StyledBoxProfileEdit: import("@emotion/styled").StyledCompo
|
|
|
2562
2611
|
zoom?: import("csstype").Property.Zoom | undefined;
|
|
2563
2612
|
all?: import("csstype").Globals | undefined;
|
|
2564
2613
|
animation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
2614
|
+
animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
|
|
2565
2615
|
background?: import("csstype").Property.Background<string | number> | undefined;
|
|
2566
2616
|
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
2567
2617
|
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
@@ -2626,6 +2676,7 @@ export declare const StyledBoxProfileEdit: import("@emotion/styled").StyledCompo
|
|
|
2626
2676
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
2627
2677
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
2628
2678
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
2679
|
+
viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
|
|
2629
2680
|
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
2630
2681
|
MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
2631
2682
|
MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -2635,7 +2686,6 @@ export declare const StyledBoxProfileEdit: import("@emotion/styled").StyledCompo
|
|
|
2635
2686
|
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
2636
2687
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
2637
2688
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
2638
|
-
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
2639
2689
|
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
2640
2690
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
2641
2691
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
@@ -2662,20 +2712,16 @@ export declare const StyledBoxProfileEdit: import("@emotion/styled").StyledCompo
|
|
|
2662
2712
|
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
2663
2713
|
MozOrient?: import("csstype").Property.MozOrient | undefined;
|
|
2664
2714
|
MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
2715
|
+
MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
2716
|
+
MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
2717
|
+
MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
2718
|
+
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
2665
2719
|
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
2666
2720
|
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
2667
|
-
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
2668
|
-
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
2669
2721
|
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
|
|
2670
2722
|
MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
2671
2723
|
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
|
|
2672
2724
|
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
2673
|
-
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
2674
|
-
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
2675
|
-
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
2676
|
-
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
2677
|
-
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
2678
|
-
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
2679
2725
|
MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
|
|
2680
2726
|
MozUserModify?: import("csstype").Property.MozUserModify | undefined;
|
|
2681
2727
|
MozUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
@@ -2855,7 +2901,7 @@ export declare const StyledBoxProfileEdit: import("@emotion/styled").StyledCompo
|
|
|
2855
2901
|
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
2856
2902
|
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
2857
2903
|
MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
2858
|
-
|
|
2904
|
+
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
2859
2905
|
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
2860
2906
|
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
2861
2907
|
msFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
@@ -2913,6 +2959,7 @@ export declare const StyledBoxProfileEdit: import("@emotion/styled").StyledCompo
|
|
|
2913
2959
|
KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
2914
2960
|
KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
|
|
2915
2961
|
KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
2962
|
+
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
2916
2963
|
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
2917
2964
|
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
2918
2965
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
@@ -2934,17 +2981,22 @@ export declare const StyledBoxProfileEdit: import("@emotion/styled").StyledCompo
|
|
|
2934
2981
|
MozOpacity?: import("csstype").Property.Opacity | undefined;
|
|
2935
2982
|
MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
|
|
2936
2983
|
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
2937
|
-
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
2938
|
-
MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
2939
|
-
MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
2940
|
-
MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
2941
|
-
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
2942
2984
|
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
2943
2985
|
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
2986
|
+
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
2987
|
+
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
2944
2988
|
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
2945
2989
|
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
2946
2990
|
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
2947
2991
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
2992
|
+
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
2993
|
+
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
2994
|
+
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
2995
|
+
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
2996
|
+
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
2997
|
+
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
2998
|
+
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
2999
|
+
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
2948
3000
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
2949
3001
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
2950
3002
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
@@ -2977,8 +3029,6 @@ export declare const StyledBoxProfileEdit: import("@emotion/styled").StyledCompo
|
|
|
2977
3029
|
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
2978
3030
|
WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
2979
3031
|
WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
2980
|
-
WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
2981
|
-
WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
2982
3032
|
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
2983
3033
|
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
2984
3034
|
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
@@ -1,18 +1,76 @@
|
|
|
1
|
-
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
2
|
-
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
3
|
-
return cooked;
|
|
4
|
-
};
|
|
5
1
|
import { Avatar, Button, ListItemButton, Typography } from '../../../index';
|
|
6
2
|
import { getNavigationBackground, getNavigationContrastText, getOffsetNavigationBackground, getOffsetNavigationContrastText } from '../helpers';
|
|
7
3
|
import Drawer from '@mui/material/Drawer';
|
|
8
4
|
import { styled } from '@mui/material/styles';
|
|
9
5
|
import { animated } from '@react-spring/web';
|
|
10
|
-
export
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
export const StyledSwipeableAvatar = styled(Drawer) `
|
|
7
|
+
/* Override the MUI default z-index of the Drawer component
|
|
8
|
+
to ensure that the drawer is always below the AppBar. */
|
|
9
|
+
z-index: ${props => props.theme.zIndex.appBar - 1};
|
|
10
|
+
|
|
11
|
+
.MuiPaper-root {
|
|
12
|
+
height: 100vh;
|
|
13
|
+
border: none;
|
|
14
|
+
z-index: 1;
|
|
15
|
+
}
|
|
16
|
+
`;
|
|
17
|
+
export const StyledBox = styled(animated.div) `
|
|
18
|
+
background-color: ${props => getOffsetNavigationBackground(props.theme)};
|
|
19
|
+
color: ${props => getOffsetNavigationContrastText(props.theme)};
|
|
20
|
+
display: flex;
|
|
21
|
+
flex-direction: column;
|
|
22
|
+
align-items: center;
|
|
23
|
+
justify-content: flex-start;
|
|
24
|
+
height: 100%;
|
|
25
|
+
overflow: auto;
|
|
26
|
+
padding: 15vh ${props => props.theme.spacing(2)};
|
|
27
|
+
position: relative;
|
|
28
|
+
`;
|
|
29
|
+
export const StyledBoxProfile = styled(animated.div) `
|
|
30
|
+
display: flex;
|
|
31
|
+
flex-direction: row;
|
|
32
|
+
align-items: center;
|
|
33
|
+
margin-bottom: 2rem
|
|
34
|
+
`;
|
|
35
|
+
export const StyledBoxProfileEdit = styled(animated.div) `
|
|
36
|
+
display: flex;
|
|
37
|
+
`;
|
|
38
|
+
export const StyledAvatarName = styled(Typography) `
|
|
39
|
+
font-size: 1.75rem;
|
|
40
|
+
`;
|
|
41
|
+
export const StyledOutlineButton = styled(Button) `
|
|
42
|
+
border-color: ${props => getOffsetNavigationContrastText(props.theme)};
|
|
43
|
+
color: ${props => getOffsetNavigationContrastText(props.theme)};
|
|
44
|
+
|
|
45
|
+
:hover,
|
|
46
|
+
:focus-visible {
|
|
47
|
+
background-color: ${props => getOffsetNavigationBackground(props.theme, 0.133)};
|
|
48
|
+
border-color: ${props => getOffsetNavigationContrastText(props.theme)};
|
|
49
|
+
}
|
|
50
|
+
`;
|
|
51
|
+
export const StyledAvatar = styled(Avatar) `
|
|
52
|
+
background-color: ${props => getNavigationBackground(props.theme)};
|
|
53
|
+
color: ${props => getNavigationContrastText(props.theme)};
|
|
54
|
+
font-size: 0.85rem;
|
|
55
|
+
font-weight: bold;
|
|
56
|
+
`;
|
|
57
|
+
export const StyledListItemButton = styled(ListItemButton) `
|
|
58
|
+
border-radius: 50px;
|
|
59
|
+
white-space: normal;
|
|
60
|
+
box-shadow: 0 0 0 0 transparent;
|
|
61
|
+
transition: all 0.2s ease;
|
|
62
|
+
|
|
63
|
+
& .MuiListItemIcon-root {
|
|
64
|
+
color: ${props => getOffsetNavigationContrastText(props.theme)};
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
:hover {
|
|
68
|
+
color: ${props => getOffsetNavigationContrastText(props.theme, 0.133)};
|
|
69
|
+
background-color: ${props => getOffsetNavigationBackground(props.theme, 0.133)};
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
:focus-visible {
|
|
73
|
+
background-color: ${props => getOffsetNavigationBackground(props.theme, 0.133)};
|
|
74
|
+
box-shadow: 0 0 0 3px ${props => getOffsetNavigationContrastText(props.theme, 0.133)};
|
|
75
|
+
}
|
|
76
|
+
`;
|
|
@@ -26,4 +26,4 @@ export interface ISwipeableTemporaryDrawerProps {
|
|
|
26
26
|
/** @deprecated This property will be removed in the next major version (2.X) */
|
|
27
27
|
avatarPanelShowHelpLinks?: boolean;
|
|
28
28
|
}
|
|
29
|
-
export default function SwipeableTemporaryDrawer(props: ISwipeableTemporaryDrawerProps): JSX.Element;
|
|
29
|
+
export default function SwipeableTemporaryDrawer(props: ISwipeableTemporaryDrawerProps): import("@emotion/react/jsx-runtime").JSX.Element;
|