wacom 19.4.1 → 19.4.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/fesm2022/wacom.mjs +16 -1
- package/fesm2022/wacom.mjs.map +1 -1
- package/lib/pipes/split.pipe.d.ts +7 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
package/fesm2022/wacom.mjs
CHANGED
|
@@ -1225,6 +1225,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImpor
|
|
|
1225
1225
|
}]
|
|
1226
1226
|
}] });
|
|
1227
1227
|
|
|
1228
|
+
class SplitPipe {
|
|
1229
|
+
transform(value, index = 0, devider = ':') {
|
|
1230
|
+
const arr = value.split(devider);
|
|
1231
|
+
return arr.length > index ? arr[index] : '';
|
|
1232
|
+
}
|
|
1233
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: SplitPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1234
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.2", ngImport: i0, type: SplitPipe, isStandalone: true, name: "split" });
|
|
1235
|
+
}
|
|
1236
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: SplitPipe, decorators: [{
|
|
1237
|
+
type: Pipe,
|
|
1238
|
+
args: [{
|
|
1239
|
+
name: 'split'
|
|
1240
|
+
}]
|
|
1241
|
+
}] });
|
|
1242
|
+
|
|
1228
1243
|
class BaseService {
|
|
1229
1244
|
now = new Date().getTime();
|
|
1230
1245
|
refreshNow() {
|
|
@@ -4815,5 +4830,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImpor
|
|
|
4815
4830
|
* Generated bundle index. Do not edit.
|
|
4816
4831
|
*/
|
|
4817
4832
|
|
|
4818
|
-
export { AlertComponent, AlertService, ArrPipe, BaseComponent, BaseService, CONFIG_TOKEN, ClickOutsideDirective, CoreService, CrudComponent, CrudService, DEFAULT_Alert, DEFAULT_CONFIG, DomService, FileService, HashService, HttpService, LoaderComponent, LoaderService, MetaGuard, MetaService, ModalComponent, ModalService, MongoService, MongodatePipe, PaginationPipe, RenderService, SafePipe, SearchPipe, SocketService, SplicePipe, StoreService, TimeService, UiService, WacomModule };
|
|
4833
|
+
export { AlertComponent, AlertService, ArrPipe, BaseComponent, BaseService, CONFIG_TOKEN, ClickOutsideDirective, CoreService, CrudComponent, CrudService, DEFAULT_Alert, DEFAULT_CONFIG, DomService, FileService, HashService, HttpService, LoaderComponent, LoaderService, MetaGuard, MetaService, ModalComponent, ModalService, MongoService, MongodatePipe, PaginationPipe, RenderService, SafePipe, SearchPipe, SocketService, SplicePipe, SplitPipe, StoreService, TimeService, UiService, WacomModule };
|
|
4819
4834
|
//# sourceMappingURL=wacom.mjs.map
|