mig-schema-table 3.0.29 → 3.0.30
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/dist/SchemaTable/SchemaColumnFilterPopover/FilterFormComponent/index.js +6 -6
- package/dist/SchemaTable/SchemaColumnFilterPopover/index.js +1 -1
- package/dist/SchemaTable/Td/index.d.ts +2 -1
- package/dist/SchemaTable/Td/index.js +2 -2
- package/dist/SchemaTable/index.d.ts +2 -1
- package/dist/SchemaTable/index.js +29 -10
- package/package.json +2 -2
- package/dist/SchemaTable/ColumnFilterRow/index.d.ts +0 -21
- package/dist/SchemaTable/ColumnFilterRow/index.js +0 -111
- package/dist/SchemaTable/index.test.d.ts +0 -1
- package/dist/SchemaTable/index.test.js +0 -18
- package/dist/component/SchemaTable/SchemaColumnFilterPopover/FilterFormComponent/index.d.ts +0 -11
- package/dist/component/SchemaTable/SchemaColumnFilterPopover/FilterFormComponent/index.js +0 -76
- package/dist/component/SchemaTable/SchemaColumnFilterPopover/index.d.ts +0 -15
- package/dist/component/SchemaTable/SchemaColumnFilterPopover/index.js +0 -37
- package/dist/component/SchemaTable/Td/index.d.ts +0 -22
- package/dist/component/SchemaTable/Td/index.js +0 -78
- package/dist/component/SchemaTable/Th/index.d.ts +0 -27
- package/dist/component/SchemaTable/Th/index.js +0 -78
- package/dist/component/SchemaTable/constants.d.ts +0 -2
- package/dist/component/SchemaTable/constants.js +0 -2
- package/dist/component/SchemaTable/index.d.ts +0 -34
- package/dist/component/SchemaTable/index.js +0 -343
- package/dist/component/SchemaTable/index.test.d.ts +0 -1
- package/dist/component/SchemaTable/index.test.js +0 -17
- package/dist/component/inc/constant.d.ts +0 -2
- package/dist/component/inc/constant.js +0 -2
- package/dist/component/inc/date.d.ts +0 -1
- package/dist/component/inc/date.js +0 -3
- package/dist/component/inc/schema.d.ts +0 -2
- package/dist/component/inc/schema.js +0 -32
- package/dist/component/inc/string.d.ts +0 -1
- package/dist/component/inc/string.js +0 -17
- package/dist/component/index.d.ts +0 -4
- package/dist/component/index.js +0 -2
- package/dist/component/types.d.ts +0 -21
- package/dist/component/types.js +0 -1
- package/dist/exampleData.d.ts +0 -29
- package/dist/exampleData.js +0 -177
package/dist/exampleData.js
DELETED
|
@@ -1,177 +0,0 @@
|
|
|
1
|
-
export const exampleDataSchema = {
|
|
2
|
-
type: "object",
|
|
3
|
-
properties: {
|
|
4
|
-
jobId: {
|
|
5
|
-
type: "string",
|
|
6
|
-
},
|
|
7
|
-
jobType: {
|
|
8
|
-
type: "string",
|
|
9
|
-
enum: ["scrape", "clean"],
|
|
10
|
-
},
|
|
11
|
-
topLevelId: {
|
|
12
|
-
type: "integer",
|
|
13
|
-
},
|
|
14
|
-
domainId: {
|
|
15
|
-
type: "string",
|
|
16
|
-
},
|
|
17
|
-
hostId: {
|
|
18
|
-
type: "string",
|
|
19
|
-
},
|
|
20
|
-
sourceId: {
|
|
21
|
-
type: "string",
|
|
22
|
-
},
|
|
23
|
-
sources: {
|
|
24
|
-
type: "array",
|
|
25
|
-
items: {
|
|
26
|
-
type: "string",
|
|
27
|
-
enum: ["fromIndexPage", "manual"],
|
|
28
|
-
},
|
|
29
|
-
},
|
|
30
|
-
priority: {
|
|
31
|
-
type: "integer",
|
|
32
|
-
minimum: 1,
|
|
33
|
-
maximum: 9,
|
|
34
|
-
},
|
|
35
|
-
insertDateTime: {
|
|
36
|
-
type: "string",
|
|
37
|
-
format: "date-time",
|
|
38
|
-
},
|
|
39
|
-
scrapeStartDateTime: {
|
|
40
|
-
type: "string",
|
|
41
|
-
format: "date-time",
|
|
42
|
-
},
|
|
43
|
-
scrapeEndDateTime: {
|
|
44
|
-
type: "string",
|
|
45
|
-
format: "date-time",
|
|
46
|
-
},
|
|
47
|
-
scraperHost: {
|
|
48
|
-
type: "string",
|
|
49
|
-
},
|
|
50
|
-
scraperContainer: {
|
|
51
|
-
type: "string",
|
|
52
|
-
},
|
|
53
|
-
errorMessage: {
|
|
54
|
-
type: "string",
|
|
55
|
-
},
|
|
56
|
-
url: {
|
|
57
|
-
type: "string",
|
|
58
|
-
format: "url",
|
|
59
|
-
},
|
|
60
|
-
retryCount: {
|
|
61
|
-
type: "integer",
|
|
62
|
-
},
|
|
63
|
-
isError: {
|
|
64
|
-
type: "boolean",
|
|
65
|
-
},
|
|
66
|
-
},
|
|
67
|
-
required: [
|
|
68
|
-
"jobId",
|
|
69
|
-
"jobType",
|
|
70
|
-
"topLevelId",
|
|
71
|
-
"domainId",
|
|
72
|
-
"hostId",
|
|
73
|
-
"sourceId",
|
|
74
|
-
"source",
|
|
75
|
-
"priority",
|
|
76
|
-
"insertDateTime",
|
|
77
|
-
"retryCount",
|
|
78
|
-
],
|
|
79
|
-
};
|
|
80
|
-
const exampleData = [
|
|
81
|
-
{
|
|
82
|
-
jobId: "Job-1",
|
|
83
|
-
jobType: "clean",
|
|
84
|
-
topLevelId: 1,
|
|
85
|
-
domainId: "1",
|
|
86
|
-
hostId: "1",
|
|
87
|
-
sourceId: "1",
|
|
88
|
-
sources: ["fromIndexPage"],
|
|
89
|
-
priority: 1,
|
|
90
|
-
insertDateTime: "2023-06-01 11:15",
|
|
91
|
-
scrapeStartDateTime: "2023-06-01 01:00",
|
|
92
|
-
scrapeEndDateTime: "2023-06-01 01:10",
|
|
93
|
-
scraperHost: "scraperHost-1",
|
|
94
|
-
scraperContainer: "scraperContainer-1",
|
|
95
|
-
errorMessage: "Failed",
|
|
96
|
-
url: "www.job1.com",
|
|
97
|
-
retryCount: 1,
|
|
98
|
-
isError: false,
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
jobId: "Job-2",
|
|
102
|
-
jobType: "scrape",
|
|
103
|
-
topLevelId: 2,
|
|
104
|
-
domainId: "2",
|
|
105
|
-
hostId: "2",
|
|
106
|
-
sourceId: "2",
|
|
107
|
-
sources: ["manual", "fromIndexPage"],
|
|
108
|
-
priority: 2,
|
|
109
|
-
insertDateTime: "2023-06-05 12:20",
|
|
110
|
-
scrapeStartDateTime: "2023-06-01 01:00",
|
|
111
|
-
scrapeEndDateTime: "2023-06-01 01:10",
|
|
112
|
-
scraperHost: "scraperHost-1",
|
|
113
|
-
scraperContainer: "scraperContainer-1",
|
|
114
|
-
errorMessage: "Failed",
|
|
115
|
-
url: "www.asdasd.com",
|
|
116
|
-
retryCount: 2,
|
|
117
|
-
isError: true,
|
|
118
|
-
},
|
|
119
|
-
{
|
|
120
|
-
jobId: "Job-3",
|
|
121
|
-
jobType: "clean",
|
|
122
|
-
topLevelId: 3,
|
|
123
|
-
domainId: "3",
|
|
124
|
-
hostId: "3",
|
|
125
|
-
sourceId: "3",
|
|
126
|
-
sources: ["fromIndexPage"],
|
|
127
|
-
priority: 1,
|
|
128
|
-
insertDateTime: "",
|
|
129
|
-
scrapeStartDateTime: "2023-06-01 01:00",
|
|
130
|
-
scrapeEndDateTime: "2023-06-01 01:10",
|
|
131
|
-
scraperHost: "scraperHost-1",
|
|
132
|
-
scraperContainer: "scraperContainer-1",
|
|
133
|
-
errorMessage: "Failed",
|
|
134
|
-
url: "www.job2.com",
|
|
135
|
-
retryCount: 3,
|
|
136
|
-
isError: false,
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
jobId: "Job-4",
|
|
140
|
-
jobType: "clean",
|
|
141
|
-
topLevelId: 3,
|
|
142
|
-
domainId: "3",
|
|
143
|
-
hostId: "3",
|
|
144
|
-
sourceId: "3",
|
|
145
|
-
sources: ["fromIndexPage"],
|
|
146
|
-
priority: 1,
|
|
147
|
-
insertDateTime: "2023-06-01 14:00",
|
|
148
|
-
scrapeStartDateTime: "2023-06-01 01:00",
|
|
149
|
-
scrapeEndDateTime: "2023-06-01 01:10",
|
|
150
|
-
scraperHost: "scraperHost-1",
|
|
151
|
-
scraperContainer: "scraperContainer-1",
|
|
152
|
-
errorMessage: "Failed",
|
|
153
|
-
url: "www.job2.com",
|
|
154
|
-
retryCount: 3,
|
|
155
|
-
isError: false,
|
|
156
|
-
},
|
|
157
|
-
{
|
|
158
|
-
jobId: "Job-5",
|
|
159
|
-
jobType: "clean",
|
|
160
|
-
topLevelId: 3,
|
|
161
|
-
domainId: "3",
|
|
162
|
-
hostId: "3",
|
|
163
|
-
sourceId: "3",
|
|
164
|
-
sources: ["fromIndexPage"],
|
|
165
|
-
priority: 1,
|
|
166
|
-
insertDateTime: "2023-06-05 14:20",
|
|
167
|
-
scrapeStartDateTime: "2023-06-01 01:00",
|
|
168
|
-
scrapeEndDateTime: "2023-06-01 01:10",
|
|
169
|
-
scraperHost: "scraperHost-1",
|
|
170
|
-
scraperContainer: "scraperContainer-1",
|
|
171
|
-
errorMessage: "Failed",
|
|
172
|
-
url: "www.job2.com",
|
|
173
|
-
retryCount: 3,
|
|
174
|
-
isError: false,
|
|
175
|
-
},
|
|
176
|
-
];
|
|
177
|
-
export default exampleData;
|