@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/.eslintrc.json CHANGED
@@ -1,3 +1,3 @@
1
- {
2
- "extends": "@lets-events/eslint-config"
1
+ {
2
+ "extends": "@lets-events/eslint-config"
3
3
  }
@@ -1,19 +1,18 @@
1
-
2
-
3
- > @lets-events/react@8.0.0 build
4
- > tsup src/index.tsx --format esm,cjs --dts --external react
5
-
6
- CLI Building entry: src/index.tsx
7
- CLI Using tsconfig: tsconfig.json
8
- CLI tsup v8.4.0
9
- CLI Target: es6
10
- ESM Build start
11
- CJS Build start
12
- CJS dist/index.js 298.32 KB
13
- CJS ⚡️ Build success in 330ms
14
- ESM dist/index.mjs 290.48 KB
15
- ESM ⚡️ Build success in 332ms
16
- DTS Build start
17
- DTS ⚡️ Build success in 5788ms
18
- DTS dist/index.d.mts 345.85 KB
19
- DTS dist/index.d.ts 345.85 KB
1
+
2
+ > @lets-events/react@10.0.0 build
3
+ > tsup src/index.tsx --format esm,cjs --dts --external react
4
+
5
+ CLI Building entry: src/index.tsx
6
+ CLI Using tsconfig: tsconfig.json
7
+ CLI tsup v8.4.0
8
+ CLI Target: es6
9
+ ESM Build start
10
+ CJS Build start
11
+ CJS dist\index.js 273.31 KB
12
+ CJS ⚡️ Build success in 215ms
13
+ ESM dist\index.mjs 265.68 KB
14
+ ESM ⚡️ Build success in 215ms
15
+ DTS Build start
16
+ DTS ⚡️ Build success in 4927ms
17
+ DTS dist\index.d.mts 326.97 KB
18
+ DTS dist\index.d.ts 326.97 KB
package/CHANGELOG.md CHANGED
@@ -1,10 +1,28 @@
1
1
  # @lets-events/react
2
2
 
3
+ ## 10.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - fix for modal
8
+
9
+ ## 9.0.0
10
+
11
+ ### Major Changes
12
+
13
+ - Modal Refacotr
14
+
3
15
  ## 8.0.0
4
16
 
5
17
  ### Major Changes
6
18
 
7
- - criado componente card
19
+ - Modal refactor
20
+
21
+ ## 7.2.1
22
+
23
+ ### Patch Changes
24
+
25
+ - Button attribute type correction
8
26
 
9
27
  ## 7.2.0
10
28