@coveord/plasma-mantine 57.1.0 → 57.2.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 (34) hide show
  1. package/.turbo/turbo-build.log +4 -4
  2. package/.turbo/turbo-test.log +100 -98
  3. package/dist/.tsbuildinfo +1 -1
  4. package/dist/cjs/components/AppShell/AppShell.d.ts +8 -1
  5. package/dist/cjs/components/AppShell/AppShell.d.ts.map +1 -1
  6. package/dist/cjs/components/AppShell/AppShell.js +27 -1
  7. package/dist/cjs/components/AppShell/AppShell.js.map +1 -1
  8. package/dist/cjs/components/AppShell/AppShell.module.css +4 -0
  9. package/dist/cjs/index.d.ts +2 -2
  10. package/dist/cjs/index.d.ts.map +1 -1
  11. package/dist/cjs/index.js.map +1 -1
  12. package/dist/cjs/styles/AppShell.module.css +4 -0
  13. package/dist/cjs/theme/Theme.d.ts.map +1 -1
  14. package/dist/cjs/theme/Theme.js +13 -0
  15. package/dist/cjs/theme/Theme.js.map +1 -1
  16. package/dist/esm/components/AppShell/AppShell.d.ts +8 -1
  17. package/dist/esm/components/AppShell/AppShell.d.ts.map +1 -1
  18. package/dist/esm/components/AppShell/AppShell.js +15 -3
  19. package/dist/esm/components/AppShell/AppShell.js.map +1 -1
  20. package/dist/esm/components/AppShell/AppShell.module.css +4 -0
  21. package/dist/esm/index.d.ts +2 -2
  22. package/dist/esm/index.d.ts.map +1 -1
  23. package/dist/esm/index.js.map +1 -1
  24. package/dist/esm/styles/AppShell.module.css +4 -0
  25. package/dist/esm/theme/Theme.d.ts.map +1 -1
  26. package/dist/esm/theme/Theme.js +13 -0
  27. package/dist/esm/theme/Theme.js.map +1 -1
  28. package/package.json +3 -3
  29. package/src/components/AppShell/AppShell.module.css +4 -0
  30. package/src/components/AppShell/AppShell.tsx +27 -0
  31. package/src/index.ts +3 -3
  32. package/src/styles/AppShell.module.css +4 -0
  33. package/src/theme/Theme.tsx +8 -0
  34. package/src/components/AppShell/AppShell.ts +0 -11
@@ -1,9 +1,9 @@
1
1
 
2
- > @coveord/plasma-mantine@57.0.0 build /home/runner/work/plasma/plasma/packages/mantine
2
+ > @coveord/plasma-mantine@57.1.0 build /home/runner/work/plasma/plasma/packages/mantine
3
3
  > node ../../scripts/build
4
4
 
5
- (node:4345) [DEP0190] DeprecationWarning: Passing args to a child process with shell option true can lead to security vulnerabilities, as the arguments are not escaped, only concatenated.
5
+ (node:3950) [DEP0190] DeprecationWarning: Passing args to a child process with shell option true can lead to security vulnerabilities, as the arguments are not escaped, only concatenated.
6
6
  (Use `node --trace-deprecation ...` to show where the warning was created)
7
- Successfully compiled: 232 files, copied 68 files with swc (566.58ms)
8
- Successfully compiled: 232 files, copied 68 files with swc (645.41ms)
7
+ Successfully compiled: 232 files, copied 70 files with swc (639.39ms)
8
+ Successfully compiled: 232 files, copied 70 files with swc (694.95ms)
9
9
 
@@ -1,110 +1,112 @@
1
1
 
2
- > @coveord/plasma-mantine@57.0.0 test /home/runner/work/plasma/plasma/packages/mantine
2
+ > @coveord/plasma-mantine@57.1.0 test /home/runner/work/plasma/plasma/packages/mantine
3
3
  > cross-env TZ=UTC vitest run --silent
4
4
 
5
5
 
6
6
   RUN  v4.0.18 /home/runner/work/plasma/plasma/packages/mantine
7
7
 
