@liguelead/design-system 0.0.7 → 0.0.8

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 (31) hide show
  1. package/components/Button/Button.styles.ts +3 -3
  2. package/components/Button/Button.tsx +62 -56
  3. package/components/Button/Button.types.ts +2 -1
  4. package/components/Checkbox/Checkbox.styles.ts +66 -0
  5. package/components/Checkbox/Checkbox.tsx +40 -0
  6. package/components/Checkbox/Checkbox.types.ts +11 -0
  7. package/components/Checkbox/index.tsx +2 -0
  8. package/components/DatePicker/DatePicker.styles.ts +66 -0
  9. package/components/DatePicker/DatePicker.tsx +135 -0
  10. package/components/DatePicker/DatePicker.types.ts +29 -0
  11. package/components/DatePicker/index.ts +1 -0
  12. package/components/IconButton/IconButton.tsx +53 -50
  13. package/components/SegmentedButton/SegmentedButton.styles.ts +29 -0
  14. package/components/SegmentedButton/SegmentedButton.tsx +49 -0
  15. package/components/SegmentedButton/SegmentedButton.types.ts +20 -0
  16. package/components/SegmentedButton/index.ts +1 -0
  17. package/components/Select/Select.sizes.ts +56 -0
  18. package/components/Select/Select.states.tsx +69 -0
  19. package/components/Select/Select.styles.ts +148 -0
  20. package/components/Select/Select.tsx +144 -0
  21. package/components/Select/Select.types.ts +36 -0
  22. package/components/Select/index.ts +1 -0
  23. package/components/Text/Text.styles.ts +5 -5
  24. package/components/Text/Text.tsx +4 -42
  25. package/components/Text/Text.types.ts +42 -0
  26. package/components/TextField/TextField.tsx +7 -2
  27. package/components/TextField/TextField.types.ts +2 -1
  28. package/components/ThemeProvider/ThemeProvider.tsx +11 -20
  29. package/components/ThemeProvider/style.ts +781 -12
  30. package/components/index.ts +4 -0
  31. package/package.json +4 -2
@@ -1,7 +1,11 @@
1
1
  export { default as Button } from './Button'
2
+ export { default as Checkbox } from './Checkbox'
3
+ export { default as DatePicker } from './DatePicker'
2
4
  export { default as IconButton } from './IconButton'
3
5
  export { default as PageWrapper } from './PageWrapper'
4
6
  export { default as Text } from './Text'
5
7
  export { default as TextField } from './TextField'
6
8
  export { default as ThemeProvider } from './ThemeProvider'
7
9
  export { default as Wizard } from './Wizard'
10
+ export { default as Select } from './Select'
11
+ export { default as SegmentedButton } from './SegmentedButton'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liguelead/design-system",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "type": "module",
5
5
  "main": "components/index.ts",
6
6
  "publishConfig": {
@@ -8,7 +8,9 @@
8
8
  },
9
9
  "dependencies": {
10
10
  "@liguelead/foundation": "^0.0.11",
11
- "@phosphor-icons/react": "^2.1.7"
11
+ "@phosphor-icons/react": "^2.1.7",
12
+ "@radix-ui/react-dropdown-menu": "^2.1.6",
13
+ "@radix-ui/react-select": "^2.1.6"
12
14
  },
13
15
  "scripts": {
14
16
  "lint": "eslint ."