@lets-events/react 11.2.0 → 11.3.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 (56) hide show
  1. package/.eslintrc.json +2 -2
  2. package/.turbo/turbo-build.log +20 -18
  3. package/CHANGELOG.md +6 -0
  4. package/dist/index.d.mts +771 -12
  5. package/dist/index.d.ts +771 -12
  6. package/dist/index.js +283 -146
  7. package/dist/index.mjs +260 -125
  8. package/package.json +1 -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 +16 -13
  14. package/src/components/Button/styledComponents.ts +287 -276
  15. package/src/components/ButtonGroup.tsx +484 -484
  16. package/src/components/Calendar/index.tsx +136 -136
  17. package/src/components/Calendar/styledComponents.ts +209 -209
  18. package/src/components/Card.tsx +48 -48
  19. package/src/components/CheckboxGroup.tsx +214 -214
  20. package/src/components/Container.tsx +39 -39
  21. package/src/components/Drawer/index.tsx +48 -0
  22. package/src/components/Drawer/styledComponents.ts +46 -0
  23. package/src/components/Dropdown.tsx +167 -167
  24. package/src/components/Filter.tsx +164 -164
  25. package/src/components/Flex.tsx +118 -118
  26. package/src/components/FormFields/ErrorFormMessage.tsx +36 -36
  27. package/src/components/FormFields/Form.tsx +25 -25
  28. package/src/components/FormFields/FormLabel.tsx +29 -29
  29. package/src/components/FormFields/TextAreaFormField.tsx +46 -46
  30. package/src/components/FormFields/TextFormField.tsx +46 -46
  31. package/src/components/Grid.tsx +137 -137
  32. package/src/components/Icon.tsx +47 -47
  33. package/src/components/MenuDropdown/index.tsx +30 -0
  34. package/src/components/MenuDropdown/styledComponents.ts +31 -0
  35. package/src/components/Modal.tsx +90 -90
  36. package/src/components/RadioGroup.tsx +210 -210
  37. package/src/components/Section.tsx +33 -33
  38. package/src/components/Step.tsx +164 -164
  39. package/src/components/Switch.tsx +108 -108
  40. package/src/components/Text.tsx +39 -39
  41. package/src/components/TextField.tsx +315 -315
  42. package/src/components/TextareaField.tsx +128 -128
  43. package/src/components/TimePicker.tsx +298 -298
  44. package/src/components/Toast/components/ToastItem.tsx +41 -41
  45. package/src/components/Toast/components/ToastProvider.tsx +63 -63
  46. package/src/components/Toast/hooks/useToast.ts +12 -12
  47. package/src/components/Toast/index.tsx +5 -5
  48. package/src/components/Toast/styles/index.ts +135 -135
  49. package/src/components/Toast/types/index.ts +46 -46
  50. package/src/components/Tooltip/index.tsx +66 -66
  51. package/src/components/Tooltip/styles.ts +77 -77
  52. package/src/hooks/useOnClickOutside.tsx +20 -20
  53. package/src/index.tsx +42 -40
  54. package/src/styles/index.ts +38 -38
  55. package/src/types/typographyValues.ts +178 -178
  56. package/tsconfig.json +3 -3
