pixel-react 1.5.9 → 1.6.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.
- package/.yarn/install-state.gz +0 -0
- package/lib/assets/fonts/Poppins-Bold.ttf +0 -0
- package/lib/assets/fonts/Poppins-Medium.ttf +0 -0
- package/lib/assets/fonts/Poppins-Regular.ttf +0 -0
- package/lib/assets/fonts/Poppins-SemiBold.ttf +0 -0
- package/lib/components/AddButton/AddButton.d.ts +5 -0
- package/lib/components/AddButton/AddButton.stories.d.ts +6 -0
- package/lib/components/AddButton/index.d.ts +1 -0
- package/lib/components/AddButton/types.d.ts +4 -0
- package/lib/components/AttachImage/AttachImage.stories.d.ts +7 -0
- package/lib/components/Charts/BarChart/BarChart.stories.d.ts +6 -0
- package/lib/components/Charts/IconRadialChart/IconRadialChart.stories.d.ts +8 -0
- package/lib/components/Charts/LineChart/LineChart.stories.d.ts +7 -0
- package/lib/components/Charts/MultiRadialChart/MultiRadialChart.stories.d.ts +8 -0
- package/lib/components/ConnectingBranch/ConnectingBranch.stories.d.ts +6 -0
- package/lib/components/EditTextField/EditTextField.stories.d.ts +10 -0
- package/lib/components/Editor/Editor.stories.d.ts +6 -0
- package/lib/components/Excel/ContextMenu/ContextMenu.d.ts +4 -0
- package/lib/components/Excel/ExcelFile.stories.d.ts +6 -0
- package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +14 -0
- package/lib/components/ExcelFile/ImportExcelStyles.d.ts +24 -0
- package/lib/components/FieldSet/FieldSet.d.ts +5 -0
- package/lib/components/FieldSet/index.d.ts +1 -0
- package/lib/components/FieldSet/types.d.ts +7 -0
- package/lib/components/FileDropzone/types.d.ts +8 -0
- package/lib/components/LabelEditTextField/LabelEditTextField.stories.d.ts +2 -0
- package/lib/components/MultiSelect/MultiSelect.d.ts +1 -1
- package/lib/components/MultiSelect/MultiSelect.stories.d.ts +1 -0
- package/lib/components/MultiSelect/MultiSelectTypes.d.ts +1 -0
- package/lib/components/Select/Select.stories.d.ts +1 -0
- package/lib/components/StatusCard/StatusCard.stories.d.ts +11 -0
- package/lib/components/TableTree/TableTree.d.ts +4 -24
- package/lib/components/TableTree/data.d.ts +78 -273
- package/lib/components/TableTree/types.d.ts +29 -0
- package/lib/index.d.ts +98 -20
- package/lib/index.esm.js +367 -370
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +371 -370
- package/lib/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/utils/getSequentialPayload/getSequentialPayload.stories.d.ts +10 -0
- package/package.json +2 -2
- package/src/assets/icons/approval_pending.svg +8 -8
- package/src/assets/icons/configuration.svg +3 -3
- package/src/assets/icons/defects.svg +8 -8
- package/src/assets/icons/element.svg +4 -4
- package/src/assets/icons/export.svg +5 -0
- package/src/assets/icons/import.svg +5 -0
- package/src/assets/icons/info_icon.svg +4 -16
- package/src/assets/icons/project_element.svg +4 -4
- package/src/assets/icons/replace_file.svg +14 -0
- package/src/assets/icons/step_group.svg +10 -10
- package/src/assets/icons/variable.svg +3 -3
- package/src/assets/icons/web_service_icon.svg +3 -0
- package/src/components/Checkbox/Checkbox.tsx +1 -7
- package/src/components/DragAndDrop/DragAndDropList.tsx +5 -4
- package/src/components/FieldSet/FieldSet.scss +9 -0
- package/src/components/FieldSet/FieldSet.stories.tsx +103 -0
- package/src/components/FieldSet/FieldSet.tsx +29 -0
- package/src/components/FieldSet/index.ts +1 -0
- package/src/components/FieldSet/types.ts +8 -0
- package/src/components/FileDropzone/FileDropzone.scss +1 -1
- package/src/components/FileDropzone/FileDropzone.stories.tsx +15 -3
- package/src/components/FileDropzone/FileDropzone.tsx +5 -0
- package/src/components/FileDropzone/FilePreview.tsx +1 -1
- package/src/components/FileDropzone/types.ts +8 -0
- package/src/components/Icon/iconList.ts +11 -7
- package/src/components/MultiSelect/Dropdown.tsx +7 -3
- package/src/components/MultiSelect/MultiSelect.stories.tsx +6 -1
- package/src/components/MultiSelect/MultiSelect.tsx +4 -20
- package/src/components/MultiSelect/MultiSelectTypes.ts +2 -0
- package/src/components/TableTree/TableTree.scss +154 -123
- package/src/components/TableTree/TableTree.stories.tsx +10 -5
- package/src/components/TableTree/TableTree.tsx +220 -287
- package/src/components/TableTree/data.ts +677 -569
- package/src/components/TableTree/types.ts +31 -0
- package/src/components/Toast/Toast.tsx +1 -1
- package/src/index.ts +8 -0
- /package/lib/components/ExcelFile/{ColorBarselector → ColorBarSelector}/ColorBarSelector.d.ts +0 -0
package/.yarn/install-state.gz
CHANGED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './AddButton';
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
2
|
+
import AttachImage from './AttachImage';
|
3
|
+
import { AttachImageProps } from './types';
|
4
|
+
declare const meta: Meta<typeof AttachImage>;
|
5
|
+
export default meta;
|
6
|
+
type Story = StoryObj<AttachImageProps>;
|
7
|
+
export declare const Default: Story;
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
2
|
+
import IconRadialChart from './IconRadialChart';
|
3
|
+
declare const meta: Meta<typeof IconRadialChart>;
|
4
|
+
export default meta;
|
5
|
+
type Story = StoryObj<typeof IconRadialChart>;
|
6
|
+
export declare const Default: Story;
|
7
|
+
export declare const Mobile: Story;
|
8
|
+
export declare const WithoutIcon: Story;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
2
|
+
import LineChart from './LineChart';
|
3
|
+
import { LineChartProps } from './types';
|
4
|
+
declare const meta: Meta<typeof LineChart>;
|
5
|
+
export default meta;
|
6
|
+
export declare const DefaultLineChart: StoryObj<LineChartProps>;
|
7
|
+
export declare const StatusLineChart: StoryObj<LineChartProps>;
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
2
|
+
import MultiRadialChart from './MultiRadialChart';
|
3
|
+
declare const meta: Meta<typeof MultiRadialChart>;
|
4
|
+
export default meta;
|
5
|
+
type Story = StoryObj<typeof MultiRadialChart>;
|
6
|
+
export declare const Default: Story;
|
7
|
+
export declare const numberLegend: Story;
|
8
|
+
export declare const PillLegend: Story;
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
2
|
+
import ConnectingBranch from './ConnectingBranch';
|
3
|
+
declare const meta: Meta<typeof ConnectingBranch>;
|
4
|
+
export default meta;
|
5
|
+
type Story = StoryObj<typeof ConnectingBranch>;
|
6
|
+
export declare const Default: Story;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
2
|
+
import EditTextField from './EditTextField';
|
3
|
+
import '../../assets/styles/_colors.scss';
|
4
|
+
import './EditTextField.scss';
|
5
|
+
declare const meta: Meta<typeof EditTextField>;
|
6
|
+
type Story = StoryObj<typeof EditTextField>;
|
7
|
+
export declare const textFieldWithLabel: Story;
|
8
|
+
export declare const textFieldWithOutLabel: Story;
|
9
|
+
export declare const openTextField: Story;
|
10
|
+
export default meta;
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { CellBase } from "./ExcelFile/Excel";
|
2
|
+
interface ChangeExcelStylesOptions {
|
3
|
+
sheetName: string;
|
4
|
+
styleType: string;
|
5
|
+
value: string;
|
6
|
+
selectedCell: {
|
7
|
+
row: number;
|
8
|
+
column: number;
|
9
|
+
}[];
|
10
|
+
}
|
11
|
+
export default function ChangeExcelStyles(setWorksheetsData: React.Dispatch<React.SetStateAction<{
|
12
|
+
[key: string]: Matrix<CellBase>;
|
13
|
+
}>>, options: ChangeExcelStylesOptions): void;
|
14
|
+
export {};
|
@@ -0,0 +1,24 @@
|
|
1
|
+
interface CellStyle {
|
2
|
+
color?: string;
|
3
|
+
backgroundColor?: string;
|
4
|
+
bold?: boolean;
|
5
|
+
italic?: boolean;
|
6
|
+
name?: string;
|
7
|
+
border: {
|
8
|
+
top: string;
|
9
|
+
bottom: string;
|
10
|
+
left: string;
|
11
|
+
right: string;
|
12
|
+
};
|
13
|
+
alignment: {
|
14
|
+
horizontal?: string;
|
15
|
+
vertical?: string;
|
16
|
+
wrapText?: boolean;
|
17
|
+
};
|
18
|
+
}
|
19
|
+
interface CellData {
|
20
|
+
style?: CellStyle;
|
21
|
+
}
|
22
|
+
type ImportExcelStylesData = Array<Array<CellData>>;
|
23
|
+
export default function ImportExcelStyles(data: ImportExcelStylesData | null): void;
|
24
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './FieldSet';
|
@@ -54,6 +54,14 @@ export interface FileDropzoneProps {
|
|
54
54
|
validateMIMEType?: boolean;
|
55
55
|
width?: number | string;
|
56
56
|
height?: number | string;
|
57
|
+
/**
|
58
|
+
* Returns the accepted files in the state
|
59
|
+
**/
|
60
|
+
getAcceptedFiles?: (files: File[]) => void;
|
61
|
+
/**
|
62
|
+
* Returns the rejected files in the state
|
63
|
+
**/
|
64
|
+
getRejectedFiles?: (files: FileRejection[]) => void;
|
57
65
|
}
|
58
66
|
export interface FileState {
|
59
67
|
accepted: File[];
|
@@ -6,6 +6,8 @@ declare const meta: Meta<typeof LabelEditTextField>;
|
|
6
6
|
type Story = StoryObj<typeof LabelEditTextField>;
|
7
7
|
export declare const textField: Story;
|
8
8
|
export declare const textFieldWithOutLabel: Story;
|
9
|
+
export declare const openTextFieldWithOutLabel: Story;
|
9
10
|
export declare const textFieldWithDropdown: Story;
|
10
11
|
export declare const textFieldWithHighlight: Story;
|
12
|
+
export declare const openLabelEditTextField: Story;
|
11
13
|
export default meta;
|
@@ -1,4 +1,4 @@
|
|
1
1
|
import './MultiSelect.scss';
|
2
2
|
import { MultiSelectProps } from './MultiSelectTypes';
|
3
|
-
declare const MultiSelect: ({ options, type, selectedOptions, onChange, acceptNewOption, zIndex, label, onSearch, required, disabled, errorMessage, displayCount, placeholderForSearching, variant, onLabelPlusIconClick, onManageLabelsClick, className, highlightedMachine, onSelectButtonClick, labelAccessor, valueAccessor, withSelectButton, }: MultiSelectProps) => import("react/jsx-runtime").JSX.Element;
|
3
|
+
declare const MultiSelect: ({ options, type, selectedOptions, onChange, acceptNewOption, zIndex, label, onSearch, required, disabled, errorMessage, displayCount, placeholderForSearching, variant, onLabelPlusIconClick, onManageLabelsClick, className, highlightedMachine, onSelectButtonClick, labelAccessor, valueAccessor, withSelectButton, onEnter }: MultiSelectProps) => import("react/jsx-runtime").JSX.Element;
|
4
4
|
export default MultiSelect;
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
2
|
+
import Card from './StatusCard';
|
3
|
+
import { CardProps } from './types';
|
4
|
+
declare const meta: Meta<typeof Card>;
|
5
|
+
export default meta;
|
6
|
+
type Story = StoryObj<CardProps>;
|
7
|
+
export declare const Passed: Story;
|
8
|
+
export declare const Failed: Story;
|
9
|
+
export declare const Warning: Story;
|
10
|
+
export declare const Skipped: Story;
|
11
|
+
export declare const Flaky: Story;
|
@@ -1,25 +1,5 @@
|
|
1
|
-
import React
|
1
|
+
import React from 'react';
|
2
2
|
import './TableTree.scss';
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
width: string;
|
7
|
-
isClickable?: boolean;
|
8
|
-
minWidth?: string;
|
9
|
-
cell?: (e: any) => JSX.Element | string | ReactNode;
|
10
|
-
actions?: (e: any) => JSX.Element | string | ReactNode;
|
11
|
-
}
|
12
|
-
interface ObjectProps {
|
13
|
-
[key: string]: any;
|
14
|
-
}
|
15
|
-
interface TableTreeProps {
|
16
|
-
select: 'checkbox' | 'radio' | 'none';
|
17
|
-
columnsData: Array<ColumnDataProps>;
|
18
|
-
treeData: Array<ObjectProps>;
|
19
|
-
onClick?: (event: React.MouseEvent<HTMLDivElement, MouseEvent>, data: any) => void;
|
20
|
-
onChange?: (e: any, node: any) => void;
|
21
|
-
selected: Array<string>;
|
22
|
-
onPagination?: (node: ObjectProps) => void;
|
23
|
-
}
|
24
|
-
declare const TableTree: ({ columnsData, treeData, select, onClick, onChange, selected, onPagination, }: TableTreeProps) => import("react/jsx-runtime").JSX.Element;
|
25
|
-
export default TableTree;
|
3
|
+
import { TreeTableProps } from './types';
|
4
|
+
declare const TreeTable: React.FC<TreeTableProps>;
|
5
|
+
export default TreeTable;
|
@@ -1,11 +1,34 @@
|
|
1
|
-
declare const
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
1
|
+
declare const data: ({
|
2
|
+
node: {
|
3
|
+
subModuleCount: number;
|
4
|
+
title: string;
|
5
|
+
scriptCount: number;
|
6
|
+
path: string;
|
7
|
+
expanded: boolean;
|
8
|
+
modifiedOn: string;
|
9
|
+
children: boolean;
|
10
|
+
lastExecutionOrder: number;
|
11
|
+
imported: boolean;
|
12
|
+
modifiedBy: string;
|
13
|
+
moduleCountWithScript: number;
|
14
|
+
state: string;
|
15
|
+
key: string;
|
16
|
+
ver: number;
|
17
|
+
hierarchy: number;
|
18
|
+
assigneeCount: number;
|
19
|
+
searchKey: string;
|
20
|
+
modifiedByUname: string;
|
21
|
+
executionOrder: number;
|
22
|
+
createdByUname: string;
|
23
|
+
folder: boolean;
|
24
|
+
moduleLevelScriptCount: number;
|
25
|
+
name: string;
|
26
|
+
parentId?: undefined;
|
27
|
+
parentName?: undefined;
|
28
|
+
};
|
29
|
+
level: number;
|
30
|
+
} | {
|
31
|
+
node: {
|
9
32
|
subModuleCount: number;
|
10
33
|
title: string;
|
11
34
|
scriptCount: number;
|
@@ -13,209 +36,13 @@ declare const extendedData: {
|
|
13
36
|
expanded: boolean;
|
14
37
|
modifiedOn: string;
|
15
38
|
folder: boolean;
|
16
|
-
children:
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
title: string;
|
24
|
-
scriptCount: number;
|
25
|
-
executionOrder: number;
|
26
|
-
createdByUname: string;
|
27
|
-
parentId: string;
|
28
|
-
path: string;
|
29
|
-
expanded: boolean;
|
30
|
-
modifiedOn: string;
|
31
|
-
parentName: string;
|
32
|
-
moduleLevelScriptCount: number;
|
33
|
-
lastExecutionOrder: number;
|
34
|
-
imported: boolean;
|
35
|
-
name: string;
|
36
|
-
modifiedBy: string;
|
37
|
-
moduleCountWithScript: number;
|
38
|
-
state: string;
|
39
|
-
key: string;
|
40
|
-
folder: boolean;
|
41
|
-
children: {
|
42
|
-
ver: number;
|
43
|
-
hierarchy: number;
|
44
|
-
subModuleCount: number;
|
45
|
-
assigneeCount: number;
|
46
|
-
searchKey: string;
|
47
|
-
modifiedByUname: string;
|
48
|
-
title: string;
|
49
|
-
scriptCount: number;
|
50
|
-
executionOrder: number;
|
51
|
-
createdByUname: string;
|
52
|
-
parentId: string;
|
53
|
-
path: string;
|
54
|
-
expanded: boolean;
|
55
|
-
modifiedOn: string;
|
56
|
-
parentName: string;
|
57
|
-
moduleLevelScriptCount: number;
|
58
|
-
lastExecutionOrder: number;
|
59
|
-
imported: boolean;
|
60
|
-
name: string;
|
61
|
-
modifiedBy: string;
|
62
|
-
moduleCountWithScript: number;
|
63
|
-
state: string;
|
64
|
-
key: string;
|
65
|
-
}[];
|
66
|
-
} | {
|
67
|
-
subModuleCount: number;
|
68
|
-
title: string;
|
69
|
-
scriptCount: number;
|
70
|
-
path: string;
|
71
|
-
expanded: boolean;
|
72
|
-
modifiedOn: string;
|
73
|
-
folder: boolean;
|
74
|
-
children: {
|
75
|
-
ver: number;
|
76
|
-
hierarchy: number;
|
77
|
-
subModuleCount: number;
|
78
|
-
assigneeCount: number;
|
79
|
-
searchKey: string;
|
80
|
-
modifiedByUname: string;
|
81
|
-
title: string;
|
82
|
-
scriptCount: number;
|
83
|
-
executionOrder: number;
|
84
|
-
createdByUname: string;
|
85
|
-
parentId: string;
|
86
|
-
path: string;
|
87
|
-
expanded: boolean;
|
88
|
-
modifiedOn: string;
|
89
|
-
parentName: string;
|
90
|
-
moduleLevelScriptCount: number;
|
91
|
-
lastExecutionOrder: number;
|
92
|
-
imported: boolean;
|
93
|
-
name: string;
|
94
|
-
modifiedBy: string;
|
95
|
-
moduleCountWithScript: number;
|
96
|
-
state: string;
|
97
|
-
key: string;
|
98
|
-
folder: boolean;
|
99
|
-
children: {
|
100
|
-
ver: number;
|
101
|
-
hierarchy: number;
|
102
|
-
subModuleCount: number;
|
103
|
-
assigneeCount: number;
|
104
|
-
searchKey: string;
|
105
|
-
modifiedByUname: string;
|
106
|
-
title: string;
|
107
|
-
scriptCount: number;
|
108
|
-
executionOrder: number;
|
109
|
-
createdByUname: string;
|
110
|
-
parentId: string;
|
111
|
-
path: string;
|
112
|
-
expanded: boolean;
|
113
|
-
modifiedOn: string;
|
114
|
-
parentName: string;
|
115
|
-
moduleLevelScriptCount: number;
|
116
|
-
lastExecutionOrder: number;
|
117
|
-
imported: boolean;
|
118
|
-
name: string;
|
119
|
-
modifiedBy: string;
|
120
|
-
moduleCountWithScript: number;
|
121
|
-
state: string;
|
122
|
-
key: string;
|
123
|
-
}[];
|
124
|
-
}[];
|
125
|
-
ver?: undefined;
|
126
|
-
hierarchy?: undefined;
|
127
|
-
assigneeCount?: undefined;
|
128
|
-
searchKey?: undefined;
|
129
|
-
modifiedByUname?: undefined;
|
130
|
-
executionOrder?: undefined;
|
131
|
-
createdByUname?: undefined;
|
132
|
-
parentId?: undefined;
|
133
|
-
parentName?: undefined;
|
134
|
-
moduleLevelScriptCount?: undefined;
|
135
|
-
lastExecutionOrder?: undefined;
|
136
|
-
imported?: undefined;
|
137
|
-
name?: undefined;
|
138
|
-
modifiedBy?: undefined;
|
139
|
-
moduleCountWithScript?: undefined;
|
140
|
-
state?: undefined;
|
141
|
-
key?: undefined;
|
142
|
-
} | {
|
143
|
-
ver: number;
|
144
|
-
hierarchy: number;
|
145
|
-
subModuleCount: number;
|
146
|
-
assigneeCount: number;
|
147
|
-
searchKey: string;
|
148
|
-
modifiedByUname: string;
|
149
|
-
title: string;
|
150
|
-
scriptCount: number;
|
151
|
-
executionOrder: number;
|
152
|
-
createdByUname: string;
|
153
|
-
parentId: string;
|
154
|
-
path: string;
|
155
|
-
expanded: boolean;
|
156
|
-
modifiedOn: string;
|
157
|
-
parentName: string;
|
158
|
-
moduleLevelScriptCount: number;
|
159
|
-
lastExecutionOrder: number;
|
160
|
-
imported: boolean;
|
161
|
-
name: string;
|
162
|
-
modifiedBy: string;
|
163
|
-
moduleCountWithScript: number;
|
164
|
-
state: string;
|
165
|
-
key: string;
|
166
|
-
folder?: undefined;
|
167
|
-
children?: undefined;
|
168
|
-
} | {
|
169
|
-
subModuleCount: number;
|
170
|
-
title: string;
|
171
|
-
scriptCount: number;
|
172
|
-
path: string;
|
173
|
-
expanded: boolean;
|
174
|
-
modifiedOn: string;
|
175
|
-
folder: boolean;
|
176
|
-
children: {
|
177
|
-
ver: number;
|
178
|
-
hierarchy: number;
|
179
|
-
subModuleCount: number;
|
180
|
-
assigneeCount: number;
|
181
|
-
searchKey: string;
|
182
|
-
modifiedByUname: string;
|
183
|
-
title: string;
|
184
|
-
scriptCount: number;
|
185
|
-
executionOrder: number;
|
186
|
-
createdByUname: string;
|
187
|
-
parentId: string;
|
188
|
-
path: string;
|
189
|
-
expanded: boolean;
|
190
|
-
modifiedOn: string;
|
191
|
-
parentName: string;
|
192
|
-
moduleLevelScriptCount: number;
|
193
|
-
lastExecutionOrder: number;
|
194
|
-
imported: boolean;
|
195
|
-
name: string;
|
196
|
-
modifiedBy: string;
|
197
|
-
moduleCountWithScript: number;
|
198
|
-
state: string;
|
199
|
-
key: string;
|
200
|
-
}[];
|
201
|
-
ver?: undefined;
|
202
|
-
hierarchy?: undefined;
|
203
|
-
assigneeCount?: undefined;
|
204
|
-
searchKey?: undefined;
|
205
|
-
modifiedByUname?: undefined;
|
206
|
-
executionOrder?: undefined;
|
207
|
-
createdByUname?: undefined;
|
208
|
-
parentId?: undefined;
|
209
|
-
parentName?: undefined;
|
210
|
-
moduleLevelScriptCount?: undefined;
|
211
|
-
lastExecutionOrder?: undefined;
|
212
|
-
imported?: undefined;
|
213
|
-
name?: undefined;
|
214
|
-
modifiedBy?: undefined;
|
215
|
-
moduleCountWithScript?: undefined;
|
216
|
-
state?: undefined;
|
217
|
-
key?: undefined;
|
218
|
-
})[];
|
39
|
+
children: boolean;
|
40
|
+
lastExecutionOrder?: undefined;
|
41
|
+
imported?: undefined;
|
42
|
+
modifiedBy?: undefined;
|
43
|
+
moduleCountWithScript?: undefined;
|
44
|
+
state?: undefined;
|
45
|
+
key?: undefined;
|
219
46
|
ver?: undefined;
|
220
47
|
hierarchy?: undefined;
|
221
48
|
assigneeCount?: undefined;
|
@@ -223,17 +50,14 @@ declare const extendedData: {
|
|
223
50
|
modifiedByUname?: undefined;
|
224
51
|
executionOrder?: undefined;
|
225
52
|
createdByUname?: undefined;
|
226
|
-
parentId?: undefined;
|
227
|
-
parentName?: undefined;
|
228
53
|
moduleLevelScriptCount?: undefined;
|
229
|
-
lastExecutionOrder?: undefined;
|
230
|
-
imported?: undefined;
|
231
54
|
name?: undefined;
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
55
|
+
parentId?: undefined;
|
56
|
+
parentName?: undefined;
|
57
|
+
};
|
58
|
+
level: number;
|
59
|
+
} | {
|
60
|
+
node: {
|
237
61
|
ver: number;
|
238
62
|
hierarchy: number;
|
239
63
|
subModuleCount: number;
|
@@ -249,7 +73,35 @@ declare const extendedData: {
|
|
249
73
|
expanded: boolean;
|
250
74
|
modifiedOn: string;
|
251
75
|
parentName: string;
|
76
|
+
moduleLevelScriptCount: number;
|
77
|
+
lastExecutionOrder: number;
|
78
|
+
imported: boolean;
|
79
|
+
name: string;
|
80
|
+
modifiedBy: string;
|
81
|
+
moduleCountWithScript: number;
|
82
|
+
state: string;
|
83
|
+
key: string;
|
252
84
|
folder: boolean;
|
85
|
+
children: boolean;
|
86
|
+
};
|
87
|
+
level: number;
|
88
|
+
} | {
|
89
|
+
node: {
|
90
|
+
ver: number;
|
91
|
+
hierarchy: number;
|
92
|
+
subModuleCount: number;
|
93
|
+
assigneeCount: number;
|
94
|
+
searchKey: string;
|
95
|
+
modifiedByUname: string;
|
96
|
+
title: string;
|
97
|
+
scriptCount: number;
|
98
|
+
executionOrder: number;
|
99
|
+
createdByUname: string;
|
100
|
+
parentId: string;
|
101
|
+
path: string;
|
102
|
+
expanded: boolean;
|
103
|
+
modifiedOn: string;
|
104
|
+
parentName: string;
|
253
105
|
moduleLevelScriptCount: number;
|
254
106
|
lastExecutionOrder: number;
|
255
107
|
imported: boolean;
|
@@ -258,56 +110,9 @@ declare const extendedData: {
|
|
258
110
|
moduleCountWithScript: number;
|
259
111
|
state: string;
|
260
112
|
key: string;
|
261
|
-
children:
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
modifiedOn: string;
|
268
|
-
folder: boolean;
|
269
|
-
children: {
|
270
|
-
ver: number;
|
271
|
-
hierarchy: number;
|
272
|
-
subModuleCount: number;
|
273
|
-
assigneeCount: number;
|
274
|
-
searchKey: string;
|
275
|
-
modifiedByUname: string;
|
276
|
-
title: string;
|
277
|
-
scriptCount: number;
|
278
|
-
executionOrder: number;
|
279
|
-
createdByUname: string;
|
280
|
-
parentId: string;
|
281
|
-
path: string;
|
282
|
-
expanded: boolean;
|
283
|
-
modifiedOn: string;
|
284
|
-
parentName: string;
|
285
|
-
moduleLevelScriptCount: number;
|
286
|
-
lastExecutionOrder: number;
|
287
|
-
imported: boolean;
|
288
|
-
name: string;
|
289
|
-
modifiedBy: string;
|
290
|
-
moduleCountWithScript: number;
|
291
|
-
state: string;
|
292
|
-
key: string;
|
293
|
-
}[];
|
294
|
-
}[];
|
295
|
-
})[];
|
296
|
-
lastExecutionOrder: number;
|
297
|
-
imported: boolean;
|
298
|
-
modifiedBy: string;
|
299
|
-
moduleCountWithScript: number;
|
300
|
-
state: string;
|
301
|
-
key: string;
|
302
|
-
ver: number;
|
303
|
-
hierarchy: number;
|
304
|
-
assigneeCount: number;
|
305
|
-
searchKey: string;
|
306
|
-
modifiedByUname: string;
|
307
|
-
executionOrder: number;
|
308
|
-
createdByUname: string;
|
309
|
-
folder: boolean;
|
310
|
-
moduleLevelScriptCount: number;
|
311
|
-
name: string;
|
312
|
-
}[];
|
313
|
-
export default extendedData;
|
113
|
+
children: boolean;
|
114
|
+
folder?: undefined;
|
115
|
+
};
|
116
|
+
level: number;
|
117
|
+
})[];
|
118
|
+
export default data;
|