@reltio/components 1.4.1836 → 1.4.1837
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.
|
@@ -258,9 +258,7 @@ describe('ReadOnlyAttributesView tests', function () {
|
|
|
258
258
|
type: 'Dynamic',
|
|
259
259
|
controlFunction: {
|
|
260
260
|
expression: "listEquals(attributes.Category1.value, 'category1_value1')",
|
|
261
|
-
showAttributeURI: [
|
|
262
|
-
'configuration/entityTypes/HCP/attributes/Category2'
|
|
263
|
-
]
|
|
261
|
+
showAttributeURI: ['configuration/entityTypes/HCP/attributes/Category2']
|
|
264
262
|
}
|
|
265
263
|
},
|
|
266
264
|
{
|
|
@@ -271,9 +269,7 @@ describe('ReadOnlyAttributesView tests', function () {
|
|
|
271
269
|
type: 'Dynamic',
|
|
272
270
|
controlFunction: {
|
|
273
271
|
expression: "listEquals(attributes.Category1.value, 'category1_value2')",
|
|
274
|
-
showAttributeURI: [
|
|
275
|
-
'configuration/entityTypes/HCP/attributes/Category4'
|
|
276
|
-
]
|
|
272
|
+
showAttributeURI: ['configuration/entityTypes/HCP/attributes/Category4']
|
|
277
273
|
}
|
|
278
274
|
}
|
|
279
275
|
]
|
|
@@ -291,18 +287,30 @@ describe('ReadOnlyAttributesView tests', function () {
|
|
|
291
287
|
type: 'configuration/entityTypes/HCP',
|
|
292
288
|
uri: 'entities/uri_e',
|
|
293
289
|
attributes: {
|
|
294
|
-
Category1: [
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
290
|
+
Category1: [
|
|
291
|
+
{
|
|
292
|
+
uri: 'entities/uri_e/attributes/uri1',
|
|
293
|
+
value: 'category1_value1_diff'
|
|
294
|
+
}
|
|
295
|
+
],
|
|
296
|
+
Category2: [
|
|
297
|
+
{
|
|
298
|
+
uri: 'entities/uri_e/attributes/uri2',
|
|
299
|
+
value: 'category2_value1_diff'
|
|
300
|
+
}
|
|
301
|
+
],
|
|
302
|
+
Category3: [
|
|
303
|
+
{
|
|
304
|
+
uri: 'entities/uri_e/attributes/uri3',
|
|
305
|
+
value: 'category3_value1'
|
|
306
|
+
}
|
|
307
|
+
],
|
|
308
|
+
Category4: [
|
|
309
|
+
{
|
|
310
|
+
uri: 'entities/uri_e/attributes/uri4',
|
|
311
|
+
value: 'category4_value1'
|
|
312
|
+
}
|
|
313
|
+
]
|
|
306
314
|
}
|
|
307
315
|
};
|
|
308
316
|
setUp({ entity: entity });
|
|
@@ -316,18 +324,30 @@ describe('ReadOnlyAttributesView tests', function () {
|
|
|
316
324
|
type: 'configuration/entityTypes/HCP',
|
|
317
325
|
uri: 'entities/uri_e',
|
|
318
326
|
attributes: {
|
|
319
|
-
Category1: [
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
327
|
+
Category1: [
|
|
328
|
+
{
|
|
329
|
+
uri: 'entities/uri_e/attributes/uri1',
|
|
330
|
+
value: 'category1_value1'
|
|
331
|
+
}
|
|
332
|
+
],
|
|
333
|
+
Category2: [
|
|
334
|
+
{
|
|
335
|
+
uri: 'entities/uri_e/attributes/uri2',
|
|
336
|
+
value: 'category2_value1'
|
|
337
|
+
}
|
|
338
|
+
],
|
|
339
|
+
Category3: [
|
|
340
|
+
{
|
|
341
|
+
uri: 'entities/uri_e/attributes/uri3',
|
|
342
|
+
value: 'category3_value1'
|
|
343
|
+
}
|
|
344
|
+
],
|
|
345
|
+
Category4: [
|
|
346
|
+
{
|
|
347
|
+
uri: 'entities/uri_e/attributes/uri4',
|
|
348
|
+
value: 'category4_value1'
|
|
349
|
+
}
|
|
350
|
+
]
|
|
331
351
|
}
|
|
332
352
|
};
|
|
333
353
|
setUp({ entity: entity });
|
|
@@ -341,12 +361,18 @@ describe('ReadOnlyAttributesView tests', function () {
|
|
|
341
361
|
type: 'configuration/entityTypes/HCP',
|
|
342
362
|
uri: 'entities/uri_e',
|
|
343
363
|
attributes: {
|
|
344
|
-
Category1: [
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
364
|
+
Category1: [
|
|
365
|
+
{
|
|
366
|
+
uri: 'entities/uri_e/attributes/uri1',
|
|
367
|
+
value: 'category1_value2'
|
|
368
|
+
}
|
|
369
|
+
],
|
|
370
|
+
Category4: [
|
|
371
|
+
{
|
|
372
|
+
uri: 'entities/uri_e/attributes/uri4',
|
|
373
|
+
value: 'category4_value1'
|
|
374
|
+
}
|
|
375
|
+
]
|
|
350
376
|
}
|
|
351
377
|
};
|
|
352
378
|
setUp({ entity: entity });
|
|
@@ -253,9 +253,7 @@ describe('ReadOnlyAttributesView tests', function () {
|
|
|
253
253
|
type: 'Dynamic',
|
|
254
254
|
controlFunction: {
|
|
255
255
|
expression: "listEquals(attributes.Category1.value, 'category1_value1')",
|
|
256
|
-
showAttributeURI: [
|
|
257
|
-
'configuration/entityTypes/HCP/attributes/Category2'
|
|
258
|
-
]
|
|
256
|
+
showAttributeURI: ['configuration/entityTypes/HCP/attributes/Category2']
|
|
259
257
|
}
|
|
260
258
|
},
|
|
261
259
|
{
|
|
@@ -266,9 +264,7 @@ describe('ReadOnlyAttributesView tests', function () {
|
|
|
266
264
|
type: 'Dynamic',
|
|
267
265
|
controlFunction: {
|
|
268
266
|
expression: "listEquals(attributes.Category1.value, 'category1_value2')",
|
|
269
|
-
showAttributeURI: [
|
|
270
|
-
'configuration/entityTypes/HCP/attributes/Category4'
|
|
271
|
-
]
|
|
267
|
+
showAttributeURI: ['configuration/entityTypes/HCP/attributes/Category4']
|
|
272
268
|
}
|
|
273
269
|
}
|
|
274
270
|
]
|
|
@@ -286,18 +282,30 @@ describe('ReadOnlyAttributesView tests', function () {
|
|
|
286
282
|
type: 'configuration/entityTypes/HCP',
|
|
287
283
|
uri: 'entities/uri_e',
|
|
288
284
|
attributes: {
|
|
289
|
-
Category1: [
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
285
|
+
Category1: [
|
|
286
|
+
{
|
|
287
|
+
uri: 'entities/uri_e/attributes/uri1',
|
|
288
|
+
value: 'category1_value1_diff'
|
|
289
|
+
}
|
|
290
|
+
],
|
|
291
|
+
Category2: [
|
|
292
|
+
{
|
|
293
|
+
uri: 'entities/uri_e/attributes/uri2',
|
|
294
|
+
value: 'category2_value1_diff'
|
|
295
|
+
}
|
|
296
|
+
],
|
|
297
|
+
Category3: [
|
|
298
|
+
{
|
|
299
|
+
uri: 'entities/uri_e/attributes/uri3',
|
|
300
|
+
value: 'category3_value1'
|
|
301
|
+
}
|
|
302
|
+
],
|
|
303
|
+
Category4: [
|
|
304
|
+
{
|
|
305
|
+
uri: 'entities/uri_e/attributes/uri4',
|
|
306
|
+
value: 'category4_value1'
|
|
307
|
+
}
|
|
308
|
+
]
|
|
301
309
|
}
|
|
302
310
|
};
|
|
303
311
|
setUp({ entity: entity });
|
|
@@ -311,18 +319,30 @@ describe('ReadOnlyAttributesView tests', function () {
|
|
|
311
319
|
type: 'configuration/entityTypes/HCP',
|
|
312
320
|
uri: 'entities/uri_e',
|
|
313
321
|
attributes: {
|
|
314
|
-
Category1: [
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
322
|
+
Category1: [
|
|
323
|
+
{
|
|
324
|
+
uri: 'entities/uri_e/attributes/uri1',
|
|
325
|
+
value: 'category1_value1'
|
|
326
|
+
}
|
|
327
|
+
],
|
|
328
|
+
Category2: [
|
|
329
|
+
{
|
|
330
|
+
uri: 'entities/uri_e/attributes/uri2',
|
|
331
|
+
value: 'category2_value1'
|
|
332
|
+
}
|
|
333
|
+
],
|
|
334
|
+
Category3: [
|
|
335
|
+
{
|
|
336
|
+
uri: 'entities/uri_e/attributes/uri3',
|
|
337
|
+
value: 'category3_value1'
|
|
338
|
+
}
|
|
339
|
+
],
|
|
340
|
+
Category4: [
|
|
341
|
+
{
|
|
342
|
+
uri: 'entities/uri_e/attributes/uri4',
|
|
343
|
+
value: 'category4_value1'
|
|
344
|
+
}
|
|
345
|
+
]
|
|
326
346
|
}
|
|
327
347
|
};
|
|
328
348
|
setUp({ entity: entity });
|
|
@@ -336,12 +356,18 @@ describe('ReadOnlyAttributesView tests', function () {
|
|
|
336
356
|
type: 'configuration/entityTypes/HCP',
|
|
337
357
|
uri: 'entities/uri_e',
|
|
338
358
|
attributes: {
|
|
339
|
-
Category1: [
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
359
|
+
Category1: [
|
|
360
|
+
{
|
|
361
|
+
uri: 'entities/uri_e/attributes/uri1',
|
|
362
|
+
value: 'category1_value2'
|
|
363
|
+
}
|
|
364
|
+
],
|
|
365
|
+
Category4: [
|
|
366
|
+
{
|
|
367
|
+
uri: 'entities/uri_e/attributes/uri4',
|
|
368
|
+
value: 'category4_value1'
|
|
369
|
+
}
|
|
370
|
+
]
|
|
345
371
|
}
|
|
346
372
|
};
|
|
347
373
|
setUp({ entity: entity });
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reltio/components",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1837",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE FILE",
|
|
5
5
|
"main": "./cjs/index.js",
|
|
6
6
|
"module": "./esm/index.js",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@fluentui/react-context-selector": "^9.1.26",
|
|
9
9
|
"@react-google-maps/api": "2.7.0",
|
|
10
|
-
"@reltio/mdm-sdk": "^1.4.
|
|
10
|
+
"@reltio/mdm-sdk": "^1.4.1792",
|
|
11
11
|
"classnames": "^2.2.5",
|
|
12
12
|
"d3-cloud": "^1.2.5",
|
|
13
13
|
"d3-geo": "^2.0.1",
|