@ecodev/natural 44.0.3 → 44.0.4
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/esm2020/lib/classes/abstract-editable-list.mjs +1 -1
- package/esm2020/lib/classes/data-source.mjs +8 -14
- package/esm2020/lib/classes/utility.mjs +5 -1
- package/esm2020/lib/modules/select/select/select.component.mjs +1 -1
- package/fesm2015/ecodev-natural.mjs +12 -14
- package/fesm2015/ecodev-natural.mjs.map +1 -1
- package/fesm2020/ecodev-natural.mjs +12 -14
- package/fesm2020/ecodev-natural.mjs.map +1 -1
- package/lib/classes/abstract-editable-list.d.ts +2 -2
- package/lib/classes/data-source.d.ts +5 -11
- package/lib/classes/utility.d.ts +2 -0
- package/lib/modules/select/select/select.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -376,6 +376,10 @@ function copyToClipboard(document, text) {
|
|
|
376
376
|
document.execCommand('copy');
|
|
377
377
|
document.body.removeChild(input);
|
|
378
378
|
}
|
|
379
|
+
function deepFreeze(o) {
|
|
380
|
+
Object.values(o).forEach(v => Object.isFrozen(v) || deepFreeze(v));
|
|
381
|
+
return Object.freeze(o);
|
|
382
|
+
}
|
|
379
383
|
|
|
380
384
|
// Basic; loosely typed structure for graphql-doctrine filters
|
|
381
385
|
// Logical operator to be used in conditions
|
|
@@ -2898,12 +2902,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImpor
|
|
|
2898
2902
|
args: [SESSION_STORAGE]
|
|
2899
2903
|
}] }]; } });
|
|
2900
2904
|
|
|
2901
|
-
/**
|
|
2902
|
-
* Data source to provide what data should be rendered in the table. The observable provided
|
|
2903
|
-
* in connect should emit exactly the data that should be rendered by the table. If the data is
|
|
2904
|
-
* altered, the observable should emit that new set of data on the stream. In our case here,
|
|
2905
|
-
* we return a stream that contains only one set of data that doesn't change.
|
|
2906
|
-
*/
|
|
2907
2905
|
/**
|
|
2908
2906
|
* A NaturalDataSource will connect immediately, in order to know as soon as possible if
|
|
2909
2907
|
* we need to show a template at all (as seen in my-ichtus)
|
|
@@ -2945,17 +2943,17 @@ class NaturalDataSource extends DataSource {
|
|
|
2945
2943
|
if (!this.data) {
|
|
2946
2944
|
return;
|
|
2947
2945
|
}
|
|
2948
|
-
const fullList = this.data.items;
|
|
2946
|
+
const fullList = [...this.data.items];
|
|
2949
2947
|
fullList.push(item);
|
|
2950
|
-
this.data =
|
|
2948
|
+
this.data = { ...this.data, items: fullList, length: fullList.length };
|
|
2951
2949
|
}
|
|
2952
2950
|
pop() {
|
|
2953
2951
|
if (!this.data) {
|
|
2954
2952
|
return;
|
|
2955
2953
|
}
|
|
2956
|
-
const fullList = this.data.items;
|
|
2954
|
+
const fullList = [...this.data.items];
|
|
2957
2955
|
const removedElement = fullList.pop();
|
|
2958
|
-
this.data =
|
|
2956
|
+
this.data = { ...this.data, items: fullList, length: fullList.length };
|
|
2959
2957
|
return removedElement;
|
|
2960
2958
|
}
|
|
2961
2959
|
remove(item) {
|
|
@@ -2964,9 +2962,9 @@ class NaturalDataSource extends DataSource {
|
|
|
2964
2962
|
}
|
|
2965
2963
|
const index = this.data.items.indexOf(item);
|
|
2966
2964
|
if (index > -1) {
|
|
2967
|
-
this.data.items
|
|
2968
|
-
|
|
2969
|
-
this.data = this.data;
|
|
2965
|
+
const fullList = [...this.data.items];
|
|
2966
|
+
fullList.splice(index, 1);
|
|
2967
|
+
this.data = { ...this.data, items: fullList, length: fullList.length };
|
|
2970
2968
|
}
|
|
2971
2969
|
}
|
|
2972
2970
|
}
|
|
@@ -10843,5 +10841,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImpor
|
|
|
10843
10841
|
* Generated bundle index. Do not edit.
|
|
10844
10842
|
*/
|
|
10845
10843
|
|
|
10846
|
-
export { AvatarComponent, AvatarService, FileComponent, IconsConfigService, LOCAL_STORAGE, NATURAL_DROPDOWN_DATA, NATURAL_SEO_CONFIG, NaturalAbstractController, NaturalAbstractDetail, NaturalAbstractEditableList, NaturalAbstractList, NaturalAbstractModelService, NaturalAbstractNavigableList, NaturalAbstractPanel, NaturalAlertModule, NaturalAlertService, NaturalAvatarModule, NaturalCapitalizePipe, NaturalColumnsPickerColumnDirective, NaturalColumnsPickerComponent, NaturalColumnsPickerModule, NaturalCommonModule, NaturalConfirmComponent, NaturalDataSource, NaturalDetailHeaderComponent, NaturalDetailHeaderModule, NaturalDialogTriggerComponent, NaturalDialogTriggerModule, NaturalDropdownComponentsModule, NaturalDropdownRef, NaturalEllipsisPipe, NaturalEnumPipe, NaturalEnumService, NaturalErrorHandler, NaturalErrorModule, NaturalFileDropDirective, NaturalFileModule, NaturalFileSelectDirective, NaturalFileService, NaturalFixedButtonComponent, NaturalFixedButtonDetailComponent, NaturalFixedButtonDetailModule, NaturalFixedButtonModule, NaturalHierarchicSelectorComponent, NaturalHierarchicSelectorDialogComponent, NaturalHierarchicSelectorDialogService, NaturalHierarchicSelectorModule, NaturalHierarchicSelectorService, NaturalHttpPrefixDirective, NaturalIconComponent, NaturalIconModule, NaturalLinkMutationService, NaturalLinkableTabDirective, NaturalLoggerConfigExtra, NaturalLoggerConfigUrl, NaturalMatomoModule, NaturalMatomoService, NaturalMemoryStorage, NaturalPanelsComponent, NaturalPanelsModule, NaturalPanelsService, NaturalPersistenceService, NaturalQueryVariablesManager, NaturalRelationsComponent, NaturalRelationsModule, NaturalSearchComponent, NaturalSearchModule, NaturalSelectComponent, NaturalSelectEnumComponent, NaturalSelectHierarchicComponent, NaturalSelectModule, NaturalSeoService, NaturalSidenavComponent, NaturalSidenavContainerComponent, NaturalSidenavContentComponent, NaturalSidenavModule, NaturalSidenavService, NaturalSidenavStackService, NaturalSrcDensityDirective, NaturalStampComponent, NaturalStampModule, NaturalSwissDatePipe, NaturalSwissParsingDateAdapter, NaturalTableButtonComponent, NaturalTableButtonModule, PanelsHooksConfig, SESSION_STORAGE, SortingOrder, TypeDateComponent, TypeDateRangeComponent, TypeHierarchicSelectorComponent, TypeNaturalSelectComponent, TypeNumberComponent, TypeSelectComponent, TypeTextComponent, available, cancellableTimeout, cleanSameValues, collectErrors, copyToClipboard, debug, decimal, deliverableEmail, ensureHttpPrefix, fallbackIfNoOpenedPanels, formatIsoDate, formatIsoDateTime, fromUrl, getForegroundColor, hasFilesAndProcessDate, ifValid, integer, localStorageFactory, localStorageProvider, lowerCaseFirstLetter, makePlural, memoryLocalStorageProvider, memorySessionStorageProvider, mergeOverrideArray, money, naturalPanelsUrlMatcher, relationsToIds, replaceObjectKeepingReference, replaceOperatorByField, replaceOperatorByName, sessionStorageFactory, sessionStorageProvider, toGraphQLDoctrineFilter, toNavigationParameters, toUrl, unique, upperCaseFirstLetter, urlValidator, validTlds, validateAllFormControls, wrapLike };
|
|
10844
|
+
export { AvatarComponent, AvatarService, FileComponent, IconsConfigService, LOCAL_STORAGE, NATURAL_DROPDOWN_DATA, NATURAL_SEO_CONFIG, NaturalAbstractController, NaturalAbstractDetail, NaturalAbstractEditableList, NaturalAbstractList, NaturalAbstractModelService, NaturalAbstractNavigableList, NaturalAbstractPanel, NaturalAlertModule, NaturalAlertService, NaturalAvatarModule, NaturalCapitalizePipe, NaturalColumnsPickerColumnDirective, NaturalColumnsPickerComponent, NaturalColumnsPickerModule, NaturalCommonModule, NaturalConfirmComponent, NaturalDataSource, NaturalDetailHeaderComponent, NaturalDetailHeaderModule, NaturalDialogTriggerComponent, NaturalDialogTriggerModule, NaturalDropdownComponentsModule, NaturalDropdownRef, NaturalEllipsisPipe, NaturalEnumPipe, NaturalEnumService, NaturalErrorHandler, NaturalErrorModule, NaturalFileDropDirective, NaturalFileModule, NaturalFileSelectDirective, NaturalFileService, NaturalFixedButtonComponent, NaturalFixedButtonDetailComponent, NaturalFixedButtonDetailModule, NaturalFixedButtonModule, NaturalHierarchicSelectorComponent, NaturalHierarchicSelectorDialogComponent, NaturalHierarchicSelectorDialogService, NaturalHierarchicSelectorModule, NaturalHierarchicSelectorService, NaturalHttpPrefixDirective, NaturalIconComponent, NaturalIconModule, NaturalLinkMutationService, NaturalLinkableTabDirective, NaturalLoggerConfigExtra, NaturalLoggerConfigUrl, NaturalMatomoModule, NaturalMatomoService, NaturalMemoryStorage, NaturalPanelsComponent, NaturalPanelsModule, NaturalPanelsService, NaturalPersistenceService, NaturalQueryVariablesManager, NaturalRelationsComponent, NaturalRelationsModule, NaturalSearchComponent, NaturalSearchModule, NaturalSelectComponent, NaturalSelectEnumComponent, NaturalSelectHierarchicComponent, NaturalSelectModule, NaturalSeoService, NaturalSidenavComponent, NaturalSidenavContainerComponent, NaturalSidenavContentComponent, NaturalSidenavModule, NaturalSidenavService, NaturalSidenavStackService, NaturalSrcDensityDirective, NaturalStampComponent, NaturalStampModule, NaturalSwissDatePipe, NaturalSwissParsingDateAdapter, NaturalTableButtonComponent, NaturalTableButtonModule, PanelsHooksConfig, SESSION_STORAGE, SortingOrder, TypeDateComponent, TypeDateRangeComponent, TypeHierarchicSelectorComponent, TypeNaturalSelectComponent, TypeNumberComponent, TypeSelectComponent, TypeTextComponent, available, cancellableTimeout, cleanSameValues, collectErrors, copyToClipboard, debug, decimal, deepFreeze, deliverableEmail, ensureHttpPrefix, fallbackIfNoOpenedPanels, formatIsoDate, formatIsoDateTime, fromUrl, getForegroundColor, hasFilesAndProcessDate, ifValid, integer, localStorageFactory, localStorageProvider, lowerCaseFirstLetter, makePlural, memoryLocalStorageProvider, memorySessionStorageProvider, mergeOverrideArray, money, naturalPanelsUrlMatcher, relationsToIds, replaceObjectKeepingReference, replaceOperatorByField, replaceOperatorByName, sessionStorageFactory, sessionStorageProvider, toGraphQLDoctrineFilter, toNavigationParameters, toUrl, unique, upperCaseFirstLetter, urlValidator, validTlds, validateAllFormControls, wrapLike };
|
|
10847
10845
|
//# sourceMappingURL=ecodev-natural.mjs.map
|