@lets-events/react 8.0.0 → 10.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/.eslintrc.json +2 -2
  2. package/.turbo/turbo-build.log +18 -19
  3. package/CHANGELOG.md +19 -1
  4. package/dist/index.d.mts +23 -767
  5. package/dist/index.d.ts +23 -767
  6. package/dist/index.js +279 -754
  7. package/dist/index.mjs +215 -688
  8. package/package.json +3 -1
  9. package/src/components/Alert.tsx +303 -303
  10. package/src/components/Avatar.tsx +55 -55
  11. package/src/components/Badge.tsx +128 -128
  12. package/src/components/Box.tsx +3 -3
  13. package/src/components/Button/index.tsx +12 -12
  14. package/src/components/Button/styledComponents.ts +250 -250
  15. package/src/components/ButtonGroup.tsx +484 -484
  16. package/src/components/Calendar/index.tsx +136 -132
  17. package/src/components/Calendar/styledComponents.ts +208 -208
  18. package/src/components/Card.tsx +69 -69
  19. package/src/components/CheckboxGroup.tsx +214 -214
  20. package/src/components/Container.tsx +39 -39
  21. package/src/components/Dropdown.tsx +167 -167
  22. package/src/components/Filter.tsx +164 -164
  23. package/src/components/Flex.tsx +118 -118
  24. package/src/components/Grid.tsx +137 -137
  25. package/src/components/Icon.tsx +47 -47
  26. package/src/components/Modal.tsx +88 -109
  27. package/src/components/RadioGroup.tsx +210 -210
  28. package/src/components/Section.tsx +33 -33
  29. package/src/components/Step.tsx +164 -164
  30. package/src/components/Switch.tsx +108 -108
  31. package/src/components/Text.tsx +30 -30
  32. package/src/components/TextField.tsx +299 -299
  33. package/src/components/TextareaField.tsx +101 -101
  34. package/src/components/TimePicker.tsx +239 -213
  35. package/src/hooks/useOnClickOutside.tsx +20 -20
  36. package/src/index.tsx +31 -31
  37. package/src/styles/index.ts +38 -38
  38. package/src/types/typographyValues.ts +178 -178
  39. package/tsconfig.json +3 -3
package/dist/index.d.ts CHANGED
@@ -7,9 +7,10 @@ import * as _stitches_react_types_css_util from '@stitches/react/types/css-util'
7
7
  import * as react from 'react';
8
8
  import react__default, { ComponentProps, ElementType, ReactNode } from 'react';
9
9
  import * as _radix_ui_themes from '@radix-ui/themes';
10
- import { TextField as TextField$1, RadioGroup as RadioGroup$1, CheckboxGroup as CheckboxGroup$1, DropdownMenu as DropdownMenu$1, Dialog, AlertDialog, Switch as Switch$1 } from '@radix-ui/themes';
10
+ import { TextField as TextField$1, RadioGroup as RadioGroup$1, CheckboxGroup as CheckboxGroup$1, DropdownMenu as DropdownMenu$1, AlertDialog, Switch as Switch$1 } from '@radix-ui/themes';
11
11
  import { CSS } from '@stitches/react';
12
12
  import { MaskOptions, format, unformat } from '@react-input/mask';
13
+ import { Dialog } from 'radix-ui';
13
14
 
