@qoretechnologies/reqore 0.29.9 → 0.30.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/__tests__/collection.test.tsx +1 -1
- package/__tests__/{control_group.text.tsx → control_group.test.tsx} +4 -2
- package/__tests__/panel.test.tsx +22 -24
- package/__tests__/tabs.test.tsx +32 -0
- package/dist/components/Button/index.d.ts.map +1 -1
- package/dist/components/Button/index.js +5 -2
- package/dist/components/Button/index.js.map +1 -1
- package/dist/components/Collection/index.d.ts.map +1 -1
- package/dist/components/Collection/index.js +14 -37
- package/dist/components/Collection/index.js.map +1 -1
- package/dist/components/Columns/column.d.ts.map +1 -1
- package/dist/components/Columns/column.js +1 -1
- package/dist/components/Columns/column.js.map +1 -1
- package/dist/components/ControlGroup/index.d.ts +5 -4
- package/dist/components/ControlGroup/index.d.ts.map +1 -1
- package/dist/components/ControlGroup/index.js +117 -24
- package/dist/components/ControlGroup/index.js.map +1 -1
- package/dist/components/Drawer/index.d.ts.map +1 -1
- package/dist/components/Drawer/index.js +6 -4
- package/dist/components/Drawer/index.js.map +1 -1
- package/dist/components/Effect/index.d.ts.map +1 -1
- package/dist/components/Effect/index.js +1 -1
- package/dist/components/Effect/index.js.map +1 -1
- package/dist/components/Input/index.js +2 -2
- package/dist/components/Input/index.js.map +1 -1
- package/dist/components/InternalPopover/index.d.ts.map +1 -1
- package/dist/components/InternalPopover/index.js +5 -3
- package/dist/components/InternalPopover/index.js.map +1 -1
- package/dist/components/MultiSelect/index.d.ts +1 -1
- package/dist/components/MultiSelect/index.d.ts.map +1 -1
- package/dist/components/MultiSelect/index.js +10 -10
- package/dist/components/MultiSelect/index.js.map +1 -1
- package/dist/components/Panel/index.d.ts +4 -1
- package/dist/components/Panel/index.d.ts.map +1 -1
- package/dist/components/Panel/index.js +39 -16
- package/dist/components/Panel/index.js.map +1 -1
- package/dist/components/Spacer/index.d.ts +2 -0
- package/dist/components/Spacer/index.d.ts.map +1 -1
- package/dist/components/Spacer/index.js +29 -7
- package/dist/components/Spacer/index.js.map +1 -1
- package/dist/components/Tabs/index.d.ts.map +1 -1
- package/dist/components/Tabs/index.js +2 -1
- package/dist/components/Tabs/index.js.map +1 -1
- package/dist/components/Tag/index.d.ts +2 -2
- package/dist/components/Tag/index.d.ts.map +1 -1
- package/dist/components/Tag/index.js +7 -1
- package/dist/components/Tag/index.js.map +1 -1
- package/dist/components/Tree/index.js +1 -1
- package/dist/components/Tree/index.js.map +1 -1
- package/dist/constants/animations.js +1 -1
- package/dist/containers/PopoverProvider.js +3 -3
- package/dist/containers/PopoverProvider.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Button/index.tsx +2 -1
- package/src/components/Collection/index.tsx +14 -37
- package/src/components/Columns/column.tsx +1 -0
- package/src/components/ControlGroup/index.tsx +386 -232
- package/src/components/Drawer/index.tsx +6 -4
- package/src/components/Effect/index.tsx +1 -0
- package/src/components/Input/index.tsx +1 -1
- package/src/components/InternalPopover/index.tsx +127 -123
- package/src/components/MultiSelect/index.tsx +180 -188
- package/src/components/Panel/index.tsx +127 -42
- package/src/components/Spacer/index.tsx +63 -14
- package/src/components/Tabs/index.tsx +3 -2
- package/src/components/Tag/index.tsx +5 -1
- package/src/components/Tree/index.tsx +1 -1
- package/src/constants/animations.ts +1 -1
- package/src/containers/PopoverProvider.tsx +3 -3
- package/src/stories/ControlGroup/ControlGroup.stories.tsx +55 -5
- package/src/stories/Panel/Panel.stories.tsx +60 -17
- package/src/stories/Popover/Popover.stories.tsx +5 -5
- package/tests.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { memo } from 'react';
|
|
1
|
+
import { memo, useMemo } from 'react';
|
|
2
2
|
import styled, { css } from 'styled-components';
|
|
3
3
|
import { SIZE_TO_NUMBER, TEXT_FROM_SIZE, TSizes } from '../../constants/sizes';
|
|
4
4
|
import { changeLightness } from '../../helpers/colors';
|
|
@@ -6,32 +6,68 @@ import { useReqoreTheme } from '../../hooks/useTheme';
|
|
|
6
6
|
import { IReqoreIntent, IWithReqoreCustomTheme, IWithReqoreEffect } from '../../types/global';
|
|
7
7
|
import { StyledEffect } from '../Effect';
|
|
8
8
|
|
|
9
|
-
export const StyledSpacer = styled
|
|
9
|
+
export const StyledSpacer = styled.div`
|
|
10
|
+
display: ${({ horizontal }) => (horizontal ? 'inline-flex' : 'flex')};
|
|
11
|
+
vertical-align: middle;
|
|
12
|
+
|
|
13
|
+
${({ horizontal, vertical }) => {
|
|
14
|
+
if (horizontal) {
|
|
15
|
+
return css`
|
|
16
|
+
flex-flow: row;
|
|
17
|
+
`;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
if (vertical) {
|
|
21
|
+
return css`
|
|
22
|
+
flex-flow: column;
|
|
23
|
+
`;
|
|
24
|
+
}
|
|
25
|
+
}}
|
|
26
|
+
|
|
27
|
+
flex-shrink: 0;
|
|
28
|
+
`;
|
|
29
|
+
|
|
30
|
+
export const StyledSpace = styled.div`
|
|
31
|
+
display: inline-block;
|
|
32
|
+
flex: 0 0 auto;
|
|
33
|
+
|
|
10
34
|
${({ horizontal, vertical, width, height, lineSize }) => {
|
|
11
35
|
if (horizontal) {
|
|
12
36
|
return css`
|
|
13
|
-
|
|
14
|
-
margin-right: ${width / 2}px;
|
|
15
|
-
width: ${lineSize === 'none' ? 1 : SIZE_TO_NUMBER[lineSize]}px;
|
|
37
|
+
width: ${width / 2 - lineSize / 2}px;
|
|
16
38
|
height: ${height ? `${height}px` : `${TEXT_FROM_SIZE.normal}px`};
|
|
17
|
-
vertical-align: middle;
|
|
18
|
-
display: inline-block;
|
|
19
39
|
`;
|
|
20
40
|
}
|
|
21
41
|
|
|
22
42
|
if (vertical) {
|
|
23
43
|
return css`
|
|
24
|
-
margin-top: ${height / 2}px;
|
|
25
|
-
margin-bottom: ${height / 2}px;
|
|
26
|
-
height: ${lineSize === 'none' ? 1 : SIZE_TO_NUMBER[lineSize]}px;
|
|
27
44
|
width: ${width ? `${width}px` : '100%'};
|
|
45
|
+
height: ${height / 2 - lineSize / 2}px;
|
|
28
46
|
`;
|
|
29
47
|
}
|
|
30
48
|
}}
|
|
49
|
+
`;
|
|
31
50
|
|
|
51
|
+
export const StyledLine = styled(StyledEffect)`
|
|
52
|
+
flex-shrink: 0;
|
|
32
53
|
background-color: ${({ theme, lineSize }) =>
|
|
33
54
|
lineSize === 'none' ? 'transparent' : changeLightness(theme.main, 0.2)};
|
|
34
|
-
|
|
55
|
+
|
|
56
|
+
${({ horizontal, vertical, width, height, lineSize }) => {
|
|
57
|
+
if (horizontal) {
|
|
58
|
+
return css`
|
|
59
|
+
width: ${lineSize}px;
|
|
60
|
+
height: ${height ? `${height}px` : `${TEXT_FROM_SIZE.normal}px`};
|
|
61
|
+
`;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
if (vertical) {
|
|
65
|
+
return css`
|
|
66
|
+
width: ${width ? `${width}px` : '100%'};
|
|
67
|
+
height: ${lineSize}px;
|
|
68
|
+
`;
|
|
69
|
+
}
|
|
70
|
+
}}
|
|
35
71
|
`;
|
|
36
72
|
|
|
37
73
|
export interface IReqoreSpacerProps
|
|
@@ -66,16 +102,29 @@ export const ReqoreSpacer = memo(
|
|
|
66
102
|
}
|
|
67
103
|
}
|
|
68
104
|
|
|
105
|
+
const _lineSize = useMemo(
|
|
106
|
+
() => (lineSize === 'none' ? 0 : SIZE_TO_NUMBER[lineSize]),
|
|
107
|
+
[lineSize]
|
|
108
|
+
);
|
|
109
|
+
|
|
69
110
|
return (
|
|
70
111
|
<StyledSpacer
|
|
71
112
|
as='div'
|
|
72
113
|
{...rest}
|
|
73
|
-
theme={theme}
|
|
74
|
-
lineSize={lineSize}
|
|
75
114
|
horizontal={horizontal}
|
|
76
115
|
vertical={vertical}
|
|
77
116
|
className='reqore-spacer'
|
|
78
|
-
|
|
117
|
+
>
|
|
118
|
+
<StyledSpace {...rest} horizontal={horizontal} vertical={vertical} lineSize={_lineSize} />
|
|
119
|
+
<StyledLine
|
|
120
|
+
{...rest}
|
|
121
|
+
horizontal={horizontal}
|
|
122
|
+
vertical={vertical}
|
|
123
|
+
theme={theme}
|
|
124
|
+
lineSize={_lineSize}
|
|
125
|
+
/>
|
|
126
|
+
<StyledSpace {...rest} horizontal={horizontal} vertical={vertical} lineSize={_lineSize} />
|
|
127
|
+
</StyledSpacer>
|
|
79
128
|
);
|
|
80
129
|
}
|
|
81
130
|
);
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React, { ReactElement,
|
|
1
|
+
import React, { ReactElement, useState } from 'react';
|
|
2
|
+
import { useUpdateEffect } from 'react-use';
|
|
2
3
|
import styled, { css } from 'styled-components';
|
|
3
4
|
import { TSizes } from '../../constants/sizes';
|
|
4
5
|
import { IReqoreCustomTheme, TReqoreIntent } from '../../constants/theme';
|
|
@@ -70,7 +71,7 @@ const ReqoreTabs = ({
|
|
|
70
71
|
}: IReqoreTabsProps) => {
|
|
71
72
|
const [_activeTab, setActiveTab] = useState<string | number>(activeTab || tabs[0].id);
|
|
72
73
|
|
|
73
|
-
|
|
74
|
+
useUpdateEffect(() => {
|
|
74
75
|
if (activeTab || activeTab === 0) {
|
|
75
76
|
setActiveTab(activeTab);
|
|
76
77
|
|
|
@@ -26,6 +26,7 @@ import {
|
|
|
26
26
|
IReqoreDisabled,
|
|
27
27
|
IReqoreIntent,
|
|
28
28
|
IWithReqoreEffect,
|
|
29
|
+
IWithReqoreFluid,
|
|
29
30
|
IWithReqoreMinimal,
|
|
30
31
|
IWithReqoreTooltip,
|
|
31
32
|
} from '../../types/global';
|
|
@@ -44,7 +45,8 @@ export interface IReqoreTagProps
|
|
|
44
45
|
IWithReqoreTooltip,
|
|
45
46
|
IReqoreDisabled,
|
|
46
47
|
IWithReqoreEffect,
|
|
47
|
-
IWithReqoreMinimal
|
|
48
|
+
IWithReqoreMinimal,
|
|
49
|
+
IWithReqoreFluid {
|
|
48
50
|
size?: TSizes;
|
|
49
51
|
label?: string | number;
|
|
50
52
|
labelKey?: string | number;
|
|
@@ -82,6 +84,8 @@ export const StyledTag = styled(StyledEffect)<IReqoreTagStyle>`
|
|
|
82
84
|
font-size: ${({ size }) => TEXT_FROM_SIZE[size]}px;
|
|
83
85
|
|
|
84
86
|
min-width: ${({ size }) => SIZE_TO_PX[size]}px;
|
|
87
|
+
width: ${({ fluid, fixed }) => (fluid && !fixed ? '100%' : undefined)};
|
|
88
|
+
flex: ${({ fluid, fixed }) => (fixed ? '0 0 auto' : fluid ? '1 auto' : '0 0 auto')};
|
|
85
89
|
border-radius: ${({ asBadge, size }) => (asBadge ? 18 : RADIUS_FROM_SIZE[size])}px;
|
|
86
90
|
width: ${({ width }) => width || undefined};
|
|
87
91
|
transition: all 0.2s ease-out;
|
|
@@ -181,7 +181,7 @@ export const ReqoreTree = ({
|
|
|
181
181
|
return (
|
|
182
182
|
<StyledTreeWrapper className='reqore-tree'>
|
|
183
183
|
{showControls && (
|
|
184
|
-
<ReqoreControlGroup stack size={size}>
|
|
184
|
+
<ReqoreControlGroup stack size={size} responsive>
|
|
185
185
|
{isDeep() && !allExpanded ? (
|
|
186
186
|
<ReqoreButton
|
|
187
187
|
flat
|
|
@@ -66,21 +66,21 @@ const PopoverProvider: React.FC<IReqorePopoverProviderProps> = ({ children, uiSc
|
|
|
66
66
|
};
|
|
67
67
|
|
|
68
68
|
useEffect(() => {
|
|
69
|
-
document.addEventListener('
|
|
69
|
+
document.addEventListener('mousedown', handleClick);
|
|
70
70
|
|
|
71
71
|
if (closePopoversOnEscPress) {
|
|
72
72
|
document.addEventListener('keydown', handleKeyDown);
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
return () => {
|
|
76
|
-
document.removeEventListener('
|
|
76
|
+
document.removeEventListener('mousedown', handleClick);
|
|
77
77
|
document.removeEventListener('keydown', handleKeyDown);
|
|
78
78
|
};
|
|
79
79
|
}, [popovers]);
|
|
80
80
|
|
|
81
81
|
useEffect(() => {
|
|
82
82
|
if (!size(popovers)) {
|
|
83
|
-
document.removeEventListener('
|
|
83
|
+
document.removeEventListener('mousedown', handleClick);
|
|
84
84
|
document.removeEventListener('keydown', handleKeyDown);
|
|
85
85
|
}
|
|
86
86
|
}, [popovers]);
|
|
@@ -47,10 +47,44 @@ export default {
|
|
|
47
47
|
} as Meta<IReqoreControlGroupProps>;
|
|
48
48
|
|
|
49
49
|
const Template: Story<IReqoreControlGroupProps> = (args: IReqoreControlGroupProps) => {
|
|
50
|
+
if (args.responsive) {
|
|
51
|
+
return (
|
|
52
|
+
<div style={{ width: 600 }}>
|
|
53
|
+
<ReqoreControlGroup {...args} wrap={false}>
|
|
54
|
+
<ReqoreButton icon='PictureInPictureLine'>Button</ReqoreButton>
|
|
55
|
+
<ReqoreControlGroup stack>
|
|
56
|
+
<ReqoreTag label='A wild tag appears!' color='main:lighten:2' />
|
|
57
|
+
</ReqoreControlGroup>
|
|
58
|
+
<ReqoreControlGroup stack>
|
|
59
|
+
<ReqoreButton maxWidth='300px'>Button with max width</ReqoreButton>
|
|
60
|
+
<ReqoreTag label='A wild tag appears!' color='main:lighten:2' />
|
|
61
|
+
</ReqoreControlGroup>
|
|
62
|
+
<ReqoreControlGroup stack>
|
|
63
|
+
<ReqoreControlGroup>
|
|
64
|
+
<ReqoreButton customTheme={{ main: '#00e3e8' }}>Level 2 deep</ReqoreButton>
|
|
65
|
+
<ReqoreControlGroup fixed>
|
|
66
|
+
<ReqoreButton disabled fixed id='test'>
|
|
67
|
+
Level 3 deep and fixed
|
|
68
|
+
</ReqoreButton>
|
|
69
|
+
</ReqoreControlGroup>
|
|
70
|
+
</ReqoreControlGroup>
|
|
71
|
+
<ReqoreButton intent='danger'>Level 1 deep</ReqoreButton>
|
|
72
|
+
<ReqoreCheckbox checked margin='both' label='Level 1 deep' />
|
|
73
|
+
</ReqoreControlGroup>
|
|
74
|
+
<ReqoreButton icon='PictureInPictureLine'>Button</ReqoreButton>
|
|
75
|
+
<ReqoreButton maxWidth='300px'>Button with max width</ReqoreButton>
|
|
76
|
+
</ReqoreControlGroup>
|
|
77
|
+
</div>
|
|
78
|
+
);
|
|
79
|
+
}
|
|
80
|
+
|
|
50
81
|
return (
|
|
51
82
|
<>
|
|
52
83
|
<ReqoreControlGroup {...args}>
|
|
53
84
|
<ReqoreButton icon='PictureInPictureLine'>Button</ReqoreButton>
|
|
85
|
+
<ReqoreButton icon='PictureInPictureLine' fluid>
|
|
86
|
+
Fluid Button
|
|
87
|
+
</ReqoreButton>
|
|
54
88
|
<ReqoreButton
|
|
55
89
|
icon='PictureInPictureLine'
|
|
56
90
|
flat={false}
|
|
@@ -72,13 +106,13 @@ const Template: Story<IReqoreControlGroupProps> = (args: IReqoreControlGroupProp
|
|
|
72
106
|
checked
|
|
73
107
|
uncheckedIcon='CheckboxBlankLine'
|
|
74
108
|
/>
|
|
75
|
-
<ReqoreInput icon='4KFill' value='Hello' />
|
|
109
|
+
<ReqoreInput icon='4KFill' value='Hello I am fluid' fluid />
|
|
76
110
|
<ReqoreControlGroup stack>
|
|
77
111
|
<ReqoreControlGroup>
|
|
78
112
|
<ReqoreButton customTheme={{ main: '#00e3e8' }}>Level 2 deep</ReqoreButton>
|
|
79
|
-
<ReqoreControlGroup>
|
|
113
|
+
<ReqoreControlGroup fixed>
|
|
80
114
|
<ReqoreButton disabled fixed id='test'>
|
|
81
|
-
Level 3 deep
|
|
115
|
+
Level 3 deep and fixed
|
|
82
116
|
</ReqoreButton>
|
|
83
117
|
</ReqoreControlGroup>
|
|
84
118
|
</ReqoreControlGroup>
|
|
@@ -188,6 +222,11 @@ Minimal.args = {
|
|
|
188
222
|
minimal: true,
|
|
189
223
|
};
|
|
190
224
|
|
|
225
|
+
export const Fluid = Template.bind({});
|
|
226
|
+
Fluid.args = {
|
|
227
|
+
fluid: true,
|
|
228
|
+
};
|
|
229
|
+
|
|
191
230
|
export const NotFlat = Template.bind({});
|
|
192
231
|
NotFlat.args = {
|
|
193
232
|
flat: false,
|
|
@@ -198,8 +237,14 @@ Vertical.args = {
|
|
|
198
237
|
vertical: true,
|
|
199
238
|
};
|
|
200
239
|
|
|
201
|
-
export const
|
|
202
|
-
|
|
240
|
+
export const VerticalFluid = Template.bind({});
|
|
241
|
+
VerticalFluid.args = {
|
|
242
|
+
vertical: true,
|
|
243
|
+
fluid: true,
|
|
244
|
+
};
|
|
245
|
+
|
|
246
|
+
export const VerticalStackedFluid = Template.bind({});
|
|
247
|
+
VerticalStackedFluid.args = {
|
|
203
248
|
vertical: true,
|
|
204
249
|
stack: true,
|
|
205
250
|
fluid: true,
|
|
@@ -230,3 +275,8 @@ export const VerticalAlign = Template.bind({});
|
|
|
230
275
|
VerticalAlign.args = {
|
|
231
276
|
verticalAlign: 'flex-end',
|
|
232
277
|
};
|
|
278
|
+
|
|
279
|
+
export const Responsive = Template.bind({});
|
|
280
|
+
Responsive.args = {
|
|
281
|
+
responsive: true,
|
|
282
|
+
};
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { Meta, Story } from '@storybook/react/types-6-0';
|
|
2
2
|
import { noop } from 'lodash';
|
|
3
|
-
import { ReqoreColumns } from '../../components/Columns';
|
|
4
|
-
import { ReqoreColumn } from '../../components/Columns/column';
|
|
5
3
|
import ReqoreInput, { IReqoreInputProps } from '../../components/Input';
|
|
6
|
-
import { IReqorePanelProps, ReqorePanel } from '../../components/Panel';
|
|
7
|
-
import {
|
|
4
|
+
import { IReqorePanelAction, IReqorePanelProps, ReqorePanel } from '../../components/Panel';
|
|
5
|
+
import { ReqoreVerticalSpacer } from '../../components/Spacer';
|
|
6
|
+
import { FlatArg, IconArg, IntentArg, argManager } from '../utils/args';
|
|
8
7
|
|
|
9
8
|
const { createArg } = argManager<IReqorePanelProps>();
|
|
10
9
|
|
|
@@ -67,19 +66,58 @@ export default {
|
|
|
67
66
|
|
|
68
67
|
const Template: Story<IReqorePanelProps> = (args: IReqorePanelProps) => {
|
|
69
68
|
if (args.fluid) {
|
|
69
|
+
const actions: IReqorePanelAction[] = [
|
|
70
|
+
{
|
|
71
|
+
icon: 'GiftFill',
|
|
72
|
+
label: 'Visible',
|
|
73
|
+
responsive: false,
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
label: 'Hidden when small',
|
|
77
|
+
icon: 'EyeCloseLine',
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
label: 'Hidden when small',
|
|
81
|
+
icon: 'EyeCloseLine',
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
label: 'Hidden when small',
|
|
85
|
+
icon: 'EyeCloseLine',
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
label: 'Hidden when small',
|
|
89
|
+
icon: 'EyeCloseLine',
|
|
90
|
+
},
|
|
91
|
+
];
|
|
92
|
+
|
|
70
93
|
return (
|
|
71
|
-
|
|
72
|
-
<
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
94
|
+
<>
|
|
95
|
+
<ReqorePanel
|
|
96
|
+
{...args}
|
|
97
|
+
badge='Fluid'
|
|
98
|
+
actions={actions}
|
|
99
|
+
bottomActions={[
|
|
100
|
+
...actions,
|
|
101
|
+
...actions.map((action) => ({ ...action, position: 'right' })),
|
|
102
|
+
]}
|
|
103
|
+
>
|
|
104
|
+
This is a fluid panel
|
|
105
|
+
</ReqorePanel>
|
|
106
|
+
<ReqoreVerticalSpacer height={10} />
|
|
107
|
+
<ReqorePanel
|
|
108
|
+
{...args}
|
|
109
|
+
style={{ width: 400 }}
|
|
110
|
+
fluid={false}
|
|
111
|
+
badge='Not Fluid'
|
|
112
|
+
actions={actions}
|
|
113
|
+
bottomActions={[
|
|
114
|
+
...actions,
|
|
115
|
+
...actions.map((action) => ({ ...action, position: 'right' })),
|
|
116
|
+
]}
|
|
117
|
+
>
|
|
118
|
+
This is not a fluid panel
|
|
119
|
+
</ReqorePanel>
|
|
120
|
+
</>
|
|
83
121
|
);
|
|
84
122
|
}
|
|
85
123
|
|
|
@@ -104,7 +142,12 @@ const Template: Story<IReqorePanelProps> = (args: IReqorePanelProps) => {
|
|
|
104
142
|
},
|
|
105
143
|
]}
|
|
106
144
|
actions={[
|
|
107
|
-
{
|
|
145
|
+
{
|
|
146
|
+
label: 'Non responsive',
|
|
147
|
+
icon: '24HoursFill',
|
|
148
|
+
customTheme: { main: '#eb0e8c' },
|
|
149
|
+
responsive: false,
|
|
150
|
+
},
|
|
108
151
|
[
|
|
109
152
|
{ label: 'Stacked Action 1', icon: 'BallPenLine', intent: 'warning' },
|
|
110
153
|
{ icon: 'CopperCoinFill', intent: 'danger' },
|
|
@@ -8,9 +8,9 @@ import {
|
|
|
8
8
|
ReqoreMessage,
|
|
9
9
|
ReqorePanel,
|
|
10
10
|
ReqorePopover,
|
|
11
|
-
ReqoreSpacer
|
|
11
|
+
ReqoreSpacer
|
|
12
12
|
} from '../../index';
|
|
13
|
-
import {
|
|
13
|
+
import { argManager, FlatArg } from '../utils/args';
|
|
14
14
|
|
|
15
15
|
const { createArg } = argManager<IReqorePopoverProps>();
|
|
16
16
|
|
|
@@ -56,7 +56,7 @@ export default {
|
|
|
56
56
|
|
|
57
57
|
const HoverButton = (args: any) => {
|
|
58
58
|
return (
|
|
59
|
-
<ReqorePopover component={ReqoreButton} isReqoreComponent {...args}>
|
|
59
|
+
<ReqorePopover component={ReqoreButton} isReqoreComponent {...args} fixed>
|
|
60
60
|
Hover popover
|
|
61
61
|
</ReqorePopover>
|
|
62
62
|
);
|
|
@@ -107,7 +107,7 @@ const HoverStayButton = (args: any) => {
|
|
|
107
107
|
const Template: Story<IReqorePopoverProps> = (args: IReqorePopoverProps) => {
|
|
108
108
|
return (
|
|
109
109
|
<>
|
|
110
|
-
<ReqoreControlGroup vertical gapSize='huge'>
|
|
110
|
+
<ReqoreControlGroup vertical gapSize='huge' horizontalAlign='flex-start'>
|
|
111
111
|
<HoverButton {...args} />
|
|
112
112
|
<ClickButton {...args} />
|
|
113
113
|
<DelayButton {...args} />
|
|
@@ -128,7 +128,7 @@ const Template: Story<IReqorePopoverProps> = (args: IReqorePopoverProps) => {
|
|
|
128
128
|
Full popover
|
|
129
129
|
</ReqorePopover>
|
|
130
130
|
<ReqoreControlGroup>
|
|
131
|
-
<ReqoreSpacer width={
|
|
131
|
+
<ReqoreSpacer width={190} />
|
|
132
132
|
<ReqorePopover
|
|
133
133
|
{...args}
|
|
134
134
|
component={ReqoreButton}
|
package/tests.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"numFailedTestSuites":0,"numFailedTests":0,"numPassedTestSuites":26,"numPassedTests":122,"numPendingTestSuites":0,"numPendingTests":0,"numRuntimeErrorTestSuites":0,"numTodoTests":0,"numTotalTestSuites":26,"numTotalTests":122,"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":1673630234066,"success":true,"testResults":[{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders empty <ReqoreMultiSelect />","location":null,"status":"passed","title":"Renders empty <ReqoreMultiSelect />"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> with default value","location":null,"status":"passed","title":"Renders <ReqoreMultiSelect /> with default value"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> with default value, items can be removed","location":null,"status":"passed","title":"Renders <ReqoreMultiSelect /> with default value, items can be removed"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders disabled <ReqoreMultiSelect /> when items are empty and items CANNOT be created","location":null,"status":"passed","title":"Renders disabled <ReqoreMultiSelect /> when items are empty and items CANNOT be created"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders empty <ReqoreMultiSelect /> when items are empty and items CAN be created","location":null,"status":"passed","title":"Renders empty <ReqoreMultiSelect /> when items are empty and items CAN be created"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and selects / deselects items from the list","location":null,"status":"passed","title":"Renders <ReqoreMultiSelect /> and selects / deselects items from the list"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and items can be searched, opens up the list","location":null,"status":"passed","title":"Renders <ReqoreMultiSelect /> and items can be searched, opens up the list"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and items can be searched and created, opens up the list","location":null,"status":"passed","title":"Renders <ReqoreMultiSelect /> and items can be searched and created, opens up the list"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and items can be searched and created using the ENTER key, opens up the list","location":null,"status":"passed","title":"Renders <ReqoreMultiSelect /> and items can be searched and created using the ENTER key, opens up the list"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and does not create new item on ENTER when not focused","location":null,"status":"passed","title":"Renders <ReqoreMultiSelect /> and does not create new item on ENTER when not focused"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and deselects an item using the ENTER key","location":null,"status":"passed","title":"Renders <ReqoreMultiSelect /> and deselects an item using the ENTER key"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and calls onValueChange when value changes","location":null,"status":"passed","title":"Renders <ReqoreMultiSelect /> and calls onValueChange when value changes"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and calls onItemClick when an item is clicked","location":null,"status":"passed","title":"Renders <ReqoreMultiSelect /> and calls onItemClick when an item is clicked"}],"endTime":1673630248863,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/multiselect.test.tsx","startTime":1673630234520,"status":"passed","summary":""},{"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":1673630252961,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/table.test.tsx","startTime":1673630248885,"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":1673630254147,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tabs.test.tsx","startTime":1673630252978,"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":1673630255958,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/dropdown.test.tsx","startTime":1673630254159,"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":1673630257156,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/sidebar.test.tsx","startTime":1673630255969,"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 local delay, ignoring global delay","location":null,"status":"passed","title":"Shows the popover after a local delay, ignoring global delay"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows the popover after a global delay","location":null,"status":"passed","title":"Shows the popover after a global 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":"Correctly passes popover data for non-opened popover","location":null,"status":"passed","title":"Correctly passes popover data for non-opened popover"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Correctly passes popover data for opened popover","location":null,"status":"passed","title":"Correctly passes popover data for opened popover"}],"endTime":1673630258309,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/popover.test.tsx","startTime":1673630257167,"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"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with a 0 badge","location":null,"status":"passed","title":"Renders <Button /> with a 0 badge"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with a string badge","location":null,"status":"passed","title":"Renders <Button /> with a string badge"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with a Tag props badge","location":null,"status":"passed","title":"Renders <Button /> with a Tag props badge"}],"endTime":1673630259688,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/button.test.tsx","startTime":1673630258320,"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":1673630260567,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/notifications.test.tsx","startTime":1673630259708,"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":1673630261620,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tag.test.tsx","startTime":1673630260578,"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":1673630262339,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/panel.test.tsx","startTime":1673630261629,"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":1673630263452,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/modal.test.tsx","startTime":1673630262348,"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":1673630264110,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/drawer.test.tsx","startTime":1673630263462,"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":1673630265917,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tree.test.tsx","startTime":1673630264127,"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":1673630268209,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/collection.test.tsx","startTime":1673630265937,"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":1673630268815,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/menu.test.tsx","startTime":1673630268230,"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":1673630269408,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/input.test.tsx","startTime":1673630268824,"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":1673630269906,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/breadcrumbs.test.tsx","startTime":1673630269423,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreEffect /> properly","location":null,"status":"passed","title":"Renders <ReqoreEffect /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreTextEffect /> properly","location":null,"status":"passed","title":"Renders <ReqoreTextEffect /> properly"}],"endTime":1673630270336,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/effect.test.tsx","startTime":1673630269915,"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":1673630270855,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/textarea.test.tsx","startTime":1673630270345,"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":1673630271378,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/messages.test.tsx","startTime":1673630270864,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Checkbox /> properly","location":null,"status":"passed","title":"Renders <Checkbox /> properly"}],"endTime":1673630271819,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/radiogroup.test.tsx","startTime":1673630271388,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders Layout properly","location":null,"status":"passed","title":"Renders Layout properly"}],"endTime":1673630272274,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/layout.test.tsx","startTime":1673630271829,"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":1673630272999,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/icon.test.tsx","startTime":1673630272283,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Checkbox /> properly","location":null,"status":"passed","title":"Renders <Checkbox /> properly"}],"endTime":1673630273495,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/checkbox.test.tsx","startTime":1673630273016,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders Navbar properly","location":null,"status":"passed","title":"Renders Navbar properly"}],"endTime":1673630273890,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/navbar.test.tsx","startTime":1673630273514,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <TimeAgo /> data properly","location":null,"status":"passed","title":"Renders <TimeAgo /> data properly"}],"endTime":1673630274272,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/timeAgo.test.tsx","startTime":1673630273906,"status":"passed","summary":""}],"wasInterrupted":false}
|
|
1
|
+
{"numFailedTestSuites":0,"numFailedTests":0,"numPassedTestSuites":27,"numPassedTests":124,"numPendingTestSuites":0,"numPendingTests":0,"numRuntimeErrorTestSuites":0,"numTodoTests":0,"numTotalTestSuites":27,"numTotalTests":124,"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":1673904471928,"success":true,"testResults":[{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders empty <ReqoreMultiSelect />","location":null,"status":"passed","title":"Renders empty <ReqoreMultiSelect />"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> with default value","location":null,"status":"passed","title":"Renders <ReqoreMultiSelect /> with default value"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> with default value, items can be removed","location":null,"status":"passed","title":"Renders <ReqoreMultiSelect /> with default value, items can be removed"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders disabled <ReqoreMultiSelect /> when items are empty and items CANNOT be created","location":null,"status":"passed","title":"Renders disabled <ReqoreMultiSelect /> when items are empty and items CANNOT be created"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders empty <ReqoreMultiSelect /> when items are empty and items CAN be created","location":null,"status":"passed","title":"Renders empty <ReqoreMultiSelect /> when items are empty and items CAN be created"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and selects / deselects items from the list","location":null,"status":"passed","title":"Renders <ReqoreMultiSelect /> and selects / deselects items from the list"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and items can be searched, opens up the list","location":null,"status":"passed","title":"Renders <ReqoreMultiSelect /> and items can be searched, opens up the list"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and items can be searched and created, opens up the list","location":null,"status":"passed","title":"Renders <ReqoreMultiSelect /> and items can be searched and created, opens up the list"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and items can be searched and created using the ENTER key, opens up the list","location":null,"status":"passed","title":"Renders <ReqoreMultiSelect /> and items can be searched and created using the ENTER key, opens up the list"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and does not create new item on ENTER when not focused","location":null,"status":"passed","title":"Renders <ReqoreMultiSelect /> and does not create new item on ENTER when not focused"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and deselects an item using the ENTER key","location":null,"status":"passed","title":"Renders <ReqoreMultiSelect /> and deselects an item using the ENTER key"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and calls onValueChange when value changes","location":null,"status":"passed","title":"Renders <ReqoreMultiSelect /> and calls onValueChange when value changes"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and calls onItemClick when an item is clicked","location":null,"status":"passed","title":"Renders <ReqoreMultiSelect /> and calls onItemClick when an item is clicked"}],"endTime":1673904486180,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/multiselect.test.tsx","startTime":1673904472346,"status":"passed","summary":""},{"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":1673904490028,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/table.test.tsx","startTime":1673904486201,"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":"Does not change tab when mounted and active tab is set","location":null,"status":"passed","title":"Does not change tab when mounted and active tab is set"},{"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":1673904491159,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tabs.test.tsx","startTime":1673904490044,"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":1673904492915,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/dropdown.test.tsx","startTime":1673904491177,"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":1673904493989,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/sidebar.test.tsx","startTime":1673904492926,"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 local delay, ignoring global delay","location":null,"status":"passed","title":"Shows the popover after a local delay, ignoring global delay"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows the popover after a global delay","location":null,"status":"passed","title":"Shows the popover after a global 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":"Correctly passes popover data for non-opened popover","location":null,"status":"passed","title":"Correctly passes popover data for non-opened popover"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Correctly passes popover data for opened popover","location":null,"status":"passed","title":"Correctly passes popover data for opened popover"}],"endTime":1673904495036,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/popover.test.tsx","startTime":1673904493999,"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"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with a 0 badge","location":null,"status":"passed","title":"Renders <Button /> with a 0 badge"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with a string badge","location":null,"status":"passed","title":"Renders <Button /> with a string badge"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with a Tag props badge","location":null,"status":"passed","title":"Renders <Button /> with a Tag props badge"}],"endTime":1673904496325,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/button.test.tsx","startTime":1673904495045,"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":1673904497154,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/notifications.test.tsx","startTime":1673904496334,"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":1673904498155,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tag.test.tsx","startTime":1673904497168,"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":1673904498849,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/panel.test.tsx","startTime":1673904498164,"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":1673904499894,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/modal.test.tsx","startTime":1673904498857,"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":1673904500798,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/drawer.test.tsx","startTime":1673904499902,"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":1673904502368,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tree.test.tsx","startTime":1673904500810,"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":1673904504503,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/collection.test.tsx","startTime":1673904502377,"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":1673904505038,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/menu.test.tsx","startTime":1673904504511,"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":1673904505580,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/input.test.tsx","startTime":1673904505047,"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":1673904506045,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/breadcrumbs.test.tsx","startTime":1673904505588,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreEffect /> properly","location":null,"status":"passed","title":"Renders <ReqoreEffect /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ReqoreTextEffect /> properly","location":null,"status":"passed","title":"Renders <ReqoreTextEffect /> properly"}],"endTime":1673904506411,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/effect.test.tsx","startTime":1673904506053,"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":1673904506889,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/textarea.test.tsx","startTime":1673904506424,"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":1673904507360,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/messages.test.tsx","startTime":1673904506897,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Checkbox /> properly","location":null,"status":"passed","title":"Renders <Checkbox /> properly"}],"endTime":1673904507751,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/radiogroup.test.tsx","startTime":1673904507368,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders Layout properly","location":null,"status":"passed","title":"Renders Layout properly"}],"endTime":1673904508153,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/layout.test.tsx","startTime":1673904507760,"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":1673904508824,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/icon.test.tsx","startTime":1673904508167,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Checkbox /> properly","location":null,"status":"passed","title":"Renders <Checkbox /> properly"}],"endTime":1673904509271,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/checkbox.test.tsx","startTime":1673904508837,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders Navbar properly","location":null,"status":"passed","title":"Renders Navbar properly"}],"endTime":1673904509631,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/navbar.test.tsx","startTime":1673904509286,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <ControlGroup /> properly","location":null,"status":"passed","title":"Renders <ControlGroup /> properly"}],"endTime":1673904510372,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/control_group.test.tsx","startTime":1673904509646,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <TimeAgo /> data properly","location":null,"status":"passed","title":"Renders <TimeAgo /> data properly"}],"endTime":1673904510723,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/timeAgo.test.tsx","startTime":1673904510382,"status":"passed","summary":""}],"wasInterrupted":false}
|