@wertzui/ngx-restworld-client 17.1.0 → 18.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/fesm2022/wertzui-ngx-restworld-client.mjs +1624 -1543
- package/fesm2022/wertzui-ngx-restworld-client.mjs.map +1 -1
- package/index.d.ts +35 -27
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,21 +1,20 @@
|
|
|
1
1
|
import * as _angular_platform_browser from '@angular/platform-browser';
|
|
2
2
|
import { SafeUrl, DomSanitizer } from '@angular/platform-browser';
|
|
3
3
|
import * as _angular_core from '@angular/core';
|
|
4
|
-
import { Signal,
|
|
4
|
+
import { Signal, TemplateRef, ElementRef, AfterContentInit, PipeTransform, EnvironmentProviders, Provider, Type } from '@angular/core';
|
|
5
5
|
import * as _wertzui_ngx_hal_client from '@wertzui/ngx-hal-client';
|
|
6
6
|
import { SimpleValue, Property, Options, HalClient, Resource, ProblemDetails, Template, FormsResource, Link, ResourceDto, PagedListResource, Templates, ExtractGenericOptionsItemType as ExtractGenericOptionsItemType$1, ExtractGenericOptionsSelectedValuesType as ExtractGenericOptionsSelectedValuesType$1, NumberTemplate, ExtractValueType as ExtractValueType$1, PropertyType, PropertyDto, FormService, OptionsItemDto, ResourceOfDto } from '@wertzui/ngx-hal-client';
|
|
7
7
|
import * as ngx_image_cropper from 'ngx-image-cropper';
|
|
8
8
|
import { CropperPosition, OutputFormat, ImageCropperComponent, ImageCroppedEvent } from 'ngx-image-cropper';
|
|
9
9
|
import { HttpResponse, HttpHeaders } from '@angular/common/http';
|
|
10
10
|
import { FormGroup, AbstractControl, ControlValueAccessor, FormControl, FormArray, ControlContainer } from '@angular/forms';
|
|
11
|
-
import { MessageService, ConfirmationService, MenuItem, FilterMetadata, SelectItem, PrimeTemplate } from 'primeng/api';
|
|
11
|
+
import { MessageService, ConfirmationService, MenuItem, SortMeta, FilterMetadata, FilterService, SelectItem, PrimeTemplate } from 'primeng/api';
|
|
12
12
|
import { Router, ActivatedRoute } from '@angular/router';
|
|
13
13
|
import { FileUpload } from 'primeng/fileupload';
|
|
14
14
|
import { Dialog } from 'primeng/dialog';
|
|
15
|
-
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
16
15
|
import { MultiSelect } from 'primeng/multiselect';
|
|
17
16
|
import { ContextMenu } from 'primeng/contextmenu';
|
|
18
|
-
import { TableLazyLoadEvent } from 'primeng/table';
|
|
17
|
+
import { Table, TableLazyLoadEvent } from 'primeng/table';
|
|
19
18
|
import { PrimeNG } from 'primeng/config';
|
|
20
19
|
import { BaseComponent } from 'primeng/basecomponent';
|
|
21
20
|
import { CheckboxChangeEvent, CheckboxStyle } from 'primeng/checkbox';
|
|
@@ -506,7 +505,7 @@ declare class ProblemService {
|
|
|
506
505
|
* @param defaultDetail The default detail to display if the problem details do not contain a detail.
|
|
507
506
|
* @param defaultTitle The default title to display if the problem details do not contain a title.
|
|
508
507
|
*/
|
|
509
|
-
displayToast(problemDetails
|
|
508
|
+
displayToast(problemDetails?: ProblemDetails, defaultDetail?: string, defaultTitle?: string): void;
|
|
510
509
|
/**
|
|
511
510
|
* Displays a toast message with the given problem details and throws an error.
|
|
512
511
|
* @param problemDetails The problem details to display.
|
|
@@ -538,19 +537,22 @@ declare class OptionsManager<TProperty extends Property<SimpleValue, string, str
|
|
|
538
537
|
private readonly _clients;
|
|
539
538
|
readonly apiName: Signal<string>;
|
|
540
539
|
readonly property: Signal<TProperty>;
|
|
541
|
-
readonly
|
|
540
|
+
private readonly _selectedValues;
|
|
542
541
|
private readonly _getLabel;
|
|
543
542
|
private readonly _getTooltip;
|
|
544
543
|
readonly getLabel: Signal<(item: TOptionsItem | ExtractGenericOptionsSelectedValuesType$1<TProperty>) => string | undefined>;
|
|
545
544
|
readonly getTooltip: Signal<(item: TOptionsItem | ExtractGenericOptionsSelectedValuesType$1<TProperty>) => string | undefined>;
|
|
546
|
-
readonly
|
|
547
|
-
readonly loading: _angular_core.WritableSignal<boolean>;
|
|
545
|
+
readonly loading: Signal<boolean>;
|
|
548
546
|
readonly options: Signal<Options<SimpleValue, string, string>>;
|
|
549
547
|
readonly promptField: Signal<string>;
|
|
550
548
|
readonly valueField: Signal<string>;
|
|
551
549
|
private readonly _client;
|
|
552
|
-
readonly selectedItems: Signal<(TOptionsItem | never[])[]
|
|
553
|
-
|
|
550
|
+
readonly selectedItems: Signal<(TOptionsItem | never[])[]>;
|
|
551
|
+
readonly selectedValues: Signal<ExtractGenericOptionsSelectedValuesType$1<TProperty>[]>;
|
|
552
|
+
readonly filter: _angular_core.WritableSignal<string | undefined>;
|
|
553
|
+
private _lastFilter;
|
|
554
|
+
readonly items: _angular_core.ResourceRef<TOptionsItem[] | undefined>;
|
|
555
|
+
constructor(_problemService: ProblemService, _clients: RestWorldClientCollection, apiName: Signal<string>, property: Signal<TProperty>, _selectedValues: Signal<ExtractGenericOptionsSelectedValuesType$1<TProperty> | ExtractGenericOptionsSelectedValuesType$1<TProperty>[] | undefined>, _getLabel: Signal<((item: TOptionsItem | ExtractGenericOptionsSelectedValuesType$1<TProperty>) => string | undefined) | undefined>, _getTooltip: Signal<((item: TOptionsItem | ExtractGenericOptionsSelectedValuesType$1<TProperty>) => string | undefined) | undefined>);
|
|
554
556
|
private static jsonStringifyWithElipsis;
|
|
555
557
|
private getItemByValue;
|
|
556
558
|
/**
|
|
@@ -565,12 +567,6 @@ declare class OptionsManager<TProperty extends Property<SimpleValue, string, str
|
|
|
565
567
|
* @returns The value of the item or value.
|
|
566
568
|
*/
|
|
567
569
|
getValue(itemOrValue: TOptionsItem | ExtractGenericOptionsSelectedValuesType$1<TProperty>): ExtractGenericOptionsSelectedValuesType$1<TProperty>;
|
|
568
|
-
/**
|
|
569
|
-
* Initializes the options manager.
|
|
570
|
-
* This will load the initial options for the property.
|
|
571
|
-
* Call it once in the ngOnInit method of your component.
|
|
572
|
-
*/
|
|
573
|
-
initialize(): Promise<void>;
|
|
574
570
|
/**
|
|
575
571
|
* Updates the items based on the given filter.
|
|
576
572
|
* @param filter The filter to use when getting the items.
|
|
@@ -678,7 +674,7 @@ declare class RestWorldDisplayComponent<TProperty extends Property<SimpleValue,
|
|
|
678
674
|
*/
|
|
679
675
|
declare class RestWorldDisplayDropdownComponent<TProperty extends Property<SimpleValue, string, string> & {
|
|
680
676
|
options: Options<SimpleValue, string, string>;
|
|
681
|
-
}, TOptionsItem extends ExtractGenericOptionsItemType$1<TProperty> = ExtractGenericOptionsItemType$1<TProperty>>
|
|
677
|
+
}, TOptionsItem extends ExtractGenericOptionsItemType$1<TProperty> = ExtractGenericOptionsItemType$1<TProperty>> {
|
|
682
678
|
/**
|
|
683
679
|
* The name of the API to use for the property.
|
|
684
680
|
* @required
|
|
@@ -710,7 +706,6 @@ declare class RestWorldDisplayDropdownComponent<TProperty extends Property<Simpl
|
|
|
710
706
|
readonly selectedValues: _angular_core.InputSignalWithTransform<ExtractGenericOptionsSelectedValuesType$1<TProperty>[], ExtractGenericOptionsSelectedValuesType$1<TProperty> | ExtractGenericOptionsSelectedValuesType$1<TProperty>[]>;
|
|
711
707
|
readonly optionsManager: OptionsManager<TProperty, TOptionsItem>;
|
|
712
708
|
constructor(optionsService: OptionsService);
|
|
713
|
-
ngOnInit(): Promise<void>;
|
|
714
709
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RestWorldDisplayDropdownComponent<any, any>, never>;
|
|
715
710
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RestWorldDisplayDropdownComponent<any, any>, "rw-display-dropdown", never, { "apiName": { "alias": "apiName"; "required": true; "isSignal": true; }; "getLabel": { "alias": "getLabel"; "required": false; "isSignal": true; }; "getTooltip": { "alias": "getTooltip"; "required": false; "isSignal": true; }; "property": { "alias": "property"; "required": true; "isSignal": true; }; "selectedValues": { "alias": "selectedValues"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
716
711
|
}
|
|
@@ -1209,12 +1204,14 @@ declare class RestWorldInputCollectionComponent<TProperty extends Property<Simpl
|
|
|
1209
1204
|
readonly defaultTemplate: _angular_core.Signal<Template<readonly _wertzui_ngx_hal_client.PropertyDto<SimpleValue, string, string>[]>>;
|
|
1210
1205
|
readonly innerFormArray: _angular_core.Signal<FormArray<FormGroup<any>>>;
|
|
1211
1206
|
readonly templates: _angular_core.Signal<NumberTemplate<readonly _wertzui_ngx_hal_client.PropertyDto<SimpleValue, string, string>[]>[]>;
|
|
1207
|
+
readonly rows: _angular_core.Signal<any[]>;
|
|
1212
1208
|
inputCollectionRef?: TemplateRef<unknown>;
|
|
1209
|
+
readonly headerMenu: _angular_core.Signal<MenuItem[]>;
|
|
1210
|
+
readonly rowMenu: _angular_core.Signal<(row: any, openedByRightClick: boolean) => MenuItem[]>;
|
|
1213
1211
|
constructor(_formService: FormService, _controlContainer: ControlContainer);
|
|
1214
1212
|
private getCollectionEntryTemplates;
|
|
1215
1213
|
addNewItemToCollection(): void;
|
|
1216
|
-
|
|
1217
|
-
deleteItemFromCollection(template: NumberTemplate): void;
|
|
1214
|
+
deleteItemFromCollection(row: any): void;
|
|
1218
1215
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RestWorldInputCollectionComponent<any>, never>;
|
|
1219
1216
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RestWorldInputCollectionComponent<any>, "rw-input-collection", never, {}, {}, ["inputCollectionRef"], never, true, never>;
|
|
1220
1217
|
}
|
|
@@ -1246,7 +1243,7 @@ declare class RestWorldInputComponent<TProperty extends Property<SimpleValue, st
|
|
|
1246
1243
|
*/
|
|
1247
1244
|
declare class RestWorldInputDropdownComponent<TProperty extends Property<SimpleValue, string, string> & {
|
|
1248
1245
|
options: Options<SimpleValue, string, string>;
|
|
1249
|
-
}, TOptionsItem extends ExtractGenericOptionsItemType<TProperty> = ExtractGenericOptionsItemType<TProperty>> extends RestWorldInputLazyLoadBaseComponent<TProperty>
|
|
1246
|
+
}, TOptionsItem extends ExtractGenericOptionsItemType<TProperty> = ExtractGenericOptionsItemType<TProperty>> extends RestWorldInputLazyLoadBaseComponent<TProperty> {
|
|
1250
1247
|
private readonly _controlContainer;
|
|
1251
1248
|
/**
|
|
1252
1249
|
* A flag that indicates if the search should be case sensitive.
|
|
@@ -1279,9 +1276,8 @@ declare class RestWorldInputDropdownComponent<TProperty extends Property<SimpleV
|
|
|
1279
1276
|
onOptionsFiltered: (this: any, ...args: any[]) => void;
|
|
1280
1277
|
readonly optionsManager: OptionsManager<TProperty, TOptionsItem>;
|
|
1281
1278
|
private readonly _formControl;
|
|
1282
|
-
private readonly
|
|
1279
|
+
private readonly _value;
|
|
1283
1280
|
constructor(_controlContainer: ControlContainer, optionsService: OptionsService);
|
|
1284
|
-
ngOnInit(): Promise<void>;
|
|
1285
1281
|
onOptionsChanged(event: DropdownChangeEvent<TOptionsItem>): void;
|
|
1286
1282
|
onOptionsFilteredInternal(event: {
|
|
1287
1283
|
originalEvent: Event;
|
|
@@ -1360,7 +1356,7 @@ declare class RestWorldInputTemplateComponent<T extends {
|
|
|
1360
1356
|
* @required
|
|
1361
1357
|
* @remarks This is the template that defines the properties to display.
|
|
1362
1358
|
*/
|
|
1363
|
-
readonly template: _angular_core.InputSignal<Template<readonly _wertzui_ngx_hal_client.PropertyDto<SimpleValue, string, string>[]>>;
|
|
1359
|
+
readonly template: _angular_core.InputSignal<Template<readonly _wertzui_ngx_hal_client.PropertyDto<SimpleValue, string, string>[]> | NumberTemplate<readonly _wertzui_ngx_hal_client.PropertyDto<SimpleValue, string, string>[]>>;
|
|
1364
1360
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RestWorldInputTemplateComponent<any>, never>;
|
|
1365
1361
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RestWorldInputTemplateComponent<any>, "rw-input-template", never, { "apiName": { "alias": "apiName"; "required": true; "isSignal": true; }; "template": { "alias": "template"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1366
1362
|
}
|
|
@@ -1461,6 +1457,9 @@ interface ODataParameters {
|
|
|
1461
1457
|
declare class RestWorldTableComponent<TListItem extends Record<string, any>> {
|
|
1462
1458
|
private readonly _controlContainer;
|
|
1463
1459
|
private readonly _formService;
|
|
1460
|
+
onSort($event: {
|
|
1461
|
+
multisortmeta: SortMeta[];
|
|
1462
|
+
}): void;
|
|
1464
1463
|
readonly PropertyType: typeof PropertyType;
|
|
1465
1464
|
/**
|
|
1466
1465
|
* The name of the api.
|
|
@@ -1481,6 +1480,7 @@ declare class RestWorldTableComponent<TListItem extends Record<string, any>> {
|
|
|
1481
1480
|
}[]>;
|
|
1482
1481
|
readonly columns: _angular_core.Signal<Property<SimpleValue, string, string>[]>;
|
|
1483
1482
|
readonly contextMenu: _angular_core.Signal<ContextMenu | undefined>;
|
|
1483
|
+
readonly primeNgTable: _angular_core.Signal<Table<any>>;
|
|
1484
1484
|
readonly contextMenuItems: _angular_core.WritableSignal<MenuItem[]>;
|
|
1485
1485
|
readonly dateFormat: string;
|
|
1486
1486
|
readonly editProperties: _angular_core.Signal<Partial<Record<string, Property<SimpleValue, string, string>>>>;
|
|
@@ -1624,7 +1624,11 @@ declare class RestWorldTableComponent<TListItem extends Record<string, any>> {
|
|
|
1624
1624
|
private readonly timeFormat;
|
|
1625
1625
|
private _initialQueryParamsSet;
|
|
1626
1626
|
private _lastUsedFilters;
|
|
1627
|
-
constructor(_controlContainer: ControlContainer, _formService: FormService, router: Router, activatedRoute: ActivatedRoute, primeNGConfig: PrimeNG);
|
|
1627
|
+
constructor(_controlContainer: ControlContainer, _formService: FormService, router: Router, activatedRoute: ActivatedRoute, primeNGConfig: PrimeNG, filterService: FilterService);
|
|
1628
|
+
getFormGroupAtIndex(indexOnCurrentPage: number): FormGroup<{
|
|
1629
|
+
[K in keyof TListItem]: AbstractControl<unknown, unknown, any>;
|
|
1630
|
+
}> | undefined;
|
|
1631
|
+
getAbsoluteIndex(indexOnCurrentPage: number): number;
|
|
1628
1632
|
load(event: TableLazyLoadEvent): void;
|
|
1629
1633
|
openContextMenu(event: MouseEvent, row: TListItem): void;
|
|
1630
1634
|
showInputField(column: Property): boolean;
|
|
@@ -2132,12 +2136,13 @@ declare const debounce: (fn: Function, delayMilliseconds?: number) => (this: any
|
|
|
2132
2136
|
declare class RESTworldEditViewComponent {
|
|
2133
2137
|
private readonly _clients;
|
|
2134
2138
|
private readonly _messageService;
|
|
2139
|
+
private readonly _problemService;
|
|
2135
2140
|
private readonly _router;
|
|
2136
2141
|
extraTabsRef?: TemplateRef<unknown>;
|
|
2137
2142
|
idNavigationForm: FormGroup<{
|
|
2138
2143
|
id: FormControl<number | null>;
|
|
2139
2144
|
}>;
|
|
2140
|
-
constructor(_clients: RestWorldClientCollection, _messageService: MessageService, _router: Router, valdemortConfig: ValdemortConfig);
|
|
2145
|
+
constructor(_clients: RestWorldClientCollection, _messageService: MessageService, _problemService: ProblemService, _router: Router, valdemortConfig: ValdemortConfig);
|
|
2141
2146
|
get PropertyType(): typeof PropertyType;
|
|
2142
2147
|
/**
|
|
2143
2148
|
* The relation to load the resource from.
|
|
@@ -2151,11 +2156,14 @@ declare class RESTworldEditViewComponent {
|
|
|
2151
2156
|
* The name of the API to load the resource from.
|
|
2152
2157
|
*/
|
|
2153
2158
|
apiName: _angular_core.InputSignal<string>;
|
|
2159
|
+
readonly newHref: _angular_core.Signal<string | undefined>;
|
|
2154
2160
|
templates: _angular_core.ResourceRef<Template<readonly _wertzui_ngx_hal_client.PropertyDto<_wertzui_ngx_hal_client.SimpleValue, string, string>[]>[] | undefined>;
|
|
2161
|
+
resource: _angular_core.ResourceRef<Resource | undefined>;
|
|
2155
2162
|
displayTab: _angular_core.ModelSignal<string>;
|
|
2156
2163
|
afterSubmit($event: AfterSubmitOkEvent | AfterSubmitRedirectEvent): Promise<void>;
|
|
2157
2164
|
afterDelete(): Promise<void>;
|
|
2158
|
-
|
|
2165
|
+
createNew(): Promise<boolean>;
|
|
2166
|
+
private loadTemplatesInternal;
|
|
2159
2167
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RESTworldEditViewComponent, never>;
|
|
2160
2168
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RESTworldEditViewComponent, "rw-edit", never, { "rel": { "alias": "rel"; "required": true; "isSignal": true; }; "uri": { "alias": "uri"; "required": true; "isSignal": true; }; "apiName": { "alias": "apiName"; "required": true; "isSignal": true; }; "displayTab": { "alias": "displayTab"; "required": false; "isSignal": true; }; }, { "displayTab": "displayTabChange"; }, ["extraTabsRef"], never, true, never>;
|
|
2161
2169
|
}
|
package/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sources":["../../projects/ngx-restworld-client/src/lib/constants/link-names.ts","../../projects/ngx-restworld-client/src/lib/services/avatar-generator.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-avatar/restworld-avatar.component.ts","../../projects/ngx-restworld-client/src/lib/models/restworld-image.ts","../../projects/ngx-restworld-client/src/lib/models/special-properties.ts","../../projects/ngx-restworld-client/src/lib/models/restworld-options.ts","../../projects/ngx-restworld-client/src/lib/services/restworld-client.ts","../../projects/ngx-restworld-client/src/lib/services/restworld-client-collection.ts","../../projects/ngx-restworld-client/src/lib/services/problem.service.ts","../../projects/ngx-restworld-client/src/lib/services/options.service.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-displays/restworld-displays.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-file/restworld-file.component.ts","../../projects/ngx-restworld-client/src/lib/models/events.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-form/restworld-form.component.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-id-navigation/restworld-id-navigation.component.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-image/restworld-image.component.ts","../../projects/ngx-restworld-client/src/lib/models/templating.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-inputs/restworld-inputs.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-label/restworld-label.component.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-menu-button/restworld-menu-button.component.ts","../../projects/ngx-restworld-client/src/lib/models/o-data.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-table/restworld-table.component.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-tri-state-checkbox/restworld-tri-state-checkbox.component.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-validation-errors/restworld-validation-errors.component.ts","../../projects/ngx-restworld-client/src/lib/models/api-url.ts","../../projects/ngx-restworld-client/src/lib/models/client-settings.ts","../../projects/ngx-restworld-client/src/lib/pipes/as.pipe.ts","../../projects/ngx-restworld-client/src/lib/pipes/clr-format.pipe.ts","../../projects/ngx-restworld-client/src/lib/pipes/property-type-format.pipe.ts","../../projects/ngx-restworld-client/src/lib/pipes/safe-url.pipe.ts","../../projects/ngx-restworld-client/src/lib/services/odata.service.ts","../../projects/ngx-restworld-client/src/lib/services/odata-filter-parser.ts","../../projects/ngx-restworld-client/src/lib/services/odata-visitor.ts","../../projects/ngx-restworld-client/src/lib/services/settings.service.ts","../../projects/ngx-restworld-client/src/lib/services/opentelemetry.service.ts","../../projects/ngx-restworld-client/src/lib/util/debounce.ts","../../projects/ngx-restworld-client/src/lib/views/restworld-edit-view/restworld-edit-view.component.ts","../../projects/ngx-restworld-client/src/lib/views/restworld-list-view/restworld-list-view.component.ts","../../projects/ngx-restworld-client/src/lib/provide-restworld.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sources":["../../projects/ngx-restworld-client/src/lib/constants/link-names.ts","../../projects/ngx-restworld-client/src/lib/services/avatar-generator.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-avatar/restworld-avatar.component.ts","../../projects/ngx-restworld-client/src/lib/models/restworld-image.ts","../../projects/ngx-restworld-client/src/lib/models/special-properties.ts","../../projects/ngx-restworld-client/src/lib/models/restworld-options.ts","../../projects/ngx-restworld-client/src/lib/services/restworld-client.ts","../../projects/ngx-restworld-client/src/lib/services/restworld-client-collection.ts","../../projects/ngx-restworld-client/src/lib/services/problem.service.ts","../../projects/ngx-restworld-client/src/lib/services/options.service.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-displays/restworld-displays.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-file/restworld-file.component.ts","../../projects/ngx-restworld-client/src/lib/models/events.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-form/restworld-form.component.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-id-navigation/restworld-id-navigation.component.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-image/restworld-image.component.ts","../../projects/ngx-restworld-client/src/lib/models/templating.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-inputs/restworld-inputs.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-label/restworld-label.component.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-menu-button/restworld-menu-button.component.ts","../../projects/ngx-restworld-client/src/lib/models/o-data.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-table/restworld-table.component.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-tri-state-checkbox/restworld-tri-state-checkbox.component.ts","../../projects/ngx-restworld-client/src/lib/components/restworld-validation-errors/restworld-validation-errors.component.ts","../../projects/ngx-restworld-client/src/lib/models/api-url.ts","../../projects/ngx-restworld-client/src/lib/models/client-settings.ts","../../projects/ngx-restworld-client/src/lib/pipes/as.pipe.ts","../../projects/ngx-restworld-client/src/lib/pipes/clr-format.pipe.ts","../../projects/ngx-restworld-client/src/lib/pipes/property-type-format.pipe.ts","../../projects/ngx-restworld-client/src/lib/pipes/safe-url.pipe.ts","../../projects/ngx-restworld-client/src/lib/services/odata.service.ts","../../projects/ngx-restworld-client/src/lib/services/odata-filter-parser.ts","../../projects/ngx-restworld-client/src/lib/services/odata-visitor.ts","../../projects/ngx-restworld-client/src/lib/services/settings.service.ts","../../projects/ngx-restworld-client/src/lib/services/opentelemetry.service.ts","../../projects/ngx-restworld-client/src/lib/util/debounce.ts","../../projects/ngx-restworld-client/src/lib/views/restworld-edit-view/restworld-edit-view.component.ts","../../projects/ngx-restworld-client/src/lib/views/restworld-list-view/restworld-list-view.component.ts","../../projects/ngx-restworld-client/src/lib/provide-restworld.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"names":[],"mappings":"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"}
|
package/package.json
CHANGED