@lets-events/react 7.2.1 → 9.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 +12 -0
  4. package/dist/index.d.mts +6 -5
  5. package/dist/index.d.ts +6 -5
  6. package/dist/index.js +227 -719
  7. package/dist/index.mjs +164 -656
  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 -136
  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 +103 -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 -239
  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
@@ -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,13 @@
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} />
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
13
  }