@qoretechnologies/reqore 0.26.1 → 0.27.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 (74) hide show
  1. package/dist/components/Breadcrumbs/index.d.ts.map +1 -1
  2. package/dist/components/Breadcrumbs/index.js +1 -1
  3. package/dist/components/Breadcrumbs/index.js.map +1 -1
  4. package/dist/components/Button/index.d.ts +7 -1
  5. package/dist/components/Button/index.d.ts.map +1 -1
  6. package/dist/components/Button/index.js +45 -20
  7. package/dist/components/Button/index.js.map +1 -1
  8. package/dist/components/Drawer/index.d.ts.map +1 -1
  9. package/dist/components/Drawer/index.js +3 -1
  10. package/dist/components/Drawer/index.js.map +1 -1
  11. package/dist/components/Menu/index.d.ts +1 -0
  12. package/dist/components/Menu/index.d.ts.map +1 -1
  13. package/dist/components/Menu/index.js +3 -2
  14. package/dist/components/Menu/index.js.map +1 -1
  15. package/dist/components/Menu/item.d.ts.map +1 -1
  16. package/dist/components/Menu/item.js +2 -2
  17. package/dist/components/Menu/item.js.map +1 -1
  18. package/dist/components/Spacer/index.d.ts.map +1 -1
  19. package/dist/components/Spacer/index.js +1 -1
  20. package/dist/components/Spacer/index.js.map +1 -1
  21. package/dist/components/Tabs/index.js +2 -2
  22. package/dist/components/Tabs/index.js.map +1 -1
  23. package/dist/components/Tabs/item.d.ts +2 -1
  24. package/dist/components/Tabs/item.d.ts.map +1 -1
  25. package/dist/components/Tabs/item.js +2 -2
  26. package/dist/components/Tabs/item.js.map +1 -1
  27. package/dist/components/Tabs/list.d.ts.map +1 -1
  28. package/dist/components/Tabs/list.js +1 -1
  29. package/dist/components/Tabs/list.js.map +1 -1
  30. package/dist/components/Tag/index.d.ts.map +1 -1
  31. package/dist/components/Tag/index.js +3 -3
  32. package/dist/components/Tag/index.js.map +1 -1
  33. package/dist/constants/animations.d.ts +4 -0
  34. package/dist/constants/animations.d.ts.map +1 -1
  35. package/dist/constants/animations.js +5 -1
  36. package/dist/constants/animations.js.map +1 -1
  37. package/dist/constants/sizes.d.ts +21 -0
  38. package/dist/constants/sizes.d.ts.map +1 -1
  39. package/dist/constants/sizes.js +22 -1
  40. package/dist/constants/sizes.js.map +1 -1
  41. package/dist/containers/ReqoreProvider.js +1 -1
  42. package/dist/containers/ReqoreProvider.js.map +1 -1
  43. package/dist/containers/UIProvider.d.ts +1 -0
  44. package/dist/containers/UIProvider.d.ts.map +1 -1
  45. package/dist/containers/UIProvider.js.map +1 -1
  46. package/dist/context/ReqoreContext.d.ts.map +1 -1
  47. package/dist/context/ReqoreContext.js +2 -1
  48. package/dist/context/ReqoreContext.js.map +1 -1
  49. package/dist/helpers/utils.d.ts +2 -0
  50. package/dist/helpers/utils.d.ts.map +1 -1
  51. package/dist/helpers/utils.js +11 -1
  52. package/dist/helpers/utils.js.map +1 -1
  53. package/package.json +1 -1
  54. package/src/components/Breadcrumbs/index.tsx +1 -0
  55. package/src/components/Button/index.tsx +156 -85
  56. package/src/components/Drawer/index.tsx +5 -3
  57. package/src/components/Menu/index.tsx +13 -1
  58. package/src/components/Menu/item.tsx +3 -2
  59. package/src/components/Spacer/index.tsx +1 -0
  60. package/src/components/Tabs/index.tsx +1 -1
  61. package/src/components/Tabs/item.tsx +7 -3
  62. package/src/components/Tabs/list.tsx +1 -0
  63. package/src/components/Tag/index.tsx +3 -2
  64. package/src/constants/animations.ts +5 -0
  65. package/src/constants/sizes.ts +24 -0
  66. package/src/containers/ReqoreProvider.tsx +1 -1
  67. package/src/containers/UIProvider.tsx +1 -0
  68. package/src/context/ReqoreContext.tsx +1 -0
  69. package/src/helpers/utils.ts +10 -0
  70. package/src/stories/Button/Button.stories.tsx +69 -1
  71. package/src/stories/Menu/Menu.stories.tsx +30 -5
  72. package/src/stories/Tabs/Tabs.stories.tsx +10 -5
  73. package/src/stories/Tag/Tag.stories.tsx +42 -4
  74. package/tests.json +1 -1
@@ -1,7 +1,8 @@
1
1
  import { ComponentMeta, ComponentStory } from '@storybook/react';
2
+ import { noop } from 'lodash';
2
3
  import ReqoreButton from '../../components/Button';
3
4
  import { ReqoreControlGroup } from '../../index';
4
- import { IconArg } from '../utils/args';
5
+ import { IconArg, SizeArg } from '../utils/args';
5
6
 