14
15
  interface IconProps extends Omit<FontAwesomeIconProps, "icon" | "size"> {
15
16
  name: IconName;
@@ -4266,747 +4267,14 @@ type BadgeProps = ComponentProps<typeof BadgeStyled> & {
4266
4267
  };
4267
4268
  declare function Badge({ asChild, children, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
4268
4269
 
4269
- declare const ModalStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
4270
- colors: {
4271
- brand50: string;
4272
- brand100: string;
4273
- brand200: string;
4274
- brand300: string;
4275
- brand400: string;
4276
- brand500: string;
4277
- brand600: string;
4278
- brand700: string;
4279
- brand800: string;
4280
- brand900: string;
4281
- brand950: string;
4282
- blue50: string;
4283
- blue100: string;
4284
- blue200: string;
4285
- blue300: string;
4286
- blue400: string;
4287
- blue500: string;
4288
- blue600: string;
4289
- blue700: string;
4290
- blue800: string;
4291
- blue900: string;
4292
- blue950: string;
4293
- red50: string;
4294
- red100: string;
4295
- red200: string;
4296
- red300: string;
4297
- red400: string;
4298
- red500: string;
4299
- red600: string;
4300
- red700: string;
4301
- red800: string;
4302
- red900: string;
4303
- red950: string;
4304
- purple50: string;
4305
- purple100: string;
4306
- purple200: string;
4307
- purple300: string;
4308
- purple400: string;
4309
- purple500: string;
4310
- purple600: string;
4311
- purple700: string;
4312
- purple800: string;
4313
- purple900: string;
4314
- purple950: string;
4315
- yellow50: string;
4316
- yellow100: string;
4317
- yellow200: string;
4318
- yellow300: string;
4319
- yellow400: string;
4320
- yellow500: string;
4321
- yellow600: string;
4322
- yellow700: string;
4323
- yellow800: string;
4324
- yellow900: string;
4325
- yellow950: string;
4326
- dark50: string;
4327
- dark100: string;
4328
- dark200: string;
4329
- dark300: string;
4330
- dark400: string;
4331
- dark500: string;
4332
- dark600: string;
4333
- dark700: string;
4334
- dark800: string;
4335
- dark900: string;
4336
- dark950: string;
4337
- neutral50: string;
4338
- neutral100: string;
4339
- neutral200: string;
4340
- neutral300: string;
4341
- neutral400: string;
4342
- neutral500: string;
4343
- neutral600: string;
4344
- neutral700: string;
4345
- neutral800: string;
4346
- neutral900: string;
4347
- neutral950: string;
4348
- green50: string;
4349
- green100: string;
4350
- green200: string;
4351
- green300: string;
4352
- green400: string;
4353
- green500: string;
4354
- green600: string;
4355
- green700: string;
4356
- green800: string;
4357
- green900: string;
4358
- green950: string;
4359
- grey50: string;
4360
- grey100: string;
4361
- grey200: string;
4362
- grey300: string;
4363
- grey400: string;
4364
- grey500: string;
4365
- grey600: string;
4366
- grey700: string;
4367
- grey800: string;
4368
- grey900: string;
4369
- grey950: string;
4370
- error50: string;
4371
- error100: string;
4372
- error200: string;
4373
- error300: string;
4374
- error400: string;
4375
- error500: string;
4376
- error600: string;
4377
- error700: string;
4378
- error800: string;
4379
- error900: string;
4380
- error950: string;
4381
- success50: string;
4382
- success100: string;
4383
- success200: string;
4384
- success300: string;
4385
- success400: string;
4386
- success500: string;
4387
- success600: string;
4388
- success700: string;
4389
- success800: string;
4390
- success900: string;
4391
- success950: string;
4392
- warning50: string;
4393
- warning100: string;
4394
- warning200: string;
4395
- warning300: string;
4396
- warning400: string;
4397
- warning500: string;
4398
- warning600: string;
4399
- warning700: string;
4400
- warning800: string;
4401
- warning900: string;
4402
- warning950: string;
4403
- info50: string;
4404
- info100: string;
4405
- info200: string;
4406
- info300: string;
4407
- info400: string;
4408
- info500: string;
4409
- info600: string;
4410
- info700: string;
4411
- info800: string;
4412
- info900: string;
4413
- info950: string;
4414
- };
4415
- fontSizes: {
4416
- 2: string;
4417
- 4: string;
4418
- 6: string;
4419
- 8: string;
4420
- 10: string;
4421
- 12: string;
4422
- 13: string;
4423
- 14: string;
4424
- 16: string;
4425
- 18: string;
4426
- 20: string;
4427
- 22: string;
4428
- 24: string;
4429
- 32: string;
4430
- 36: string;
4431
- 40: string;
4432
- 48: string;
4433
- 56: string;
4434
- 64: string;
4435
- 72: string;
4436
- 80: string;
4437
- xs: string;
4438
- sm: string;
4439
- md: string;
4440
- lg: string;
4441
- '2xl': string;
4442
- '3xl': string;
4443
- '4xl': string;
4444
- full: string;
4445
- };
4446
- fonts: {
4447
- default: string;
4448
- };
4449
- fontWeights: {
4450
- regular: string;
4451
- medium: string;
4452
- semibold: string;
4453
- bold: string;
4454
- };
4455
- lineHeights: {
4456
- smaller: string;
4457
- shorter: string;
4458
- short: string;
4459
- base: string;
4460
- tall: string;
4461
- };
4462
- radii: {
4463
- '3xs': string;
4464
- '2xs': string;
4465
- xs: string;
4466
- sm: string;
4467
- md: string;
4468
- lg: string;
4469
- xl: string;
4470
- '2xl': string;
4471
- '3xl': string;
4472
- '4xl': string;
4473
- '5xl': string;
4474
- '6xl': string;
4475
- '7xl': string;
4476
- '8xl': string;
4477
- '9xl': string;
4478
- '10xl': string;
4479
- '11xl': string;
4480
- '12xl': string;
4481
- '13xl': string;
4482
- '14xl': string;
4483
- full: string;
4484
- };
4485
- space: {
4486
- 2: string;
4487
- 4: string;
4488
- 6: string;
4489
- 8: string;
4490
- 10: string;
4491
- 12: string;
4492
- 13: string;
4493
- 14: string;
4494
- 16: string;
4495
- 18: string;
4496
- 20: string;
4497
- 22: string;
4498
- 24: string;
4499
- 32: string;
4500
- 36: string;
4501
- 40: string;
4502
- 48: string;
4503
- 56: string;
4504
- 64: string;
4505
- 72: string;
4506
- 80: string;
4507
- full: string;
4508
- };
4509
- }, {
4510
- height: "space";
4511
- width: "space";
4512
- gap: "space";
4513
- gridGap: "space";
4514
- columnGap: "space";
4515
- gridColumnGap: "space";
4516
- rowGap: "space";
4517
- gridRowGap: "space";
4518
- inset: "space";
4519
- insetBlock: "space";
4520
- insetBlockEnd: "space";
4521
- insetBlockStart: "space";
4522
- insetInline: "space";
4523
- insetInlineEnd: "space";
4524
- insetInlineStart: "space";
4525
- margin: "space";
4526
- marginTop: "space";
4527
- marginRight: "space";
4528
- marginBottom: "space";
4529
- marginLeft: "space";
4530
- marginBlock: "space";
4531
- marginBlockEnd: "space";
4532
- marginBlockStart: "space";
4533
- marginInline: "space";
4534
- marginInlineEnd: "space";
4535
- marginInlineStart: "space";
4536
- padding: "space";
4537
- paddingTop: "space";
4538
- paddingRight: "space";
4539
- paddingBottom: "space";
4540
- paddingLeft: "space";
4541
- paddingBlock: "space";
4542
- paddingBlockEnd: "space";
4543
- paddingBlockStart: "space";
4544
- paddingInline: "space";
4545
- paddingInlineEnd: "space";
4546
- paddingInlineStart: "space";
4547
- scrollMargin: "space";
4548
- scrollMarginTop: "space";
4549
- scrollMarginRight: "space";
4550
- scrollMarginBottom: "space";
4551
- scrollMarginLeft: "space";
4552
- scrollMarginBlock: "space";
4553
- scrollMarginBlockEnd: "space";
4554
- scrollMarginBlockStart: "space";
4555
- scrollMarginInline: "space";
4556
- scrollMarginInlineEnd: "space";
4557
- scrollMarginInlineStart: "space";
4558
- scrollPadding: "space";
4559
- scrollPaddingTop: "space";
4560
- scrollPaddingRight: "space";
4561
- scrollPaddingBottom: "space";
4562
- scrollPaddingLeft: "space";
4563
- scrollPaddingBlock: "space";
4564
- scrollPaddingBlockEnd: "space";
4565
- scrollPaddingBlockStart: "space";
4566
- scrollPaddingInline: "space";
4567
- scrollPaddingInlineEnd: "space";
4568
- scrollPaddingInlineStart: "space";
4569
- top: "space";
4570
- right: "space";
4571
- bottom: "space";
4572
- left: "space";
4573
- fontSize: "fontSizes";
4574
- background: "colors";
4575
- backgroundColor: "colors";
4576
- backgroundImage: "colors";
4577
- borderImage: "colors";
4578
- border: "colors";
4579
- borderBlock: "colors";
4580
- borderBlockEnd: "colors";
4581
- borderBlockStart: "colors";
4582
- borderBottom: "colors";
4583
- borderBottomColor: "colors";
4584
- borderColor: "colors";
4585
- borderInline: "colors";
4586
- borderInlineEnd: "colors";
4587
- borderInlineStart: "colors";
4588
- borderLeft: "colors";
4589
- borderLeftColor: "colors";
4590
- borderRight: "colors";
4591
- borderRightColor: "colors";
4592
- borderTop: "colors";
4593
- borderTopColor: "colors";
4594
- caretColor: "colors";
4595
- color: "colors";
4596
- columnRuleColor: "colors";
4597
- outline: "colors";
4598
- outlineColor: "colors";
4599
- fill: "colors";
4600
- stroke: "colors";
4601
- textDecorationColor: "colors";
4602
- fontFamily: "fonts";
4603
- fontWeight: "fontWeights";
4604
- lineHeight: "lineHeights";
4605
- letterSpacing: "letterSpacings";
4606
- blockSize: "sizes";
4607
- minBlockSize: "sizes";
4608
- maxBlockSize: "sizes";
4609
- inlineSize: "sizes";
4610
- minInlineSize: "sizes";
4611
- maxInlineSize: "sizes";
4612
- minWidth: "sizes";
4613
- maxWidth: "sizes";
4614
- minHeight: "sizes";
4615
- maxHeight: "sizes";
4616
- flexBasis: "sizes";
4617
- gridTemplateColumns: "sizes";
4618
- gridTemplateRows: "sizes";
4619
- borderWidth: "borderWidths";
4620
- borderTopWidth: "borderWidths";
4621
- borderLeftWidth: "borderWidths";
4622
- borderRightWidth: "borderWidths";
4623
- borderBottomWidth: "borderWidths";
4624
- borderStyle: "borderStyles";
4625
- borderTopStyle: "borderStyles";
4626
- borderLeftStyle: "borderStyles";
4627
- borderRightStyle: "borderStyles";
4628
- borderBottomStyle: "borderStyles";
4629
- borderRadius: "radii";
4630
- borderTopLeftRadius: "radii";
4631
- borderTopRightRadius: "radii";
4632
- borderBottomRightRadius: "radii";
4633
- borderBottomLeftRadius: "radii";
4634
- boxShadow: "shadows";
4635
- textShadow: "shadows";
4636
- transition: "transitions";
4637
- zIndex: "zIndices";
4638
- }, {}>>;
4639
- declare const ModalContentStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<Dialog.ContentProps & react.RefAttributes<HTMLDivElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
4640
- colors: {
4641
- brand50: string;
4642
- brand100: string;
4643
- brand200: string;
4644
- brand300: string;
4645
- brand400: string;
4646
- brand500: string;
4647
- brand600: string;
4648
- brand700: string;
4649
- brand800: string;
4650
- brand900: string;
4651
- brand950: string;
4652
- blue50: string;
4653
- blue100: string;
4654
- blue200: string;
4655
- blue300: string;
4656
- blue400: string;
4657
- blue500: string;
4658
- blue600: string;
4659
- blue700: string;
4660
- blue800: string;
4661
- blue900: string;
4662
- blue950: string;
4663
- red50: string;
4664
- red100: string;
4665
- red200: string;
4666
- red300: string;
4667
- red400: string;
4668
- red500: string;
4669
- red600: string;
4670
- red700: string;
4671
- red800: string;
4672
- red900: string;
4673
- red950: string;
4674
- purple50: string;
4675
- purple100: string;
4676
- purple200: string;
4677
- purple300: string;
4678
- purple400: string;
4679
- purple500: string;
4680
- purple600: string;
4681
- purple700: string;
4682
- purple800: string;
4683
- purple900: string;
4684
- purple950: string;
4685
- yellow50: string;
4686
- yellow100: string;
4687
- yellow200: string;
4688
- yellow300: string;
4689
- yellow400: string;
4690
- yellow500: string;
4691
- yellow600: string;
4692
- yellow700: string;
4693
- yellow800: string;
4694
- yellow900: string;
4695
- yellow950: string;
4696
- dark50: string;
4697
- dark100: string;
4698
- dark200: string;
4699
- dark300: string;
4700
- dark400: string;
4701
- dark500: string;
4702
- dark600: string;
4703
- dark700: string;
4704
- dark800: string;
4705
- dark900: string;
4706
- dark950: string;
4707
- neutral50: string;
4708
- neutral100: string;
4709
- neutral200: string;
4710
- neutral300: string;
4711
- neutral400: string;
4712
- neutral500: string;
4713
- neutral600: string;
4714
- neutral700: string;
4715
- neutral800: string;
4716
- neutral900: string;
4717
- neutral950: string;
4718
- green50: string;
4719
- green100: string;
4720
- green200: string;
4721
- green300: string;
4722
- green400: string;
4723
- green500: string;
4724
- green600: string;
4725
- green700: string;
4726
- green800: string;
4727
- green900: string;
4728
- green950: string;
4729
- grey50: string;
4730
- grey100: string;
4731
- grey200: string;
4732
- grey300: string;
4733
- grey400: string;
4734
- grey500: string;
4735
- grey600: string;
4736
- grey700: string;
4737
- grey800: string;
4738
- grey900: string;
4739
- grey950: string;
4740
- error50: string;
4741
- error100: string;
4742
- error200: string;
4743
- error300: string;
4744
- error400: string;
4745
- error500: string;
4746
- error600: string;
4747
- error700: string;
4748
- error800: string;
4749
- error900: string;
4750
- error950: string;
4751
- success50: string;
4752
- success100: string;
4753
- success200: string;
4754
- success300: string;
4755
- success400: string;
4756
- success500: string;
4757
- success600: string;
4758
- success700: string;
4759
- success800: string;
4760
- success900: string;
4761
- success950: string;
4762
- warning50: string;
4763
- warning100: string;
4764
- warning200: string;
4765
- warning300: string;
4766
- warning400: string;
4767
- warning500: string;
4768
- warning600: string;
4769
- warning700: string;
4770
- warning800: string;
4771
- warning900: string;
4772
- warning950: string;
4773
- info50: string;
4774
- info100: string;
4775
- info200: string;
4776
- info300: string;
4777
- info400: string;
4778
- info500: string;
4779
- info600: string;
4780
- info700: string;
4781
- info800: string;
4782
- info900: string;
4783
- info950: string;
4784
- };
4785
- fontSizes: {
4786
- 2: string;
4787
- 4: string;
4788
- 6: string;
4789
- 8: string;
4790
- 10: string;
4791
- 12: string;
4792
- 13: string;
4793
- 14: string;
4794
- 16: string;
4795
- 18: string;
4796
- 20: string;
4797
- 22: string;
4798
- 24: string;
4799
- 32: string;
4800
- 36: string;
4801
- 40: string;
4802
- 48: string;
4803
- 56: string;
4804
- 64: string;
4805
- 72: string;
4806
- 80: string;
4807
- xs: string;
4808
- sm: string;
4809
- md: string;
4810
- lg: string;
4811
- '2xl': string;
4812
- '3xl': string;
4813
- '4xl': string;
4814
- full: string;
4815
- };
4816
- fonts: {
4817
- default: string;
4818
- };
4819
- fontWeights: {
4820
- regular: string;
4821
- medium: string;
4822
- semibold: string;
4823
- bold: string;
4824
- };
4825
- lineHeights: {
4826
- smaller: string;
4827
- shorter: string;
4828
- short: string;
4829
- base: string;
4830
- tall: string;
4831
- };
4832
- radii: {
4833
- '3xs': string;
4834
- '2xs': string;
4835
- xs: string;
4836
- sm: string;
4837
- md: string;
4838
- lg: string;
4839
- xl: string;
4840
- '2xl': string;
4841
- '3xl': string;
4842
- '4xl': string;
4843
- '5xl': string;
4844
- '6xl': string;
4845
- '7xl': string;
4846
- '8xl': string;
4847
- '9xl': string;
4848
- '10xl': string;
4849
- '11xl': string;
4850
- '12xl': string;
4851
- '13xl': string;
4852
- '14xl': string;
4853
- full: string;
4854
- };
4855
- space: {
4856
- 2: string;
4857
- 4: string;
4858
- 6: string;
4859
- 8: string;
4860
- 10: string;
4861
- 12: string;
4862
- 13: string;
4863
- 14: string;
4864
- 16: string;
4865
- 18: string;
4866
- 20: string;
4867
- 22: string;
4868
- 24: string;
4869
- 32: string;
4870
- 36: string;
4871
- 40: string;
4872
- 48: string;
4873
- 56: string;
4874
- 64: string;
4875
- 72: string;
4876
- 80: string;
4877
- full: string;
4878
- };
4879
- }, {
4880
- height: "space";
4881
- width: "space";
4882
- gap: "space";
4883
- gridGap: "space";
4884
- columnGap: "space";
4885
- gridColumnGap: "space";
4886
- rowGap: "space";
4887
- gridRowGap: "space";
4888
- inset: "space";
4889
- insetBlock: "space";
4890
- insetBlockEnd: "space";
4891
- insetBlockStart: "space";
4892
- insetInline: "space";
4893
- insetInlineEnd: "space";
4894
- insetInlineStart: "space";
4895
- margin: "space";
4896
- marginTop: "space";
4897
- marginRight: "space";
4898
- marginBottom: "space";
4899
- marginLeft: "space";
4900
- marginBlock: "space";
4901
- marginBlockEnd: "space";
4902
- marginBlockStart: "space";
4903
- marginInline: "space";
4904
- marginInlineEnd: "space";
4905
- marginInlineStart: "space";
4906
- padding: "space";
4907
- paddingTop: "space";
4908
- paddingRight: "space";
4909
- paddingBottom: "space";
4910
- paddingLeft: "space";
4911
- paddingBlock: "space";
4912
- paddingBlockEnd: "space";
4913
- paddingBlockStart: "space";
4914
- paddingInline: "space";
4915
- paddingInlineEnd: "space";
4916
- paddingInlineStart: "space";
4917
- scrollMargin: "space";
4918
- scrollMarginTop: "space";
4919
- scrollMarginRight: "space";
4920
- scrollMarginBottom: "space";
4921
- scrollMarginLeft: "space";
4922
- scrollMarginBlock: "space";
4923
- scrollMarginBlockEnd: "space";
4924
- scrollMarginBlockStart: "space";
4925
- scrollMarginInline: "space";
4926
- scrollMarginInlineEnd: "space";
4927
- scrollMarginInlineStart: "space";
4928
- scrollPadding: "space";
4929
- scrollPaddingTop: "space";
4930
- scrollPaddingRight: "space";
4931
- scrollPaddingBottom: "space";
4932
- scrollPaddingLeft: "space";
4933
- scrollPaddingBlock: "space";
4934
- scrollPaddingBlockEnd: "space";
4935
- scrollPaddingBlockStart: "space";
4936
- scrollPaddingInline: "space";
4937
- scrollPaddingInlineEnd: "space";
4938
- scrollPaddingInlineStart: "space";
4939
- top: "space";
4940
- right: "space";
4941
- bottom: "space";
4942
- left: "space";
4943
- fontSize: "fontSizes";
4944
- background: "colors";
4945
- backgroundColor: "colors";
4946
- backgroundImage: "colors";
4947
- borderImage: "colors";
4948
- border: "colors";
4949
- borderBlock: "colors";
4950
- borderBlockEnd: "colors";
4951
- borderBlockStart: "colors";
4952
- borderBottom: "colors";
4953
- borderBottomColor: "colors";
4954
- borderColor: "colors";
4955
- borderInline: "colors";
4956
- borderInlineEnd: "colors";
4957
- borderInlineStart: "colors";
4958
- borderLeft: "colors";
4959
- borderLeftColor: "colors";
4960
- borderRight: "colors";
4961
- borderRightColor: "colors";
4962
- borderTop: "colors";
4963
- borderTopColor: "colors";
4964
- caretColor: "colors";
4965
- color: "colors";
4966
- columnRuleColor: "colors";
4967
- outline: "colors";
4968
- outlineColor: "colors";
4969
- fill: "colors";
4970
- stroke: "colors";
4971
- textDecorationColor: "colors";
4972
- fontFamily: "fonts";
4973
- fontWeight: "fontWeights";
4974
- lineHeight: "lineHeights";
4975
- letterSpacing: "letterSpacings";
4976
- blockSize: "sizes";
4977
- minBlockSize: "sizes";
4978
- maxBlockSize: "sizes";
4979
- inlineSize: "sizes";
4980
- minInlineSize: "sizes";
4981
- maxInlineSize: "sizes";
4982
- minWidth: "sizes";
4983
- maxWidth: "sizes";
4984
- minHeight: "sizes";
4985
- maxHeight: "sizes";
4986
- flexBasis: "sizes";
4987
- gridTemplateColumns: "sizes";
4988
- gridTemplateRows: "sizes";
4989
- borderWidth: "borderWidths";
4990
- borderTopWidth: "borderWidths";
4991
- borderLeftWidth: "borderWidths";
4992
- borderRightWidth: "borderWidths";
4993
- borderBottomWidth: "borderWidths";
4994
- borderStyle: "borderStyles";
4995
- borderTopStyle: "borderStyles";
4996
- borderLeftStyle: "borderStyles";
4997
- borderRightStyle: "borderStyles";
4998
- borderBottomStyle: "borderStyles";
4999
- borderRadius: "radii";
5000
- borderTopLeftRadius: "radii";
5001
- borderTopRightRadius: "radii";
5002
- borderBottomRightRadius: "radii";
5003
- borderBottomLeftRadius: "radii";
5004
- boxShadow: "shadows";
5005
- textShadow: "shadows";
5006
- transition: "transitions";
5007
- zIndex: "zIndices";
5008
- }, {}>>;
5009
- declare const ModalTitleStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<Dialog.TitleProps & react.RefAttributes<HTMLHeadingElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
4270
+ type ModalProps = ComponentProps<typeof Dialog.Root> & {
4271
+ trigger?: React.ReactNode;
4272
+ title?: string;
4273
+ children: React.ReactNode;
4274
+ };
4275
+ declare function Modal({ children, title, trigger, ...props }: ModalProps): react_jsx_runtime.JSX.Element;
4276
+
4277
+ declare const CalendarStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
5010
4278
  colors: {
5011
4279
  brand50: string;
5012
4280
  brand100: string;
@@ -5376,19 +4644,18 @@ declare const ModalTitleStyled: _stitches_react_types_styled_component.StyledCom
5376
4644
  transition: "transitions";
5377
4645
  zIndex: "zIndices";
5378
4646
  }, {}>>;
5379
- type ModalProps = ComponentProps<typeof ModalStyled> & {
5380
- trigger: React.ReactNode;
5381
- title?: string;
5382
- children: React.ReactNode;
5383
- cancel?: boolean;
5384
- cancelText?: string;
4647
+
4648
+ type CalendarProps = ComponentProps<typeof CalendarStyled> & {
4649
+ calendarLayout?: "label" | "dropdown" | "dropdown-months" | "dropdown-years";
4650
+ selected: Date | undefined;
4651
+ setSelected: react__default.Dispatch<react__default.SetStateAction<Date | undefined>>;
4652
+ position?: "top" | "bottom";
5385
4653
  action?: boolean;
5386
4654
  actionText?: string;
5387
- onAction?: () => void;
5388
4655
  };
5389
- declare function Modal({ children, title, trigger, cancel, cancelText, action, actionText, onAction, ...props }: ModalProps): react_jsx_runtime.JSX.Element;
4656
+ declare function Calendar({ action, actionText, calendarLayout, selected, setSelected, position, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
5390
4657
 
5391
- declare const CalendarStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
4658
+ declare const TimePickerStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
5392
4659
  colors: {
5393
4660
  brand50: string;
5394
4661
  brand100: string;
@@ -5758,18 +5025,7 @@ declare const CalendarStyled: _stitches_react_types_styled_component.StyledCompo
5758
5025
  transition: "transitions";
5759
5026
  zIndex: "zIndices";
5760
5027
  }, {}>>;
5761
-
5762
- type CalendarProps = ComponentProps<typeof CalendarStyled> & {
5763
- calendarLayout?: "label" | "dropdown" | "dropdown-months" | "dropdown-years";
5764
- selected: Date | undefined;
5765
- setSelected: react__default.Dispatch<react__default.SetStateAction<Date | undefined>>;
5766
- position?: "top" | "bottom";
5767
- action?: boolean;
5768
- actionText?: string;
5769
- };
5770
- declare function Calendar({ action, actionText, calendarLayout, selected, setSelected, position, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
5771
-
5772
- declare const TimePickerStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
5028
+ declare const TimePickerDropdownStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
5773
5029
  colors: {
5774
5030
  brand50: string;
5775
5031
  brand100: string;
@@ -6139,7 +5395,7 @@ declare const TimePickerStyled: _stitches_react_types_styled_component.StyledCom
6139
5395
  transition: "transitions";
6140
5396
  zIndex: "zIndices";
6141
5397
  }, {}>>;
6142
- declare const TimePickerDropdownStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
5398
+ declare const TimePickerFooterStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
6143
5399
  colors: {
6144
5400
  brand50: string;
6145
5401
  brand100: string;
@@ -6509,7 +5765,7 @@ declare const TimePickerDropdownStyled: _stitches_react_types_styled_component.S
6509
5765
  transition: "transitions";
6510
5766
  zIndex: "zIndices";
6511
5767
  }, {}>>;
6512
- declare const TimePickerFooterStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
5768
+ declare const TimerPickerContentStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
6513
5769
  colors: {
6514
5770
  brand50: string;
6515
5771
  brand100: string;
@@ -6879,7 +6135,7 @@ declare const TimePickerFooterStyled: _stitches_react_types_styled_component.Sty
6879
6135
  transition: "transitions";
6880
6136
  zIndex: "zIndices";
6881
6137
  }, {}>>;
6882
- declare const TimerPickerContentStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
6138
+ declare const InputStyled: _stitches_react_types_styled_component.StyledComponent<"input", {}, {}, _stitches_react_types_css_util.CSS<{}, {
6883
6139
  colors: {
6884
6140
  brand50: string;
6885
6141
  brand100: string;
@@ -13299,4 +12555,4 @@ type SectionProps = ComponentProps<typeof SectionStyled> & {
13299
12555
  };
13300
12556
  declare function Section({ children, ...props }: SectionProps): react_jsx_runtime.JSX.Element;
13301
12557
 
13302
- 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, Card, CardContainer, type CardProps, CardStyled, 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, TextareaField, type TextareaFieldProps, TextareaFieldStyle, TimePicker, TimePickerDropdownStyled, TimePickerFooterStyled, type TimePickerProps, TimePickerStyled, TimerPickerContentStyled, maskFormat, maskUnformat };
12558
+ 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, Card, CardContainer, type CardProps, CardStyled, 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, InputStyled, Modal, type ModalProps, 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, TextareaField, type TextareaFieldProps, TextareaFieldStyle, TimePicker, TimePickerDropdownStyled, TimePickerFooterStyled, type TimePickerProps, TimePickerStyled, TimerPickerContentStyled, maskFormat, maskUnformat };