@coveord/plasma-mantine 56.8.1 → 56.10.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 (84) hide show
  1. package/.turbo/turbo-build.log +4 -4
  2. package/.turbo/turbo-test.log +115 -108
  3. package/dist/.tsbuildinfo +1 -1
  4. package/dist/cjs/components/InfoToken/InfoToken.d.ts +62 -2
  5. package/dist/cjs/components/InfoToken/InfoToken.d.ts.map +1 -1
  6. package/dist/cjs/components/InfoToken/InfoToken.js +5 -0
  7. package/dist/cjs/components/InfoToken/InfoToken.js.map +1 -1
  8. package/dist/cjs/components/StatusToken/StatusToken.d.ts +31 -0
  9. package/dist/cjs/components/StatusToken/StatusToken.d.ts.map +1 -0
  10. package/dist/cjs/components/StatusToken/StatusToken.js +128 -0
  11. package/dist/cjs/components/StatusToken/StatusToken.js.map +1 -0
  12. package/dist/cjs/components/StatusToken/StatusToken.module.css +42 -0
  13. package/dist/cjs/components/StatusToken/icons/circle.svg +3 -0
  14. package/dist/cjs/components/StatusToken/icons/info.svg +5 -0
  15. package/dist/cjs/components/StatusToken/icons/ring.svg +3 -0
  16. package/dist/cjs/components/StatusToken/icons/square.svg +3 -0
  17. package/dist/cjs/components/StatusToken/icons/triangle.svg +3 -0
  18. package/dist/cjs/components/Table/Table.d.ts +2 -12
  19. package/dist/cjs/components/Table/Table.d.ts.map +1 -1
  20. package/dist/cjs/components/Table/Table.js +0 -3
  21. package/dist/cjs/components/Table/Table.js.map +1 -1
  22. package/dist/cjs/components/Table/table-column/TableActionsColumn.d.ts +15 -0
  23. package/dist/cjs/components/Table/table-column/TableActionsColumn.d.ts.map +1 -1
  24. package/dist/cjs/components/Table/table-column/TableActionsColumn.js +14 -1
  25. package/dist/cjs/components/Table/table-column/TableActionsColumn.js.map +1 -1
  26. package/dist/cjs/components/Table/table-columns-selector/TableColumnsSelector.d.ts +11 -32
  27. package/dist/cjs/components/Table/table-columns-selector/TableColumnsSelector.d.ts.map +1 -1
  28. package/dist/cjs/components/Table/table-columns-selector/TableColumnsSelector.js +101 -97
  29. package/dist/cjs/components/Table/table-columns-selector/TableColumnsSelector.js.map +1 -1
  30. package/dist/cjs/index.d.ts +2 -0
  31. package/dist/cjs/index.d.ts.map +1 -1
  32. package/dist/cjs/index.js +5 -0
  33. package/dist/cjs/index.js.map +1 -1
  34. package/dist/cjs/types/svg-raw/index.d.js +3 -0
  35. package/dist/cjs/types/svg-raw/index.d.js.map +1 -0
  36. package/dist/esm/components/InfoToken/InfoToken.d.ts +62 -2
  37. package/dist/esm/components/InfoToken/InfoToken.d.ts.map +1 -1
  38. package/dist/esm/components/InfoToken/InfoToken.js +5 -0
  39. package/dist/esm/components/InfoToken/InfoToken.js.map +1 -1
  40. package/dist/esm/components/StatusToken/StatusToken.d.ts +31 -0
  41. package/dist/esm/components/StatusToken/StatusToken.d.ts.map +1 -0
  42. package/dist/esm/components/StatusToken/StatusToken.js +103 -0
  43. package/dist/esm/components/StatusToken/StatusToken.js.map +1 -0
  44. package/dist/esm/components/StatusToken/StatusToken.module.css +42 -0
  45. package/dist/esm/components/StatusToken/icons/circle.svg +3 -0
  46. package/dist/esm/components/StatusToken/icons/info.svg +5 -0
  47. package/dist/esm/components/StatusToken/icons/ring.svg +3 -0
  48. package/dist/esm/components/StatusToken/icons/square.svg +3 -0
  49. package/dist/esm/components/StatusToken/icons/triangle.svg +3 -0
  50. package/dist/esm/components/Table/Table.d.ts +2 -12
  51. package/dist/esm/components/Table/Table.d.ts.map +1 -1
  52. package/dist/esm/components/Table/Table.js +0 -3
  53. package/dist/esm/components/Table/Table.js.map +1 -1
  54. package/dist/esm/components/Table/table-column/TableActionsColumn.d.ts +15 -0
  55. package/dist/esm/components/Table/table-column/TableActionsColumn.d.ts.map +1 -1
  56. package/dist/esm/components/Table/table-column/TableActionsColumn.js +12 -1
  57. package/dist/esm/components/Table/table-column/TableActionsColumn.js.map +1 -1
  58. package/dist/esm/components/Table/table-columns-selector/TableColumnsSelector.d.ts +11 -32
  59. package/dist/esm/components/Table/table-columns-selector/TableColumnsSelector.d.ts.map +1 -1
  60. package/dist/esm/components/Table/table-columns-selector/TableColumnsSelector.js +94 -84
  61. package/dist/esm/components/Table/table-columns-selector/TableColumnsSelector.js.map +1 -1
  62. package/dist/esm/index.d.ts +2 -0
  63. package/dist/esm/index.d.ts.map +1 -1
  64. package/dist/esm/index.js +3 -0
  65. package/dist/esm/index.js.map +1 -1
  66. package/dist/esm/types/svg-raw/index.d.js +2 -0
  67. package/dist/esm/types/svg-raw/index.d.js.map +1 -0
  68. package/package.json +3 -3
  69. package/src/components/InfoToken/InfoToken.tsx +39 -36
  70. package/src/components/StatusToken/StatusToken.module.css +42 -0
  71. package/src/components/StatusToken/StatusToken.tsx +152 -0
  72. package/src/components/StatusToken/__tests__/StatusToken.component.spec.tsx +28 -0
  73. package/src/components/StatusToken/icons/circle.svg +3 -0
  74. package/src/components/StatusToken/icons/info.svg +5 -0
  75. package/src/components/StatusToken/icons/ring.svg +3 -0
  76. package/src/components/StatusToken/icons/square.svg +3 -0
  77. package/src/components/StatusToken/icons/triangle.svg +3 -0
  78. package/src/components/Table/Table.tsx +4 -9
  79. package/src/components/Table/__tests__/TableColumnsSelectorHeader.spec.tsx +325 -0
  80. package/src/components/Table/table-column/TableActionsColumn.tsx +28 -1
  81. package/src/components/Table/table-columns-selector/TableColumnsSelector.tsx +96 -125
  82. package/src/index.ts +4 -0
  83. package/src/types/svg-raw/index.d.ts +4 -0
  84. package/src/components/Table/__tests__/TableColumnsSelector.spec.tsx +0 -352
