Skip to content

Commit

Permalink
HCK-7033: remove properties that do not pass dependency check (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlikRakhmonov authored Aug 20, 2024
1 parent 551d758 commit bc91f14
Showing 1 changed file with 94 additions and 22 deletions.
116 changes: 94 additions & 22 deletions properties_pane/field_level/fieldLevelConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
* Copyright © 2016-2019 by IntegrIT S.A. dba Hackolade. All rights reserved.
*
* The copyright to the computer software herein is the property of IntegrIT S.A.
* The software may be used and/or copied only with the written permission of
* IntegrIT S.A. or in accordance with the terms and conditions stipulated in
* the agreement/contract under which the software has been supplied.
* The software may be used and/or copied only with the written permission of
* IntegrIT S.A. or in accordance with the terms and conditions stipulated in
* the agreement/contract under which the software has been supplied.


In order to define custom properties for any object's properties pane, you may copy/paste from the following,
Expand Down Expand Up @@ -71,8 +71,8 @@ making sure that you maintain a proper JSON format.
]
},
// “groupInput” can have the following states - 0 items, 1 item, and many items.
// “blockInput” has only 2 states - 0 items or 1 item.
// This gives us an easy way to represent it as an object and not as an array internally which is beneficial for processing
// “blockInput” has only 2 states - 0 items or 1 item.
// This gives us an easy way to represent it as an object and not as an array internally which is beneficial for processing
// and forward-engineering in particular.
{
"propertyName": "Block",
Expand Down Expand Up @@ -100,7 +100,7 @@ making sure that you maintain a proper JSON format.
"propertyKeyword": "keyList",
"propertyType": "fieldList",
"template": "orderedList"
},
},
{
"propertyName": "List with attribute",
"propertyKeyword": "keyListOrder",
Expand Down Expand Up @@ -143,8 +143,17 @@ making sure that you maintain a proper JSON format.
"type": "and",
"values": [
{
"key": "required",
"value": false
"type": "or",
"values": [
{
"key": "required",
"value": false
},
{
"key": "required",
"exist": false
}
]
},
{
"type": "not",
Expand Down Expand Up @@ -515,8 +524,17 @@ making sure that you maintain a proper JSON format.
"type": "and",
"values": [
{
"key": "required",
"value": false
"type": "or",
"values": [
{
"key": "required",
"value": false
},
{
"key": "required",
"exist": false
}
]
},
{
"type": "not",
Expand Down Expand Up @@ -657,8 +675,17 @@ making sure that you maintain a proper JSON format.
"type": "and",
"values": [
{
"key": "required",
"value": false
"type": "or",
"values": [
{
"key": "required",
"value": false
},
{
"key": "required",
"exist": false
}
]
},
{
"type": "not",
Expand Down Expand Up @@ -788,8 +815,17 @@ making sure that you maintain a proper JSON format.
"type": "and",
"values": [
{
"key": "required",
"value": false
"type": "or",
"values": [
{
"key": "required",
"value": false
},
{
"key": "required",
"exist": false
}
]
},
{
"type": "not",
Expand Down Expand Up @@ -874,8 +910,17 @@ making sure that you maintain a proper JSON format.
"type": "and",
"values": [
{
"key": "required",
"value": false
"type": "or",
"values": [
{
"key": "required",
"value": false
},
{
"key": "required",
"exist": false
}
]
},
{
"type": "not",
Expand Down Expand Up @@ -1015,8 +1060,17 @@ making sure that you maintain a proper JSON format.
"type": "and",
"values": [
{
"key": "required",
"value": false
"type": "or",
"values": [
{
"key": "required",
"value": false
},
{
"key": "required",
"exist": false
}
]
},
{
"type": "not",
Expand Down Expand Up @@ -1161,8 +1215,17 @@ making sure that you maintain a proper JSON format.
"type": "and",
"values": [
{
"key": "required",
"value": false
"type": "or",
"values": [
{
"key": "required",
"value": false
},
{
"key": "required",
"exist": false
}
]
},
{
"type": "not",
Expand Down Expand Up @@ -1283,8 +1346,17 @@ making sure that you maintain a proper JSON format.
"type": "and",
"values": [
{
"key": "required",
"value": false
"type": "or",
"values": [
{
"key": "required",
"value": false
},
{
"key": "required",
"exist": false
}
]
},
{
"type": "not",
Expand Down

0 comments on commit bc91f14

Please sign in to comment.