8
- ✓ src/components/Collection/__tests__/CollectionWithColumns.spec.tsx (17 tests) 953ms
9
- ✓ src/components/Collection/__tests__/Collection.spec.tsx (18 tests) 1755ms
10
- ✓ removes the item when clicking on its remove button  300ms
11
- ✓ src/components/Table/layouts/__tests__/RowLayout.spec.tsx (17 tests) 2544ms
12
- ✓ renders the data using the RowLayout by default  431ms
13
- ✓ src/components/Table/__tests__/Table.spec.tsx (12 tests) 1752ms
14
- ✓ unselects all the selected rows when clicking on the the unselect button from the table header  321ms
15
- ✓ src/components/Table/__tests__/TablePagination.spec.tsx (7 tests) 938ms
16
- ✓ calculates the number of pages based on the pageSize and the total number of entries  316ms
17
- ✓ src/components/Table/__tests__/TableColumnsSelector.spec.tsx (12 tests) 4809ms
18
- ✓ renders the column selector button in the actions column header when rowConfigurable is true  485ms
19
- ✓ renders all columns in the dropdown except control columns  595ms
20
- ✓ renders all checkboxes checked by default  436ms
21
- ✓ hides a column when the user unchecks it  533ms
22
- ✓ shows a column when the user checks it  471ms
23
- ✓ disables unchecked columns when the maximum number of visible columns is reached  455ms
24
- ✓ does not render a footer when maxSelectableColumns is not set  315ms
25
- ✓ enables a disabled column when a visible column is hidden  493ms
26
- ✓ src/components/Table/__tests__/TableActions.spec.tsx (6 tests) 1735ms
27
- ✓ displays the actions when the row is selected  520ms
28
- ✓ displays the secondary actions when the row is selected and the user clicks on more  519ms
29
- ✓ passes down an array of selected rows  349ms
30
- ✓ src/hooks/__tests__/use-url-synced-state.unit.spec.ts (70 tests) 157ms
31
- ✓ src/components/Facet/__tests__/Facet.component.spec.tsx (15 tests) 2666ms
32
- ✓ renders the title  330ms
33
- ✓ src/components/InlineConfirm/__tests__/InlineConfirm.spec.tsx (8 tests) 915ms
34
- ✓ src/utils/__tests__/groupOptions.unit.spec.ts (12 tests) 10ms
35
- ✓ src/components/Table/__tests__/TablePerPage.spec.tsx (7 tests) 1000ms
36
- ✓ displays the label  365ms
37
- ✓ src/components/Table/__tests__/TableFilter.spec.tsx (6 tests) 1248ms
38
- ✓ displays the placeholder  327ms
39
- ✓ does not unselect rows that get filtered out  359ms
40
- ✓ src/components/CodeEditor/__tests__/CodeEditor.spec.tsx (10 tests | 1 skipped) 848ms
41
- ✓ renders the monaco editor, a copy to clipboard button and a search button  336ms
42
- ✓ src/components/DateRangePicker/__tests__/DateRangePicker.spec.tsx (18 tests) 14313ms
43
- ✓ opens popover when input is clicked  331ms
44
- ✓ calls onChange when a date range is applied  2948ms
45
- ✓ closes popover when Cancel is clicked  456ms
46
- ✓ calls onCancel when Cancel button is clicked  385ms
47
- ✓ applies the selected date range in uncontrolled mode  2763ms
48
- ✓ applies the selected date range in controlled mode  3426ms
49
- ✓ renders preset options in the popover  390ms
50
- ✓ sets the selected date range in the url  2499ms
51
- ✓ calls onOpenedChange when popover state changes  473ms
52
- ✓ src/hooks/__tests__/useParentHeight.spec.tsx (4 tests) 69ms
53
- ✓ src/components/Table/__tests__/TablePredicate.spec.tsx (3 tests) 1438ms
54
- ✓ goes back to the first page when changing the predicate  903ms
55
- ✓ sets the current predicate value in the url using the predicate id as key  404ms
56
- ✓ src/components/DateRangePicker/__tests__/DateRangePickerInlineCalendar.spec.tsx (7 tests | 1 skipped) 4543ms
57
- ✓ calls onApply when the user clicks on the apply button  753ms
58
- ✓ calls onCancel when the user clicks on the cancel button  416ms
59
- ✓ calls onApply with the selected dates when clicking in the calendar  1161ms
60
- ✓ set end date same as start date if only one date is selected when clicking in the calendar  532ms
61
- ✓ calls onApply with the selected dates when typing in the inputs  1561ms
62
- ✓ src/components/Header/__tests__/Header.spec.tsx (8 tests) 541ms
63
- ✓ renders a heading of level 1 with the specified children within  306ms
64
- ✓ src/components/Table/__tests__/Th.spec.tsx (4 tests) 724ms
65
- ✓ displays the sort icon for every sortable column  356ms
66
- ✓ src/components/Button/__tests__/Button.spec.tsx (6 tests) 516ms
67
- ✓ src/components/DateRangePicker/__tests__/DateRangePickerPopoverCalendar.spec.tsx (4 tests | 2 skipped) 3045ms
68
- ✓ calls onApply with the selected dates when clicking in the calendar  2870ms
69
- ✓ src/components/Table/__tests__/TableDateRangePicker.spec.tsx (3 tests) 3821ms
70
- ✓ displays the initial dates  402ms
71
- ✓ sets the selected date range in the url  3381ms
72
- ✓ src/components/DateTimeRangePicker/__tests__/DateTimeRangePicker.spec.tsx (3 tests) 2778ms
73
- ✓ updates with the selected dates when choosing a preset  546ms
74
- ✓ can change the date and time  2094ms
75
- ✓ src/components/Table/__tests__/TableCollapsibleColumn.spec.tsx (2 tests) 668ms
76
- ✓ expands the rows when the user clicks on a cell  542ms
77
- ✓ src/components/Table/__tests__/TableLastUpdated.spec.tsx (3 tests) 427ms
8
+ ✓ src/components/Collection/__tests__/CollectionWithColumns.spec.tsx (17 tests) 993ms
9
+ ✓ src/components/Collection/__tests__/Collection.spec.tsx (18 tests) 1640ms
10
+ ✓ removes the item when clicking on its remove button  316ms
11
+ ✓ src/components/Table/layouts/__tests__/RowLayout.spec.tsx (17 tests) 2587ms
12
+ ✓ renders the data using the RowLayout by default  378ms
13
+ ✓ src/components/Table/__tests__/Table.spec.tsx (12 tests) 1783ms
14
+ ✓ unselects all the selected rows when clicking on the the unselect button from the table header  365ms
15
+ ✓ src/components/Table/__tests__/TablePagination.spec.tsx (7 tests) 967ms
16
+ ✓ calculates the number of pages based on the pageSize and the total number of entries  386ms
17
+ ✓ src/components/Table/__tests__/TableColumnsSelector.spec.tsx (12 tests) 5015ms
18
+ ✓ renders the column selector button in the actions column header when rowConfigurable is true  552ms
19
+ ✓ renders all columns in the dropdown except control columns  508ms
20
+ ✓ renders all checkboxes checked by default  416ms
21
+ ✓ hides a column when the user unchecks it  452ms
22
+ ✓ shows a column when the user checks it  367ms
23
+ ✓ renders a disabled checked checkbox for columns that are always visible  311ms
24
+ ✓ renders a tooltip when hovering a disabled always visible column checkbox  407ms
25
+ ✓ renders unchecked checkboxes for columns that are not visible in the initial state  404ms
26
+ ✓ disables unchecked columns when the maximum number of visible columns is reached  440ms
27
+ ✓ renders a footer with the max columns message when maxSelectableColumns is set  346ms
28
+ ✓ does not render a footer when maxSelectableColumns is not set  328ms
29
+ ✓ enables a disabled column when a visible column is hidden  472ms
30
+ ✓ src/components/Table/__tests__/TableActions.spec.tsx (6 tests) 1945ms
31
+ ✓ displays the actions when the row is selected  542ms
32
+ ✓ displays the secondary actions when the row is selected and the user clicks on more  652ms
33
+ ✓ passes down an array of selected rows  459ms
34
+ ✓ src/hooks/__tests__/use-url-synced-state.unit.spec.ts (70 tests) 189ms
35
+ ✓ src/components/Facet/__tests__/Facet.component.spec.tsx (15 tests) 2483ms
36
+ ✓ src/components/InlineConfirm/__tests__/InlineConfirm.spec.tsx (8 tests) 904ms
37
+ ✓ src/utils/__tests__/groupOptions.unit.spec.ts (12 tests) 7ms
38
+ ✓ src/components/Table/__tests__/TablePerPage.spec.tsx (7 tests) 889ms
39
+ ✓ displays the label  333ms
40
+ ✓ src/components/Table/__tests__/TableFilter.spec.tsx (6 tests) 1170ms
41
+ ✓ displays the placeholder  340ms
42
+ ✓ does not unselect rows that get filtered out  341ms
43
+ ✓ src/components/CodeEditor/__tests__/CodeEditor.spec.tsx (10 tests | 1 skipped) 788ms
44
+ ✓ renders the monaco editor, a copy to clipboard button and a search button  331ms
45
+ ✓ src/components/DateRangePicker/__tests__/DateRangePicker.spec.tsx (18 tests) 14706ms
46
+ ✓ calls onChange when a date range is applied  3182ms
47
+ ✓ closes popover when Cancel is clicked  454ms
48
+ ✓ calls onCancel when Cancel button is clicked  430ms
49
+ ✓ applies the selected date range in uncontrolled mode  2976ms
50
+ ✓ applies the selected date range in controlled mode  3574ms
51
+ ✓ renders preset options in the popover  421ms
52
+ ✓ sets the selected date range in the url  2323ms
53
+ ✓ calls onOpenedChange when popover state changes  423ms
54
+ ✓ src/components/Table/__tests__/TablePredicate.spec.tsx (3 tests) 1379ms
55
+ ✓ goes back to the first page when changing the predicate  957ms
56
+ ✓ src/hooks/__tests__/useParentHeight.spec.tsx (4 tests) 54ms
57
+ ✓ src/components/Header/__tests__/Header.spec.tsx (8 tests) 409ms
58
+ ✓ src/components/DateRangePicker/__tests__/DateRangePickerInlineCalendar.spec.tsx (7 tests | 1 skipped) 4760ms
59
+ ✓ calls onApply when the user clicks on the apply button  751ms
60
+ ✓ calls onCancel when the user clicks on the cancel button  344ms
61
+ ✓ calls onApply with the selected dates when clicking in the calendar  1129ms
62
+ ✓ set end date same as start date if only one date is selected when clicking in the calendar  645ms
63
+ ✓ calls onApply with the selected dates when typing in the inputs  1756ms
64
+ ✓ src/components/Table/__tests__/Th.spec.tsx (4 tests) 609ms
65
+ ✓ src/components/Button/__tests__/Button.spec.tsx (6 tests) 515ms
66
+ ✓ src/components/DateRangePicker/__tests__/DateRangePickerPopoverCalendar.spec.tsx (4 tests | 2 skipped) 2580ms
67
+ ✓ calls onApply with the selected dates when clicking in the calendar  2474ms
68
+ ✓ src/components/Table/__tests__/TableDateRangePicker.spec.tsx (3 tests) 4194ms
69
+ ✓ displays the initial dates  360ms
70
+ ✓ sets the selected date range in the url  3780ms
71
+ ✓ src/components/DateTimeRangePicker/__tests__/DateTimeRangePicker.spec.tsx (3 tests) 2598ms
72
+ ✓ updates with the selected dates when choosing a preset  488ms
73
+ ✓ can change the date and time  1960ms
74
+ ✓ src/components/DateRangePicker/__tests__/EditableDateRangePicker.spec.tsx (3 tests) 3137ms
75
+ ✓ renders an input for the start and an input for the end  351ms
76
+ ✓ updates when editing values  1274ms
77
+ ✓ accepts minDate and maxDate props for start and end inputs  1509ms
78
+ ✓ src/components/Table/__tests__/TableCollapsibleColumn.spec.tsx (2 tests) 617ms
79
+ ✓ expands the rows when the user clicks on a cell  477ms
80
+ ✓ src/components/Table/__tests__/TableLastUpdated.spec.tsx (3 tests) 438ms
78
81
  ✓ displays the label and time  312ms