@@ -1,9 +1,9 @@
1
1
 
2
- > @coveord/plasma-mantine@56.8.0 build /home/runner/work/plasma/plasma/packages/mantine
2
+ > @coveord/plasma-mantine@56.9.0 build /home/runner/work/plasma/plasma/packages/mantine
3
3
  > node ../../scripts/build
4
4
 
5
- (node:3593) [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:3026) [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: 205 files, copied 58 files with swc (483.26ms)
8
- Successfully compiled: 205 files, copied 58 files with swc (631.76ms)
7
+ Successfully compiled: 207 files, copied 64 files with swc (501.57ms)
8
+ Successfully compiled: 207 files, copied 64 files with swc (621.32ms)
9
9
  ✅
@@ -1,117 +1,124 @@
1
1
 
2
- > @coveord/plasma-mantine@56.8.0 test /home/runner/work/plasma/plasma/packages/mantine
2
+ > @coveord/plasma-mantine@56.9.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.15 /home/runner/work/plasma/plasma/packages/mantine
7
7
 
8
- ✓ src/components/Collection/__tests__/Collection.spec.tsx (16 tests) 1936ms
9
- ✓ src/components/Table/__tests__/Table.spec.tsx (12 tests) 2720ms
10
- ✓ reset row selection when user click outside the table  320ms
11
- ✓ handles switching layout  487ms
12
- ✓ does not clear the row selection when clicking outside the table  354ms
13
- ✓ unselects all the selected rows when clicking on the the unselect button from the table header  375ms
14
- ✓ src/components/Table/layouts/__tests__/RowLayout.spec.tsx (17 tests) 4182ms
15
- ✓ renders the data using the RowLayout by default  515ms
16
- ✓ closes the opened collapsible when using the accordion column and the user expand a different row  407ms
17
- ✓ toggles row selection when clicking on a selected row  349ms
18
- ✓ allows selection of a different row if row selection is forced  347ms
19
- ✓ prevents row selection if disableRowSelection is true  407ms
20
- ✓ src/components/Table/__tests__/TablePagination.spec.tsx (7 tests) 1235ms
21
- ✓ calculates the number of pages based on the pageSize and the total number of entries  349ms
22
- ✓ changes the page when the pagination is client side  330ms
23
- ✓ changes page when the current page is greater than the total number of pages  309ms
24
- ✓ src/components/Table/__tests__/TableColumnsSelector.spec.tsx (13 tests) 5534ms
25
- ✓ render the edit button in the table header  415ms
26
- ✓ renders all columns in the dropdown, except the collapsible and the multiselectRow by default  561ms
27
- ✓ renders all checkboxes checked by default  614ms
28
- ✓ renders a disabled checked checkbox for columns that are always visible  729ms
29
- ✓ renders unchecked checkboxes for the columns that are not visible in the inital state of the table  503ms
30
- ✓ renders disabled checkboxes when the maxSelectableColumns is set and the maximum number of columns is checked  603ms
31
- ✓ renders a tooltip when the maxSelectableColumns is set and the maximum number of columns is checked and the user hover a disabled checkbox  530ms
32
- ✓ sets the current visible column ids in the url  578ms
33
- ✓ determines the initial visible columns from the url  407ms
34
- ✓ src/components/Table/__tests__/TableActions.spec.tsx (6 tests) 3510ms
35
- ✓ displays the actions when the row is selected  679ms
36
- ✓ displays the secondary actions when the row is selected and the user clicks on more  1495ms
37
- ✓ keeps the selected row data in sync with the data prop  329ms
38
- ✓ passes down an array of selected rows  702ms
39
- ✓ src/hooks/__tests__/use-url-synced-state.unit.spec.ts (70 tests) 148ms
40
- ✓ src/components/InlineConfirm/__tests__/InlineConfirm.spec.tsx (8 tests) 1276ms
41
- ✓ calls the onClick prop when clicking on the menu item  320ms
42
- ✓ src/components/Table/__tests__/TablePerPage.spec.tsx (7 tests) 1174ms
43
- ✓ displays the label  335ms
44
- ✓ src/components/Table/__tests__/TableFilter.spec.tsx (6 tests) 1580ms
45
- ✓ displays the placeholder  347ms
46
- ✓ goes back to the first page when changing the filter  378ms
47
- ✓ does not unselect rows that get filtered out  500ms
48
- ✓ src/components/CodeEditor/__tests__/CodeEditor.spec.tsx (9 tests | 1 skipped) 904ms
49
- ✓ renders the monaco editor, a copy to clipboard button and a search button  415ms
50
- ✓ src/components/DateRangePicker/__tests__/DateRangePickerInlineCalendar.spec.tsx (7 tests | 1 skipped) 5160ms
51
- ✓ calls onApply when the user clicks on the apply button  976ms
52
- ✓ calls onCancel when the user clicks on the cancel button  399ms
53
- ✓ calls onApply with the selected dates when clicking in the calendar  1352ms
54
- ✓ set end date same as start date if only one date is selected when clicking in the calendar  913ms
55
- ✓ calls onApply with the selected dates when typing in the inputs  1451ms
56
- ✓ src/components/Header/__tests__/Header.spec.tsx (8 tests) 592ms
57
- ✓ renders a heading of level 1 with the specified children within  311ms
58
- ✓ src/components/DateRangePicker/__tests__/DateRangePicker.spec.tsx (18 tests) 17460ms
59
- ✓ opens popover when input is clicked  461ms
60
- ✓ calls onChange when a date range is applied  3355ms
61
- ✓ closes popover when Cancel is clicked  679ms
62
- ✓ calls onCancel when Cancel button is clicked  639ms
63
- ✓ applies the selected date range in uncontrolled mode  3310ms
64
- ✓ applies the selected date range in controlled mode  3929ms
65
- ✓ renders preset options in the popover  1001ms
66
- ✓ sets the selected date range in the url  2798ms
67
- ✓ calls onOpenedChange when popover state changes  555ms
68
- ✓ src/components/Table/__tests__/TablePredicate.spec.tsx (3 tests) 3277ms
69
- ✓ goes back to the first page when changing the predicate  1825ms
70
- ✓ sets the current predicate value in the url using the predicate id as key  1246ms
71
- ✓ src/components/Table/__tests__/Th.spec.tsx (4 tests) 927ms
72
- ✓ displays the sort icon for every sortable column  345ms
73
- ✓ changes the sort icon when clicking on a table header  328ms
74
- ✓ src/components/DateRangePicker/__tests__/DateRangePickerPopoverCalendar.spec.tsx (4 tests | 2 skipped) 4319ms
75
- ✓ calls onApply with the selected dates when clicking in the calendar  4185ms
76
- ✓ src/components/Table/__tests__/TableDateRangePicker.spec.tsx (3 tests) 4758ms
77
- ✓ displays the initial dates  467ms
78
- ✓ sets the selected date range in the url  4201ms
79
- ✓ src/components/DateTimeRangePicker/__tests__/DateTimeRangePicker.spec.tsx (3 tests) 4894ms
80
- ✓ updates with the selected dates when choosing a preset  1244ms
81
- ✓ can change the date and time  3482ms
82
- ✓ src/components/Table/__tests__/TableCollapsibleColumn.spec.tsx (2 tests) 827ms
83
- ✓ expands the rows when the user clicks on a cell  611ms
84
- ✓ src/components/DateRangePicker/__tests__/EditableDateRangePicker.spec.tsx (3 tests) 3815ms
85
- ✓ renders an input for the start and an input for the end  332ms
86
- ✓ updates when editing values  1555ms
87
- ✓ accepts minDate and maxDate props for start and end inputs  1924ms
88
- ✓ src/components/Table/__tests__/TableLastUpdated.spec.tsx (3 tests) 493ms
89
- ✓ src/components/Button/__tests__/Button.spec.tsx (4 tests) 563ms
90
- ✓ src/theme/__tests__/mergeCSSVariablesResolvers.spec.ts (3 tests) 4ms
8
+ ✓ src/components/Collection/__tests__/Collection.spec.tsx (16 tests) 2086ms
9
+ ✓ src/components/Table/__tests__/Table.spec.tsx (12 tests) 3037ms
10
+ ✓ reset row selection when user click outside the table  302ms
11
+ ✓ does not reset row selection when clicking within one of the specified additionalRootNodes, even if it is outside the table  336ms
12
+ ✓ handles switching layout  548ms
13
+ ✓ does not clear the row selection when clicking outside the table  387ms
14
+ ✓ unselects all the selected rows when clicking on the the unselect button from the table header  539ms
15
+ ✓ src/components/Table/layouts/__tests__/RowLayout.spec.tsx (17 tests) 4291ms
16
+ ✓ renders the data using the RowLayout by default  538ms
17
+ ✓ closes the opened collapsible when using the accordion column and the user expand a different row  423ms
18
+ ✓ toggles row selection when clicking on a selected row  372ms
19
+ ✓ prevents row selection if disableRowSelection is true  415ms
20
+ ✓ prevents click on checkboxes if disableRowSelection is true  306ms
21
+ ✓ src/components/Table/__tests__/TablePagination.spec.tsx (7 tests) 1389ms
22
+ ✓ calculates the number of pages based on the pageSize and the total number of entries  392ms
23
+ ✓ changes the page when the pagination is client side  400ms
24
+ ✓ changes page when the current page is greater than the total number of pages  314ms
25
+ ✓ src/components/Table/__tests__/TableActions.spec.tsx (6 tests) 3624ms
26
+ ✓ displays the actions when the row is selected  713ms
27
+ ✓ displays the secondary actions when the row is selected and the user clicks on more  1583ms
28
+ ✓ passes down an array of selected rows  736ms
29
+ ✓ src/hooks/__tests__/use-url-synced-state.unit.spec.ts (70 tests) 142ms
30
+ ✓ src/components/InlineConfirm/__tests__/InlineConfirm.spec.tsx (8 tests) 1281ms
31
+ ✓ calls the onClick prop when clicking on the menu item  331ms
32
+ ✓ src/components/Table/__tests__/TableColumnsSelectorHeader.spec.tsx (12 tests) 12100ms
33
+ ✓ renders the column selector button in the actions column header when rowConfigurable is true  744ms
34
+ ✓ renders all columns in the dropdown except control columns  1504ms
35
+ ✓ renders all checkboxes checked by default  983ms
36
+ ✓ hides a column when the user unchecks it  1066ms
37
+ ✓ shows a column when the user checks it  1067ms
38
+ ✓ renders a disabled checked checkbox for columns that are always visible  848ms
39
+ ✓ renders a tooltip when hovering a disabled always visible column checkbox  1053ms
40
+ ✓ renders unchecked checkboxes for columns that are not visible in the initial state  1091ms
41
+ ✓ disables unchecked columns when the maximum number of visible columns is reached  1011ms
42
+ ✓ renders a footer with the max columns message when maxSelectableColumns is set  872ms
43
+ ✓ does not render a footer when maxSelectableColumns is not set  926ms
44
+ ✓ enables a disabled column when a visible column is hidden  913ms
45
+ ✓ src/components/Table/__tests__/TablePerPage.spec.tsx (7 tests) 1416ms
46
+ ✓ displays the label  368ms
47
+ ✓ resets page index when changing the number of items per page  326ms
48
+ ✓ src/components/Table/__tests__/TableFilter.spec.tsx (6 tests) 1777ms
49
+ ✓ displays the placeholder  435ms
50
+ ✓ goes back to the first page when changing the filter  435ms
51
+ ✓ does not unselect rows that get filtered out  566ms
52
+ ✓ src/components/CodeEditor/__tests__/CodeEditor.spec.tsx (9 tests | 1 skipped) 1055ms
53
+ ✓ renders the monaco editor, a copy to clipboard button and a search button  450ms
54
+ ✓ src/components/DateRangePicker/__tests__/DateRangePicker.spec.tsx (18 tests) 18155ms
55
+ ✓ opens popover when input is clicked  522ms
56
+ ✓ calls onChange when a date range is applied  3201ms
57
+ ✓ closes popover when Cancel is clicked  856ms
58
+ ✓ calls onCancel when Cancel button is clicked  755ms
59
+ ✓ applies the selected date range in uncontrolled mode  3471ms
60
+ ✓ applies the selected date range in controlled mode  3870ms
61
+ ✓ renders preset options in the popover  996ms
62
+ ✓ sets the selected date range in the url  3031ms
63
+ ✓ calls onOpenedChange when popover state changes  611ms
64
+ ✓ src/components/DateRangePicker/__tests__/DateRangePickerInlineCalendar.spec.tsx (7 tests | 1 skipped) 5881ms
65
+ ✓ calls onApply when the user clicks on the apply button  1001ms
66
+ ✓ calls onCancel when the user clicks on the cancel button  554ms
67
+ ✓ calls onApply with the selected dates when clicking in the calendar  1490ms
68
+ ✓ set end date same as start date if only one date is selected when clicking in the calendar  914ms
69
+ ✓ calls onApply with the selected dates when typing in the inputs  1827ms
70
+ ✓ src/components/Table/__tests__/TablePredicate.spec.tsx (3 tests) 3438ms
71
+ ✓ goes back to the first page when changing the predicate  1946ms
72
+ ✓ sets the current predicate value in the url using the predicate id as key  1231ms
73
+ ✓ src/components/Header/__tests__/Header.spec.tsx (8 tests) 579ms
74
+ ✓ src/components/Table/__tests__/Th.spec.tsx (4 tests) 1034ms
75
+ ✓ displays the sort icon for every sortable column  434ms
76
+ ✓ changes the sort icon when clicking on a table header  360ms
77
+ ✓ src/components/DateRangePicker/__tests__/DateRangePickerPopoverCalendar.spec.tsx (4 tests | 2 skipped) 4250ms
78
+ ✓ calls onApply with the selected dates when clicking in the calendar  4106ms
79
+ ✓ src/components/Table/__tests__/TableDateRangePicker.spec.tsx (3 tests) 5075ms
80
+ ✓ displays the initial dates  450ms
81
+ ✓ sets the selected date range in the url  4566ms
82
+ ✓ src/components/DateTimeRangePicker/__tests__/DateTimeRangePicker.spec.tsx (3 tests) 5391ms
83
+ ✓ updates with the selected dates when choosing a preset  1458ms
84
+ ✓ can change the date and time  3762ms
85
+ ✓ src/components/Table/__tests__/TableCollapsibleColumn.spec.tsx (2 tests) 876ms
86
+ ✓ expands the rows when the user clicks on a cell  735ms
87
+ ✓ src/components/Table/__tests__/TableLastUpdated.spec.tsx (3 tests) 469ms
88
+ ✓ src/components/DateRangePicker/__tests__/EditableDateRangePicker.spec.tsx (3 tests) 4130ms
89
+ ✓ renders an input for the start and an input for the end  410ms
90
+ ✓ updates when editing values  1577ms
91
+ ✓ accepts minDate and maxDate props for start and end inputs  2141ms
92
+ ✓ src/components/Button/__tests__/Button.spec.tsx (4 tests) 532ms
93
+ ✓ src/theme/__tests__/mergeCSSVariablesResolvers.spec.ts (3 tests) 5ms
91
94
  ↓ src/utils/__tests__/overrideComponent.spec.tsx (1 test | 1 skipped)
92
- ✓ src/components/Button/__tests__/ButtonWithDisabledTooltip.spec.tsx (3 tests | 1 skipped) 483ms
93
- ✓ shows a tooltip when hovering over the disabled button  426ms
94
- ✓ src/components/DateRangePicker/__tests__/DateRangePickerPresetSelect.spec.tsx (2 tests) 944ms
95
- ✓ calls onChange when selecting a preset  775ms
96
- ✓ src/components/LastUpdated/__tests__/LastUpdated.spec.tsx (5 tests) 452ms
97
- ✓ src/hooks/__tests__/useControlledList.spec.tsx (3 tests) 33ms
98
- ✓ src/components/Prompt/__tests__/Prompt.spec.tsx (6 tests) 744ms
99
- ✓ displays the title, body and close button  329ms
100
- ✓ src/components/CopyToClipboard/__tests__/CopyToClipboard.spec.tsx (3 tests) 601ms
101
- ✓ src/theme/__tests__/plasmaCSSVariablesResolver.spec.ts (1 test) 6ms
102
- ✓ src/components/BrowserPreview/__tests__/BrowserPreview.spec.tsx (4 tests) 554ms
103
- ✓ renders the specified text as the header tooltip content  455ms
104
- ✓ src/components/ChildForm/__tests__/ChildForm.spec.tsx (3 tests) 328ms
105
- ✓ src/components/Modal/__tests__/Modal.spec.tsx (2 tests) 269ms
106
- ✓ src/components/RadioCard/__tests__/RadioCard.component.spec.tsx (3 tests) 263ms
107
- ✓ src/components/Modal/__tests__/ModalFooter.spec.tsx (2 tests) 76ms
108
- ✓ src/components/Menu/__tests__/Menu.spec.tsx (1 test) 294ms
109
- ✓ src/components/CodeEditor/search/__tests__/Search.unit.spec.tsx (1 test) 292ms
110
- ✓ src/components/StickyFooter/__tests__/StickyFooter.spec.tsx (1 test) 69ms
111
- ✓ src/components/BlankSlate/__tests__/BlankSlate.spec.tsx (1 test) 49ms
95
+ ✓ src/components/Button/__tests__/ButtonWithDisabledTooltip.spec.tsx (3 tests | 1 skipped) 584ms
96
+ ✓ shows a tooltip when hovering over the disabled button  531ms
97
+ ✓ src/components/DateRangePicker/__tests__/DateRangePickerPresetSelect.spec.tsx (2 tests) 1191ms
98
+ ✓ calls onChange when selecting a preset  969ms
99
+ ✓ src/components/LastUpdated/__tests__/LastUpdated.spec.tsx (5 tests) 502ms
100
+ ✓ renders with default label, time and formatter  301ms
101
+ ✓ src/hooks/__tests__/useControlledList.spec.tsx (3 tests) 30ms
102
+ ✓ src/components/Prompt/__tests__/Prompt.spec.tsx (6 tests) 759ms
103
+ ✓ displays the title, body and close button  379ms
104
+ ✓ src/components/CopyToClipboard/__tests__/CopyToClipboard.spec.tsx (3 tests) 639ms
105
+ ✓ src/theme/__tests__/plasmaCSSVariablesResolver.spec.ts (1 test) 8ms
106
+ ✓ src/components/BrowserPreview/__tests__/BrowserPreview.spec.tsx (4 tests) 609ms
107
+ ✓ renders the specified text as the header tooltip content  515ms
108
+ ✓ src/components/StatusToken/__tests__/StatusToken.component.spec.tsx (10 tests) 588ms
109
+ ✓ src/components/ChildForm/__tests__/ChildForm.spec.tsx (3 tests) 455ms
110
+ ✓ renders the content  303ms
111
+ ✓ src/components/Modal/__tests__/Modal.spec.tsx (2 tests) 322ms
112
+ ✓ src/components/RadioCard/__tests__/RadioCard.component.spec.tsx (3 tests) 305ms
113
+ ✓ src/components/Modal/__tests__/ModalFooter.spec.tsx (2 tests) 92ms
114
+ ✓ src/components/Menu/__tests__/Menu.spec.tsx (1 test) 284ms
115
+ ✓ src/components/CodeEditor/search/__tests__/Search.unit.spec.tsx (1 test) 312ms
116
+ ✓ should call handleSearch when the search button is clicked  309ms
117
+ ✓ src/components/StickyFooter/__tests__/StickyFooter.spec.tsx (1 test) 63ms
118
+ ✓ src/components/BlankSlate/__tests__/BlankSlate.spec.tsx (1 test) 53ms
112
119
 
113
-  Test Files  40 passed | 1 skipped (41)
114
-  Tests  272 passed | 6 skipped (278)
115
-  Start at  20:22:56
116
-  Duration  56.80s (transform 1.85s, setup 9.31s, import 45.42s, tests 76.74s, environment 29.01s)
120
+  Test Files  41 passed | 1 skipped (42)
121
+  Tests  281 passed | 6 skipped (287)
122
+  Start at  21:23:33
123
+  Duration  62.22s (transform 1.88s, setup 9.81s, import 47.66s, tests 88.81s, environment 30.53s)
117
124