@coveord/plasma-mantine 55.7.0 → 55.7.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 (28) hide show
  1. package/.turbo/turbo-build.log +3 -3
  2. package/.turbo/turbo-test.log +54 -52
  3. package/dist/.tsbuildinfo +1 -1
  4. package/dist/cjs/components/code-editor/CodeEditor.d.ts +7 -0
  5. package/dist/cjs/components/code-editor/CodeEditor.d.ts.map +1 -1
  6. package/dist/cjs/components/code-editor/CodeEditor.js +6 -3
  7. package/dist/cjs/components/code-editor/CodeEditor.js.map +1 -1
  8. package/dist/cjs/components/modal/Modal.d.ts +2 -2
  9. package/dist/cjs/components/modal/Modal.d.ts.map +1 -1
  10. package/dist/cjs/components/modal/Modal.js.map +1 -1
  11. package/dist/cjs/components/table/use-url-synced-state.d.ts.map +1 -1
  12. package/dist/cjs/components/table/use-url-synced-state.js +29 -19
  13. package/dist/cjs/components/table/use-url-synced-state.js.map +1 -1
  14. package/dist/esm/components/code-editor/CodeEditor.d.ts +7 -0
  15. package/dist/esm/components/code-editor/CodeEditor.d.ts.map +1 -1
  16. package/dist/esm/components/code-editor/CodeEditor.js +4 -2
  17. package/dist/esm/components/code-editor/CodeEditor.js.map +1 -1
  18. package/dist/esm/components/modal/Modal.d.ts +2 -2
  19. package/dist/esm/components/modal/Modal.d.ts.map +1 -1
  20. package/dist/esm/components/modal/Modal.js.map +1 -1
  21. package/dist/esm/components/table/use-url-synced-state.d.ts.map +1 -1
  22. package/dist/esm/components/table/use-url-synced-state.js +26 -18
  23. package/dist/esm/components/table/use-url-synced-state.js.map +1 -1
  24. package/package.json +13 -13
  25. package/src/components/code-editor/CodeEditor.tsx +8 -1
  26. package/src/components/modal/Modal.tsx +2 -2
  27. package/src/components/table/__tests__/use-url-synced-state.unit.spec.ts +189 -138
  28. package/src/components/table/use-url-synced-state.ts +36 -18
@@ -1,7 +1,7 @@
1
1
 
2
- > @coveord/plasma-mantine@55.6.0 build /home/runner/work/plasma/plasma/packages/mantine
2
+ > @coveord/plasma-mantine@55.7.0 build /home/runner/work/plasma/plasma/packages/mantine
3
3
  > node ../../scripts/build
4
4
 
5
- Successfully compiled: 112 files, copied 44 files with swc (772.36ms)
6
- Successfully compiled: 112 files, copied 44 files with swc (827.55ms)
5
+ Successfully compiled: 112 files, copied 44 files with swc (583.92ms)
6
+ Successfully compiled: 112 files, copied 44 files with swc (601.55ms)
7
7
 
@@ -1,66 +1,68 @@
1
1
 
2
- > @coveord/plasma-mantine@55.6.0 test /home/runner/work/plasma/plasma/packages/mantine
2
+ > @coveord/plasma-mantine@55.7.0 test /home/runner/work/plasma/plasma/packages/mantine
3
3
  > TZ=UTC vitest run "--silent"
4
4
 
5
5
  The CJS build of Vite's Node API is deprecated. See https://vite.dev/guide/troubleshooting.html#vite-cjs-node-api-deprecated for more details.
6
6
 
7
-  RUN  v2.1.8 /home/runner/work/plasma/plasma/packages/mantine
7
+  RUN  v3.0.5 /home/runner/work/plasma/plasma/packages/mantine
8
8
 