79
- ✓ src/components/DateRangePicker/__tests__/EditableDateRangePicker.spec.tsx (3 tests) 3732ms
80
- ✓ updates when editing values  1486ms
81
- ✓ accepts minDate and maxDate props for start and end inputs  1948ms
82
- ✓ src/theme/__tests__/mergeCSSVariablesResolvers.spec.ts (3 tests) 7ms
82
+ ✓ src/theme/__tests__/mergeCSSVariablesResolvers.spec.ts (3 tests) 12ms
83
83
  ↓ src/utils/__tests__/overrideComponent.spec.tsx (1 test | 1 skipped)
84
- ✓ src/components/RadioCard/__tests__/RadioCard.component.spec.tsx (6 tests) 484ms
85
- ✓ src/components/Button/__tests__/ButtonWithDisabledTooltip.spec.tsx (3 tests | 1 skipped) 381ms
86
- ✓ shows a tooltip when hovering over the disabled button  346ms
87
- ✓ src/components/DateRangePicker/__tests__/DateRangePickerPresetSelect.spec.tsx (2 tests) 804ms
88
- ✓ calls onChange when selecting a preset  605ms
89
- ✓ src/components/LastUpdated/__tests__/LastUpdated.spec.tsx (5 tests) 386ms
90
- ✓ src/components/Prompt/__tests__/Prompt.spec.tsx (6 tests) 581ms
91
- ✓ displays the title, body and close button  336ms
92
- ✓ src/hooks/__tests__/useControlledList.spec.tsx (3 tests) 43ms
93
- ✓ src/components/CopyToClipboard/__tests__/CopyToClipboard.spec.tsx (3 tests) 453ms
94
- ✓ src/theme/__tests__/plasmaCSSVariablesResolver.spec.ts (1 test) 10ms
95
- ✓ src/components/BrowserPreview/__tests__/BrowserPreview.spec.tsx (4 tests) 387ms
96
- ✓ src/components/StatusToken/__tests__/StatusToken.component.spec.tsx (10 tests) 394ms
97
- ✓ src/components/ChildForm/__tests__/ChildForm.spec.tsx (3 tests) 343ms
98
- ✓ src/components/Modal/__tests__/Modal.spec.tsx (2 tests) 305ms
99
- ✓ src/components/Modal/__tests__/ModalFooter.spec.tsx (2 tests) 102ms
100
- ✓ src/components/Menu/__tests__/Menu.spec.tsx (1 test) 287ms
101
- ✓ src/components/DateTimeRangePicker/__tests__/EditableDateTimeRangePicker.spec.tsx (1 test) 298ms
102
- ✓ src/components/CodeEditor/search/__tests__/Search.unit.spec.tsx (1 test) 275ms
103
- ✓ src/components/StickyFooter/__tests__/StickyFooter.spec.tsx (1 test) 56ms
104
- ✓ src/components/BlankSlate/__tests__/BlankSlate.spec.tsx (1 test) 53ms
84
+ ✓ src/components/RadioCard/__tests__/RadioCard.component.spec.tsx (6 tests) 450ms
85
+ ✓ src/components/Button/__tests__/ButtonWithDisabledTooltip.spec.tsx (3 tests | 1 skipped) 411ms
86
+ ✓ shows a tooltip when hovering over the disabled button  379ms
87
+ ✓ src/components/LastUpdated/__tests__/LastUpdated.spec.tsx (5 tests) 400ms
88
+ ✓ src/components/DateRangePicker/__tests__/DateRangePickerPresetSelect.spec.tsx (2 tests) 730ms
89
+ ✓ calls onChange when selecting a preset  574ms
90
+ ✓ src/hooks/__tests__/useControlledList.spec.tsx (3 tests) 32ms
91
+ ✓ src/components/Prompt/__tests__/Prompt.spec.tsx (6 tests) 597ms
92
+ ✓ displays the title, body and close button  327ms
93
+ ✓ src/components/CopyToClipboard/__tests__/CopyToClipboard.spec.tsx (3 tests) 491ms
94
+ ✓ src/components/BrowserPreview/__tests__/BrowserPreview.spec.tsx (4 tests) 461ms
95
+ ✓ renders the specified text as the header tooltip content  356ms
96
+ ✓ src/theme/__tests__/plasmaCSSVariablesResolver.spec.ts (1 test) 9ms
97
+ ✓ src/components/StatusToken/__tests__/StatusToken.component.spec.tsx (10 tests) 385ms
98
+ ✓ src/components/ChildForm/__tests__/ChildForm.spec.tsx (3 tests) 273ms
99
+ ✓ src/components/Modal/__tests__/Modal.spec.tsx (2 tests) 325ms
100
+ ✓ src/components/Modal/__tests__/ModalFooter.spec.tsx (2 tests) 85ms
101
+ ✓ src/components/Menu/__tests__/Menu.spec.tsx (1 test) 236ms
102
+ ✓ src/components/DateTimeRangePicker/__tests__/EditableDateTimeRangePicker.spec.tsx (1 test) 362ms
103
+ ✓ renders start and end date in correct format  359ms
104
+ ✓ src/components/CodeEditor/search/__tests__/Search.unit.spec.tsx (1 test) 259ms
105
+ ✓ src/components/StickyFooter/__tests__/StickyFooter.spec.tsx (1 test) 53ms
106
+ ✓ src/components/BlankSlate/__tests__/BlankSlate.spec.tsx (1 test) 51ms
105
107
 
106
108
   Test Files  46 passed | 1 skipped (47)
107
109
   Tests  338 passed | 6 skipped (344)
108
-  Start at  16:48:28
109
-  Duration  55.77s (transform 2.19s, setup 9.73s, import 47.76s, tests 63.60s, environment 36.16s)
110
+  Start at  15:45:11
111
+  Duration  54.57s (transform 2.05s, setup 9.07s, import 47.13s, tests 62.98s, environment 34.29s)
110
112