6
7
  export default {
7
8
  title: 'Components/Button',
@@ -11,6 +12,7 @@ export default {
11
12
  argTypes: {
12
13
  ...IconArg('icon', 'Icon'),
13
14
  ...IconArg('rightIcon', 'Right Icon'),
15
+ ...SizeArg,
14
16
  },
15
17
  } as ComponentMeta<typeof ReqoreButton>;
16
18
 
@@ -18,7 +20,12 @@ const Template: ComponentStory<typeof ReqoreButton> = (buttonProps) => {
18
20
  return (
19
21
  <>
20
22
  <ReqoreControlGroup size={buttonProps.size}>
23
+ <ReqoreButton {...buttonProps} icon='BankFill' rightIcon={null} />
24
+ <ReqoreButton {...buttonProps} />
21
25
  <ReqoreButton {...buttonProps}>Default</ReqoreButton>
26
+ <ReqoreButton {...buttonProps} wrap maxWidth='150px'>
27
+ Default wrapped button with long text
28
+ </ReqoreButton>
22
29
  <ReqoreButton {...buttonProps} disabled>
23
30
  Disabled
24
31
  </ReqoreButton>
@@ -37,6 +44,23 @@ const Template: ComponentStory<typeof ReqoreButton> = (buttonProps) => {
37
44
  <ReqoreButton {...buttonProps} readOnly onClick={alert}>
38
45
  Read only
39
46
  </ReqoreButton>
47
+ <ReqoreButton {...buttonProps} readOnly badge={10} onClick={alert}>
48
+ With Badge
49
+ </ReqoreButton>
50
+ <ReqoreButton
51
+ {...buttonProps}
52
+ badge={{
53
+ effect: {
54
+ gradient: { colors: { 0: '#00fafd', 100: '#eb0e8c' }, direction: 'to right bottom' },
55
+ },
56
+ labelKey: 'Cool',
57
+ label: 1234,
58
+ actions: [{ icon: 'ShuffleLine', onClick: noop }],
59
+ }}
60
+ onClick={alert}
61
+ >
62
+ With modified Badge
63
+ </ReqoreButton>
40
64
  </ReqoreControlGroup>
41
65
  <br />
42
66
  <ReqoreControlGroup fluid>
@@ -44,6 +68,50 @@ const Template: ComponentStory<typeof ReqoreButton> = (buttonProps) => {
44
68
  Fluid button
45
69
  </ReqoreButton>
46
70
  </ReqoreControlGroup>
71
+ <br />
72
+ <ReqoreControlGroup>
73
+ <ReqoreButton
74
+ {...buttonProps}
75
+ description='This is a very interesting description for a button, I like it very much'
76
+ >
77
+ With Default Description
78
+ </ReqoreButton>
79
+ <ReqoreButton
80
+ {...buttonProps}
81
+ description='This is a very interesting description for a button, I like it very much'
82
+ maxWidth='200px'
83
+ badge={{
84
+ color: '#00fafd',
85
+ labelKey: 'Cool',
86
+ label: 1234,
87
+ actions: [{ icon: 'ShuffleLine', onClick: noop }],
88
+ }}
89
+ >
90
+ With description and max width
91
+ </ReqoreButton>
92
+ <ReqoreButton
93
+ {...buttonProps}
94
+ description='This is a very interesting description for a button, I like it very much'
95
+ maxWidth='200px'
96
+ badge={{
97
+ effect: {
98
+ gradient: { colors: { 0: '#00fafd', 130: '#eb0e8c' }, direction: 'to right bottom' },
99
+ uppercase: true,
100
+ },
101
+ labelKey: 'Cool',
102
+ label: 1234,
103
+ actions: [{ icon: 'ShuffleLine', onClick: noop }],
104
+ }}
105
+ wrap
106
+ >
107
+ With description and max width, wrapped
108
+ </ReqoreButton>
109
+ <ReqoreButton
110
+ {...buttonProps}
111
+ description='This is a very interesting description for a button, I like it very much'
112
+ wrap
113
+ />
114
+ </ReqoreControlGroup>
47
115
  </>
48
116
  );
49
117
  };
@@ -28,7 +28,7 @@ export default {
28
28
  },
29
29
  }),
30
30
  ...createArg('wrapText', {
31
- defaultValue: true,
31
+ defaultValue: false,
32
32
  name: 'Wrap text',
33
33
  control: {
34
34
  type: 'boolean',
@@ -59,7 +59,9 @@ const Template: Story<IReqoreMenuProps> = (args) => {
59
59
  Delete
60
60
  </ReqoreMenuItem>
61
61
 
62
- <ReqoreMenuItem icon='Lock2Fill'>This is a really long item that should wrap</ReqoreMenuItem>
62
+ <ReqoreMenuItem icon='Lock2Fill' description='I also have a description'>
63
+ This is a really long item that should wrap
64
+ </ReqoreMenuItem>
63
65
  <ReqoreMenuItem icon='Lock2Fill' disabled>
64
66
  Disabled
65
67
  </ReqoreMenuItem>
@@ -73,16 +75,33 @@ const Template: Story<IReqoreMenuProps> = (args) => {
73
75
  {
74
76
  icon: 'EmotionUnhappyLine',
75
77
  rightIcon: 'Scissors2Fill',
78
+ wrap: args.wrapText,
79
+ flat: args.flat,
76
80
  } as IReqoreMenuItemProps
77
81
  }
82
+ openOnMount
78
83
  content={
79
84
  <ReqoreMenu {...args}>
80
85
  <ReqoreMenuItem icon='ZhihuFill'>Item 1</ReqoreMenuItem>
81
- <ReqoreMenuItem icon='AccountCircleFill'>Item 2</ReqoreMenuItem>
86
+ <ReqoreMenuItem
87
+ icon='AccountCircleFill'
88
+ description='Would you look at that beautiful description'
89
+ intent='warning'
90
+ >
91
+ Item 2
92
+ </ReqoreMenuItem>
82
93
  <ReqoreMenuItem icon='AnticlockwiseFill' disabled>
83
94
  Item 3
84
95
  </ReqoreMenuItem>
85
- <ReqoreMenuItem icon='ArchiveFill'>Item 4</ReqoreMenuItem>
96
+ <ReqoreMenuItem
97
+ icon='ArchiveFill'
98
+ badge={{
99
+ label: '10',
100
+ effect: { gradient: { colors: { 0: '#00e3e8', 100: '#eb0e8c' } } },
101
+ }}
102
+ >
103
+ Item 4
104
+ </ReqoreMenuItem>
86
105
  </ReqoreMenu>
87
106
  }
88
107
  isReqoreComponent
@@ -106,6 +125,8 @@ const Template: Story<IReqoreMenuProps> = (args) => {
106
125
  },
107
126
  },
108
127
  }}
128
+ description='I also have a description'
129
+ badge={10}
109
130
  >
110
131
  Fancy
111
132
  </ReqoreMenuItem>
@@ -116,5 +137,9 @@ const Template: Story<IReqoreMenuProps> = (args) => {
116
137
  export const Basic = Template.bind({});
117
138
  export const WrappedText = Template.bind({});
118
139
  WrappedText.args = {
119
- wrapText: false,
140
+ wrapText: true,
141
+ };
142
+ export const NotFlat = Template.bind({});
143
+ NotFlat.args = {
144
+ flat: false,
120
145
  };
@@ -1,7 +1,7 @@
1
1
  import { Meta, Story } from '@storybook/react/types-6-0';
2
2
  import { IReqoreTabsProps } from '../../components/Tabs';
3
3
  import { ReqoreTabs, ReqoreTabsContent } from '../../index';
4
- import { argManager, FlatArg, IntentArg, SizeArg } from '../utils/args';
4
+ import { argManager, IntentArg, SizeArg } from '../utils/args';
5
5
 
6
6
  const tabs = [
7
7
  {
@@ -74,9 +74,14 @@ const { createArg } = argManager<IReqoreTabsProps>();
74
74
  export default {
75
75
  title: 'Components/Tabs',
76
76
  argTypes: {
77
- ...FlatArg,
78
77
  ...SizeArg,
79
78
  ...IntentArg,
79
+ ...createArg('flat', {
80
+ type: 'boolean',
81
+ defaultValue: true,
82
+ name: 'Flat',
83
+ description: 'Whether the tabs should be flat or not',
84
+ }),
80
85
  ...createArg('fill', {
81
86
  type: 'boolean',
82
87
  defaultValue: false,
@@ -227,7 +232,7 @@ VerticalCustomWidth.args = {
227
232
  width: '300px',
228
233
  };
229
234
 
230
- export const Flat = Template.bind({});
231
- Flat.args = {
232
- flat: true,
235
+ export const NotFlat = Template.bind({});
236
+ NotFlat.args = {
237
+ flat: false,
233
238
  };
@@ -47,7 +47,6 @@ export default {
47
47
  icon: 'SpyFill',
48
48
  onClick: noop,
49
49
  intent: 'success',
50
- tooltip: { content: 'Hm, another tooltip', openOnMount: true },
51
50
  },
52
51
  ],
53
52
  table: {
@@ -60,7 +59,17 @@ export default {
60
59
  const Template: Story<IReqoreTagGroup & IReqoreTagProps> = ({ columns, ...args }) => {
61
60
  return (
62
61
  <ReqoreTagGroup columns={columns} size={args.size}>
63
- <ReqoreTag label='Basic Tag' icon='AlarmWarningLine' {...args} />
62
+ <ReqoreTag {...args} actions={null} onRemoveClick={null} rightIcon={null} label={1} />
63
+ <ReqoreTag {...args} actions={null} onRemoveClick={null} rightIcon={null} label='Basic Tag' />
64
+ <ReqoreTag
65
+ {...args}
66
+ actions={null}
67
+ onRemoveClick={null}
68
+ rightIcon={null}
69
+ labelKey='Number'
70
+ label={2}
71
+ />
72
+ <ReqoreTag label='With Icon' icon='AlarmWarningLine' {...args} />
64
73
  <ReqoreTag labelKey='Tag with' label='Label Key' icon='AlarmWarningLine' {...args} />
65
74
  <ReqoreTag labelKey='Key' label='value' {...args} />
66
75
  <ReqoreTag icon='QuestionAnswerLine' {...args} />
@@ -71,10 +80,39 @@ const Template: Story<IReqoreTagGroup & IReqoreTagProps> = ({ columns, ...args }
71
80
  icon='AlarmWarningLine'
72
81
  {...args}
73
82
  tooltip='I am wiiiiiiide'
83
+ actions={[
84
+ {
85
+ icon: '24HoursFill',
86
+ onClick: noop,
87
+ disabled: true,
88
+ intent: 'info',
89
+ tooltip: { content: 'I am a tooltip' },
90
+ },
91
+ {
92
+ icon: 'SpyFill',
93
+ onClick: noop,
94
+ intent: 'success',
95
+ tooltip: { content: 'Hm, another tooltip', openOnMount: true },
96
+ },
97
+ ]}
74
98
  />
75
99
  <ReqoreTag label='Danger Tag' icon='AlarmWarningLine' intent='danger' {...args} />
76
- <ReqoreTag label='Custom Color Tag' icon='AlarmWarningLine' color='#38fdb2' {...args} />
77
- <ReqoreTag label='No Buttons Tag' icon='CarLine' color='#0b4578' rightIcon={args.rightIcon} />
100
+ <ReqoreTag
101
+ label='Custom Color Tag'
102
+ icon='AlarmWarningLine'
103
+ color='#38fdb2'
104
+ {...args}
105
+ tooltip={{ content: 'Hm, another tooltip', openOnMount: true }}
106
+ />
107
+ <ReqoreTag
108
+ {...args}
109
+ label='No Buttons Tag'
110
+ icon='CarLine'
111
+ color='#0b4578'
112
+ rightIcon={args.rightIcon}
113
+ actions={null}
114
+ onRemoveClick={null}
115
+ />
78
116
  </ReqoreTagGroup>
79
117
  );
80
118
  };
package/tests.json CHANGED
@@ -1 +1 @@
1
- {"numFailedTestSuites":0,"numFailedTests":0,"numPassedTestSuites":25,"numPassedTests":104,"numPendingTestSuites":0,"numPendingTests":0,"numRuntimeErrorTestSuites":0,"numTodoTests":0,"numTotalTestSuites":25,"numTotalTests":104,"openHandles":[],"snapshot":{"added":0,"didUpdate":false,"failure":false,"filesAdded":0,"filesRemoved":0,"filesRemovedList":[],"filesUnmatched":0,"filesUpdated":0,"matched":0,"total":0,"unchecked":0,"uncheckedKeysByFile":[],"unmatched":0,"updated":0},"startTime":1670938828968,"success":true,"testResults":[{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Table /> properly","location":null,"status":"passed","title":"Renders basic <Table /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Table /> with grouped columns properly","location":null,"status":"passed","title":"Renders <Table /> with grouped columns properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Table /> with custom content","location":null,"status":"passed","title":"Renders <Table /> with custom content"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Table /> with predefined content","location":null,"status":"passed","title":"Renders <Table /> with predefined content"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Sorting on <Table /> works properly","location":null,"status":"passed","title":"Sorting on <Table /> works properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Rows on <Table /> can be selected","location":null,"status":"passed","title":"Rows on <Table /> can be selected"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Rows on <Table /> cannot be selected if _selectId is missing","location":null,"status":"passed","title":"Rows on <Table /> cannot be selected if _selectId is missing"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Rows on <Table /> are all selected/deselected when clicking on header","location":null,"status":"passed","title":"Rows on <Table /> are all selected/deselected when clicking on header"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Cells on <Table /> are interactive","location":null,"status":"passed","title":"Cells on <Table /> are interactive"}],"endTime":1670938845352,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/table.test.tsx","startTime":1670938829548,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders full <Tabs /> properly","location":null,"status":"passed","title":"Renders full <Tabs /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders shortened <Tabs /> properly","location":null,"status":"passed","title":"Renders shortened <Tabs /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Default active tab can be specified","location":null,"status":"passed","title":"Default active tab can be specified"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Changes tab and runs callback","location":null,"status":"passed","title":"Changes tab and runs callback"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Does not change tab and run callback when disabled","location":null,"status":"passed","title":"Does not change tab and run callback when disabled"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Changes tab programatically and runs callback","location":null,"status":"passed","title":"Changes tab programatically and runs callback"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Closable tab can be closed if not disabled","location":null,"status":"passed","title":"Closable tab can be closed if not disabled"}],"endTime":1670938847158,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tabs.test.tsx","startTime":1670938845380,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Dropdown /> properly","location":null,"status":"passed","title":"Renders <Dropdown /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders disabled <Dropdown /> when children are empty","location":null,"status":"passed","title":"Renders disabled <Dropdown /> when children are empty"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Dropdown /> with custom component and custom handler","location":null,"status":"passed","title":"Renders <Dropdown /> with custom component and custom handler"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Dropdown /> is opened by default","location":null,"status":"passed","title":"Renders <Dropdown /> is opened by default"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Dropdown /> and calls a function on item click","location":null,"status":"passed","title":"Renders <Dropdown /> and calls a function on item click"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders filterable <Dropdown /> and filters items correctly","location":null,"status":"passed","title":"Renders filterable <Dropdown /> and filters items correctly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Dropdown /> and updates its items when state changes","location":null,"status":"passed","title":"Renders <Dropdown /> and updates its items when state changes"}],"endTime":1670938849500,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/dropdown.test.tsx","startTime":1670938847178,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders sidebar","location":null,"status":"passed","title":"Renders sidebar"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Sidebar can be collapsed","location":null,"status":"passed","title":"Sidebar can be collapsed"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Can open submenu manually","location":null,"status":"passed","title":"Can open submenu manually"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Submenu opens automatically if path matches","location":null,"status":"passed","title":"Submenu opens automatically if path matches"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Bookmarks can be added and removed","location":null,"status":"passed","title":"Bookmarks can be added and removed"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Bookmarks clicks are not propagated through","location":null,"status":"passed","title":"Bookmarks clicks are not propagated through"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders item as <p> element with onClick","location":null,"status":"passed","title":"Renders item as <p> element with onClick"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders floating sidebar with item as <p> element with onClick, closes on item click","location":null,"status":"passed","title":"Renders floating sidebar with item as <p> element with onClick, closes on item click"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders custom item at the top","location":null,"status":"passed","title":"Renders custom item at the top"}],"endTime":1670938850865,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/sidebar.test.tsx","startTime":1670938849517,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows popover on hover, hides on leave","location":null,"status":"passed","title":"Shows popover on hover, hides on leave"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows popover on click, hides only on click away","location":null,"status":"passed","title":"Shows popover on click, hides only on click away"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows custom content","location":null,"status":"passed","title":"Shows custom content"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Runs callback function","location":null,"status":"passed","title":"Runs callback function"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows the popover after a delay","location":null,"status":"passed","title":"Shows the popover after a delay"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Does not show the popover with delay if time not reached","location":null,"status":"passed","title":"Does not show the popover with delay if time not reached"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows the hoverStay popover after a delay and stays, ","location":null,"status":"passed","title":"Shows the hoverStay popover after a delay and stays, "},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows the hoverStay popover after a delay and stays, ","location":null,"status":"passed","title":"Shows the hoverStay popover after a delay and stays, "}],"endTime":1670938852360,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/popover.test.tsx","startTime":1670938850885,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Adds notifications and dismisses them automatically","location":null,"status":"passed","title":"Adds notifications and dismisses them automatically"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Adds a notification and updates it","location":null,"status":"passed","title":"Adds a notification and updates it"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Notification has a click event","location":null,"status":"passed","title":"Notification has a click event"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Notification has a close event","location":null,"status":"passed","title":"Notification has a close event"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Notification has a finish event","location":null,"status":"passed","title":"Notification has a finish event"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Maximum of 5 notifications is shown at once","location":null,"status":"passed","title":"Maximum of 5 notifications is shown at once"}],"endTime":1670938853494,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/notifications.test.tsx","startTime":1670938852376,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Tag /> properly","location":null,"status":"passed","title":"Renders <Tag /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Tag /> group properly","location":null,"status":"passed","title":"Renders <Tag /> group properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Tag /> without remove button if disabled","location":null,"status":"passed","title":"Renders <Tag /> without remove button if disabled"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Fires onClick and onRemoveClick <Tag /> events","location":null,"status":"passed","title":"Fires onClick and onRemoveClick <Tag /> events"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Tag /> with the label key","location":null,"status":"passed","title":"Renders <Tag /> with the label key"}],"endTime":1670938854359,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tag.test.tsx","startTime":1670938853514,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Panel /> properly","location":null,"status":"passed","title":"Renders basic <Panel /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Panel /> with title properly","location":null,"status":"passed","title":"Renders basic <Panel /> with title properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Panel /> that is collapsed by default and can be expanded","location":null,"status":"passed","title":"Renders basic <Panel /> that is collapsed by default and can be expanded"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders closable <Panel /> properly","location":null,"status":"passed","title":"Renders closable <Panel /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Panel /> with actions","location":null,"status":"passed","title":"Renders <Panel /> with actions"}],"endTime":1670938855391,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/panel.test.tsx","startTime":1670938854380,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> properly","location":null,"status":"passed","title":"Renders <Button /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with size properly","location":null,"status":"passed","title":"Renders <Button /> with size properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with icon properly","location":null,"status":"passed","title":"Renders <Button /> with icon properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with intent properly","location":null,"status":"passed","title":"Renders <Button /> with intent properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with right icon properly","location":null,"status":"passed","title":"Renders <Button /> with right icon properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with icon and right icon properly","location":null,"status":"passed","title":"Renders <Button /> with icon and right icon properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with onClick function","location":null,"status":"passed","title":"Renders <Button /> with onClick function"}],"endTime":1670938856458,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/button.test.tsx","startTime":1670938855403,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Modal /> properly","location":null,"status":"passed","title":"Renders basic <Modal /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Does not renders <Modal /> if its not open","location":null,"status":"passed","title":"Does not renders <Modal /> if its not open"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Modal /> with custom dimensions","location":null,"status":"passed","title":"Renders <Modal /> with custom dimensions"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders confirmation <Modal /> ","location":null,"status":"passed","title":"Renders confirmation <Modal /> "}],"endTime":1670938857404,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/modal.test.tsx","startTime":1670938856469,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Does not render <Drawer /> if not open","location":null,"status":"passed","title":"Does not render <Drawer /> if not open"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders opened <Drawer /> properly","location":null,"status":"passed","title":"Renders opened <Drawer /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders hidable <Drawer /> properly","location":null,"status":"passed","title":"Renders hidable <Drawer /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders closable <Drawer /> properly","location":null,"status":"passed","title":"Renders closable <Drawer /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Drawer /> with interactive backdrop","location":null,"status":"passed","title":"Renders <Drawer /> with interactive backdrop"}],"endTime":1670938858264,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/drawer.test.tsx","startTime":1670938857415,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Tree /> properly","location":null,"status":"passed","title":"Renders basic <Tree /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows textarea for <Tree /> properly","location":null,"status":"passed","title":"Shows textarea for <Tree /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Tree /> items can be expanded and collapsed","location":null,"status":"passed","title":"<Tree /> items can be expanded and collapsed"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows types for <Tree /> properly","location":null,"status":"passed","title":"Shows types for <Tree /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Tree /> with clickable items","location":null,"status":"passed","title":"Renders <Tree /> with clickable items"}],"endTime":1670938859981,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tree.test.tsx","startTime":1670938858275,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Collection /> properly","location":null,"status":"passed","title":"Renders basic <Collection /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Collection /> items can be filtered","location":null,"status":"passed","title":"<Collection /> items can be filtered"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Collection /> shows no data message when empty","location":null,"status":"passed","title":"<Collection /> shows no data message when empty"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Collection /> can be sorted","location":null,"status":"passed","title":"<Collection /> can be sorted"}],"endTime":1670938861821,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/collection.test.tsx","startTime":1670938860002,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Menu /> properly","location":null,"status":"passed","title":"Renders <Menu /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Menu /> item can be clicked","location":null,"status":"passed","title":"<Menu /> item can be clicked"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Menu /> item has right clickable button","location":null,"status":"passed","title":"<Menu /> item has right clickable button"}],"endTime":1670938862704,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/menu.test.tsx","startTime":1670938861832,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Input /> properly","location":null,"status":"passed","title":"Renders <Input /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Input /> with clear button properly","location":null,"status":"passed","title":"Renders <Input /> with clear button properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Disabled <Input /> cannot be cleared","location":null,"status":"passed","title":"Disabled <Input /> cannot be cleared"}],"endTime":1670938863502,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/input.test.tsx","startTime":1670938862717,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders full <Breadcrumbs /> properly","location":null,"status":"passed","title":"Renders full <Breadcrumbs /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders shortened <Breadcrumbs /> properly","location":null,"status":"passed","title":"Renders shortened <Breadcrumbs /> properly"}],"endTime":1670938864107,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/breadcrumbs.test.tsx","startTime":1670938863513,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreEffect /> properly","location":null,"status":"passed","title":"Renders <ReqoreEffect /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders empty <Icon /> if icon does not exist","location":null,"status":"passed","title":"Renders empty <Icon /> if icon does not exist"}],"endTime":1670938864635,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/effect.test.tsx","startTime":1670938864119,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <TextArea /> properly","location":null,"status":"passed","title":"Renders <TextArea /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <TextArea /> with clear button properly","location":null,"status":"passed","title":"Renders <TextArea /> with clear button properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Disabled <TextArea /> cannot be cleared","location":null,"status":"passed","title":"Disabled <TextArea /> cannot be cleared"}],"endTime":1670938865680,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/textarea.test.tsx","startTime":1670938864655,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Message /> properly","location":null,"status":"passed","title":"Renders <Message /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Runs onFinish on message after duration","location":null,"status":"passed","title":"Runs onFinish on message after duration"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Runs onClose when closed","location":null,"status":"passed","title":"Runs onClose when closed"}],"endTime":1670938866437,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/messages.test.tsx","startTime":1670938865713,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Checkbox /> properly","location":null,"status":"passed","title":"Renders <Checkbox /> properly"}],"endTime":1670938867027,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/radiogroup.test.tsx","startTime":1670938866458,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders Layout properly","location":null,"status":"passed","title":"Renders Layout properly"}],"endTime":1670938867636,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/layout.test.tsx","startTime":1670938867048,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Icon /> properly","location":null,"status":"passed","title":"Renders <Icon /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders empty <Icon /> if icon does not exist","location":null,"status":"passed","title":"Renders empty <Icon /> if icon does not exist"}],"endTime":1670938868577,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/icon.test.tsx","startTime":1670938867648,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders Navbar properly","location":null,"status":"passed","title":"Renders Navbar properly"}],"endTime":1670938869095,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/navbar.test.tsx","startTime":1670938868587,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Checkbox /> properly","location":null,"status":"passed","title":"Renders <Checkbox /> properly"}],"endTime":1670938869720,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/checkbox.test.tsx","startTime":1670938869114,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <TimeAgo /> data properly","location":null,"status":"passed","title":"Renders <TimeAgo /> data properly"}],"endTime":1670938870223,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/timeAgo.test.tsx","startTime":1670938869730,"status":"passed","summary":""}],"wasInterrupted":false}
1
+ {"numFailedTestSuites":0,"numFailedTests":0,"numPassedTestSuites":25,"numPassedTests":104,"numPendingTestSuites":0,"numPendingTests":0,"numRuntimeErrorTestSuites":0,"numTodoTests":0,"numTotalTestSuites":25,"numTotalTests":104,"openHandles":[],"snapshot":{"added":0,"didUpdate":false,"failure":false,"filesAdded":0,"filesRemoved":0,"filesRemovedList":[],"filesUnmatched":0,"filesUpdated":0,"matched":0,"total":0,"unchecked":0,"uncheckedKeysByFile":[],"unmatched":0,"updated":0},"startTime":1671110513714,"success":true,"testResults":[{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Table /> properly","location":null,"status":"passed","title":"Renders basic <Table /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Table /> with grouped columns properly","location":null,"status":"passed","title":"Renders <Table /> with grouped columns properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Table /> with custom content","location":null,"status":"passed","title":"Renders <Table /> with custom content"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Table /> with predefined content","location":null,"status":"passed","title":"Renders <Table /> with predefined content"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Sorting on <Table /> works properly","location":null,"status":"passed","title":"Sorting on <Table /> works properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Rows on <Table /> can be selected","location":null,"status":"passed","title":"Rows on <Table /> can be selected"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Rows on <Table /> cannot be selected if _selectId is missing","location":null,"status":"passed","title":"Rows on <Table /> cannot be selected if _selectId is missing"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Rows on <Table /> are all selected/deselected when clicking on header","location":null,"status":"passed","title":"Rows on <Table /> are all selected/deselected when clicking on header"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Cells on <Table /> are interactive","location":null,"status":"passed","title":"Cells on <Table /> are interactive"}],"endTime":1671110526143,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/table.test.tsx","startTime":1671110514142,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders full <Tabs /> properly","location":null,"status":"passed","title":"Renders full <Tabs /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders shortened <Tabs /> properly","location":null,"status":"passed","title":"Renders shortened <Tabs /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Default active tab can be specified","location":null,"status":"passed","title":"Default active tab can be specified"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Changes tab and runs callback","location":null,"status":"passed","title":"Changes tab and runs callback"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Does not change tab and run callback when disabled","location":null,"status":"passed","title":"Does not change tab and run callback when disabled"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Changes tab programatically and runs callback","location":null,"status":"passed","title":"Changes tab programatically and runs callback"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Closable tab can be closed if not disabled","location":null,"status":"passed","title":"Closable tab can be closed if not disabled"}],"endTime":1671110527440,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tabs.test.tsx","startTime":1671110526162,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Dropdown /> properly","location":null,"status":"passed","title":"Renders <Dropdown /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders disabled <Dropdown /> when children are empty","location":null,"status":"passed","title":"Renders disabled <Dropdown /> when children are empty"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Dropdown /> with custom component and custom handler","location":null,"status":"passed","title":"Renders <Dropdown /> with custom component and custom handler"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Dropdown /> is opened by default","location":null,"status":"passed","title":"Renders <Dropdown /> is opened by default"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Dropdown /> and calls a function on item click","location":null,"status":"passed","title":"Renders <Dropdown /> and calls a function on item click"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders filterable <Dropdown /> and filters items correctly","location":null,"status":"passed","title":"Renders filterable <Dropdown /> and filters items correctly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Dropdown /> and updates its items when state changes","location":null,"status":"passed","title":"Renders <Dropdown /> and updates its items when state changes"}],"endTime":1671110529259,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/dropdown.test.tsx","startTime":1671110527456,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders sidebar","location":null,"status":"passed","title":"Renders sidebar"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Sidebar can be collapsed","location":null,"status":"passed","title":"Sidebar can be collapsed"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Can open submenu manually","location":null,"status":"passed","title":"Can open submenu manually"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Submenu opens automatically if path matches","location":null,"status":"passed","title":"Submenu opens automatically if path matches"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Bookmarks can be added and removed","location":null,"status":"passed","title":"Bookmarks can be added and removed"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Bookmarks clicks are not propagated through","location":null,"status":"passed","title":"Bookmarks clicks are not propagated through"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders item as <p> element with onClick","location":null,"status":"passed","title":"Renders item as <p> element with onClick"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders floating sidebar with item as <p> element with onClick, closes on item click","location":null,"status":"passed","title":"Renders floating sidebar with item as <p> element with onClick, closes on item click"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders custom item at the top","location":null,"status":"passed","title":"Renders custom item at the top"}],"endTime":1671110530274,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/sidebar.test.tsx","startTime":1671110529270,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows popover on hover, hides on leave","location":null,"status":"passed","title":"Shows popover on hover, hides on leave"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows popover on click, hides only on click away","location":null,"status":"passed","title":"Shows popover on click, hides only on click away"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows custom content","location":null,"status":"passed","title":"Shows custom content"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Runs callback function","location":null,"status":"passed","title":"Runs callback function"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows the popover after a delay","location":null,"status":"passed","title":"Shows the popover after a delay"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Does not show the popover with delay if time not reached","location":null,"status":"passed","title":"Does not show the popover with delay if time not reached"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows the hoverStay popover after a delay and stays, ","location":null,"status":"passed","title":"Shows the hoverStay popover after a delay and stays, "},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows the hoverStay popover after a delay and stays, ","location":null,"status":"passed","title":"Shows the hoverStay popover after a delay and stays, "}],"endTime":1671110531287,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/popover.test.tsx","startTime":1671110530285,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Adds notifications and dismisses them automatically","location":null,"status":"passed","title":"Adds notifications and dismisses them automatically"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Adds a notification and updates it","location":null,"status":"passed","title":"Adds a notification and updates it"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Notification has a click event","location":null,"status":"passed","title":"Notification has a click event"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Notification has a close event","location":null,"status":"passed","title":"Notification has a close event"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Notification has a finish event","location":null,"status":"passed","title":"Notification has a finish event"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Maximum of 5 notifications is shown at once","location":null,"status":"passed","title":"Maximum of 5 notifications is shown at once"}],"endTime":1671110532070,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/notifications.test.tsx","startTime":1671110531297,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Tag /> properly","location":null,"status":"passed","title":"Renders <Tag /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Tag /> group properly","location":null,"status":"passed","title":"Renders <Tag /> group properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Tag /> without remove button if disabled","location":null,"status":"passed","title":"Renders <Tag /> without remove button if disabled"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Fires onClick and onRemoveClick <Tag /> events","location":null,"status":"passed","title":"Fires onClick and onRemoveClick <Tag /> events"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Tag /> with the label key","location":null,"status":"passed","title":"Renders <Tag /> with the label key"}],"endTime":1671110532709,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tag.test.tsx","startTime":1671110532086,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Panel /> properly","location":null,"status":"passed","title":"Renders basic <Panel /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Panel /> with title properly","location":null,"status":"passed","title":"Renders basic <Panel /> with title properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Panel /> that is collapsed by default and can be expanded","location":null,"status":"passed","title":"Renders basic <Panel /> that is collapsed by default and can be expanded"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders closable <Panel /> properly","location":null,"status":"passed","title":"Renders closable <Panel /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Panel /> with actions","location":null,"status":"passed","title":"Renders <Panel /> with actions"}],"endTime":1671110533402,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/panel.test.tsx","startTime":1671110532725,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> properly","location":null,"status":"passed","title":"Renders <Button /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with size properly","location":null,"status":"passed","title":"Renders <Button /> with size properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with icon properly","location":null,"status":"passed","title":"Renders <Button /> with icon properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with intent properly","location":null,"status":"passed","title":"Renders <Button /> with intent properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with right icon properly","location":null,"status":"passed","title":"Renders <Button /> with right icon properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with icon and right icon properly","location":null,"status":"passed","title":"Renders <Button /> with icon and right icon properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with onClick function","location":null,"status":"passed","title":"Renders <Button /> with onClick function"}],"endTime":1671110534530,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/button.test.tsx","startTime":1671110533416,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Modal /> properly","location":null,"status":"passed","title":"Renders basic <Modal /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Does not renders <Modal /> if its not open","location":null,"status":"passed","title":"Does not renders <Modal /> if its not open"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Modal /> with custom dimensions","location":null,"status":"passed","title":"Renders <Modal /> with custom dimensions"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders confirmation <Modal /> ","location":null,"status":"passed","title":"Renders confirmation <Modal /> "}],"endTime":1671110535545,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/modal.test.tsx","startTime":1671110534539,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Does not render <Drawer /> if not open","location":null,"status":"passed","title":"Does not render <Drawer /> if not open"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders opened <Drawer /> properly","location":null,"status":"passed","title":"Renders opened <Drawer /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders hidable <Drawer /> properly","location":null,"status":"passed","title":"Renders hidable <Drawer /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders closable <Drawer /> properly","location":null,"status":"passed","title":"Renders closable <Drawer /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Drawer /> with interactive backdrop","location":null,"status":"passed","title":"Renders <Drawer /> with interactive backdrop"}],"endTime":1671110536154,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/drawer.test.tsx","startTime":1671110535557,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Tree /> properly","location":null,"status":"passed","title":"Renders basic <Tree /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows textarea for <Tree /> properly","location":null,"status":"passed","title":"Shows textarea for <Tree /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Tree /> items can be expanded and collapsed","location":null,"status":"passed","title":"<Tree /> items can be expanded and collapsed"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows types for <Tree /> properly","location":null,"status":"passed","title":"Shows types for <Tree /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Tree /> with clickable items","location":null,"status":"passed","title":"Renders <Tree /> with clickable items"}],"endTime":1671110537433,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tree.test.tsx","startTime":1671110536162,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Collection /> properly","location":null,"status":"passed","title":"Renders basic <Collection /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Collection /> items can be filtered","location":null,"status":"passed","title":"<Collection /> items can be filtered"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Collection /> shows no data message when empty","location":null,"status":"passed","title":"<Collection /> shows no data message when empty"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Collection /> can be sorted","location":null,"status":"passed","title":"<Collection /> can be sorted"}],"endTime":1671110538769,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/collection.test.tsx","startTime":1671110537441,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Menu /> properly","location":null,"status":"passed","title":"Renders <Menu /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Menu /> item can be clicked","location":null,"status":"passed","title":"<Menu /> item can be clicked"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Menu /> item has right clickable button","location":null,"status":"passed","title":"<Menu /> item has right clickable button"}],"endTime":1671110539275,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/menu.test.tsx","startTime":1671110538777,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Input /> properly","location":null,"status":"passed","title":"Renders <Input /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Input /> with clear button properly","location":null,"status":"passed","title":"Renders <Input /> with clear button properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Disabled <Input /> cannot be cleared","location":null,"status":"passed","title":"Disabled <Input /> cannot be cleared"}],"endTime":1671110539846,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/input.test.tsx","startTime":1671110539290,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders full <Breadcrumbs /> properly","location":null,"status":"passed","title":"Renders full <Breadcrumbs /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders shortened <Breadcrumbs /> properly","location":null,"status":"passed","title":"Renders shortened <Breadcrumbs /> properly"}],"endTime":1671110540283,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/breadcrumbs.test.tsx","startTime":1671110539855,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreEffect /> properly","location":null,"status":"passed","title":"Renders <ReqoreEffect /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders empty <Icon /> if icon does not exist","location":null,"status":"passed","title":"Renders empty <Icon /> if icon does not exist"}],"endTime":1671110541033,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/effect.test.tsx","startTime":1671110540305,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <TextArea /> properly","location":null,"status":"passed","title":"Renders <TextArea /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <TextArea /> with clear button properly","location":null,"status":"passed","title":"Renders <TextArea /> with clear button properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Disabled <TextArea /> cannot be cleared","location":null,"status":"passed","title":"Disabled <TextArea /> cannot be cleared"}],"endTime":1671110541541,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/textarea.test.tsx","startTime":1671110541051,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Message /> properly","location":null,"status":"passed","title":"Renders <Message /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Runs onFinish on message after duration","location":null,"status":"passed","title":"Runs onFinish on message after duration"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Runs onClose when closed","location":null,"status":"passed","title":"Runs onClose when closed"}],"endTime":1671110542012,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/messages.test.tsx","startTime":1671110541549,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Checkbox /> properly","location":null,"status":"passed","title":"Renders <Checkbox /> properly"}],"endTime":1671110542394,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/radiogroup.test.tsx","startTime":1671110542026,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders Layout properly","location":null,"status":"passed","title":"Renders Layout properly"}],"endTime":1671110542802,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/layout.test.tsx","startTime":1671110542410,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Icon /> properly","location":null,"status":"passed","title":"Renders <Icon /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders empty <Icon /> if icon does not exist","location":null,"status":"passed","title":"Renders empty <Icon /> if icon does not exist"}],"endTime":1671110543463,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/icon.test.tsx","startTime":1671110542811,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders Navbar properly","location":null,"status":"passed","title":"Renders Navbar properly"}],"endTime":1671110543827,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/navbar.test.tsx","startTime":1671110543475,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Checkbox /> properly","location":null,"status":"passed","title":"Renders <Checkbox /> properly"}],"endTime":1671110544228,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/checkbox.test.tsx","startTime":1671110543840,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <TimeAgo /> data properly","location":null,"status":"passed","title":"Renders <TimeAgo /> data properly"}],"endTime":1671110544576,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/timeAgo.test.tsx","startTime":1671110544237,"status":"passed","summary":""}],"wasInterrupted":false}