@adins/ucsearch 2.9.0 → 2.9.2
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 +31 -1
- package/adins-ucsearch.d.ts +1 -1
- package/bundles/adins-ucsearch.umd.js +1271 -207
- package/bundles/adins-ucsearch.umd.js.map +1 -1
- package/bundles/adins-ucsearch.umd.min.js +1 -1
- package/bundles/adins-ucsearch.umd.min.js.map +1 -1
- package/esm2015/adins-ucsearch.js +1 -2
- package/esm2015/lib/pipe/text-search.pipe.js +42 -0
- package/esm2015/lib/services/excel-service/excel-service.js +8 -2
- package/esm2015/lib/ucsearch.component.js +902 -157
- package/esm2015/lib/ucsearch.module.js +35 -3
- package/esm2015/lib/ucsearch.service.js +10 -3
- package/esm5/adins-ucsearch.js +1 -2
- package/esm5/lib/pipe/text-search.pipe.js +51 -0
- package/esm5/lib/services/excel-service/excel-service.js +8 -2
- package/esm5/lib/ucsearch.component.js +957 -181
- package/esm5/lib/ucsearch.module.js +35 -3
- package/esm5/lib/ucsearch.service.js +10 -3
- package/fesm2015/adins-ucsearch.js +975 -172
- package/fesm2015/adins-ucsearch.js.map +1 -1
- package/fesm5/adins-ucsearch.js +1039 -197
- package/fesm5/adins-ucsearch.js.map +1 -1
- package/lib/pipe/text-search.pipe.d.ts +4 -0
- package/lib/ucsearch.component.d.ts +10 -5
- package/package.json +5 -5
- package/adins-ucsearch.metadata.json +0 -1
package/README.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.2.0.
|
|
4
4
|
|
|
5
5
|
## Version
|
|
6
|
+
Version 2.11.28
|
|
7
|
+
1. async ngOnInit, initiateForm, reset
|
|
8
|
+
|
|
9
|
+
Version 2.11.26
|
|
10
|
+
1. type dropdownsearch
|
|
11
|
+
1.
|
|
12
|
+
1.
|
|
13
|
+
1.
|
|
14
|
+
|
|
6
15
|
Version 2.9.0
|
|
7
16
|
1. Update new attribute readonly buat datepicker
|
|
8
17
|
|
|
@@ -545,7 +554,7 @@ search.json :
|
|
|
545
554
|
"id" : "uniqueId",
|
|
546
555
|
"value" : "",
|
|
547
556
|
"datatype" : "date",
|
|
548
|
-
"
|
|
557
|
+
"ddlType" : "all", // string: (one, all, blank) // (select one, select all, 'no select option') | default select all
|
|
549
558
|
"items" : [],
|
|
550
559
|
"isEvent" : "true", // boolean: true|false, if true dropdown criteria affect other dropdown criteria
|
|
551
560
|
"affectedFilter" : ["dropdownId", "searchId"], // affected filter check by name
|
|
@@ -558,6 +567,27 @@ search.json :
|
|
|
558
567
|
"itemsUrl" : [],
|
|
559
568
|
"exclude" : [] // list value to exclude from list
|
|
560
569
|
},
|
|
570
|
+
{
|
|
571
|
+
"type" : "dropdownSearch",
|
|
572
|
+
"label" : "dropdown",
|
|
573
|
+
"name" : "dropdownId",
|
|
574
|
+
"value" : "",
|
|
575
|
+
"descr" : "", // value yg tampilin di inputan dds(drop-down-search)
|
|
576
|
+
"ddsType" : "true", // string: (one, all, blank) // (select one, select all, 'no select option') | default select all
|
|
577
|
+
"placeholder": "FILTER",
|
|
578
|
+
"size": 10, // height of dds, *mandatory
|
|
579
|
+
"isListHide": true, // default setting, *mandatory
|
|
580
|
+
"isFromURL": true,
|
|
581
|
+
"isQueryIn": true,
|
|
582
|
+
"environment": "", // key name from listEnvironments
|
|
583
|
+
"path": "", // path api
|
|
584
|
+
"items" : [],
|
|
585
|
+
"itemsUrl" : [],
|
|
586
|
+
"criteriaPropName": "", // criteria property name
|
|
587
|
+
"criteriaPropValue": "", // criteria value
|
|
588
|
+
"exclude" : [] // list value to exclude from list
|
|
589
|
+
|
|
590
|
+
},
|
|
561
591
|
{
|
|
562
592
|
"type": "taskDefinitionKey",
|
|
563
593
|
"label" : "taskDefinitionKey",
|