@coveord/plasma-mantine 49.1.1 → 49.1.3

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 (54) hide show
  1. package/.turbo/turbo-build.log +3 -3
  2. package/.turbo/turbo-test.log +12 -11
  3. package/dist/.tsbuildinfo +1 -1
  4. package/dist/cjs/components/button/Button.js +17 -8
  5. package/dist/cjs/components/button/Button.js.map +1 -1
  6. package/dist/cjs/components/button/ButtonWithDisabledTooltip.js +17 -36
  7. package/dist/cjs/components/button/ButtonWithDisabledTooltip.js.map +1 -1
  8. package/dist/cjs/components/inline-confirm/InlineConfirm.js +2 -0
  9. package/dist/cjs/components/inline-confirm/InlineConfirm.js.map +1 -1
  10. package/dist/cjs/components/inline-confirm/InlineConfirmButton.js +16 -11
  11. package/dist/cjs/components/inline-confirm/InlineConfirmButton.js.map +1 -1
  12. package/dist/cjs/components/inline-confirm/InlineConfirmMenuItem.js +33 -0
  13. package/dist/cjs/components/inline-confirm/InlineConfirmMenuItem.js.map +1 -0
  14. package/dist/cjs/components/menu/Menu.js +17 -6
  15. package/dist/cjs/components/menu/Menu.js.map +1 -1
  16. package/dist/cjs/theme/Theme.js +9 -2
  17. package/dist/cjs/theme/Theme.js.map +1 -1
  18. package/dist/definitions/components/button/Button.d.ts +1 -2
  19. package/dist/definitions/components/button/Button.d.ts.map +1 -1
  20. package/dist/definitions/components/button/ButtonWithDisabledTooltip.d.ts +10 -9
  21. package/dist/definitions/components/button/ButtonWithDisabledTooltip.d.ts.map +1 -1
  22. package/dist/definitions/components/inline-confirm/InlineConfirm.d.ts +2 -0
  23. package/dist/definitions/components/inline-confirm/InlineConfirm.d.ts.map +1 -1
  24. package/dist/definitions/components/inline-confirm/InlineConfirmButton.d.ts +4 -4
  25. package/dist/definitions/components/inline-confirm/InlineConfirmButton.d.ts.map +1 -1
  26. package/dist/definitions/components/inline-confirm/InlineConfirmMenuItem.d.ts +8 -0
  27. package/dist/definitions/components/inline-confirm/InlineConfirmMenuItem.d.ts.map +1 -0
  28. package/dist/definitions/components/menu/Menu.d.ts.map +1 -1
  29. package/dist/definitions/theme/Theme.d.ts.map +1 -1
  30. package/dist/esm/components/button/Button.js +18 -9
  31. package/dist/esm/components/button/Button.js.map +1 -1
  32. package/dist/esm/components/button/ButtonWithDisabledTooltip.js +18 -37
  33. package/dist/esm/components/button/ButtonWithDisabledTooltip.js.map +1 -1
  34. package/dist/esm/components/inline-confirm/InlineConfirm.js +2 -0
  35. package/dist/esm/components/inline-confirm/InlineConfirm.js.map +1 -1
  36. package/dist/esm/components/inline-confirm/InlineConfirmButton.js +16 -11
  37. package/dist/esm/components/inline-confirm/InlineConfirmButton.js.map +1 -1
  38. package/dist/esm/components/inline-confirm/InlineConfirmMenuItem.js +23 -0
  39. package/dist/esm/components/inline-confirm/InlineConfirmMenuItem.js.map +1 -0
  40. package/dist/esm/components/menu/Menu.js +17 -6
  41. package/dist/esm/components/menu/Menu.js.map +1 -1
  42. package/dist/esm/theme/Theme.js +9 -2
  43. package/dist/esm/theme/Theme.js.map +1 -1
  44. package/package.json +1 -1
  45. package/src/components/button/Button.tsx +13 -18
  46. package/src/components/button/ButtonWithDisabledTooltip.tsx +17 -38
  47. package/src/components/button/__tests__/Button.spec.tsx +12 -0
  48. package/src/components/button/__tests__/ButtonWithDisabledTooltip.spec.tsx +22 -28
  49. package/src/components/inline-confirm/InlineConfirm.tsx +3 -0
  50. package/src/components/inline-confirm/InlineConfirmButton.tsx +15 -11
  51. package/src/components/inline-confirm/InlineConfirmMenuItem.tsx +21 -0
  52. package/src/components/inline-confirm/__tests__/InlineConfirm.spec.tsx +25 -0
  53. package/src/components/menu/Menu.tsx +13 -4
  54. package/src/theme/Theme.tsx +7 -0
