@izara_project/izara-shared-search-and-sort 1.0.5 → 1.0.6
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/index.js +0 -2
- package/package.json +1 -1
- package/src/DataFieldsSharedLib.js +1 -1
- package/src/LogicalStructureSharedLib.js +679 -100
- package/src/SearchSortSharedLib.js +23 -13
- package/src/ChangeLevelSharedLib.js +0 -610
package/index.js
CHANGED
|
@@ -19,13 +19,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
19
19
|
import SearchSortSharedLib from './src/SearchSortSharedLib.js';
|
|
20
20
|
import FiltersSharedLib from './src/FiltersSharedLib.js'
|
|
21
21
|
import DataFieldsSharedLib from './src/DataFieldsSharedLib.js'
|
|
22
|
-
import ChangeLevelSharedLib from './src/ChangeLevelSharedLib.js';
|
|
23
22
|
import LogicalStructureSharedLib from './src/LogicalStructureSharedLib.js';
|
|
24
23
|
|
|
25
24
|
export {
|
|
26
25
|
SearchSortSharedLib,
|
|
27
26
|
FiltersSharedLib,
|
|
28
27
|
DataFieldsSharedLib,
|
|
29
|
-
ChangeLevelSharedLib,
|
|
30
28
|
LogicalStructureSharedLib
|
|
31
29
|
}
|
package/package.json
CHANGED
|
@@ -967,7 +967,7 @@ function checkConditionsLinkStep(
|
|
|
967
967
|
canCombine: canCombine,
|
|
968
968
|
canPerParent: canPerParent,
|
|
969
969
|
canFilters: canFilters,
|
|
970
|
-
requestProperties: requestProperties //use when linkConfig has request but set no set perParent : false, use requestPropertyType: value
|
|
970
|
+
// requestProperties: requestProperties //use when linkConfig has request but set no set perParent : false, use requestPropertyType: value
|
|
971
971
|
}
|
|
972
972
|
}
|
|
973
973
|
|