9
- ✓ src/components/table/__tests__/Table.spec.tsx (12 tests) 1191ms
10
- ✓ Table > when multi row selection is enabled > unselects all the selected rows when clicking on the the unselect button from the table header 312ms
11
- ✓ src/components/table/layouts/__tests__/RowLayout.spec.tsx (17 tests) 1640ms
12
- ✓ src/components/table/__tests__/TableColumnsSelector.spec.tsx (13 tests) 2334ms
13
- ✓ src/components/collection/__tests__/Collection.spec.tsx (11 tests) 786ms
14
- ✓ src/components/table/__tests__/TablePagination.spec.tsx (7 tests) 756ms
15
- ✓ src/components/table/__tests__/TableActions.spec.tsx (6 tests) 978ms
16
- ✓ Table.Actions > displays the actions when the row is selected 314ms
17
- ✓ Table.Actions > displays the secondary actions when the row is selected and the user clicks on more 310ms
18
- ✓ src/components/table/__tests__/use-url-synced-state.unit.spec.ts (10 tests) 54ms
19
- ✓ src/components/inline-confirm/__tests__/InlineConfirm.spec.tsx (8 tests) 638ms
20
- ✓ src/components/table/__tests__/TablePerPage.spec.tsx (7 tests) 709ms
21
- ✓ src/components/table/__tests__/TableFilter.spec.tsx (6 tests) 820ms
22
- ✓ src/components/table/__tests__/TablePredicate.spec.tsx (3 tests) 790ms
23
- ✓ Table.Predicate > goes back to the first page when changing the predicate 529ms
24
- ✓ src/components/date-range-picker/__tests__/DateRangePickerInlineCalendar.spec.tsx (7 tests | 1 skipped) 3647ms
25
- ✓ DateRangePickerInlineCalendar > calls onApply when the user clicks on the apply button 457ms
26
- ✓ DateRangePickerInlineCalendar > calls onApply with the selected dates when clicking in the calendar 845ms
27
- ✓ DateRangePickerInlineCalendar > set end date same as start date if only one date is selected when clicking in the calendar 428ms
28
- ✓ DateRangePickerInlineCalendar > calls onApply with the selected dates when typing in the inputs 1587ms
29
- ✓ src/components/code-editor/__tests__/CodeEditor.spec.tsx (8 tests | 1 skipped) 569ms
30
- ✓ src/components/table/__tests__/Th.spec.tsx (4 tests) 417ms
31
- ✓ src/components/date-range-picker/__tests__/DateRangePickerPopoverCalendar.spec.tsx (4 tests | 2 skipped) 1842ms
32
- ✓ DateRangePickerPopoverCalendar > calls onApply with the selected dates when clicking in the calendar 1715ms
33
- ✓ src/components/table/__tests__/TableCollapsibleColumn.spec.tsx (2 tests) 388ms
34
- ✓ src/components/table/__tests__/TableDateRangePicker.spec.tsx (3 tests) 3567ms
35
- ✓ Table.DateRangePicker > when url sync is activated > sets the selected date range in the url 3330ms
36
- ✓ src/components/header/__tests__/Header.spec.tsx (6 tests) 191ms
37
- ✓ src/components/table/__tests__/TableLastUpdated.spec.tsx (3 tests) 325ms
38
- ✓ src/theme/__tests__/plasmaCSSVariablesResolver.spec.ts (4 tests) 6ms
39
- ✓ src/components/button/__tests__/Button.spec.tsx (4 tests) 337ms
40
- ✓ src/theme/__tests__/mergeCSSVariablesResolvers.spec.ts (3 tests) 5ms
9
+ ✓ src/components/table/__tests__/Table.spec.tsx (12 tests) 1207ms
10
+ ✓ Table > when multi row selection is enabled > unselects all the selected rows when clicking on the the unselect button from the table header 321ms
11
+ ✓ src/components/table/layouts/__tests__/RowLayout.spec.tsx (17 tests) 1637ms
12
+ ✓ src/components/table/__tests__/TableColumnsSelector.spec.tsx (13 tests) 2342ms
13
+ ✓ TableColumnsSelector > renders a disabled checked checkbox for columns that are always visible 315ms
14
+ ✓ src/components/collection/__tests__/Collection.spec.tsx (11 tests) 751ms
15
+ ✓ src/components/table/__tests__/TablePagination.spec.tsx (7 tests) 648ms
16
+ ✓ src/components/table/__tests__/TableActions.spec.tsx (6 tests) 1102ms
17
+ ✓ Table.Actions > displays the secondary actions when the row is selected and the user clicks on more 330ms
18
+ ✓ src/components/table/__tests__/use-url-synced-state.unit.spec.ts (70 tests) 175ms
19
+ ✓ src/components/inline-confirm/__tests__/InlineConfirm.spec.tsx (8 tests) 626ms
20
+ ✓ src/components/table/__tests__/TablePerPage.spec.tsx (7 tests) 716ms
21
+ ✓ src/components/table/__tests__/TableFilter.spec.tsx (6 tests) 913ms
22
+ ✓ src/components/table/__tests__/TablePredicate.spec.tsx (3 tests) 939ms
23
+ ✓ Table.Predicate > goes back to the first page when changing the predicate 633ms
24
+ ✓ src/components/code-editor/__tests__/CodeEditor.spec.tsx (8 tests | 1 skipped) 663ms
25
+ ✓ CodeEditor > renders the monaco editor, a copy to clipboard button and a search button 311ms
26
+ ✓ src/components/date-range-picker/__tests__/DateRangePickerInlineCalendar.spec.tsx (7 tests | 1 skipped) 4939ms
27
+ ✓ DateRangePickerInlineCalendar > calls onApply when the user clicks on the apply button 481ms
28
+ ✓ DateRangePickerInlineCalendar > calls onApply with the selected dates when clicking in the calendar 1057ms
29
+ ✓ DateRangePickerInlineCalendar > set end date same as start date if only one date is selected when clicking in the calendar 486ms
30
+ ✓ DateRangePickerInlineCalendar > calls onApply with the selected dates when typing in the inputs 2526ms
31
+ ✓ src/components/table/__tests__/Th.spec.tsx (4 tests) 478ms
32
+ ✓ src/components/date-range-picker/__tests__/DateRangePickerPopoverCalendar.spec.tsx (4 tests | 2 skipped) 2030ms
33
+ ✓ DateRangePickerPopoverCalendar > calls onApply with the selected dates when clicking in the calendar 1889ms
34
+ ✓ src/components/table/__tests__/TableCollapsibleColumn.spec.tsx (2 tests) 379ms
35
+ ✓ TableCollapsibleColumn > expands the rows when the user clicks on a cell 318ms
36
+ ✓ src/components/table/__tests__/TableDateRangePicker.spec.tsx (3 tests) 3925ms
37
+ ✓ Table.DateRangePicker > when url sync is activated > sets the selected date range in the url 3643ms
38
+ ✓ src/components/header/__tests__/Header.spec.tsx (6 tests) 221ms
39
+ ✓ src/components/table/__tests__/TableLastUpdated.spec.tsx (3 tests) 241ms
40
+ ✓ src/theme/__tests__/plasmaCSSVariablesResolver.spec.ts (4 tests) 12ms
41
+ ✓ src/theme/__tests__/mergeCSSVariablesResolvers.spec.ts (3 tests) 6ms
42
+ ✓ src/components/button/__tests__/Button.spec.tsx (4 tests) 310ms
41
43
  ↓ src/utils/__tests__/overrideComponent.spec.tsx (1 test | 1 skipped)
