@lets-events/react 6.0.0 → 6.1.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/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +6 -0
- package/dist/index.d.mts +1876 -3
- package/dist/index.d.ts +1876 -3
- package/dist/index.js +4641 -304
- package/dist/index.mjs +4604 -272
- package/package.json +3 -2
- package/src/components/Button/index.tsx +13 -0
- package/src/components/Button/styledComponents.ts +359 -0
- package/src/components/ButtonGroup.tsx +2 -2
- package/src/components/Calendar/index.tsx +122 -0
- package/src/components/Calendar/styledComponents.ts +195 -0
- package/src/components/TextField.tsx +20 -0
- package/src/components/TimePicker.tsx +125 -0
- package/src/index.tsx +2 -0
- package/src/components/Button.tsx +0 -329
package/dist/index.d.mts
CHANGED
|
@@ -411,6 +411,7 @@ declare const ButtonStyled: _stitches_react_types_styled_component.StyledCompone
|
|
|
411
411
|
variant?: "text" | "contained" | "outlined" | undefined;
|
|
412
412
|
typography?: "buttonLarge" | "buttonMedium" | "buttonSmall" | "buttonExtraSmall" | undefined;
|
|
413
413
|
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
414
|
+
outlinedBgColor?: "transparent" | "neutral" | undefined;
|
|
414
415
|
radii?: "full" | undefined;
|
|
415
416
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
416
417
|
colors: {
|
|
@@ -782,6 +783,7 @@ declare const ButtonStyled: _stitches_react_types_styled_component.StyledCompone
|
|
|
782
783
|
transition: "transitions";
|
|
783
784
|
zIndex: "zIndices";
|
|
784
785
|
}, {}>>;
|
|
786
|
+
|
|
785
787
|
interface ButtonProps extends ComponentProps<typeof ButtonStyled> {
|
|
786
788
|
asChild?: boolean;
|
|
787
789
|
}
|
|
@@ -1925,6 +1927,7 @@ declare const TextFieldStyled: _stitches_react_types_styled_component.StyledComp
|
|
|
1925
1927
|
color?: "default" | "error" | undefined;
|
|
1926
1928
|
typography?: "tooltip" | "displayLarge" | "displayMedium" | "displaySmall" | "headline1" | "headline2" | "headline3" | "headline4" | "headline5" | "headline6" | "headline7" | "headline8" | "bodyXL" | "bodyL" | "bodyM" | "bodyS" | "bodyXS" | "bodyXXS" | "badgeLarge" | "badgeMedium" | "badgeSmall" | "badgeExtraSmall" | "popoversRegular" | "captionLarge" | "captionMedium" | "captionSmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "buttonExtraSmall" | "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
|
|
1927
1929
|
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
1930
|
+
textAlign?: "left" | "right" | "center" | undefined;
|
|
1928
1931
|
isValid?: boolean | "false" | "true" | undefined;
|
|
1929
1932
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
1930
1933
|
colors: {
|
|
@@ -2299,6 +2302,7 @@ declare const TextFieldStyled: _stitches_react_types_styled_component.StyledComp
|
|
|
2299
2302
|
declare const TextFieldSlotStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<TextField$1.SlotProps & react.RefAttributes<HTMLDivElement>>, {
|
|
2300
2303
|
typography?: "tooltip" | "displayLarge" | "displayMedium" | "displaySmall" | "headline1" | "headline2" | "headline3" | "headline4" | "headline5" | "headline6" | "headline7" | "headline8" | "bodyXL" | "bodyL" | "bodyM" | "bodyS" | "bodyXS" | "bodyXXS" | "badgeLarge" | "badgeMedium" | "badgeSmall" | "badgeExtraSmall" | "popoversRegular" | "captionLarge" | "captionMedium" | "captionSmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "buttonExtraSmall" | "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
|
|
2301
2304
|
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
2305
|
+
textAlign?: "left" | "right" | "center" | undefined;
|
|
2302
2306
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
2303
2307
|
colors: {
|
|
2304
2308
|
brand50: string;
|
|
@@ -2676,6 +2680,7 @@ type TextFieldProps = ComponentProps<typeof TextFieldStyled> & {
|
|
|
2676
2680
|
name?: string;
|
|
2677
2681
|
typography?: string;
|
|
2678
2682
|
fontWeight?: 'regular' | 'medium' | 'semibold' | 'bold';
|
|
2683
|
+
textAlign?: 'left' | 'right' | 'center';
|
|
2679
2684
|
};
|
|
2680
2685
|
type TextFieldSlotProps = Omit<ComponentProps<typeof TextFieldStyled>, 'color'> & {
|
|
2681
2686
|
placeholder?: string;
|
|
@@ -2685,9 +2690,10 @@ type TextFieldSlotProps = Omit<ComponentProps<typeof TextFieldStyled>, 'color'>
|
|
|
2685
2690
|
color?: "error" | "success" | undefined;
|
|
2686
2691
|
typography?: string;
|
|
2687
2692
|
fontWeight?: 'regular' | 'medium' | 'semibold' | 'bold';
|
|
2693
|
+
textAlign?: 'left' | 'right' | 'center';
|
|
2688
2694
|
};
|
|
2689
|
-
declare function TextField({ children, isValid, name, color, typography, fontWeight, ...props }: TextFieldProps): react_jsx_runtime.JSX.Element;
|
|
2690
|
-
declare function TextFieldSlot({ children, position, onClick, typography, fontWeight, ...props }: TextFieldSlotProps): react_jsx_runtime.JSX.Element;
|
|
2695
|
+
declare function TextField({ children, isValid, name, color, typography, fontWeight, textAlign, ...props }: TextFieldProps): react_jsx_runtime.JSX.Element;
|
|
2696
|
+
declare function TextFieldSlot({ children, position, onClick, typography, fontWeight, textAlign, ...props }: TextFieldSlotProps): react_jsx_runtime.JSX.Element;
|
|
2691
2697
|
|
|
2692
2698
|
declare const RadioGroupStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<RadioGroup$1.RootProps & react.RefAttributes<HTMLDivElement>>, {
|
|
2693
2699
|
color?: "blue" | "error" | "success" | undefined;
|
|
@@ -5377,6 +5383,1873 @@ type ModalProps = ComponentProps<typeof ModalStyled> & {
|
|
|
5377
5383
|
};
|
|
5378
5384
|
declare function Modal({ children, title, trigger, cancel, cancelText, action, actionText, onAction, ...props }: ModalProps): react_jsx_runtime.JSX.Element;
|
|
5379
5385
|
|
|
5386
|
+
declare const CalendarStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
5387
|
+
colors: {
|
|
5388
|
+
brand50: string;
|
|
5389
|
+
brand100: string;
|
|
5390
|
+
brand200: string;
|
|
5391
|
+
brand300: string;
|
|
5392
|
+
brand400: string;
|
|
5393
|
+
brand500: string;
|
|
5394
|
+
brand600: string;
|
|
5395
|
+
brand700: string;
|
|
5396
|
+
brand800: string;
|
|
5397
|
+
brand900: string;
|
|
5398
|
+
brand950: string;
|
|
5399
|
+
blue50: string;
|
|
5400
|
+
blue100: string;
|
|
5401
|
+
blue200: string;
|
|
5402
|
+
blue300: string;
|
|
5403
|
+
blue400: string;
|
|
5404
|
+
blue500: string;
|
|
5405
|
+
blue600: string;
|
|
5406
|
+
blue700: string;
|
|
5407
|
+
blue800: string;
|
|
5408
|
+
blue900: string;
|
|
5409
|
+
blue950: string;
|
|
5410
|
+
red50: string;
|
|
5411
|
+
red100: string;
|
|
5412
|
+
red200: string;
|
|
5413
|
+
red300: string;
|
|
5414
|
+
red400: string;
|
|
5415
|
+
red500: string;
|
|
5416
|
+
red600: string;
|
|
5417
|
+
red700: string;
|
|
5418
|
+
red800: string;
|
|
5419
|
+
red900: string;
|
|
5420
|
+
red950: string;
|
|
5421
|
+
purple50: string;
|
|
5422
|
+
purple100: string;
|
|
5423
|
+
purple200: string;
|
|
5424
|
+
purple300: string;
|
|
5425
|
+
purple400: string;
|
|
5426
|
+
purple500: string;
|
|
5427
|
+
purple600: string;
|
|
5428
|
+
purple700: string;
|
|
5429
|
+
purple800: string;
|
|
5430
|
+
purple900: string;
|
|
5431
|
+
purple950: string;
|
|
5432
|
+
yellow50: string;
|
|
5433
|
+
yellow100: string;
|
|
5434
|
+
yellow200: string;
|
|
5435
|
+
yellow300: string;
|
|
5436
|
+
yellow400: string;
|
|
5437
|
+
yellow500: string;
|
|
5438
|
+
yellow600: string;
|
|
5439
|
+
yellow700: string;
|
|
5440
|
+
yellow800: string;
|
|
5441
|
+
yellow900: string;
|
|
5442
|
+
yellow950: string;
|
|
5443
|
+
dark50: string;
|
|
5444
|
+
dark100: string;
|
|
5445
|
+
dark200: string;
|
|
5446
|
+
dark300: string;
|
|
5447
|
+
dark400: string;
|
|
5448
|
+
dark500: string;
|
|
5449
|
+
dark600: string;
|
|
5450
|
+
dark700: string;
|
|
5451
|
+
dark800: string;
|
|
5452
|
+
dark900: string;
|
|
5453
|
+
dark950: string;
|
|
5454
|
+
neutral50: string;
|
|
5455
|
+
neutral100: string;
|
|
5456
|
+
neutral200: string;
|
|
5457
|
+
neutral300: string;
|
|
5458
|
+
neutral400: string;
|
|
5459
|
+
neutral500: string;
|
|
5460
|
+
neutral600: string;
|
|
5461
|
+
neutral700: string;
|
|
5462
|
+
neutral800: string;
|
|
5463
|
+
neutral900: string;
|
|
5464
|
+
neutral950: string;
|
|
5465
|
+
green50: string;
|
|
5466
|
+
green100: string;
|
|
5467
|
+
green200: string;
|
|
5468
|
+
green300: string;
|
|
5469
|
+
green400: string;
|
|
5470
|
+
green500: string;
|
|
5471
|
+
green600: string;
|
|
5472
|
+
green700: string;
|
|
5473
|
+
green800: string;
|
|
5474
|
+
green900: string;
|
|
5475
|
+
green950: string;
|
|
5476
|
+
grey50: string;
|
|
5477
|
+
grey100: string;
|
|
5478
|
+
grey200: string;
|
|
5479
|
+
grey300: string;
|
|
5480
|
+
grey400: string;
|
|
5481
|
+
grey500: string;
|
|
5482
|
+
grey600: string;
|
|
5483
|
+
grey700: string;
|
|
5484
|
+
grey800: string;
|
|
5485
|
+
grey900: string;
|
|
5486
|
+
grey950: string;
|
|
5487
|
+
error50: string;
|
|
5488
|
+
error100: string;
|
|
5489
|
+
error200: string;
|
|
5490
|
+
error300: string;
|
|
5491
|
+
error400: string;
|
|
5492
|
+
error500: string;
|
|
5493
|
+
error600: string;
|
|
5494
|
+
error700: string;
|
|
5495
|
+
error800: string;
|
|
5496
|
+
error900: string;
|
|
5497
|
+
error950: string;
|
|
5498
|
+
success50: string;
|
|
5499
|
+
success100: string;
|
|
5500
|
+
success200: string;
|
|
5501
|
+
success300: string;
|
|
5502
|
+
success400: string;
|
|
5503
|
+
success500: string;
|
|
5504
|
+
success600: string;
|
|
5505
|
+
success700: string;
|
|
5506
|
+
success800: string;
|
|
5507
|
+
success900: string;
|
|
5508
|
+
success950: string;
|
|
5509
|
+
warning50: string;
|
|
5510
|
+
warning100: string;
|
|
5511
|
+
warning200: string;
|
|
5512
|
+
warning300: string;
|
|
5513
|
+
warning400: string;
|
|
5514
|
+
warning500: string;
|
|
5515
|
+
warning600: string;
|
|
5516
|
+
warning700: string;
|
|
5517
|
+
warning800: string;
|
|
5518
|
+
warning900: string;
|
|
5519
|
+
warning950: string;
|
|
5520
|
+
info50: string;
|
|
5521
|
+
info100: string;
|
|
5522
|
+
info200: string;
|
|
5523
|
+
info300: string;
|
|
5524
|
+
info400: string;
|
|
5525
|
+
info500: string;
|
|
5526
|
+
info600: string;
|
|
5527
|
+
info700: string;
|
|
5528
|
+
info800: string;
|
|
5529
|
+
info900: string;
|
|
5530
|
+
info950: string;
|
|
5531
|
+
};
|
|
5532
|
+
fontSizes: {
|
|
5533
|
+
2: string;
|
|
5534
|
+
4: string;
|
|
5535
|
+
6: string;
|
|
5536
|
+
8: string;
|
|
5537
|
+
10: string;
|
|
5538
|
+
12: string;
|
|
5539
|
+
13: string;
|
|
5540
|
+
14: string;
|
|
5541
|
+
16: string;
|
|
5542
|
+
18: string;
|
|
5543
|
+
20: string;
|
|
5544
|
+
22: string;
|
|
5545
|
+
24: string;
|
|
5546
|
+
32: string;
|
|
5547
|
+
36: string;
|
|
5548
|
+
40: string;
|
|
5549
|
+
48: string;
|
|
5550
|
+
56: string;
|
|
5551
|
+
64: string;
|
|
5552
|
+
72: string;
|
|
5553
|
+
80: string;
|
|
5554
|
+
xs: string;
|
|
5555
|
+
sm: string;
|
|
5556
|
+
md: string;
|
|
5557
|
+
lg: string;
|
|
5558
|
+
'2xl': string;
|
|
5559
|
+
'3xl': string;
|
|
5560
|
+
'4xl': string;
|
|
5561
|
+
full: string;
|
|
5562
|
+
};
|
|
5563
|
+
fonts: {
|
|
5564
|
+
default: string;
|
|
5565
|
+
};
|
|
5566
|
+
fontWeights: {
|
|
5567
|
+
regular: string;
|
|
5568
|
+
medium: string;
|
|
5569
|
+
semibold: string;
|
|
5570
|
+
bold: string;
|
|
5571
|
+
};
|
|
5572
|
+
lineHeights: {
|
|
5573
|
+
smaller: string;
|
|
5574
|
+
shorter: string;
|
|
5575
|
+
short: string;
|
|
5576
|
+
base: string;
|
|
5577
|
+
tall: string;
|
|
5578
|
+
};
|
|
5579
|
+
radii: {
|
|
5580
|
+
'3xs': string;
|
|
5581
|
+
'2xs': string;
|
|
5582
|
+
xs: string;
|
|
5583
|
+
sm: string;
|
|
5584
|
+
md: string;
|
|
5585
|
+
lg: string;
|
|
5586
|
+
xl: string;
|
|
5587
|
+
'2xl': string;
|
|
5588
|
+
'3xl': string;
|
|
5589
|
+
'4xl': string;
|
|
5590
|
+
'5xl': string;
|
|
5591
|
+
'6xl': string;
|
|
5592
|
+
'7xl': string;
|
|
5593
|
+
'8xl': string;
|
|
5594
|
+
'9xl': string;
|
|
5595
|
+
'10xl': string;
|
|
5596
|
+
'11xl': string;
|
|
5597
|
+
'12xl': string;
|
|
5598
|
+
'13xl': string;
|
|
5599
|
+
'14xl': string;
|
|
5600
|
+
full: string;
|
|
5601
|
+
};
|
|
5602
|
+
space: {
|
|
5603
|
+
2: string;
|
|
5604
|
+
4: string;
|
|
5605
|
+
6: string;
|
|
5606
|
+
8: string;
|
|
5607
|
+
10: string;
|
|
5608
|
+
12: string;
|
|
5609
|
+
13: string;
|
|
5610
|
+
14: string;
|
|
5611
|
+
16: string;
|
|
5612
|
+
18: string;
|
|
5613
|
+
20: string;
|
|
5614
|
+
22: string;
|
|
5615
|
+
24: string;
|
|
5616
|
+
32: string;
|
|
5617
|
+
36: string;
|
|
5618
|
+
40: string;
|
|
5619
|
+
48: string;
|
|
5620
|
+
56: string;
|
|
5621
|
+
64: string;
|
|
5622
|
+
72: string;
|
|
5623
|
+
80: string;
|
|
5624
|
+
full: string;
|
|
5625
|
+
};
|
|
5626
|
+
}, {
|
|
5627
|
+
height: "space";
|
|
5628
|
+
width: "space";
|
|
5629
|
+
gap: "space";
|
|
5630
|
+
gridGap: "space";
|
|
5631
|
+
columnGap: "space";
|
|
5632
|
+
gridColumnGap: "space";
|
|
5633
|
+
rowGap: "space";
|
|
5634
|
+
gridRowGap: "space";
|
|
5635
|
+
inset: "space";
|
|
5636
|
+
insetBlock: "space";
|
|
5637
|
+
insetBlockEnd: "space";
|
|
5638
|
+
insetBlockStart: "space";
|
|
5639
|
+
insetInline: "space";
|
|
5640
|
+
insetInlineEnd: "space";
|
|
5641
|
+
insetInlineStart: "space";
|
|
5642
|
+
margin: "space";
|
|
5643
|
+
marginTop: "space";
|
|
5644
|
+
marginRight: "space";
|
|
5645
|
+
marginBottom: "space";
|
|
5646
|
+
marginLeft: "space";
|
|
5647
|
+
marginBlock: "space";
|
|
5648
|
+
marginBlockEnd: "space";
|
|
5649
|
+
marginBlockStart: "space";
|
|
5650
|
+
marginInline: "space";
|
|
5651
|
+
marginInlineEnd: "space";
|
|
5652
|
+
marginInlineStart: "space";
|
|
5653
|
+
padding: "space";
|
|
5654
|
+
paddingTop: "space";
|
|
5655
|
+
paddingRight: "space";
|
|
5656
|
+
paddingBottom: "space";
|
|
5657
|
+
paddingLeft: "space";
|
|
5658
|
+
paddingBlock: "space";
|
|
5659
|
+
paddingBlockEnd: "space";
|
|
5660
|
+
paddingBlockStart: "space";
|
|
5661
|
+
paddingInline: "space";
|
|
5662
|
+
paddingInlineEnd: "space";
|
|
5663
|
+
paddingInlineStart: "space";
|
|
5664
|
+
scrollMargin: "space";
|
|
5665
|
+
scrollMarginTop: "space";
|
|
5666
|
+
scrollMarginRight: "space";
|
|
5667
|
+
scrollMarginBottom: "space";
|
|
5668
|
+
scrollMarginLeft: "space";
|
|
5669
|
+
scrollMarginBlock: "space";
|
|
5670
|
+
scrollMarginBlockEnd: "space";
|
|
5671
|
+
scrollMarginBlockStart: "space";
|
|
5672
|
+
scrollMarginInline: "space";
|
|
5673
|
+
scrollMarginInlineEnd: "space";
|
|
5674
|
+
scrollMarginInlineStart: "space";
|
|
5675
|
+
scrollPadding: "space";
|
|
5676
|
+
scrollPaddingTop: "space";
|
|
5677
|
+
scrollPaddingRight: "space";
|
|
5678
|
+
scrollPaddingBottom: "space";
|
|
5679
|
+
scrollPaddingLeft: "space";
|
|
5680
|
+
scrollPaddingBlock: "space";
|
|
5681
|
+
scrollPaddingBlockEnd: "space";
|
|
5682
|
+
scrollPaddingBlockStart: "space";
|
|
5683
|
+
scrollPaddingInline: "space";
|
|
5684
|
+
scrollPaddingInlineEnd: "space";
|
|
5685
|
+
scrollPaddingInlineStart: "space";
|
|
5686
|
+
top: "space";
|
|
5687
|
+
right: "space";
|
|
5688
|
+
bottom: "space";
|
|
5689
|
+
left: "space";
|
|
5690
|
+
fontSize: "fontSizes";
|
|
5691
|
+
background: "colors";
|
|
5692
|
+
backgroundColor: "colors";
|
|
5693
|
+
backgroundImage: "colors";
|
|
5694
|
+
borderImage: "colors";
|
|
5695
|
+
border: "colors";
|
|
5696
|
+
borderBlock: "colors";
|
|
5697
|
+
borderBlockEnd: "colors";
|
|
5698
|
+
borderBlockStart: "colors";
|
|
5699
|
+
borderBottom: "colors";
|
|
5700
|
+
borderBottomColor: "colors";
|
|
5701
|
+
borderColor: "colors";
|
|
5702
|
+
borderInline: "colors";
|
|
5703
|
+
borderInlineEnd: "colors";
|
|
5704
|
+
borderInlineStart: "colors";
|
|
5705
|
+
borderLeft: "colors";
|
|
5706
|
+
borderLeftColor: "colors";
|
|
5707
|
+
borderRight: "colors";
|
|
5708
|
+
borderRightColor: "colors";
|
|
5709
|
+
borderTop: "colors";
|
|
5710
|
+
borderTopColor: "colors";
|
|
5711
|
+
caretColor: "colors";
|
|
5712
|
+
color: "colors";
|
|
5713
|
+
columnRuleColor: "colors";
|
|
5714
|
+
outline: "colors";
|
|
5715
|
+
outlineColor: "colors";
|
|
5716
|
+
fill: "colors";
|
|
5717
|
+
stroke: "colors";
|
|
5718
|
+
textDecorationColor: "colors";
|
|
5719
|
+
fontFamily: "fonts";
|
|
5720
|
+
fontWeight: "fontWeights";
|
|
5721
|
+
lineHeight: "lineHeights";
|
|
5722
|
+
letterSpacing: "letterSpacings";
|
|
5723
|
+
blockSize: "sizes";
|
|
5724
|
+
minBlockSize: "sizes";
|
|
5725
|
+
maxBlockSize: "sizes";
|
|
5726
|
+
inlineSize: "sizes";
|
|
5727
|
+
minInlineSize: "sizes";
|
|
5728
|
+
maxInlineSize: "sizes";
|
|
5729
|
+
minWidth: "sizes";
|
|
5730
|
+
maxWidth: "sizes";
|
|
5731
|
+
minHeight: "sizes";
|
|
5732
|
+
maxHeight: "sizes";
|
|
5733
|
+
flexBasis: "sizes";
|
|
5734
|
+
gridTemplateColumns: "sizes";
|
|
5735
|
+
gridTemplateRows: "sizes";
|
|
5736
|
+
borderWidth: "borderWidths";
|
|
5737
|
+
borderTopWidth: "borderWidths";
|
|
5738
|
+
borderLeftWidth: "borderWidths";
|
|
5739
|
+
borderRightWidth: "borderWidths";
|
|
5740
|
+
borderBottomWidth: "borderWidths";
|
|
5741
|
+
borderStyle: "borderStyles";
|
|
5742
|
+
borderTopStyle: "borderStyles";
|
|
5743
|
+
borderLeftStyle: "borderStyles";
|
|
5744
|
+
borderRightStyle: "borderStyles";
|
|
5745
|
+
borderBottomStyle: "borderStyles";
|
|
5746
|
+
borderRadius: "radii";
|
|
5747
|
+
borderTopLeftRadius: "radii";
|
|
5748
|
+
borderTopRightRadius: "radii";
|
|
5749
|
+
borderBottomRightRadius: "radii";
|
|
5750
|
+
borderBottomLeftRadius: "radii";
|
|
5751
|
+
boxShadow: "shadows";
|
|
5752
|
+
textShadow: "shadows";
|
|
5753
|
+
transition: "transitions";
|
|
5754
|
+
zIndex: "zIndices";
|
|
5755
|
+
}, {}>>;
|
|
5756
|
+
|
|
5757
|
+
type CalendarProps = ComponentProps<typeof CalendarStyled> & {
|
|
5758
|
+
calendarLayout?: "label" | "dropdown" | "dropdown-months" | "dropdown-years";
|
|
5759
|
+
selected: Date | undefined;
|
|
5760
|
+
setSelected: react__default.Dispatch<react__default.SetStateAction<Date | undefined>>;
|
|
5761
|
+
action?: boolean;
|
|
5762
|
+
actionText?: string;
|
|
5763
|
+
onAction?: () => void;
|
|
5764
|
+
};
|
|
5765
|
+
declare function Calendar({ action, actionText, calendarLayout, selected, setSelected, onAction, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
|
|
5766
|
+
|
|
5767
|
+
declare const TimePickerStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
5768
|
+
colors: {
|
|
5769
|
+
brand50: string;
|
|
5770
|
+
brand100: string;
|
|
5771
|
+
brand200: string;
|
|
5772
|
+
brand300: string;
|
|
5773
|
+
brand400: string;
|
|
5774
|
+
brand500: string;
|
|
5775
|
+
brand600: string;
|
|
5776
|
+
brand700: string;
|
|
5777
|
+
brand800: string;
|
|
5778
|
+
brand900: string;
|
|
5779
|
+
brand950: string;
|
|
5780
|
+
blue50: string;
|
|
5781
|
+
blue100: string;
|
|
5782
|
+
blue200: string;
|
|
5783
|
+
blue300: string;
|
|
5784
|
+
blue400: string;
|
|
5785
|
+
blue500: string;
|
|
5786
|
+
blue600: string;
|
|
5787
|
+
blue700: string;
|
|
5788
|
+
blue800: string;
|
|
5789
|
+
blue900: string;
|
|
5790
|
+
blue950: string;
|
|
5791
|
+
red50: string;
|
|
5792
|
+
red100: string;
|
|
5793
|
+
red200: string;
|
|
5794
|
+
red300: string;
|
|
5795
|
+
red400: string;
|
|
5796
|
+
red500: string;
|
|
5797
|
+
red600: string;
|
|
5798
|
+
red700: string;
|
|
5799
|
+
red800: string;
|
|
5800
|
+
red900: string;
|
|
5801
|
+
red950: string;
|
|
5802
|
+
purple50: string;
|
|
5803
|
+
purple100: string;
|
|
5804
|
+
purple200: string;
|
|
5805
|
+
purple300: string;
|
|
5806
|
+
purple400: string;
|
|
5807
|
+
purple500: string;
|
|
5808
|
+
purple600: string;
|
|
5809
|
+
purple700: string;
|
|
5810
|
+
purple800: string;
|
|
5811
|
+
purple900: string;
|
|
5812
|
+
purple950: string;
|
|
5813
|
+
yellow50: string;
|
|
5814
|
+
yellow100: string;
|
|
5815
|
+
yellow200: string;
|
|
5816
|
+
yellow300: string;
|
|
5817
|
+
yellow400: string;
|
|
5818
|
+
yellow500: string;
|
|
5819
|
+
yellow600: string;
|
|
5820
|
+
yellow700: string;
|
|
5821
|
+
yellow800: string;
|
|
5822
|
+
yellow900: string;
|
|
5823
|
+
yellow950: string;
|
|
5824
|
+
dark50: string;
|
|
5825
|
+
dark100: string;
|
|
5826
|
+
dark200: string;
|
|
5827
|
+
dark300: string;
|
|
5828
|
+
dark400: string;
|
|
5829
|
+
dark500: string;
|
|
5830
|
+
dark600: string;
|
|
5831
|
+
dark700: string;
|
|
5832
|
+
dark800: string;
|
|
5833
|
+
dark900: string;
|
|
5834
|
+
dark950: string;
|
|
5835
|
+
neutral50: string;
|
|
5836
|
+
neutral100: string;
|
|
5837
|
+
neutral200: string;
|
|
5838
|
+
neutral300: string;
|
|
5839
|
+
neutral400: string;
|
|
5840
|
+
neutral500: string;
|
|
5841
|
+
neutral600: string;
|
|
5842
|
+
neutral700: string;
|
|
5843
|
+
neutral800: string;
|
|
5844
|
+
neutral900: string;
|
|
5845
|
+
neutral950: string;
|
|
5846
|
+
green50: string;
|
|
5847
|
+
green100: string;
|
|
5848
|
+
green200: string;
|
|
5849
|
+
green300: string;
|
|
5850
|
+
green400: string;
|
|
5851
|
+
green500: string;
|
|
5852
|
+
green600: string;
|
|
5853
|
+
green700: string;
|
|
5854
|
+
green800: string;
|
|
5855
|
+
green900: string;
|
|
5856
|
+
green950: string;
|
|
5857
|
+
grey50: string;
|
|
5858
|
+
grey100: string;
|
|
5859
|
+
grey200: string;
|
|
5860
|
+
grey300: string;
|
|
5861
|
+
grey400: string;
|
|
5862
|
+
grey500: string;
|
|
5863
|
+
grey600: string;
|
|
5864
|
+
grey700: string;
|
|
5865
|
+
grey800: string;
|
|
5866
|
+
grey900: string;
|
|
5867
|
+
grey950: string;
|
|
5868
|
+
error50: string;
|
|
5869
|
+
error100: string;
|
|
5870
|
+
error200: string;
|
|
5871
|
+
error300: string;
|
|
5872
|
+
error400: string;
|
|
5873
|
+
error500: string;
|
|
5874
|
+
error600: string;
|
|
5875
|
+
error700: string;
|
|
5876
|
+
error800: string;
|
|
5877
|
+
error900: string;
|
|
5878
|
+
error950: string;
|
|
5879
|
+
success50: string;
|
|
5880
|
+
success100: string;
|
|
5881
|
+
success200: string;
|
|
5882
|
+
success300: string;
|
|
5883
|
+
success400: string;
|
|
5884
|
+
success500: string;
|
|
5885
|
+
success600: string;
|
|
5886
|
+
success700: string;
|
|
5887
|
+
success800: string;
|
|
5888
|
+
success900: string;
|
|
5889
|
+
success950: string;
|
|
5890
|
+
warning50: string;
|
|
5891
|
+
warning100: string;
|
|
5892
|
+
warning200: string;
|
|
5893
|
+
warning300: string;
|
|
5894
|
+
warning400: string;
|
|
5895
|
+
warning500: string;
|
|
5896
|
+
warning600: string;
|
|
5897
|
+
warning700: string;
|
|
5898
|
+
warning800: string;
|
|
5899
|
+
warning900: string;
|
|
5900
|
+
warning950: string;
|
|
5901
|
+
info50: string;
|
|
5902
|
+
info100: string;
|
|
5903
|
+
info200: string;
|
|
5904
|
+
info300: string;
|
|
5905
|
+
info400: string;
|
|
5906
|
+
info500: string;
|
|
5907
|
+
info600: string;
|
|
5908
|
+
info700: string;
|
|
5909
|
+
info800: string;
|
|
5910
|
+
info900: string;
|
|
5911
|
+
info950: string;
|
|
5912
|
+
};
|
|
5913
|
+
fontSizes: {
|
|
5914
|
+
2: string;
|
|
5915
|
+
4: string;
|
|
5916
|
+
6: string;
|
|
5917
|
+
8: string;
|
|
5918
|
+
10: string;
|
|
5919
|
+
12: string;
|
|
5920
|
+
13: string;
|
|
5921
|
+
14: string;
|
|
5922
|
+
16: string;
|
|
5923
|
+
18: string;
|
|
5924
|
+
20: string;
|
|
5925
|
+
22: string;
|
|
5926
|
+
24: string;
|
|
5927
|
+
32: string;
|
|
5928
|
+
36: string;
|
|
5929
|
+
40: string;
|
|
5930
|
+
48: string;
|
|
5931
|
+
56: string;
|
|
5932
|
+
64: string;
|
|
5933
|
+
72: string;
|
|
5934
|
+
80: string;
|
|
5935
|
+
xs: string;
|
|
5936
|
+
sm: string;
|
|
5937
|
+
md: string;
|
|
5938
|
+
lg: string;
|
|
5939
|
+
'2xl': string;
|
|
5940
|
+
'3xl': string;
|
|
5941
|
+
'4xl': string;
|
|
5942
|
+
full: string;
|
|
5943
|
+
};
|
|
5944
|
+
fonts: {
|
|
5945
|
+
default: string;
|
|
5946
|
+
};
|
|
5947
|
+
fontWeights: {
|
|
5948
|
+
regular: string;
|
|
5949
|
+
medium: string;
|
|
5950
|
+
semibold: string;
|
|
5951
|
+
bold: string;
|
|
5952
|
+
};
|
|
5953
|
+
lineHeights: {
|
|
5954
|
+
smaller: string;
|
|
5955
|
+
shorter: string;
|
|
5956
|
+
short: string;
|
|
5957
|
+
base: string;
|
|
5958
|
+
tall: string;
|
|
5959
|
+
};
|
|
5960
|
+
radii: {
|
|
5961
|
+
'3xs': string;
|
|
5962
|
+
'2xs': string;
|
|
5963
|
+
xs: string;
|
|
5964
|
+
sm: string;
|
|
5965
|
+
md: string;
|
|
5966
|
+
lg: string;
|
|
5967
|
+
xl: string;
|
|
5968
|
+
'2xl': string;
|
|
5969
|
+
'3xl': string;
|
|
5970
|
+
'4xl': string;
|
|
5971
|
+
'5xl': string;
|
|
5972
|
+
'6xl': string;
|
|
5973
|
+
'7xl': string;
|
|
5974
|
+
'8xl': string;
|
|
5975
|
+
'9xl': string;
|
|
5976
|
+
'10xl': string;
|
|
5977
|
+
'11xl': string;
|
|
5978
|
+
'12xl': string;
|
|
5979
|
+
'13xl': string;
|
|
5980
|
+
'14xl': string;
|
|
5981
|
+
full: string;
|
|
5982
|
+
};
|
|
5983
|
+
space: {
|
|
5984
|
+
2: string;
|
|
5985
|
+
4: string;
|
|
5986
|
+
6: string;
|
|
5987
|
+
8: string;
|
|
5988
|
+
10: string;
|
|
5989
|
+
12: string;
|
|
5990
|
+
13: string;
|
|
5991
|
+
14: string;
|
|
5992
|
+
16: string;
|
|
5993
|
+
18: string;
|
|
5994
|
+
20: string;
|
|
5995
|
+
22: string;
|
|
5996
|
+
24: string;
|
|
5997
|
+
32: string;
|
|
5998
|
+
36: string;
|
|
5999
|
+
40: string;
|
|
6000
|
+
48: string;
|
|
6001
|
+
56: string;
|
|
6002
|
+
64: string;
|
|
6003
|
+
72: string;
|
|
6004
|
+
80: string;
|
|
6005
|
+
full: string;
|
|
6006
|
+
};
|
|
6007
|
+
}, {
|
|
6008
|
+
height: "space";
|
|
6009
|
+
width: "space";
|
|
6010
|
+
gap: "space";
|
|
6011
|
+
gridGap: "space";
|
|
6012
|
+
columnGap: "space";
|
|
6013
|
+
gridColumnGap: "space";
|
|
6014
|
+
rowGap: "space";
|
|
6015
|
+
gridRowGap: "space";
|
|
6016
|
+
inset: "space";
|
|
6017
|
+
insetBlock: "space";
|
|
6018
|
+
insetBlockEnd: "space";
|
|
6019
|
+
insetBlockStart: "space";
|
|
6020
|
+
insetInline: "space";
|
|
6021
|
+
insetInlineEnd: "space";
|
|
6022
|
+
insetInlineStart: "space";
|
|
6023
|
+
margin: "space";
|
|
6024
|
+
marginTop: "space";
|
|
6025
|
+
marginRight: "space";
|
|
6026
|
+
marginBottom: "space";
|
|
6027
|
+
marginLeft: "space";
|
|
6028
|
+
marginBlock: "space";
|
|
6029
|
+
marginBlockEnd: "space";
|
|
6030
|
+
marginBlockStart: "space";
|
|
6031
|
+
marginInline: "space";
|
|
6032
|
+
marginInlineEnd: "space";
|
|
6033
|
+
marginInlineStart: "space";
|
|
6034
|
+
padding: "space";
|
|
6035
|
+
paddingTop: "space";
|
|
6036
|
+
paddingRight: "space";
|
|
6037
|
+
paddingBottom: "space";
|
|
6038
|
+
paddingLeft: "space";
|
|
6039
|
+
paddingBlock: "space";
|
|
6040
|
+
paddingBlockEnd: "space";
|
|
6041
|
+
paddingBlockStart: "space";
|
|
6042
|
+
paddingInline: "space";
|
|
6043
|
+
paddingInlineEnd: "space";
|
|
6044
|
+
paddingInlineStart: "space";
|
|
6045
|
+
scrollMargin: "space";
|
|
6046
|
+
scrollMarginTop: "space";
|
|
6047
|
+
scrollMarginRight: "space";
|
|
6048
|
+
scrollMarginBottom: "space";
|
|
6049
|
+
scrollMarginLeft: "space";
|
|
6050
|
+
scrollMarginBlock: "space";
|
|
6051
|
+
scrollMarginBlockEnd: "space";
|
|
6052
|
+
scrollMarginBlockStart: "space";
|
|
6053
|
+
scrollMarginInline: "space";
|
|
6054
|
+
scrollMarginInlineEnd: "space";
|
|
6055
|
+
scrollMarginInlineStart: "space";
|
|
6056
|
+
scrollPadding: "space";
|
|
6057
|
+
scrollPaddingTop: "space";
|
|
6058
|
+
scrollPaddingRight: "space";
|
|
6059
|
+
scrollPaddingBottom: "space";
|
|
6060
|
+
scrollPaddingLeft: "space";
|
|
6061
|
+
scrollPaddingBlock: "space";
|
|
6062
|
+
scrollPaddingBlockEnd: "space";
|
|
6063
|
+
scrollPaddingBlockStart: "space";
|
|
6064
|
+
scrollPaddingInline: "space";
|
|
6065
|
+
scrollPaddingInlineEnd: "space";
|
|
6066
|
+
scrollPaddingInlineStart: "space";
|
|
6067
|
+
top: "space";
|
|
6068
|
+
right: "space";
|
|
6069
|
+
bottom: "space";
|
|
6070
|
+
left: "space";
|
|
6071
|
+
fontSize: "fontSizes";
|
|
6072
|
+
background: "colors";
|
|
6073
|
+
backgroundColor: "colors";
|
|
6074
|
+
backgroundImage: "colors";
|
|
6075
|
+
borderImage: "colors";
|
|
6076
|
+
border: "colors";
|
|
6077
|
+
borderBlock: "colors";
|
|
6078
|
+
borderBlockEnd: "colors";
|
|
6079
|
+
borderBlockStart: "colors";
|
|
6080
|
+
borderBottom: "colors";
|
|
6081
|
+
borderBottomColor: "colors";
|
|
6082
|
+
borderColor: "colors";
|
|
6083
|
+
borderInline: "colors";
|
|
6084
|
+
borderInlineEnd: "colors";
|
|
6085
|
+
borderInlineStart: "colors";
|
|
6086
|
+
borderLeft: "colors";
|
|
6087
|
+
borderLeftColor: "colors";
|
|
6088
|
+
borderRight: "colors";
|
|
6089
|
+
borderRightColor: "colors";
|
|
6090
|
+
borderTop: "colors";
|
|
6091
|
+
borderTopColor: "colors";
|
|
6092
|
+
caretColor: "colors";
|
|
6093
|
+
color: "colors";
|
|
6094
|
+
columnRuleColor: "colors";
|
|
6095
|
+
outline: "colors";
|
|
6096
|
+
outlineColor: "colors";
|
|
6097
|
+
fill: "colors";
|
|
6098
|
+
stroke: "colors";
|
|
6099
|
+
textDecorationColor: "colors";
|
|
6100
|
+
fontFamily: "fonts";
|
|
6101
|
+
fontWeight: "fontWeights";
|
|
6102
|
+
lineHeight: "lineHeights";
|
|
6103
|
+
letterSpacing: "letterSpacings";
|
|
6104
|
+
blockSize: "sizes";
|
|
6105
|
+
minBlockSize: "sizes";
|
|
6106
|
+
maxBlockSize: "sizes";
|
|
6107
|
+
inlineSize: "sizes";
|
|
6108
|
+
minInlineSize: "sizes";
|
|
6109
|
+
maxInlineSize: "sizes";
|
|
6110
|
+
minWidth: "sizes";
|
|
6111
|
+
maxWidth: "sizes";
|
|
6112
|
+
minHeight: "sizes";
|
|
6113
|
+
maxHeight: "sizes";
|
|
6114
|
+
flexBasis: "sizes";
|
|
6115
|
+
gridTemplateColumns: "sizes";
|
|
6116
|
+
gridTemplateRows: "sizes";
|
|
6117
|
+
borderWidth: "borderWidths";
|
|
6118
|
+
borderTopWidth: "borderWidths";
|
|
6119
|
+
borderLeftWidth: "borderWidths";
|
|
6120
|
+
borderRightWidth: "borderWidths";
|
|
6121
|
+
borderBottomWidth: "borderWidths";
|
|
6122
|
+
borderStyle: "borderStyles";
|
|
6123
|
+
borderTopStyle: "borderStyles";
|
|
6124
|
+
borderLeftStyle: "borderStyles";
|
|
6125
|
+
borderRightStyle: "borderStyles";
|
|
6126
|
+
borderBottomStyle: "borderStyles";
|
|
6127
|
+
borderRadius: "radii";
|
|
6128
|
+
borderTopLeftRadius: "radii";
|
|
6129
|
+
borderTopRightRadius: "radii";
|
|
6130
|
+
borderBottomRightRadius: "radii";
|
|
6131
|
+
borderBottomLeftRadius: "radii";
|
|
6132
|
+
boxShadow: "shadows";
|
|
6133
|
+
textShadow: "shadows";
|
|
6134
|
+
transition: "transitions";
|
|
6135
|
+
zIndex: "zIndices";
|
|
6136
|
+
}, {}>>;
|
|
6137
|
+
declare const TimePickerDialogStyled: _stitches_react_types_styled_component.StyledComponent<react__default.ForwardRefExoticComponent<Dialog.ContentProps & react__default.RefAttributes<HTMLDivElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
6138
|
+
colors: {
|
|
6139
|
+
brand50: string;
|
|
6140
|
+
brand100: string;
|
|
6141
|
+
brand200: string;
|
|
6142
|
+
brand300: string;
|
|
6143
|
+
brand400: string;
|
|
6144
|
+
brand500: string;
|
|
6145
|
+
brand600: string;
|
|
6146
|
+
brand700: string;
|
|
6147
|
+
brand800: string;
|
|
6148
|
+
brand900: string;
|
|
6149
|
+
brand950: string;
|
|
6150
|
+
blue50: string;
|
|
6151
|
+
blue100: string;
|
|
6152
|
+
blue200: string;
|
|
6153
|
+
blue300: string;
|
|
6154
|
+
blue400: string;
|
|
6155
|
+
blue500: string;
|
|
6156
|
+
blue600: string;
|
|
6157
|
+
blue700: string;
|
|
6158
|
+
blue800: string;
|
|
6159
|
+
blue900: string;
|
|
6160
|
+
blue950: string;
|
|
6161
|
+
red50: string;
|
|
6162
|
+
red100: string;
|
|
6163
|
+
red200: string;
|
|
6164
|
+
red300: string;
|
|
6165
|
+
red400: string;
|
|
6166
|
+
red500: string;
|
|
6167
|
+
red600: string;
|
|
6168
|
+
red700: string;
|
|
6169
|
+
red800: string;
|
|
6170
|
+
red900: string;
|
|
6171
|
+
red950: string;
|
|
6172
|
+
purple50: string;
|
|
6173
|
+
purple100: string;
|
|
6174
|
+
purple200: string;
|
|
6175
|
+
purple300: string;
|
|
6176
|
+
purple400: string;
|
|
6177
|
+
purple500: string;
|
|
6178
|
+
purple600: string;
|
|
6179
|
+
purple700: string;
|
|
6180
|
+
purple800: string;
|
|
6181
|
+
purple900: string;
|
|
6182
|
+
purple950: string;
|
|
6183
|
+
yellow50: string;
|
|
6184
|
+
yellow100: string;
|
|
6185
|
+
yellow200: string;
|
|
6186
|
+
yellow300: string;
|
|
6187
|
+
yellow400: string;
|
|
6188
|
+
yellow500: string;
|
|
6189
|
+
yellow600: string;
|
|
6190
|
+
yellow700: string;
|
|
6191
|
+
yellow800: string;
|
|
6192
|
+
yellow900: string;
|
|
6193
|
+
yellow950: string;
|
|
6194
|
+
dark50: string;
|
|
6195
|
+
dark100: string;
|
|
6196
|
+
dark200: string;
|
|
6197
|
+
dark300: string;
|
|
6198
|
+
dark400: string;
|
|
6199
|
+
dark500: string;
|
|
6200
|
+
dark600: string;
|
|
6201
|
+
dark700: string;
|
|
6202
|
+
dark800: string;
|
|
6203
|
+
dark900: string;
|
|
6204
|
+
dark950: string;
|
|
6205
|
+
neutral50: string;
|
|
6206
|
+
neutral100: string;
|
|
6207
|
+
neutral200: string;
|
|
6208
|
+
neutral300: string;
|
|
6209
|
+
neutral400: string;
|
|
6210
|
+
neutral500: string;
|
|
6211
|
+
neutral600: string;
|
|
6212
|
+
neutral700: string;
|
|
6213
|
+
neutral800: string;
|
|
6214
|
+
neutral900: string;
|
|
6215
|
+
neutral950: string;
|
|
6216
|
+
green50: string;
|
|
6217
|
+
green100: string;
|
|
6218
|
+
green200: string;
|
|
6219
|
+
green300: string;
|
|
6220
|
+
green400: string;
|
|
6221
|
+
green500: string;
|
|
6222
|
+
green600: string;
|
|
6223
|
+
green700: string;
|
|
6224
|
+
green800: string;
|
|
6225
|
+
green900: string;
|
|
6226
|
+
green950: string;
|
|
6227
|
+
grey50: string;
|
|
6228
|
+
grey100: string;
|
|
6229
|
+
grey200: string;
|
|
6230
|
+
grey300: string;
|
|
6231
|
+
grey400: string;
|
|
6232
|
+
grey500: string;
|
|
6233
|
+
grey600: string;
|
|
6234
|
+
grey700: string;
|
|
6235
|
+
grey800: string;
|
|
6236
|
+
grey900: string;
|
|
6237
|
+
grey950: string;
|
|
6238
|
+
error50: string;
|
|
6239
|
+
error100: string;
|
|
6240
|
+
error200: string;
|
|
6241
|
+
error300: string;
|
|
6242
|
+
error400: string;
|
|
6243
|
+
error500: string;
|
|
6244
|
+
error600: string;
|
|
6245
|
+
error700: string;
|
|
6246
|
+
error800: string;
|
|
6247
|
+
error900: string;
|
|
6248
|
+
error950: string;
|
|
6249
|
+
success50: string;
|
|
6250
|
+
success100: string;
|
|
6251
|
+
success200: string;
|
|
6252
|
+
success300: string;
|
|
6253
|
+
success400: string;
|
|
6254
|
+
success500: string;
|
|
6255
|
+
success600: string;
|
|
6256
|
+
success700: string;
|
|
6257
|
+
success800: string;
|
|
6258
|
+
success900: string;
|
|
6259
|
+
success950: string;
|
|
6260
|
+
warning50: string;
|
|
6261
|
+
warning100: string;
|
|
6262
|
+
warning200: string;
|
|
6263
|
+
warning300: string;
|
|
6264
|
+
warning400: string;
|
|
6265
|
+
warning500: string;
|
|
6266
|
+
warning600: string;
|
|
6267
|
+
warning700: string;
|
|
6268
|
+
warning800: string;
|
|
6269
|
+
warning900: string;
|
|
6270
|
+
warning950: string;
|
|
6271
|
+
info50: string;
|
|
6272
|
+
info100: string;
|
|
6273
|
+
info200: string;
|
|
6274
|
+
info300: string;
|
|
6275
|
+
info400: string;
|
|
6276
|
+
info500: string;
|
|
6277
|
+
info600: string;
|
|
6278
|
+
info700: string;
|
|
6279
|
+
info800: string;
|
|
6280
|
+
info900: string;
|
|
6281
|
+
info950: string;
|
|
6282
|
+
};
|
|
6283
|
+
fontSizes: {
|
|
6284
|
+
2: string;
|
|
6285
|
+
4: string;
|
|
6286
|
+
6: string;
|
|
6287
|
+
8: string;
|
|
6288
|
+
10: string;
|
|
6289
|
+
12: string;
|
|
6290
|
+
13: string;
|
|
6291
|
+
14: string;
|
|
6292
|
+
16: string;
|
|
6293
|
+
18: string;
|
|
6294
|
+
20: string;
|
|
6295
|
+
22: string;
|
|
6296
|
+
24: string;
|
|
6297
|
+
32: string;
|
|
6298
|
+
36: string;
|
|
6299
|
+
40: string;
|
|
6300
|
+
48: string;
|
|
6301
|
+
56: string;
|
|
6302
|
+
64: string;
|
|
6303
|
+
72: string;
|
|
6304
|
+
80: string;
|
|
6305
|
+
xs: string;
|
|
6306
|
+
sm: string;
|
|
6307
|
+
md: string;
|
|
6308
|
+
lg: string;
|
|
6309
|
+
'2xl': string;
|
|
6310
|
+
'3xl': string;
|
|
6311
|
+
'4xl': string;
|
|
6312
|
+
full: string;
|
|
6313
|
+
};
|
|
6314
|
+
fonts: {
|
|
6315
|
+
default: string;
|
|
6316
|
+
};
|
|
6317
|
+
fontWeights: {
|
|
6318
|
+
regular: string;
|
|
6319
|
+
medium: string;
|
|
6320
|
+
semibold: string;
|
|
6321
|
+
bold: string;
|
|
6322
|
+
};
|
|
6323
|
+
lineHeights: {
|
|
6324
|
+
smaller: string;
|
|
6325
|
+
shorter: string;
|
|
6326
|
+
short: string;
|
|
6327
|
+
base: string;
|
|
6328
|
+
tall: string;
|
|
6329
|
+
};
|
|
6330
|
+
radii: {
|
|
6331
|
+
'3xs': string;
|
|
6332
|
+
'2xs': string;
|
|
6333
|
+
xs: string;
|
|
6334
|
+
sm: string;
|
|
6335
|
+
md: string;
|
|
6336
|
+
lg: string;
|
|
6337
|
+
xl: string;
|
|
6338
|
+
'2xl': string;
|
|
6339
|
+
'3xl': string;
|
|
6340
|
+
'4xl': string;
|
|
6341
|
+
'5xl': string;
|
|
6342
|
+
'6xl': string;
|
|
6343
|
+
'7xl': string;
|
|
6344
|
+
'8xl': string;
|
|
6345
|
+
'9xl': string;
|
|
6346
|
+
'10xl': string;
|
|
6347
|
+
'11xl': string;
|
|
6348
|
+
'12xl': string;
|
|
6349
|
+
'13xl': string;
|
|
6350
|
+
'14xl': string;
|
|
6351
|
+
full: string;
|
|
6352
|
+
};
|
|
6353
|
+
space: {
|
|
6354
|
+
2: string;
|
|
6355
|
+
4: string;
|
|
6356
|
+
6: string;
|
|
6357
|
+
8: string;
|
|
6358
|
+
10: string;
|
|
6359
|
+
12: string;
|
|
6360
|
+
13: string;
|
|
6361
|
+
14: string;
|
|
6362
|
+
16: string;
|
|
6363
|
+
18: string;
|
|
6364
|
+
20: string;
|
|
6365
|
+
22: string;
|
|
6366
|
+
24: string;
|
|
6367
|
+
32: string;
|
|
6368
|
+
36: string;
|
|
6369
|
+
40: string;
|
|
6370
|
+
48: string;
|
|
6371
|
+
56: string;
|
|
6372
|
+
64: string;
|
|
6373
|
+
72: string;
|
|
6374
|
+
80: string;
|
|
6375
|
+
full: string;
|
|
6376
|
+
};
|
|
6377
|
+
}, {
|
|
6378
|
+
height: "space";
|
|
6379
|
+
width: "space";
|
|
6380
|
+
gap: "space";
|
|
6381
|
+
gridGap: "space";
|
|
6382
|
+
columnGap: "space";
|
|
6383
|
+
gridColumnGap: "space";
|
|
6384
|
+
rowGap: "space";
|
|
6385
|
+
gridRowGap: "space";
|
|
6386
|
+
inset: "space";
|
|
6387
|
+
insetBlock: "space";
|
|
6388
|
+
insetBlockEnd: "space";
|
|
6389
|
+
insetBlockStart: "space";
|
|
6390
|
+
insetInline: "space";
|
|
6391
|
+
insetInlineEnd: "space";
|
|
6392
|
+
insetInlineStart: "space";
|
|
6393
|
+
margin: "space";
|
|
6394
|
+
marginTop: "space";
|
|
6395
|
+
marginRight: "space";
|
|
6396
|
+
marginBottom: "space";
|
|
6397
|
+
marginLeft: "space";
|
|
6398
|
+
marginBlock: "space";
|
|
6399
|
+
marginBlockEnd: "space";
|
|
6400
|
+
marginBlockStart: "space";
|
|
6401
|
+
marginInline: "space";
|
|
6402
|
+
marginInlineEnd: "space";
|
|
6403
|
+
marginInlineStart: "space";
|
|
6404
|
+
padding: "space";
|
|
6405
|
+
paddingTop: "space";
|
|
6406
|
+
paddingRight: "space";
|
|
6407
|
+
paddingBottom: "space";
|
|
6408
|
+
paddingLeft: "space";
|
|
6409
|
+
paddingBlock: "space";
|
|
6410
|
+
paddingBlockEnd: "space";
|
|
6411
|
+
paddingBlockStart: "space";
|
|
6412
|
+
paddingInline: "space";
|
|
6413
|
+
paddingInlineEnd: "space";
|
|
6414
|
+
paddingInlineStart: "space";
|
|
6415
|
+
scrollMargin: "space";
|
|
6416
|
+
scrollMarginTop: "space";
|
|
6417
|
+
scrollMarginRight: "space";
|
|
6418
|
+
scrollMarginBottom: "space";
|
|
6419
|
+
scrollMarginLeft: "space";
|
|
6420
|
+
scrollMarginBlock: "space";
|
|
6421
|
+
scrollMarginBlockEnd: "space";
|
|
6422
|
+
scrollMarginBlockStart: "space";
|
|
6423
|
+
scrollMarginInline: "space";
|
|
6424
|
+
scrollMarginInlineEnd: "space";
|
|
6425
|
+
scrollMarginInlineStart: "space";
|
|
6426
|
+
scrollPadding: "space";
|
|
6427
|
+
scrollPaddingTop: "space";
|
|
6428
|
+
scrollPaddingRight: "space";
|
|
6429
|
+
scrollPaddingBottom: "space";
|
|
6430
|
+
scrollPaddingLeft: "space";
|
|
6431
|
+
scrollPaddingBlock: "space";
|
|
6432
|
+
scrollPaddingBlockEnd: "space";
|
|
6433
|
+
scrollPaddingBlockStart: "space";
|
|
6434
|
+
scrollPaddingInline: "space";
|
|
6435
|
+
scrollPaddingInlineEnd: "space";
|
|
6436
|
+
scrollPaddingInlineStart: "space";
|
|
6437
|
+
top: "space";
|
|
6438
|
+
right: "space";
|
|
6439
|
+
bottom: "space";
|
|
6440
|
+
left: "space";
|
|
6441
|
+
fontSize: "fontSizes";
|
|
6442
|
+
background: "colors";
|
|
6443
|
+
backgroundColor: "colors";
|
|
6444
|
+
backgroundImage: "colors";
|
|
6445
|
+
borderImage: "colors";
|
|
6446
|
+
border: "colors";
|
|
6447
|
+
borderBlock: "colors";
|
|
6448
|
+
borderBlockEnd: "colors";
|
|
6449
|
+
borderBlockStart: "colors";
|
|
6450
|
+
borderBottom: "colors";
|
|
6451
|
+
borderBottomColor: "colors";
|
|
6452
|
+
borderColor: "colors";
|
|
6453
|
+
borderInline: "colors";
|
|
6454
|
+
borderInlineEnd: "colors";
|
|
6455
|
+
borderInlineStart: "colors";
|
|
6456
|
+
borderLeft: "colors";
|
|
6457
|
+
borderLeftColor: "colors";
|
|
6458
|
+
borderRight: "colors";
|
|
6459
|
+
borderRightColor: "colors";
|
|
6460
|
+
borderTop: "colors";
|
|
6461
|
+
borderTopColor: "colors";
|
|
6462
|
+
caretColor: "colors";
|
|
6463
|
+
color: "colors";
|
|
6464
|
+
columnRuleColor: "colors";
|
|
6465
|
+
outline: "colors";
|
|
6466
|
+
outlineColor: "colors";
|
|
6467
|
+
fill: "colors";
|
|
6468
|
+
stroke: "colors";
|
|
6469
|
+
textDecorationColor: "colors";
|
|
6470
|
+
fontFamily: "fonts";
|
|
6471
|
+
fontWeight: "fontWeights";
|
|
6472
|
+
lineHeight: "lineHeights";
|
|
6473
|
+
letterSpacing: "letterSpacings";
|
|
6474
|
+
blockSize: "sizes";
|
|
6475
|
+
minBlockSize: "sizes";
|
|
6476
|
+
maxBlockSize: "sizes";
|
|
6477
|
+
inlineSize: "sizes";
|
|
6478
|
+
minInlineSize: "sizes";
|
|
6479
|
+
maxInlineSize: "sizes";
|
|
6480
|
+
minWidth: "sizes";
|
|
6481
|
+
maxWidth: "sizes";
|
|
6482
|
+
minHeight: "sizes";
|
|
6483
|
+
maxHeight: "sizes";
|
|
6484
|
+
flexBasis: "sizes";
|
|
6485
|
+
gridTemplateColumns: "sizes";
|
|
6486
|
+
gridTemplateRows: "sizes";
|
|
6487
|
+
borderWidth: "borderWidths";
|
|
6488
|
+
borderTopWidth: "borderWidths";
|
|
6489
|
+
borderLeftWidth: "borderWidths";
|
|
6490
|
+
borderRightWidth: "borderWidths";
|
|
6491
|
+
borderBottomWidth: "borderWidths";
|
|
6492
|
+
borderStyle: "borderStyles";
|
|
6493
|
+
borderTopStyle: "borderStyles";
|
|
6494
|
+
borderLeftStyle: "borderStyles";
|
|
6495
|
+
borderRightStyle: "borderStyles";
|
|
6496
|
+
borderBottomStyle: "borderStyles";
|
|
6497
|
+
borderRadius: "radii";
|
|
6498
|
+
borderTopLeftRadius: "radii";
|
|
6499
|
+
borderTopRightRadius: "radii";
|
|
6500
|
+
borderBottomRightRadius: "radii";
|
|
6501
|
+
borderBottomLeftRadius: "radii";
|
|
6502
|
+
boxShadow: "shadows";
|
|
6503
|
+
textShadow: "shadows";
|
|
6504
|
+
transition: "transitions";
|
|
6505
|
+
zIndex: "zIndices";
|
|
6506
|
+
}, {}>>;
|
|
6507
|
+
declare const TimePickerFooterStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
6508
|
+
colors: {
|
|
6509
|
+
brand50: string;
|
|
6510
|
+
brand100: string;
|
|
6511
|
+
brand200: string;
|
|
6512
|
+
brand300: string;
|
|
6513
|
+
brand400: string;
|
|
6514
|
+
brand500: string;
|
|
6515
|
+
brand600: string;
|
|
6516
|
+
brand700: string;
|
|
6517
|
+
brand800: string;
|
|
6518
|
+
brand900: string;
|
|
6519
|
+
brand950: string;
|
|
6520
|
+
blue50: string;
|
|
6521
|
+
blue100: string;
|
|
6522
|
+
blue200: string;
|
|
6523
|
+
blue300: string;
|
|
6524
|
+
blue400: string;
|
|
6525
|
+
blue500: string;
|
|
6526
|
+
blue600: string;
|
|
6527
|
+
blue700: string;
|
|
6528
|
+
blue800: string;
|
|
6529
|
+
blue900: string;
|
|
6530
|
+
blue950: string;
|
|
6531
|
+
red50: string;
|
|
6532
|
+
red100: string;
|
|
6533
|
+
red200: string;
|
|
6534
|
+
red300: string;
|
|
6535
|
+
red400: string;
|
|
6536
|
+
red500: string;
|
|
6537
|
+
red600: string;
|
|
6538
|
+
red700: string;
|
|
6539
|
+
red800: string;
|
|
6540
|
+
red900: string;
|
|
6541
|
+
red950: string;
|
|
6542
|
+
purple50: string;
|
|
6543
|
+
purple100: string;
|
|
6544
|
+
purple200: string;
|
|
6545
|
+
purple300: string;
|
|
6546
|
+
purple400: string;
|
|
6547
|
+
purple500: string;
|
|
6548
|
+
purple600: string;
|
|
6549
|
+
purple700: string;
|
|
6550
|
+
purple800: string;
|
|
6551
|
+
purple900: string;
|
|
6552
|
+
purple950: string;
|
|
6553
|
+
yellow50: string;
|
|
6554
|
+
yellow100: string;
|
|
6555
|
+
yellow200: string;
|
|
6556
|
+
yellow300: string;
|
|
6557
|
+
yellow400: string;
|
|
6558
|
+
yellow500: string;
|
|
6559
|
+
yellow600: string;
|
|
6560
|
+
yellow700: string;
|
|
6561
|
+
yellow800: string;
|
|
6562
|
+
yellow900: string;
|
|
6563
|
+
yellow950: string;
|
|
6564
|
+
dark50: string;
|
|
6565
|
+
dark100: string;
|
|
6566
|
+
dark200: string;
|
|
6567
|
+
dark300: string;
|
|
6568
|
+
dark400: string;
|
|
6569
|
+
dark500: string;
|
|
6570
|
+
dark600: string;
|
|
6571
|
+
dark700: string;
|
|
6572
|
+
dark800: string;
|
|
6573
|
+
dark900: string;
|
|
6574
|
+
dark950: string;
|
|
6575
|
+
neutral50: string;
|
|
6576
|
+
neutral100: string;
|
|
6577
|
+
neutral200: string;
|
|
6578
|
+
neutral300: string;
|
|
6579
|
+
neutral400: string;
|
|
6580
|
+
neutral500: string;
|
|
6581
|
+
neutral600: string;
|
|
6582
|
+
neutral700: string;
|
|
6583
|
+
neutral800: string;
|
|
6584
|
+
neutral900: string;
|
|
6585
|
+
neutral950: string;
|
|
6586
|
+
green50: string;
|
|
6587
|
+
green100: string;
|
|
6588
|
+
green200: string;
|
|
6589
|
+
green300: string;
|
|
6590
|
+
green400: string;
|
|
6591
|
+
green500: string;
|
|
6592
|
+
green600: string;
|
|
6593
|
+
green700: string;
|
|
6594
|
+
green800: string;
|
|
6595
|
+
green900: string;
|
|
6596
|
+
green950: string;
|
|
6597
|
+
grey50: string;
|
|
6598
|
+
grey100: string;
|
|
6599
|
+
grey200: string;
|
|
6600
|
+
grey300: string;
|
|
6601
|
+
grey400: string;
|
|
6602
|
+
grey500: string;
|
|
6603
|
+
grey600: string;
|
|
6604
|
+
grey700: string;
|
|
6605
|
+
grey800: string;
|
|
6606
|
+
grey900: string;
|
|
6607
|
+
grey950: string;
|
|
6608
|
+
error50: string;
|
|
6609
|
+
error100: string;
|
|
6610
|
+
error200: string;
|
|
6611
|
+
error300: string;
|
|
6612
|
+
error400: string;
|
|
6613
|
+
error500: string;
|
|
6614
|
+
error600: string;
|
|
6615
|
+
error700: string;
|
|
6616
|
+
error800: string;
|
|
6617
|
+
error900: string;
|
|
6618
|
+
error950: string;
|
|
6619
|
+
success50: string;
|
|
6620
|
+
success100: string;
|
|
6621
|
+
success200: string;
|
|
6622
|
+
success300: string;
|
|
6623
|
+
success400: string;
|
|
6624
|
+
success500: string;
|
|
6625
|
+
success600: string;
|
|
6626
|
+
success700: string;
|
|
6627
|
+
success800: string;
|
|
6628
|
+
success900: string;
|
|
6629
|
+
success950: string;
|
|
6630
|
+
warning50: string;
|
|
6631
|
+
warning100: string;
|
|
6632
|
+
warning200: string;
|
|
6633
|
+
warning300: string;
|
|
6634
|
+
warning400: string;
|
|
6635
|
+
warning500: string;
|
|
6636
|
+
warning600: string;
|
|
6637
|
+
warning700: string;
|
|
6638
|
+
warning800: string;
|
|
6639
|
+
warning900: string;
|
|
6640
|
+
warning950: string;
|
|
6641
|
+
info50: string;
|
|
6642
|
+
info100: string;
|
|
6643
|
+
info200: string;
|
|
6644
|
+
info300: string;
|
|
6645
|
+
info400: string;
|
|
6646
|
+
info500: string;
|
|
6647
|
+
info600: string;
|
|
6648
|
+
info700: string;
|
|
6649
|
+
info800: string;
|
|
6650
|
+
info900: string;
|
|
6651
|
+
info950: string;
|
|
6652
|
+
};
|
|
6653
|
+
fontSizes: {
|
|
6654
|
+
2: string;
|
|
6655
|
+
4: string;
|
|
6656
|
+
6: string;
|
|
6657
|
+
8: string;
|
|
6658
|
+
10: string;
|
|
6659
|
+
12: string;
|
|
6660
|
+
13: string;
|
|
6661
|
+
14: string;
|
|
6662
|
+
16: string;
|
|
6663
|
+
18: string;
|
|
6664
|
+
20: string;
|
|
6665
|
+
22: string;
|
|
6666
|
+
24: string;
|
|
6667
|
+
32: string;
|
|
6668
|
+
36: string;
|
|
6669
|
+
40: string;
|
|
6670
|
+
48: string;
|
|
6671
|
+
56: string;
|
|
6672
|
+
64: string;
|
|
6673
|
+
72: string;
|
|
6674
|
+
80: string;
|
|
6675
|
+
xs: string;
|
|
6676
|
+
sm: string;
|
|
6677
|
+
md: string;
|
|
6678
|
+
lg: string;
|
|
6679
|
+
'2xl': string;
|
|
6680
|
+
'3xl': string;
|
|
6681
|
+
'4xl': string;
|
|
6682
|
+
full: string;
|
|
6683
|
+
};
|
|
6684
|
+
fonts: {
|
|
6685
|
+
default: string;
|
|
6686
|
+
};
|
|
6687
|
+
fontWeights: {
|
|
6688
|
+
regular: string;
|
|
6689
|
+
medium: string;
|
|
6690
|
+
semibold: string;
|
|
6691
|
+
bold: string;
|
|
6692
|
+
};
|
|
6693
|
+
lineHeights: {
|
|
6694
|
+
smaller: string;
|
|
6695
|
+
shorter: string;
|
|
6696
|
+
short: string;
|
|
6697
|
+
base: string;
|
|
6698
|
+
tall: string;
|
|
6699
|
+
};
|
|
6700
|
+
radii: {
|
|
6701
|
+
'3xs': string;
|
|
6702
|
+
'2xs': string;
|
|
6703
|
+
xs: string;
|
|
6704
|
+
sm: string;
|
|
6705
|
+
md: string;
|
|
6706
|
+
lg: string;
|
|
6707
|
+
xl: string;
|
|
6708
|
+
'2xl': string;
|
|
6709
|
+
'3xl': string;
|
|
6710
|
+
'4xl': string;
|
|
6711
|
+
'5xl': string;
|
|
6712
|
+
'6xl': string;
|
|
6713
|
+
'7xl': string;
|
|
6714
|
+
'8xl': string;
|
|
6715
|
+
'9xl': string;
|
|
6716
|
+
'10xl': string;
|
|
6717
|
+
'11xl': string;
|
|
6718
|
+
'12xl': string;
|
|
6719
|
+
'13xl': string;
|
|
6720
|
+
'14xl': string;
|
|
6721
|
+
full: string;
|
|
6722
|
+
};
|
|
6723
|
+
space: {
|
|
6724
|
+
2: string;
|
|
6725
|
+
4: string;
|
|
6726
|
+
6: string;
|
|
6727
|
+
8: string;
|
|
6728
|
+
10: string;
|
|
6729
|
+
12: string;
|
|
6730
|
+
13: string;
|
|
6731
|
+
14: string;
|
|
6732
|
+
16: string;
|
|
6733
|
+
18: string;
|
|
6734
|
+
20: string;
|
|
6735
|
+
22: string;
|
|
6736
|
+
24: string;
|
|
6737
|
+
32: string;
|
|
6738
|
+
36: string;
|
|
6739
|
+
40: string;
|
|
6740
|
+
48: string;
|
|
6741
|
+
56: string;
|
|
6742
|
+
64: string;
|
|
6743
|
+
72: string;
|
|
6744
|
+
80: string;
|
|
6745
|
+
full: string;
|
|
6746
|
+
};
|
|
6747
|
+
}, {
|
|
6748
|
+
height: "space";
|
|
6749
|
+
width: "space";
|
|
6750
|
+
gap: "space";
|
|
6751
|
+
gridGap: "space";
|
|
6752
|
+
columnGap: "space";
|
|
6753
|
+
gridColumnGap: "space";
|
|
6754
|
+
rowGap: "space";
|
|
6755
|
+
gridRowGap: "space";
|
|
6756
|
+
inset: "space";
|
|
6757
|
+
insetBlock: "space";
|
|
6758
|
+
insetBlockEnd: "space";
|
|
6759
|
+
insetBlockStart: "space";
|
|
6760
|
+
insetInline: "space";
|
|
6761
|
+
insetInlineEnd: "space";
|
|
6762
|
+
insetInlineStart: "space";
|
|
6763
|
+
margin: "space";
|
|
6764
|
+
marginTop: "space";
|
|
6765
|
+
marginRight: "space";
|
|
6766
|
+
marginBottom: "space";
|
|
6767
|
+
marginLeft: "space";
|
|
6768
|
+
marginBlock: "space";
|
|
6769
|
+
marginBlockEnd: "space";
|
|
6770
|
+
marginBlockStart: "space";
|
|
6771
|
+
marginInline: "space";
|
|
6772
|
+
marginInlineEnd: "space";
|
|
6773
|
+
marginInlineStart: "space";
|
|
6774
|
+
padding: "space";
|
|
6775
|
+
paddingTop: "space";
|
|
6776
|
+
paddingRight: "space";
|
|
6777
|
+
paddingBottom: "space";
|
|
6778
|
+
paddingLeft: "space";
|
|
6779
|
+
paddingBlock: "space";
|
|
6780
|
+
paddingBlockEnd: "space";
|
|
6781
|
+
paddingBlockStart: "space";
|
|
6782
|
+
paddingInline: "space";
|
|
6783
|
+
paddingInlineEnd: "space";
|
|
6784
|
+
paddingInlineStart: "space";
|
|
6785
|
+
scrollMargin: "space";
|
|
6786
|
+
scrollMarginTop: "space";
|
|
6787
|
+
scrollMarginRight: "space";
|
|
6788
|
+
scrollMarginBottom: "space";
|
|
6789
|
+
scrollMarginLeft: "space";
|
|
6790
|
+
scrollMarginBlock: "space";
|
|
6791
|
+
scrollMarginBlockEnd: "space";
|
|
6792
|
+
scrollMarginBlockStart: "space";
|
|
6793
|
+
scrollMarginInline: "space";
|
|
6794
|
+
scrollMarginInlineEnd: "space";
|
|
6795
|
+
scrollMarginInlineStart: "space";
|
|
6796
|
+
scrollPadding: "space";
|
|
6797
|
+
scrollPaddingTop: "space";
|
|
6798
|
+
scrollPaddingRight: "space";
|
|
6799
|
+
scrollPaddingBottom: "space";
|
|
6800
|
+
scrollPaddingLeft: "space";
|
|
6801
|
+
scrollPaddingBlock: "space";
|
|
6802
|
+
scrollPaddingBlockEnd: "space";
|
|
6803
|
+
scrollPaddingBlockStart: "space";
|
|
6804
|
+
scrollPaddingInline: "space";
|
|
6805
|
+
scrollPaddingInlineEnd: "space";
|
|
6806
|
+
scrollPaddingInlineStart: "space";
|
|
6807
|
+
top: "space";
|
|
6808
|
+
right: "space";
|
|
6809
|
+
bottom: "space";
|
|
6810
|
+
left: "space";
|
|
6811
|
+
fontSize: "fontSizes";
|
|
6812
|
+
background: "colors";
|
|
6813
|
+
backgroundColor: "colors";
|
|
6814
|
+
backgroundImage: "colors";
|
|
6815
|
+
borderImage: "colors";
|
|
6816
|
+
border: "colors";
|
|
6817
|
+
borderBlock: "colors";
|
|
6818
|
+
borderBlockEnd: "colors";
|
|
6819
|
+
borderBlockStart: "colors";
|
|
6820
|
+
borderBottom: "colors";
|
|
6821
|
+
borderBottomColor: "colors";
|
|
6822
|
+
borderColor: "colors";
|
|
6823
|
+
borderInline: "colors";
|
|
6824
|
+
borderInlineEnd: "colors";
|
|
6825
|
+
borderInlineStart: "colors";
|
|
6826
|
+
borderLeft: "colors";
|
|
6827
|
+
borderLeftColor: "colors";
|
|
6828
|
+
borderRight: "colors";
|
|
6829
|
+
borderRightColor: "colors";
|
|
6830
|
+
borderTop: "colors";
|
|
6831
|
+
borderTopColor: "colors";
|
|
6832
|
+
caretColor: "colors";
|
|
6833
|
+
color: "colors";
|
|
6834
|
+
columnRuleColor: "colors";
|
|
6835
|
+
outline: "colors";
|
|
6836
|
+
outlineColor: "colors";
|
|
6837
|
+
fill: "colors";
|
|
6838
|
+
stroke: "colors";
|
|
6839
|
+
textDecorationColor: "colors";
|
|
6840
|
+
fontFamily: "fonts";
|
|
6841
|
+
fontWeight: "fontWeights";
|
|
6842
|
+
lineHeight: "lineHeights";
|
|
6843
|
+
letterSpacing: "letterSpacings";
|
|
6844
|
+
blockSize: "sizes";
|
|
6845
|
+
minBlockSize: "sizes";
|
|
6846
|
+
maxBlockSize: "sizes";
|
|
6847
|
+
inlineSize: "sizes";
|
|
6848
|
+
minInlineSize: "sizes";
|
|
6849
|
+
maxInlineSize: "sizes";
|
|
6850
|
+
minWidth: "sizes";
|
|
6851
|
+
maxWidth: "sizes";
|
|
6852
|
+
minHeight: "sizes";
|
|
6853
|
+
maxHeight: "sizes";
|
|
6854
|
+
flexBasis: "sizes";
|
|
6855
|
+
gridTemplateColumns: "sizes";
|
|
6856
|
+
gridTemplateRows: "sizes";
|
|
6857
|
+
borderWidth: "borderWidths";
|
|
6858
|
+
borderTopWidth: "borderWidths";
|
|
6859
|
+
borderLeftWidth: "borderWidths";
|
|
6860
|
+
borderRightWidth: "borderWidths";
|
|
6861
|
+
borderBottomWidth: "borderWidths";
|
|
6862
|
+
borderStyle: "borderStyles";
|
|
6863
|
+
borderTopStyle: "borderStyles";
|
|
6864
|
+
borderLeftStyle: "borderStyles";
|
|
6865
|
+
borderRightStyle: "borderStyles";
|
|
6866
|
+
borderBottomStyle: "borderStyles";
|
|
6867
|
+
borderRadius: "radii";
|
|
6868
|
+
borderTopLeftRadius: "radii";
|
|
6869
|
+
borderTopRightRadius: "radii";
|
|
6870
|
+
borderBottomRightRadius: "radii";
|
|
6871
|
+
borderBottomLeftRadius: "radii";
|
|
6872
|
+
boxShadow: "shadows";
|
|
6873
|
+
textShadow: "shadows";
|
|
6874
|
+
transition: "transitions";
|
|
6875
|
+
zIndex: "zIndices";
|
|
6876
|
+
}, {}>>;
|
|
6877
|
+
declare const TimerPickerContentStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
6878
|
+
colors: {
|
|
6879
|
+
brand50: string;
|
|
6880
|
+
brand100: string;
|
|
6881
|
+
brand200: string;
|
|
6882
|
+
brand300: string;
|
|
6883
|
+
brand400: string;
|
|
6884
|
+
brand500: string;
|
|
6885
|
+
brand600: string;
|
|
6886
|
+
brand700: string;
|
|
6887
|
+
brand800: string;
|
|
6888
|
+
brand900: string;
|
|
6889
|
+
brand950: string;
|
|
6890
|
+
blue50: string;
|
|
6891
|
+
blue100: string;
|
|
6892
|
+
blue200: string;
|
|
6893
|
+
blue300: string;
|
|
6894
|
+
blue400: string;
|
|
6895
|
+
blue500: string;
|
|
6896
|
+
blue600: string;
|
|
6897
|
+
blue700: string;
|
|
6898
|
+
blue800: string;
|
|
6899
|
+
blue900: string;
|
|
6900
|
+
blue950: string;
|
|
6901
|
+
red50: string;
|
|
6902
|
+
red100: string;
|
|
6903
|
+
red200: string;
|
|
6904
|
+
red300: string;
|
|
6905
|
+
red400: string;
|
|
6906
|
+
red500: string;
|
|
6907
|
+
red600: string;
|
|
6908
|
+
red700: string;
|
|
6909
|
+
red800: string;
|
|
6910
|
+
red900: string;
|
|
6911
|
+
red950: string;
|
|
6912
|
+
purple50: string;
|
|
6913
|
+
purple100: string;
|
|
6914
|
+
purple200: string;
|
|
6915
|
+
purple300: string;
|
|
6916
|
+
purple400: string;
|
|
6917
|
+
purple500: string;
|
|
6918
|
+
purple600: string;
|
|
6919
|
+
purple700: string;
|
|
6920
|
+
purple800: string;
|
|
6921
|
+
purple900: string;
|
|
6922
|
+
purple950: string;
|
|
6923
|
+
yellow50: string;
|
|
6924
|
+
yellow100: string;
|
|
6925
|
+
yellow200: string;
|
|
6926
|
+
yellow300: string;
|
|
6927
|
+
yellow400: string;
|
|
6928
|
+
yellow500: string;
|
|
6929
|
+
yellow600: string;
|
|
6930
|
+
yellow700: string;
|
|
6931
|
+
yellow800: string;
|
|
6932
|
+
yellow900: string;
|
|
6933
|
+
yellow950: string;
|
|
6934
|
+
dark50: string;
|
|
6935
|
+
dark100: string;
|
|
6936
|
+
dark200: string;
|
|
6937
|
+
dark300: string;
|
|
6938
|
+
dark400: string;
|
|
6939
|
+
dark500: string;
|
|
6940
|
+
dark600: string;
|
|
6941
|
+
dark700: string;
|
|
6942
|
+
dark800: string;
|
|
6943
|
+
dark900: string;
|
|
6944
|
+
dark950: string;
|
|
6945
|
+
neutral50: string;
|
|
6946
|
+
neutral100: string;
|
|
6947
|
+
neutral200: string;
|
|
6948
|
+
neutral300: string;
|
|
6949
|
+
neutral400: string;
|
|
6950
|
+
neutral500: string;
|
|
6951
|
+
neutral600: string;
|
|
6952
|
+
neutral700: string;
|
|
6953
|
+
neutral800: string;
|
|
6954
|
+
neutral900: string;
|
|
6955
|
+
neutral950: string;
|
|
6956
|
+
green50: string;
|
|
6957
|
+
green100: string;
|
|
6958
|
+
green200: string;
|
|
6959
|
+
green300: string;
|
|
6960
|
+
green400: string;
|
|
6961
|
+
green500: string;
|
|
6962
|
+
green600: string;
|
|
6963
|
+
green700: string;
|
|
6964
|
+
green800: string;
|
|
6965
|
+
green900: string;
|
|
6966
|
+
green950: string;
|
|
6967
|
+
grey50: string;
|
|
6968
|
+
grey100: string;
|
|
6969
|
+
grey200: string;
|
|
6970
|
+
grey300: string;
|
|
6971
|
+
grey400: string;
|
|
6972
|
+
grey500: string;
|
|
6973
|
+
grey600: string;
|
|
6974
|
+
grey700: string;
|
|
6975
|
+
grey800: string;
|
|
6976
|
+
grey900: string;
|
|
6977
|
+
grey950: string;
|
|
6978
|
+
error50: string;
|
|
6979
|
+
error100: string;
|
|
6980
|
+
error200: string;
|
|
6981
|
+
error300: string;
|
|
6982
|
+
error400: string;
|
|
6983
|
+
error500: string;
|
|
6984
|
+
error600: string;
|
|
6985
|
+
error700: string;
|
|
6986
|
+
error800: string;
|
|
6987
|
+
error900: string;
|
|
6988
|
+
error950: string;
|
|
6989
|
+
success50: string;
|
|
6990
|
+
success100: string;
|
|
6991
|
+
success200: string;
|
|
6992
|
+
success300: string;
|
|
6993
|
+
success400: string;
|
|
6994
|
+
success500: string;
|
|
6995
|
+
success600: string;
|
|
6996
|
+
success700: string;
|
|
6997
|
+
success800: string;
|
|
6998
|
+
success900: string;
|
|
6999
|
+
success950: string;
|
|
7000
|
+
warning50: string;
|
|
7001
|
+
warning100: string;
|
|
7002
|
+
warning200: string;
|
|
7003
|
+
warning300: string;
|
|
7004
|
+
warning400: string;
|
|
7005
|
+
warning500: string;
|
|
7006
|
+
warning600: string;
|
|
7007
|
+
warning700: string;
|
|
7008
|
+
warning800: string;
|
|
7009
|
+
warning900: string;
|
|
7010
|
+
warning950: string;
|
|
7011
|
+
info50: string;
|
|
7012
|
+
info100: string;
|
|
7013
|
+
info200: string;
|
|
7014
|
+
info300: string;
|
|
7015
|
+
info400: string;
|
|
7016
|
+
info500: string;
|
|
7017
|
+
info600: string;
|
|
7018
|
+
info700: string;
|
|
7019
|
+
info800: string;
|
|
7020
|
+
info900: string;
|
|
7021
|
+
info950: string;
|
|
7022
|
+
};
|
|
7023
|
+
fontSizes: {
|
|
7024
|
+
2: string;
|
|
7025
|
+
4: string;
|
|
7026
|
+
6: string;
|
|
7027
|
+
8: string;
|
|
7028
|
+
10: string;
|
|
7029
|
+
12: string;
|
|
7030
|
+
13: string;
|
|
7031
|
+
14: string;
|
|
7032
|
+
16: string;
|
|
7033
|
+
18: string;
|
|
7034
|
+
20: string;
|
|
7035
|
+
22: string;
|
|
7036
|
+
24: string;
|
|
7037
|
+
32: string;
|
|
7038
|
+
36: string;
|
|
7039
|
+
40: string;
|
|
7040
|
+
48: string;
|
|
7041
|
+
56: string;
|
|
7042
|
+
64: string;
|
|
7043
|
+
72: string;
|
|
7044
|
+
80: string;
|
|
7045
|
+
xs: string;
|
|
7046
|
+
sm: string;
|
|
7047
|
+
md: string;
|
|
7048
|
+
lg: string;
|
|
7049
|
+
'2xl': string;
|
|
7050
|
+
'3xl': string;
|
|
7051
|
+
'4xl': string;
|
|
7052
|
+
full: string;
|
|
7053
|
+
};
|
|
7054
|
+
fonts: {
|
|
7055
|
+
default: string;
|
|
7056
|
+
};
|
|
7057
|
+
fontWeights: {
|
|
7058
|
+
regular: string;
|
|
7059
|
+
medium: string;
|
|
7060
|
+
semibold: string;
|
|
7061
|
+
bold: string;
|
|
7062
|
+
};
|
|
7063
|
+
lineHeights: {
|
|
7064
|
+
smaller: string;
|
|
7065
|
+
shorter: string;
|
|
7066
|
+
short: string;
|
|
7067
|
+
base: string;
|
|
7068
|
+
tall: string;
|
|
7069
|
+
};
|
|
7070
|
+
radii: {
|
|
7071
|
+
'3xs': string;
|
|
7072
|
+
'2xs': string;
|
|
7073
|
+
xs: string;
|
|
7074
|
+
sm: string;
|
|
7075
|
+
md: string;
|
|
7076
|
+
lg: string;
|
|
7077
|
+
xl: string;
|
|
7078
|
+
'2xl': string;
|
|
7079
|
+
'3xl': string;
|
|
7080
|
+
'4xl': string;
|
|
7081
|
+
'5xl': string;
|
|
7082
|
+
'6xl': string;
|
|
7083
|
+
'7xl': string;
|
|
7084
|
+
'8xl': string;
|
|
7085
|
+
'9xl': string;
|
|
7086
|
+
'10xl': string;
|
|
7087
|
+
'11xl': string;
|
|
7088
|
+
'12xl': string;
|
|
7089
|
+
'13xl': string;
|
|
7090
|
+
'14xl': string;
|
|
7091
|
+
full: string;
|
|
7092
|
+
};
|
|
7093
|
+
space: {
|
|
7094
|
+
2: string;
|
|
7095
|
+
4: string;
|
|
7096
|
+
6: string;
|
|
7097
|
+
8: string;
|
|
7098
|
+
10: string;
|
|
7099
|
+
12: string;
|
|
7100
|
+
13: string;
|
|
7101
|
+
14: string;
|
|
7102
|
+
16: string;
|
|
7103
|
+
18: string;
|
|
7104
|
+
20: string;
|
|
7105
|
+
22: string;
|
|
7106
|
+
24: string;
|
|
7107
|
+
32: string;
|
|
7108
|
+
36: string;
|
|
7109
|
+
40: string;
|
|
7110
|
+
48: string;
|
|
7111
|
+
56: string;
|
|
7112
|
+
64: string;
|
|
7113
|
+
72: string;
|
|
7114
|
+
80: string;
|
|
7115
|
+
full: string;
|
|
7116
|
+
};
|
|
7117
|
+
}, {
|
|
7118
|
+
height: "space";
|
|
7119
|
+
width: "space";
|
|
7120
|
+
gap: "space";
|
|
7121
|
+
gridGap: "space";
|
|
7122
|
+
columnGap: "space";
|
|
7123
|
+
gridColumnGap: "space";
|
|
7124
|
+
rowGap: "space";
|
|
7125
|
+
gridRowGap: "space";
|
|
7126
|
+
inset: "space";
|
|
7127
|
+
insetBlock: "space";
|
|
7128
|
+
insetBlockEnd: "space";
|
|
7129
|
+
insetBlockStart: "space";
|
|
7130
|
+
insetInline: "space";
|
|
7131
|
+
insetInlineEnd: "space";
|
|
7132
|
+
insetInlineStart: "space";
|
|
7133
|
+
margin: "space";
|
|
7134
|
+
marginTop: "space";
|
|
7135
|
+
marginRight: "space";
|
|
7136
|
+
marginBottom: "space";
|
|
7137
|
+
marginLeft: "space";
|
|
7138
|
+
marginBlock: "space";
|
|
7139
|
+
marginBlockEnd: "space";
|
|
7140
|
+
marginBlockStart: "space";
|
|
7141
|
+
marginInline: "space";
|
|
7142
|
+
marginInlineEnd: "space";
|
|
7143
|
+
marginInlineStart: "space";
|
|
7144
|
+
padding: "space";
|
|
7145
|
+
paddingTop: "space";
|
|
7146
|
+
paddingRight: "space";
|
|
7147
|
+
paddingBottom: "space";
|
|
7148
|
+
paddingLeft: "space";
|
|
7149
|
+
paddingBlock: "space";
|
|
7150
|
+
paddingBlockEnd: "space";
|
|
7151
|
+
paddingBlockStart: "space";
|
|
7152
|
+
paddingInline: "space";
|
|
7153
|
+
paddingInlineEnd: "space";
|
|
7154
|
+
paddingInlineStart: "space";
|
|
7155
|
+
scrollMargin: "space";
|
|
7156
|
+
scrollMarginTop: "space";
|
|
7157
|
+
scrollMarginRight: "space";
|
|
7158
|
+
scrollMarginBottom: "space";
|
|
7159
|
+
scrollMarginLeft: "space";
|
|
7160
|
+
scrollMarginBlock: "space";
|
|
7161
|
+
scrollMarginBlockEnd: "space";
|
|
7162
|
+
scrollMarginBlockStart: "space";
|
|
7163
|
+
scrollMarginInline: "space";
|
|
7164
|
+
scrollMarginInlineEnd: "space";
|
|
7165
|
+
scrollMarginInlineStart: "space";
|
|
7166
|
+
scrollPadding: "space";
|
|
7167
|
+
scrollPaddingTop: "space";
|
|
7168
|
+
scrollPaddingRight: "space";
|
|
7169
|
+
scrollPaddingBottom: "space";
|
|
7170
|
+
scrollPaddingLeft: "space";
|
|
7171
|
+
scrollPaddingBlock: "space";
|
|
7172
|
+
scrollPaddingBlockEnd: "space";
|
|
7173
|
+
scrollPaddingBlockStart: "space";
|
|
7174
|
+
scrollPaddingInline: "space";
|
|
7175
|
+
scrollPaddingInlineEnd: "space";
|
|
7176
|
+
scrollPaddingInlineStart: "space";
|
|
7177
|
+
top: "space";
|
|
7178
|
+
right: "space";
|
|
7179
|
+
bottom: "space";
|
|
7180
|
+
left: "space";
|
|
7181
|
+
fontSize: "fontSizes";
|
|
7182
|
+
background: "colors";
|
|
7183
|
+
backgroundColor: "colors";
|
|
7184
|
+
backgroundImage: "colors";
|
|
7185
|
+
borderImage: "colors";
|
|
7186
|
+
border: "colors";
|
|
7187
|
+
borderBlock: "colors";
|
|
7188
|
+
borderBlockEnd: "colors";
|
|
7189
|
+
borderBlockStart: "colors";
|
|
7190
|
+
borderBottom: "colors";
|
|
7191
|
+
borderBottomColor: "colors";
|
|
7192
|
+
borderColor: "colors";
|
|
7193
|
+
borderInline: "colors";
|
|
7194
|
+
borderInlineEnd: "colors";
|
|
7195
|
+
borderInlineStart: "colors";
|
|
7196
|
+
borderLeft: "colors";
|
|
7197
|
+
borderLeftColor: "colors";
|
|
7198
|
+
borderRight: "colors";
|
|
7199
|
+
borderRightColor: "colors";
|
|
7200
|
+
borderTop: "colors";
|
|
7201
|
+
borderTopColor: "colors";
|
|
7202
|
+
caretColor: "colors";
|
|
7203
|
+
color: "colors";
|
|
7204
|
+
columnRuleColor: "colors";
|
|
7205
|
+
outline: "colors";
|
|
7206
|
+
outlineColor: "colors";
|
|
7207
|
+
fill: "colors";
|
|
7208
|
+
stroke: "colors";
|
|
7209
|
+
textDecorationColor: "colors";
|
|
7210
|
+
fontFamily: "fonts";
|
|
7211
|
+
fontWeight: "fontWeights";
|
|
7212
|
+
lineHeight: "lineHeights";
|
|
7213
|
+
letterSpacing: "letterSpacings";
|
|
7214
|
+
blockSize: "sizes";
|
|
7215
|
+
minBlockSize: "sizes";
|
|
7216
|
+
maxBlockSize: "sizes";
|
|
7217
|
+
inlineSize: "sizes";
|
|
7218
|
+
minInlineSize: "sizes";
|
|
7219
|
+
maxInlineSize: "sizes";
|
|
7220
|
+
minWidth: "sizes";
|
|
7221
|
+
maxWidth: "sizes";
|
|
7222
|
+
minHeight: "sizes";
|
|
7223
|
+
maxHeight: "sizes";
|
|
7224
|
+
flexBasis: "sizes";
|
|
7225
|
+
gridTemplateColumns: "sizes";
|
|
7226
|
+
gridTemplateRows: "sizes";
|
|
7227
|
+
borderWidth: "borderWidths";
|
|
7228
|
+
borderTopWidth: "borderWidths";
|
|
7229
|
+
borderLeftWidth: "borderWidths";
|
|
7230
|
+
borderRightWidth: "borderWidths";
|
|
7231
|
+
borderBottomWidth: "borderWidths";
|
|
7232
|
+
borderStyle: "borderStyles";
|
|
7233
|
+
borderTopStyle: "borderStyles";
|
|
7234
|
+
borderLeftStyle: "borderStyles";
|
|
7235
|
+
borderRightStyle: "borderStyles";
|
|
7236
|
+
borderBottomStyle: "borderStyles";
|
|
7237
|
+
borderRadius: "radii";
|
|
7238
|
+
borderTopLeftRadius: "radii";
|
|
7239
|
+
borderTopRightRadius: "radii";
|
|
7240
|
+
borderBottomRightRadius: "radii";
|
|
7241
|
+
borderBottomLeftRadius: "radii";
|
|
7242
|
+
boxShadow: "shadows";
|
|
7243
|
+
textShadow: "shadows";
|
|
7244
|
+
transition: "transitions";
|
|
7245
|
+
zIndex: "zIndices";
|
|
7246
|
+
}, {}>>;
|
|
7247
|
+
type TimePickerProps = {
|
|
7248
|
+
selected: string | undefined;
|
|
7249
|
+
setSelected: react__default.Dispatch<react__default.SetStateAction<string | undefined>>;
|
|
7250
|
+
};
|
|
7251
|
+
declare function TimePicker({ selected, setSelected }: TimePickerProps): react_jsx_runtime.JSX.Element;
|
|
7252
|
+
|
|
5380
7253
|
declare const AlertDialogSimpleStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<AlertDialog.ContentProps & react.RefAttributes<HTMLDivElement>>, {
|
|
5381
7254
|
color?: "info" | "warning" | "error" | "success" | undefined;
|
|
5382
7255
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
@@ -10294,4 +12167,4 @@ type SectionProps = ComponentProps<typeof SectionStyled> & {
|
|
|
10294
12167
|
};
|
|
10295
12168
|
declare function Section({ children, ...props }: SectionProps): react_jsx_runtime.JSX.Element;
|
|
10296
12169
|
|
|
10297
|
-
export { Alert, AlertDialogCompleteStyled, AlertDialogDescriptionStyled, AlertDialogRowStyled, AlertDialogSimpleStyled, AlertDialogSubtitleStyled, AlertDialogTitleStyled, AlertDialoghrStyled, type AlertProps, Avatar, type AvatarProps, AvatarStyled, Badge, type BadgeProps, BadgeStyled, Box, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupStyled, ButtonItem, type ButtonItemProps, ButtonItemStyled, type ButtonProps,
|
|
12170
|
+
export { Alert, AlertDialogCompleteStyled, AlertDialogDescriptionStyled, AlertDialogRowStyled, AlertDialogSimpleStyled, AlertDialogSubtitleStyled, AlertDialogTitleStyled, AlertDialoghrStyled, type AlertProps, Avatar, type AvatarProps, AvatarStyled, Badge, type BadgeProps, BadgeStyled, Box, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupStyled, ButtonItem, type ButtonItemProps, ButtonItemStyled, type ButtonProps, Calendar, type CalendarProps, CheckboxGroup, type CheckboxGroupProps, CheckboxGroupStyled, CheckboxItem, type CheckboxItemProps, Container, type ContainerProps, ContainerStyled, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, Filter, FilterItem, type FilterItemProps, type FilterProps, Flex, type FlexProps, FlexStyled, Grid, type GridProps, GridStyled, Icon, Modal, ModalContentStyled, type ModalProps, ModalStyled, ModalTitleStyled, RadioGroup, type RadioGroupProps, RadioGroupStyled, RadioItem, type RadioItemProps, Section, type SectionProps, SectionStyled, Step, StepContent, StepList, type StepProps, StepStyled, StepTrigger, StepWrapper, Switch, type SwitchProps, SwitchStyled, Text, TextField, type TextFieldProps, TextFieldSlot, type TextFieldSlotProps, TextFieldSlotStyled, TextFieldStyled, type TextProps, TextStyle, TimePicker, TimePickerDialogStyled, TimePickerFooterStyled, type TimePickerProps, TimePickerStyled, TimerPickerContentStyled };
|