@recursica/mantine-adapter 0.44.0 → 0.46.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 (35) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/dist/index.d.ts +106 -54
  3. package/dist/mantine-adapter.cjs +2 -2
  4. package/dist/mantine-adapter.cjs.map +1 -1
  5. package/dist/mantine-adapter.css +1 -1
  6. package/dist/mantine-adapter.js +1901 -1848
  7. package/dist/mantine-adapter.js.map +1 -1
  8. package/package.json +3 -3
  9. package/src/components/Accordion/Accordion.tsx +1 -1
  10. package/src/components/Checkbox/CheckboxGroup.tsx +1 -1
  11. package/src/components/Chip/CHIP_IMPLEMENTATION_NOTES.md +8 -8
  12. package/src/components/Chip/Chip.module.css +5 -5
  13. package/src/components/Chip/Chip.stories.tsx +2 -2
  14. package/src/components/Chip/Chip.tsx +13 -13
  15. package/src/components/Chip/USAGE.md +2 -2
  16. package/src/components/Dropdown/Dropdown.module.css +1 -1
  17. package/src/components/FileInput/FILEINPUT_IMPLEMENTATION_NOTES.md +6 -4
  18. package/src/components/FileInput/FileInput.stories.tsx +3 -0
  19. package/src/components/FileInput/FileInput.tsx +11 -10
  20. package/src/components/FileInput/USAGE.md +1 -0
  21. package/src/components/FileUpload/FILEUPLOAD_IMPLEMENTATION_NOTES.md +12 -12
  22. package/src/components/FileUpload/FileUpload.tsx +9 -9
  23. package/src/components/Link/IMPLEMENTATION_NOTES.md +1 -1
  24. package/src/components/Link/Link.module.css +4 -0
  25. package/src/components/Radio/RadioGroup.tsx +1 -1
  26. package/src/components/SegmentedControl/IMPLEMENTATION_NOTES.md +8 -0
  27. package/src/components/SegmentedControl/SegmentedControl.stories.tsx +17 -28
  28. package/src/components/SegmentedControl/SegmentedControl.tsx +29 -17
  29. package/src/components/SegmentedControl/USAGE.md +13 -0
  30. package/src/components/Switch/SwitchGroup.tsx +1 -1
  31. package/src/components/Table/TABLE_IMPLEMENTATION_NOTES.md +67 -0
  32. package/src/components/Table/Table.icons.tsx +40 -0
  33. package/src/components/Table/Table.stories.tsx +93 -0
  34. package/src/components/Table/Table.tsx +46 -8
  35. package/src/components/Table/USAGE.md +35 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,34 @@
1
1
  # @recursica/mantine-adapter
2
2
 
3
+ ## 0.46.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 0bb2dab: **Breaking:** `Chip`'s `onRemove` prop is renamed to `onDelete` in both adapters, matching MUI's own `onDelete` naming and removing the previous internal aliasing between the two. Update any `Chip` usage passing `onRemove` to `onDelete` — the behavior (rendering the remove/X icon and firing on click or Enter/Space) is unchanged. `FileInput` and `FileUpload`'s own public props are unaffected; they only consume `Chip` internally.
8
+ - 0bb2dab: Updated props with breaking changes
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies [0bb2dab]
13
+ - Updated dependencies [0bb2dab]
14
+ - @recursica/adapter-common@0.21.0
15
+
16
+ ## 0.45.0
17
+
18
+ ### Minor Changes
19
+
20
+ - bcac5c7: Updated to latest css and fixed link
21
+ - 40832c5: Updated Table
22
+
23
+ ### Patch Changes
24
+
25
+ - 8376651: Pin internal `@recursica/*` dependencies to real semver ranges instead of `*`. Published packages previously depended on internal packages (e.g. `@recursica/adapter-common`, `@recursica/official-release`, `@recursica/schemas`, `@recursica/recursica-postcss-vars`) with an unconstrained `*` version range, meaning a fresh install could pull in any future major version, including breaking changes. These now use `^<current-version>` ranges, which Changesets will keep in sync automatically via `updateInternalDependencies: "patch"` on future releases. No effect on local monorepo development — npm workspaces links sibling packages by name regardless of the declared range.
26
+ - Updated dependencies [bcac5c7]
27
+ - Updated dependencies [bcac5c7]
28
+ - Updated dependencies [40832c5]
29
+ - @recursica/official-release@2.8.0
30
+ - @recursica/adapter-common@0.20.0
31
+
3
32
  ## 0.44.0
4
33
 
5
34
  ### Minor Changes