42
- ✓ src/components/button/__tests__/ButtonWithDisabledTooltip.spec.tsx (3 tests | 1 skipped) 308ms
43
- ✓ src/components/date-range-picker/__tests__/DateRangePickerPresetSelect.spec.tsx (2 tests) 490ms
44
- ✓ DateRangePickerPresetSelect > calls onChange when selecting a preset 402ms
45
- ✓ src/hooks/__tests__/useControlledList.spec.tsx (3 tests) 25ms
46
- ✓ src/components/prompt/__tests__/Prompt.spec.tsx (4 tests) 282ms
47
- ✓ src/components/date-range-picker/__tests__/EditableDateRangePicker.spec.tsx (2 tests) 1778ms
48
- ✓ EditableDateRangePicker > updates when editing values 1539ms
49
- ✓ src/components/copyToClipboard/__tests__/CopyToClipboard.spec.tsx (3 tests) 315ms
50
- ✓ src/components/browser-preview/__tests__/BrowserPreview.spec.tsx (4 tests) 300ms
51
- ✓ src/components/modal/__tests__/ModalFooter.spec.tsx (3 tests) 67ms
52
- ✓ src/components/child-form/__tests__/ChildForm.spec.tsx (3 tests) 208ms
53
- ✓ src/components/modal/__tests__/Modal.spec.tsx (2 tests) 121ms
54
- ✓ src/components/code-editor/search/__tests__/Search.unit.spec.tsx (1 test) 174ms
55
- ✓ src/components/sticky-footer/__tests__/StickyFooter.spec.tsx (1 test) 45ms
56
- ✓ src/components/blank-slate/__tests__/BlankSlate.spec.tsx (1 test) 42ms
44
+ ✓ src/components/button/__tests__/ButtonWithDisabledTooltip.spec.tsx (3 tests | 1 skipped) 272ms
45
+ ✓ src/components/date-range-picker/__tests__/DateRangePickerPresetSelect.spec.tsx (2 tests) 442ms
46
+ ✓ DateRangePickerPresetSelect > calls onChange when selecting a preset 380ms
47
+ ✓ src/hooks/__tests__/useControlledList.spec.tsx (3 tests) 29ms
48
+ ✓ src/components/prompt/__tests__/Prompt.spec.tsx (4 tests) 310ms
49
+ ✓ src/components/date-range-picker/__tests__/EditableDateRangePicker.spec.tsx (2 tests) 1882ms
50
+ ✓ EditableDateRangePicker > updates when editing values 1633ms
51
+ ✓ src/components/copyToClipboard/__tests__/CopyToClipboard.spec.tsx (3 tests) 372ms
52
+ ✓ src/components/browser-preview/__tests__/BrowserPreview.spec.tsx (4 tests) 401ms
53
+ ✓ src/components/modal/__tests__/ModalFooter.spec.tsx (3 tests) 80ms
54
+ ✓ src/components/child-form/__tests__/ChildForm.spec.tsx (3 tests) 209ms
55
+ ✓ src/components/modal/__tests__/Modal.spec.tsx (2 tests) 133ms
56
+ ✓ src/components/code-editor/search/__tests__/Search.unit.spec.tsx (1 test) 198ms
57
+ ✓ src/components/sticky-footer/__tests__/StickyFooter.spec.tsx (1 test) 41ms
58
+ ✓ src/components/blank-slate/__tests__/BlankSlate.spec.tsx (1 test) 40ms
57
59
 
58
60
   Snapshots  1 obsolete
59
61
    ↳ src/components/header/__tests__/Header.spec.tsx
60
62
    · Header > renders the specified breadcrumbs above the title 1
61
63
 
62
64
   Test Files  35 passed | 1 skipped (36)
63
-  Tests  175 passed | 6 skipped (181)
64
-  Start at  19:34:10
65
-  Duration  54.44s (transform 3.92s, setup 9.99s, collect 93.50s, tests 26.14s, environment 20.73s, prepare 4.58s)
65
+  Tests  235 passed | 6 skipped (241)
66
+  Start at  16:39:33
67
+  Duration  56.17s (transform 2.56s, setup 10.30s, collect 94.95s, tests 28.67s, environment 20.93s, prepare 4.49s)
66
68