@@ -1,8 +1,8 @@
1
1
 
2
- > @coveord/plasma-mantine@49.1.0 build /home/runner/work/plasma/plasma/packages/mantine
2
+ > @coveord/plasma-mantine@49.1.2 build /home/runner/work/plasma/plasma/packages/mantine
3
3
  > node ../../scripts/build
4
4
 
5
5
  starting typescript compilation
6
- Successfully compiled: 74 files with swc (254.58ms)
7
- Successfully compiled: 74 files with swc (288.81ms)
6
+ Successfully compiled: 75 files with swc (178.71ms)
7
+ Successfully compiled: 75 files with swc (170.63ms)
8
8
  typescript compilation ended
@@ -1,33 +1,34 @@
1
1
 
2
- > @coveord/plasma-mantine@49.1.0 test /home/runner/work/plasma/plasma/packages/mantine
2
+ > @coveord/plasma-mantine@49.1.2 test /home/runner/work/plasma/plasma/packages/mantine
3
3
  > jest --maxWorkers=65% "--silent"
4
4
 
5
5
  PASS src/components/collection/__tests__/Collection.spec.tsx
6
- PASS src/components/modal-wizard/__tests__/ModalWizard.spec.tsx (7.292 s)
7
- PASS src/components/table/__tests__/Table.spec.tsx (9.964 s)
8
- PASS src/components/date-range-picker/__tests__/DateRangePickerInlineCalendar.spec.tsx (28.39 s)
9
- PASS src/components/date-range-picker/__tests__/DateRangePickerPopoverCalendar.spec.tsx (11.865 s)
6
+ PASS src/components/modal-wizard/__tests__/ModalWizard.spec.tsx
7
+ PASS src/components/table/__tests__/Table.spec.tsx (6.33 s)
10
8
  PASS src/components/inline-confirm/__tests__/InlineConfirm.spec.tsx
9
+ PASS src/components/date-range-picker/__tests__/DateRangePickerInlineCalendar.spec.tsx (19.563 s)
10
+ PASS src/components/date-range-picker/__tests__/DateRangePickerPopoverCalendar.spec.tsx (8.155 s)
11
11
  PASS src/components/table/__tests__/TablePredicate.spec.tsx
12
12
  PASS src/components/table/__tests__/TablePerPage.spec.tsx
13
13
  PASS src/components/table/__tests__/TableFilter.spec.tsx
14
- PASS src/components/table/__tests__/TableDateRangePicker.spec.tsx (10.915 s)
14
+ PASS src/components/table/__tests__/TableDateRangePicker.spec.tsx (7.663 s)
15
15
  PASS src/components/table/__tests__/Th.spec.tsx
16
16
  PASS src/components/code-editor/__tests__/CodeEditor.spec.tsx
17
17
  PASS src/components/table/__tests__/TableActions.spec.tsx
18
18
  PASS src/components/header/__tests__/Header.spec.tsx
19
- PASS src/components/button/__tests__/ButtonWithDisabledTooltip.spec.tsx
20
19
  PASS src/utils/__tests__/overrideComponent.spec.tsx
21
20
  PASS src/components/table/__tests__/TablePagination.spec.tsx
22
21
  PASS src/components/date-range-picker/__tests__/DateRangePickerPresetSelect.spec.tsx
22
+ PASS src/components/button/__tests__/ButtonWithDisabledTooltip.spec.tsx
23
23
  PASS src/components/modal/__tests__/Modal.spec.tsx
24
24
  PASS src/components/date-range-picker/__tests__/EditableDateRangePicker.spec.tsx
25
25
  PASS src/hooks/__tests__/useControlledList.spec.tsx
26
26
  PASS src/components/prompt/__tests__/Prompt.spec.tsx
27
27
  PASS src/components/sticky-footer/__tests__/StickyFooter.spec.tsx
28
+ PASS src/components/button/__tests__/Button.spec.tsx
28
29
  PASS src/components/blank-slate/__tests__/BlankSlate.spec.tsx
29
30
 
30
- Test Suites: 24 passed, 24 total
31
- Tests: 96 passed, 96 total
32
- Snapshots: 7 passed, 7 total
33
- Time: 109.117 s
31
+ Test Suites: 25 passed, 25 total
32
+ Tests: 97 passed, 97 total
33
+ Snapshots: 8 passed, 8 total
34
+ Time: 72.398 s