@@ -1,56 +1,56 @@
1
- import { ComponentProps, ElementType } from 'react'
2
- import { styled } from '../styles'
3
- import { Avatar as AvatarRadix } from "@radix-ui/themes";
4
- export const AvatarStyled = styled(AvatarRadix, {
5
- fontFamily: '$default',
6
- color: '$gray100',
7
- letterSpacing: '0px',
8
- variants: {
9
- size: {
10
- 'xs': { width: '$24', height: '$24', display: 'flex', alignItems: 'center', justifyContent: 'center', fontSize: '$10', },
11
- 'sm': { width: '$32', height: '$32', display: 'flex', alignItems: 'center', justifyContent: 'center', fontSize: '$14', },
12
- 'md': { width: '$40', height: '$40', display: 'flex', alignItems: 'center', justifyContent: 'center', fontSize: '$16', },
13
- 'lg': { width: '$48', height: '$48', display: 'flex', alignItems: 'center', justifyContent: 'center', fontSize: '$18', },
14
- 'xl': { width: '$64', height: '$64', display: 'flex', alignItems: 'center', justifyContent: 'center', fontSize: '$24', },
15
- },
16
- radii: {
17
- full: { borderRadius: '$full' },
18
- },
19
- variant: {
20
- 'without-image': {
21
- border: '1px solid $brand500',
22
- backgroundColor: '$dark50',
23
- color: '$dark700',
24
- fontStyle: 'normal',
25
- fontWeight: 500,
26
- lineHeight: 'normal',
27
- textTransform: 'uppercase',
28
-
29
- },
30
- 'with-image': {
31
- border: 0,
32
- 'img': {
33
- width: '100%',
34
- height: '100%',
35
- objectFit: 'cover',
36
- borderRadius: '$full',
37
- }
38
- },
39
- }
40
- },
41
-
42
- defaultVariants: {
43
- size: 'md',
44
- radii: 'full',
45
- variant: 'without-image'
46
- },
47
- })
48
-
49
- export type AvatarProps = ComponentProps<typeof AvatarStyled> & {
50
- as?: ElementType
51
- fallback?: string
52
- src?: string
53
- }
54
- export function Avatar({ asChild, ...props }: AvatarProps) {
55
- return <AvatarStyled as={AvatarRadix} {...props} />
1
+ import { ComponentProps, ElementType } from 'react'
2
+ import { styled } from '../styles'
3
+ import { Avatar as AvatarRadix } from "@radix-ui/themes";
4
+ export const AvatarStyled = styled(AvatarRadix, {
5
+ fontFamily: '$default',
6
+ color: '$gray100',
7
+ letterSpacing: '0px',
8
+ variants: {
9
+ size: {
10
+ 'xs': { width: '$24', height: '$24', display: 'flex', alignItems: 'center', justifyContent: 'center', fontSize: '$10', },
11
+ 'sm': { width: '$32', height: '$32', display: 'flex', alignItems: 'center', justifyContent: 'center', fontSize: '$14', },
12
+ 'md': { width: '$40', height: '$40', display: 'flex', alignItems: 'center', justifyContent: 'center', fontSize: '$16', },
13
+ 'lg': { width: '$48', height: '$48', display: 'flex', alignItems: 'center', justifyContent: 'center', fontSize: '$18', },
14
+ 'xl': { width: '$64', height: '$64', display: 'flex', alignItems: 'center', justifyContent: 'center', fontSize: '$24', },
15
+ },
16
+ radii: {
17
+ full: { borderRadius: '$full' },
18
+ },
19
+ variant: {
20
+ 'without-image': {
21
+ border: '1px solid $brand500',
22
+ backgroundColor: '$dark50',
23
+ color: '$dark700',
24
+ fontStyle: 'normal',
25
+ fontWeight: 500,
26
+ lineHeight: 'normal',
27
+ textTransform: 'uppercase',
28
+
29
+ },
30
+ 'with-image': {
31
+ border: 0,
32
+ 'img': {
33
+ width: '100%',
34
+ height: '100%',
35
+ objectFit: 'cover',
36
+ borderRadius: '$full',
37
+ }
38
+ },
39
+ }
40
+ },
41
+
42
+ defaultVariants: {
43
+ size: 'md',
44
+ radii: 'full',
45
+ variant: 'without-image'
46
+ },
47
+ })
48
+
49
+ export type AvatarProps = ComponentProps<typeof AvatarStyled> & {
50
+ as?: ElementType
51
+ fallback?: string
52
+ src?: string
53
+ }
54
+ export function Avatar({ asChild, ...props }: AvatarProps) {
55
+ return <AvatarStyled as={AvatarRadix} {...props} />
56
56
  }
@@ -1,128 +1,128 @@
1
- import React from 'react'
2
- import { ComponentProps, ElementType } from 'react'
3
- import { styled } from '../styles'
4
- import { Badge as BadgeRadix } from '@radix-ui/themes'
5
- export const BadgeStyled = styled(BadgeRadix, {
6
- fontFamily: '$default',
7
- borderRadius: '$sm',
8
- verticalAlign: 'middle',
9
- 'svg': {
10
- marginRight: '10px',
11
- },
12
- variants: {
13
- color: {
14
- primary: {
15
- backgroundColor: '$brand100',
16
- color: '$dark700',
17
- },
18
- dark: {
19
- backgroundColor: '$dark700',
20
- color: '$grey50',
21
- },
22
- light: {
23
- backgroundColor: '$neutral200',
24
- color: '$dark700',
25
- },
26
- red: {
27
- backgroundColor: '$red100',
28
- color: '$dark700',
29
- },
30
- green: {
31
- backgroundColor: '$green100',
32
- color: '$dark700',
33
- },
34
- yellow: {
35
- backgroundColor: '$yellow100',
36
- color: '$dark700',
37
- },
38
- orange: {
39
- backgroundColor: '$orange100',
40
- color: '$dark700',
41
- },
42
- blue: {
43
- backgroundColor: '$blue100',
44
- color: '$dark700',
45
- },
46
- pink: {
47
- backgroundColor: '$pink100',
48
- color: '$dark700',
49
- },
50
- purple: {
51
- backgroundColor: '$purple100',
52
- color: '$dark700',
53
- },
54
- grey: {
55
- backgroundColor: '$grey200',
56
- color: '$dark700',
57
- },
58
- disable: {
59
- backgroundColor: '$neutral200',
60
- color: '$grey500',
61
- }
62
-
63
-
64
- },
65
- size: {
66
- xs: {
67
- padding: '$4 $6',
68
- fontSize: '$badgeExtraSmall',
69
- borderRadius: '$2xs',
70
- lineHeight: '$bagdeExtraSmall',
71
- },
72
- sm: {
73
- padding: '$4 $8',
74
- fontSize: '$badgeSmall',
75
- borderRadius: '$xs',
76
- lineHeight: '$badgeSmall',
77
- },
78
- md: {
79
- padding: '$8 $10',
80
- fontSize: '$badgeMedium',
81
- borderRadius: '$sm',
82
- lineHeight: '$badgeMedium',
83
- },
84
- xl: {
85
- padding: '$12 $12',
86
- fontSize: '$badgeLarge',
87
- borderRadius: '$sm',
88
- lineHeight: '$badgeLarge',
89
- },
90
- },
91
- fontWeight: {
92
- regular: { fontWeight: '$regular' },
93
- medium: { fontWeight: '$medium' },
94
- semibold: { fontWeight: '$semibold' },
95
- bold: { fontWeight: '$bold' },
96
- },
97
- radii: {
98
- 'full': {
99
- borderRadius: '$full',
100
- },
101
- },
102
- },
103
-
104
- defaultVariants: {
105
- size: 'md',
106
- color: 'primary',
107
- fontWeight: 'regular',
108
- },
109
- })
110
-
111
- export type BadgeProps = ComponentProps<typeof BadgeStyled> & {
112
- as?: ElementType
113
- icon?: boolean
114
- size: 'md',
115
- children: React.ReactNode
116
- }
117
- export function Badge({ asChild, children, ...props }: BadgeProps) {
118
- return (
119
- <BadgeStyled {...props}>
120
- {React.Children.map(children, (child) => {
121
- if (React.isValidElement(child)) {
122
- return React.cloneElement(child, { size: props.size } as any)
123
- }
124
- return child
125
- })}
126
- </BadgeStyled>
127
- )
128
- }
1
+ import React from 'react'
2
+ import { ComponentProps, ElementType } from 'react'
3
+ import { styled } from '../styles'
4
+ import { Badge as BadgeRadix } from '@radix-ui/themes'
5
+ export const BadgeStyled = styled(BadgeRadix, {
6
+ fontFamily: '$default',
7
+ borderRadius: '$sm',
8
+ verticalAlign: 'middle',
9
+ 'svg': {
10
+ marginRight: '10px',
11
+ },
12
+ variants: {
13
+ color: {
14
+ primary: {
15
+ backgroundColor: '$brand100',
16
+ color: '$dark700',
17
+ },
18
+ dark: {
19
+ backgroundColor: '$dark700',
20
+ color: '$grey50',
21
+ },
22
+ light: {
23
+ backgroundColor: '$neutral200',
24
+ color: '$dark700',
25
+ },
26
+ red: {
27
+ backgroundColor: '$red100',
28
+ color: '$dark700',
29
+ },
30
+ green: {
31
+ backgroundColor: '$green100',
32
+ color: '$dark700',
33
+ },
34
+ yellow: {
35
+ backgroundColor: '$yellow100',
36
+ color: '$dark700',
37
+ },
38
+ orange: {
39
+ backgroundColor: '$orange100',
40
+ color: '$dark700',
41
+ },
42
+ blue: {
43
+ backgroundColor: '$blue100',
44
+ color: '$dark700',
45
+ },
46
+ pink: {
47
+ backgroundColor: '$pink100',
48
+ color: '$dark700',
49
+ },
50
+ purple: {
51
+ backgroundColor: '$purple100',
52
+ color: '$dark700',
53
+ },
54
+ grey: {
55
+ backgroundColor: '$grey200',
56
+ color: '$dark700',
57
+ },
58
+ disable: {
59
+ backgroundColor: '$neutral200',
60
+ color: '$grey500',
61
+ }
62
+
63
+
64
+ },
65
+ size: {
66
+ xs: {
67
+ padding: '$4 $6',
68
+ fontSize: '$badgeExtraSmall',
69
+ borderRadius: '$2xs',
70
+ lineHeight: '$bagdeExtraSmall',
71
+ },
72
+ sm: {
73
+ padding: '$4 $8',
74
+ fontSize: '$badgeSmall',
75
+ borderRadius: '$xs',
76
+ lineHeight: '$badgeSmall',
77
+ },
78
+ md: {
79
+ padding: '$8 $10',
80
+ fontSize: '$badgeMedium',
81
+ borderRadius: '$sm',
82
+ lineHeight: '$badgeMedium',
83
+ },
84
+ xl: {
85
+ padding: '$12 $12',
86
+ fontSize: '$badgeLarge',
87
+ borderRadius: '$sm',
88
+ lineHeight: '$badgeLarge',
89
+ },
90
+ },
91
+ fontWeight: {
92
+ regular: { fontWeight: '$regular' },
93
+ medium: { fontWeight: '$medium' },
94
+ semibold: { fontWeight: '$semibold' },
95
+ bold: { fontWeight: '$bold' },
96
+ },
97
+ radii: {
98
+ 'full': {
99
+ borderRadius: '$full',
100
+ },
101
+ },
102
+ },
103
+
104
+ defaultVariants: {
105
+ size: 'md',
106
+ color: 'primary',
107
+ fontWeight: 'regular',
108
+ },
109
+ })
110
+
111
+ export type BadgeProps = ComponentProps<typeof BadgeStyled> & {
112
+ as?: ElementType
113
+ icon?: boolean
114
+ size: 'md',
115
+ children: React.ReactNode
116
+ }
117
+ export function Badge({ asChild, children, ...props }: BadgeProps) {
118
+ return (
119
+ <BadgeStyled {...props}>
120
+ {React.Children.map(children, (child) => {
121
+ if (React.isValidElement(child)) {
122
+ return React.cloneElement(child, { size: props.size } as any)
123
+ }
124
+ return child
125
+ })}
126
+ </BadgeStyled>
127
+ )
128
+ }
@@ -1,3 +1,3 @@
1
- import { Box as BoxRadix } from "@radix-ui/themes";
2
- export const Box = BoxRadix
3
-
1
+ import { Box as BoxRadix } from "@radix-ui/themes";
2
+ export const Box = BoxRadix
3
+
@@ -1,13 +1,16 @@
1
- import { ComponentProps } from 'react'
2
- import { ButtonStyled } from './styledComponents'
3
- import { Button as ButtonRadix } from '@radix-ui/themes'
4
-
5
-
6
- export interface ButtonProps extends ComponentProps<typeof ButtonStyled> {
7
- asChild?: boolean,
8
- }
9
-
10
- export function Button({ asChild, ...props }: ButtonProps) {
11
- const Component = asChild ? ButtonRadix : 'button'
12
- return <ButtonStyled as={Component} {...props} />
13
- }
1
+ import { ComponentProps } from "react";
2
+ import { ButtonStyled } from "./styledComponents";
3
+ import { Button as ButtonRadix } from "@radix-ui/themes";
4
+ import type { VariantProps } from "@stitches/react";
5
+
6
+ type ButtonVariantProps = VariantProps<typeof ButtonStyled>;
7
+ export interface ButtonProps
8
+ extends ComponentProps<typeof ButtonStyled>,
9
+ ButtonVariantProps {
10
+ asChild?: boolean;
11
+ }
12
+
13
+ export function Button({ asChild, ...props }: ButtonProps) {
14
+ const Component = asChild ? ButtonRadix : "button";
15
+ return <ButtonStyled as={Component} {...props} />;
16
+ }