@adins/ucsearch 1.0.17 → 2.0.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/README.md +7 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,9 @@ This library was generated with [Angular CLI](https://github.com/angular/angular
|
|
|
4
4
|
|
|
5
5
|
## Version
|
|
6
6
|
|
|
7
|
+
Version 2.0.0
|
|
8
|
+
1. Update ReadMe
|
|
9
|
+
|
|
7
10
|
Version 1.0.17
|
|
8
11
|
1. Update ReadMe
|
|
9
12
|
|
|
@@ -63,7 +66,7 @@ search.json :
|
|
|
63
66
|
``` javascript
|
|
64
67
|
{
|
|
65
68
|
"title" : "title", // Title paging
|
|
66
|
-
"exportExcel" : "false", // boolean: true
|
|
69
|
+
"exportExcel" : "false", // boolean: true|false
|
|
67
70
|
"component" : [ // search criteria property
|
|
68
71
|
{
|
|
69
72
|
"type" : "textbox", // type input
|
|
@@ -109,7 +112,7 @@ search.json :
|
|
|
109
112
|
"id" : "uniqueId",
|
|
110
113
|
"value" : "",
|
|
111
114
|
"datatype" : "date",
|
|
112
|
-
"isSelectOne" : "false", // boolean: true
|
|
115
|
+
"isSelectOne" : "false", // boolean: true|false, dropwdown select all option
|
|
113
116
|
"items" : [ // hardcode the option list
|
|
114
117
|
{
|
|
115
118
|
"key" : "1",
|
|
@@ -120,7 +123,7 @@ search.json :
|
|
|
120
123
|
"value" : "No"
|
|
121
124
|
}
|
|
122
125
|
],
|
|
123
|
-
"isFromURL" : "true", // boolean: true
|
|
126
|
+
"isFromURL" : "true", // boolean: true|false, if true get the option list from backend
|
|
124
127
|
"url" : "", // full path get keyValue API *mandatory, if isFromUrl true
|
|
125
128
|
"itemsUrl" : [], // *mandatory if isFromUrl true, property to store option list from backend
|
|
126
129
|
"criteriaPropName" : "typeCode", // additional criteria property *optional
|
|
@@ -135,7 +138,7 @@ search.json :
|
|
|
135
138
|
"datatype" : "date",
|
|
136
139
|
"isSelectOne" : "true",
|
|
137
140
|
"items" : [],
|
|
138
|
-
"isEvent" : "true", // boolean: true
|
|
141
|
+
"isEvent" : "true", // boolean: true|false, if true dropdown criteria affect other dropdown criteria
|
|
139
142
|
"affectedFilter" : ["dropdownId", "searchId"], // affected filter check by name
|
|
140
143
|
"isFromURL" : "true",
|
|
141
144
|
"url" : "",
|