@povio/ui 3.2.0 → 3.2.1

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 (32) hide show
  1. package/dist/components/inputs/Checkbox/Checkbox.d.ts +4 -2
  2. package/dist/components/inputs/Checkbox/Checkbox.js +83 -69
  3. package/dist/components/inputs/Checkbox/CheckboxGroup.d.ts +23 -0
  4. package/dist/components/inputs/Checkbox/CheckboxGroup.js +363 -0
  5. package/dist/components/inputs/Checkbox/checkbox.cva.d.ts +62 -0
  6. package/dist/components/inputs/Checkbox/checkbox.cva.js +103 -1
  7. package/dist/components/inputs/DateTime/DatePicker/DatePicker.js +1 -1
  8. package/dist/components/inputs/DateTime/DateRangePicker/DateRangePicker.js +1 -1
  9. package/dist/components/inputs/DateTime/DateTimePicker/DateTimePicker.js +1 -1
  10. package/dist/components/inputs/DateTime/TimePicker/TimePicker.js +1 -1
  11. package/dist/components/inputs/DateTime/shared/DateField.js +30 -16
  12. package/dist/components/inputs/DateTime/shared/DatePickerInput.js +2 -2
  13. package/dist/components/inputs/DateTime/shared/TimePickerInput.js +1 -1
  14. package/dist/components/inputs/FormField/FormFieldHeader.js +1 -1
  15. package/dist/components/inputs/Input/NumberInput/NumberInput.js +1 -1
  16. package/dist/components/inputs/Input/NumberRangeInput/NumberRangeField.js +1 -1
  17. package/dist/components/inputs/Input/NumberRangeInput/NumberRangeInput.js +1 -1
  18. package/dist/components/inputs/Input/TextArea/TextArea.js +2 -2
  19. package/dist/components/inputs/Input/TextInput/TextInput.js +1 -1
  20. package/dist/components/inputs/Input/shared/InputContent.js +1 -1
  21. package/dist/components/inputs/Inputs/InputItem.d.ts +1 -0
  22. package/dist/components/inputs/Inputs/InputItem.js +2 -0
  23. package/dist/components/inputs/RadioGroup/RadioGroup.js +1 -1
  24. package/dist/components/inputs/Selection/shared/SelectDesktop.js +1 -1
  25. package/dist/components/inputs/Selection/shared/SelectInput.js +1 -1
  26. package/dist/components/inputs/Skeleton/InputFrame.js +2 -2
  27. package/dist/components/inputs/TextEditor/TextEditor.js +1 -1
  28. package/dist/config/uiOverrides.context.d.ts +3 -0
  29. package/dist/index.d.ts +3 -1
  30. package/dist/index.js +8 -7
  31. package/dist/tw-ui-plugin.js +2 -0
  32. package/package.json +5 -5
@@ -12,6 +12,7 @@ var uiPlugin = plugin(({ addVariant }) => {
12
12
  "&:is(:where(.group\\/select-content)[data-has-search] *)",
13
13
  "&:is(:where(.group\\/select-content)[data-searchable-focus-within] *)",
14
14
  "&:is(:where(.group\\/radio-group-content)[data-radio-group-content] *)",
15
+ "&:is(:where(.group\\/checkbox-group-content)[data-checkbox-group-content] *)",
15
16
  "&:is(:where(.group\\/date-picker-content)[data-has-selection] *)",
16
17
  "&:is(:where(.group\\/date-picker-content)[data-focus-within] *)"
17
18
  ].join(", "));
@@ -22,6 +23,7 @@ var uiPlugin = plugin(({ addVariant }) => {
22
23
  "&:is(:where(.group\\/select-content):has(*:is(input:disabled)) *)",
23
24
  "&:is(:where(.group):has([data-disabled]) *)",
24
25
  "&:is(:where(.group\\/radio-group-content)[data-disabled] *)",
26
+ "&:is(:where(.group\\/checkbox-group-content)[data-disabled] *)",
25
27
  "&:is(:where(.group\\/text-area):has(*:is(textarea:disabled)) *)",
26
28
  "&:is(:where(.group):has(*:is(textarea:disabled)) *)",
27
29
  "&:is(:where(.group\\/text-editor):where([data-rac])[data-disabled] *)",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@povio/ui",
3
- "version": "3.2.0",
3
+ "version": "3.2.1",
4
4
  "type": "module",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -30,12 +30,11 @@
30
30
  "@react-stately/calendar": "^3.9.2",
31
31
  "@react-stately/datepicker": "^3.16.0",
32
32
  "@react-types/shared": "^3.33.0",
33
- "@tanstack/react-query": "~5.89.0",
33
+ "@tanstack/react-query": "~5.90.21",
34
34
  "@tanstack/react-table": "^8.21.3",
35
35
  "axios": "^1.13.2",
36
36
  "class-variance-authority": "^0.7.1",
37
37
  "clsx": "^2.1.1",
38
- "i18next": "25.10.10",
39
38
  "loglevel": "^1.9.2",
40
39
  "loglevel-plugin-prefix": "^0.8.4",
41
40
  "luxon": "^3.7.2",
@@ -43,7 +42,6 @@
43
42
  "react-aria": "^3.46.0",
44
43
  "react-aria-components": "^1.15.1",
45
44
  "react-hook-form": "^7.65.0",
46
- "react-i18next": "^16.5.1",
47
45
  "react-responsive": "^10.0.1",
48
46
  "react-stately": "^3.44.0",
49
47
  "react-toastify": "^11.0.5",
@@ -66,8 +64,10 @@
66
64
  "@tiptap/pm": "^3.19.0",
67
65
  "@tiptap/react": "^3.19.0",
68
66
  "@tiptap/starter-kit": "^3.19.0",
67
+ "i18next": ">=25",
69
68
  "react": "^19.1.0",
70
- "react-dom": "^19.1.0"
69
+ "react-dom": "^19.1.0",
70
+ "react-i18next": ">=16"
71
71
  },
72
72
  "peerDependenciesMeta": {
73
73
  "@tiptap/core": {