@elderbyte/ngx-starter 20.1.1 → 20.2.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/elderbyte-ngx-starter.mjs +164 -167
- package/fesm2022/elderbyte-ngx-starter.mjs.map +1 -1
- package/index.d.ts +112 -112
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -15877,117 +15877,6 @@ declare class SimpleSearchInput implements SearchInput {
|
|
|
15877
15877
|
reset(): void;
|
|
15878
15878
|
}
|
|
15879
15879
|
|
|
15880
|
-
declare class ElderUrlFragment {
|
|
15881
|
-
name: string;
|
|
15882
|
-
fragment: string;
|
|
15883
|
-
color: string;
|
|
15884
|
-
backgroundColor: string;
|
|
15885
|
-
constructor(name: string, fragment: string, color?: string, backgroundColor?: string);
|
|
15886
|
-
}
|
|
15887
|
-
|
|
15888
|
-
declare class ElderUrlFragmentSwitcherComponent {
|
|
15889
|
-
/***************************************************************************
|
|
15890
|
-
* *
|
|
15891
|
-
* Fields *
|
|
15892
|
-
* *
|
|
15893
|
-
**************************************************************************/
|
|
15894
|
-
/**
|
|
15895
|
-
* Disables the component
|
|
15896
|
-
*/
|
|
15897
|
-
readonly disable: i0.InputSignal<boolean>;
|
|
15898
|
-
/**
|
|
15899
|
-
* Regex which matches the part of the url which will get replaced
|
|
15900
|
-
*/
|
|
15901
|
-
readonly urlRegex: i0.ModelSignal<RegExp>;
|
|
15902
|
-
/**
|
|
15903
|
-
* Index of the regex group which will be replaced
|
|
15904
|
-
*/
|
|
15905
|
-
readonly regexArrayIndex: i0.ModelSignal<number>;
|
|
15906
|
-
/**
|
|
15907
|
-
* List of url fragments which can replace a part of the window location
|
|
15908
|
-
*/
|
|
15909
|
-
readonly urlFragments: i0.ModelSignal<ElderUrlFragment[]>;
|
|
15910
|
-
/**
|
|
15911
|
-
* Window which will open the created url
|
|
15912
|
-
*/
|
|
15913
|
-
readonly windowOpenIn: i0.InputSignal<string>;
|
|
15914
|
-
readonly activeFragment: i0.Signal<ElderUrlFragment>;
|
|
15915
|
-
private readonly logger;
|
|
15916
|
-
/***************************************************************************
|
|
15917
|
-
* *
|
|
15918
|
-
* Constructor *
|
|
15919
|
-
* *
|
|
15920
|
-
**************************************************************************/
|
|
15921
|
-
constructor();
|
|
15922
|
-
/***************************************************************************
|
|
15923
|
-
* *
|
|
15924
|
-
* Public API *
|
|
15925
|
-
* *
|
|
15926
|
-
**************************************************************************/
|
|
15927
|
-
replaceFragment(urlFragment: string): void;
|
|
15928
|
-
/***************************************************************************
|
|
15929
|
-
* *
|
|
15930
|
-
* Private Methods *
|
|
15931
|
-
* *
|
|
15932
|
-
**************************************************************************/
|
|
15933
|
-
private findActiveFragment;
|
|
15934
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ElderUrlFragmentSwitcherComponent, never>;
|
|
15935
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ElderUrlFragmentSwitcherComponent, "elder-url-fragment-switcher", never, { "disable": { "alias": "disable"; "required": false; "isSignal": true; }; "urlRegex": { "alias": "urlRegex"; "required": false; "isSignal": true; }; "regexArrayIndex": { "alias": "regexArrayIndex"; "required": false; "isSignal": true; }; "urlFragments": { "alias": "urlFragments"; "required": false; "isSignal": true; }; "windowOpenIn": { "alias": "windowOpenIn"; "required": false; "isSignal": true; }; }, { "urlRegex": "urlRegexChange"; "regexArrayIndex": "regexArrayIndexChange"; "urlFragments": "urlFragmentsChange"; }, never, never, true, never>;
|
|
15936
|
-
}
|
|
15937
|
-
|
|
15938
|
-
declare class EnvUrlFragmentSwitcherConfig {
|
|
15939
|
-
hostRegex: RegExp;
|
|
15940
|
-
regexGroup: number;
|
|
15941
|
-
urlFragments: ElderUrlFragment[];
|
|
15942
|
-
constructor(hostRegex: RegExp, regexGroup: number, urlFragments: ElderUrlFragment[]);
|
|
15943
|
-
}
|
|
15944
|
-
/**
|
|
15945
|
-
* This directive loads the configured environment domain spec and sets up the {@link ElderUrlFragmentSwitcherComponent}.
|
|
15946
|
-
*
|
|
15947
|
-
* IMPORTANT:
|
|
15948
|
-
* Make sure a {@link EnvDomainSpecService} is implemented which provides the environment domain spec!
|
|
15949
|
-
*/
|
|
15950
|
-
declare class EnvDomainSwitcherDirective implements OnInit {
|
|
15951
|
-
private urlFragmentSwitcher;
|
|
15952
|
-
/***************************************************************************
|
|
15953
|
-
* *
|
|
15954
|
-
* Fields *
|
|
15955
|
-
* *
|
|
15956
|
-
**************************************************************************/
|
|
15957
|
-
private envSwitchConfigService;
|
|
15958
|
-
/***************************************************************************
|
|
15959
|
-
* *
|
|
15960
|
-
* Constructor *
|
|
15961
|
-
* *
|
|
15962
|
-
**************************************************************************/
|
|
15963
|
-
constructor(urlFragmentSwitcher: ElderUrlFragmentSwitcherComponent);
|
|
15964
|
-
ngOnInit(): void;
|
|
15965
|
-
/***************************************************************************
|
|
15966
|
-
* *
|
|
15967
|
-
* Private methods *
|
|
15968
|
-
* *
|
|
15969
|
-
**************************************************************************/
|
|
15970
|
-
private buildElderEnvSwitch;
|
|
15971
|
-
private buildUrlFragment;
|
|
15972
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EnvDomainSwitcherDirective, never>;
|
|
15973
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EnvDomainSwitcherDirective, "elder-env-domain-switcher, [elder-env-domain-switcher], [elderEnvDomainSwitcher]", never, {}, {}, never, never, true, never>;
|
|
15974
|
-
}
|
|
15975
|
-
|
|
15976
|
-
declare class EnvDomainSpec {
|
|
15977
|
-
hostRegex: string;
|
|
15978
|
-
regexGroup: number;
|
|
15979
|
-
urlFragments: EnvDomainFragmentSpec[];
|
|
15980
|
-
}
|
|
15981
|
-
declare class EnvDomainFragmentSpec {
|
|
15982
|
-
name: string;
|
|
15983
|
-
fragment: string;
|
|
15984
|
-
color?: string;
|
|
15985
|
-
}
|
|
15986
|
-
|
|
15987
|
-
declare abstract class EnvDomainSpecService extends RestClient<EnvDomainSpec, void> {
|
|
15988
|
-
loadConfig(): Observable<EnvDomainSpec>;
|
|
15989
|
-
}
|
|
15990
|
-
|
|
15991
15880
|
declare class StandardToastComponent implements OnInit {
|
|
15992
15881
|
readonly snackBarRef: MatSnackBarRef<StandardToastComponent>;
|
|
15993
15882
|
readonly toast: Toast;
|
|
@@ -16236,12 +16125,123 @@ declare class ElderButtonGroupModule {
|
|
|
16236
16125
|
static ɵinj: i0.ɵɵInjectorDeclaration<ElderButtonGroupModule>;
|
|
16237
16126
|
}
|
|
16238
16127
|
|
|
16128
|
+
declare class ElderUrlFragment {
|
|
16129
|
+
name: string;
|
|
16130
|
+
fragment: string;
|
|
16131
|
+
color: string;
|
|
16132
|
+
backgroundColor: string;
|
|
16133
|
+
constructor(name: string, fragment: string, color?: string, backgroundColor?: string);
|
|
16134
|
+
}
|
|
16135
|
+
|
|
16136
|
+
declare class ElderUrlFragmentSwitcherComponent {
|
|
16137
|
+
/***************************************************************************
|
|
16138
|
+
* *
|
|
16139
|
+
* Fields *
|
|
16140
|
+
* *
|
|
16141
|
+
**************************************************************************/
|
|
16142
|
+
/**
|
|
16143
|
+
* Disables the component
|
|
16144
|
+
*/
|
|
16145
|
+
readonly disable: i0.InputSignal<boolean>;
|
|
16146
|
+
/**
|
|
16147
|
+
* Regex which matches the part of the url which will get replaced
|
|
16148
|
+
*/
|
|
16149
|
+
readonly urlRegex: i0.ModelSignal<RegExp>;
|
|
16150
|
+
/**
|
|
16151
|
+
* Index of the regex group which will be replaced
|
|
16152
|
+
*/
|
|
16153
|
+
readonly regexArrayIndex: i0.ModelSignal<number>;
|
|
16154
|
+
/**
|
|
16155
|
+
* List of url fragments which can replace a part of the window location
|
|
16156
|
+
*/
|
|
16157
|
+
readonly urlFragments: i0.ModelSignal<ElderUrlFragment[]>;
|
|
16158
|
+
/**
|
|
16159
|
+
* Window which will open the created url
|
|
16160
|
+
*/
|
|
16161
|
+
readonly windowOpenIn: i0.InputSignal<string>;
|
|
16162
|
+
readonly activeFragment: i0.Signal<ElderUrlFragment>;
|
|
16163
|
+
private readonly logger;
|
|
16164
|
+
/***************************************************************************
|
|
16165
|
+
* *
|
|
16166
|
+
* Constructor *
|
|
16167
|
+
* *
|
|
16168
|
+
**************************************************************************/
|
|
16169
|
+
constructor();
|
|
16170
|
+
/***************************************************************************
|
|
16171
|
+
* *
|
|
16172
|
+
* Public API *
|
|
16173
|
+
* *
|
|
16174
|
+
**************************************************************************/
|
|
16175
|
+
replaceFragment(urlFragment: string): void;
|
|
16176
|
+
/***************************************************************************
|
|
16177
|
+
* *
|
|
16178
|
+
* Private Methods *
|
|
16179
|
+
* *
|
|
16180
|
+
**************************************************************************/
|
|
16181
|
+
private findActiveFragment;
|
|
16182
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElderUrlFragmentSwitcherComponent, never>;
|
|
16183
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ElderUrlFragmentSwitcherComponent, "elder-url-fragment-switcher", never, { "disable": { "alias": "disable"; "required": false; "isSignal": true; }; "urlRegex": { "alias": "urlRegex"; "required": false; "isSignal": true; }; "regexArrayIndex": { "alias": "regexArrayIndex"; "required": false; "isSignal": true; }; "urlFragments": { "alias": "urlFragments"; "required": false; "isSignal": true; }; "windowOpenIn": { "alias": "windowOpenIn"; "required": false; "isSignal": true; }; }, { "urlRegex": "urlRegexChange"; "regexArrayIndex": "regexArrayIndexChange"; "urlFragments": "urlFragmentsChange"; }, never, never, true, never>;
|
|
16184
|
+
}
|
|
16185
|
+
|
|
16239
16186
|
declare class ElderUrlFragmentModule {
|
|
16240
16187
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderUrlFragmentModule, never>;
|
|
16241
16188
|
static ɵmod: i0.ɵɵNgModuleDeclaration<ElderUrlFragmentModule, never, [typeof i1.CommonModule, typeof i3.MatIconModule, typeof i3$3.MatMenuModule, typeof i4$5.MatFormFieldModule, typeof i5$1.MatSelectModule, typeof i2$1.FormsModule, typeof i6.MatButtonModule, typeof ElderButtonGroupModule, typeof ElderUrlFragmentSwitcherComponent], [typeof ElderUrlFragmentSwitcherComponent]>;
|
|
16242
16189
|
static ɵinj: i0.ɵɵInjectorDeclaration<ElderUrlFragmentModule>;
|
|
16243
16190
|
}
|
|
16244
16191
|
|
|
16192
|
+
declare class WebappDomainSpec {
|
|
16193
|
+
hostRegex: string;
|
|
16194
|
+
regexGroup: number;
|
|
16195
|
+
urlFragments: WebappDomainFragmentSpec[];
|
|
16196
|
+
}
|
|
16197
|
+
declare class WebappDomainFragmentSpec {
|
|
16198
|
+
name: string;
|
|
16199
|
+
fragment: string;
|
|
16200
|
+
color?: string;
|
|
16201
|
+
}
|
|
16202
|
+
|
|
16203
|
+
declare abstract class WebappDomainSpecService {
|
|
16204
|
+
abstract loadConfig(): Observable<WebappDomainSpec>;
|
|
16205
|
+
}
|
|
16206
|
+
|
|
16207
|
+
declare class WebappUrlFragmentSwitcherConfig {
|
|
16208
|
+
hostRegex: RegExp;
|
|
16209
|
+
regexGroup: number;
|
|
16210
|
+
urlFragments: ElderUrlFragment[];
|
|
16211
|
+
constructor(hostRegex: RegExp, regexGroup: number, urlFragments: ElderUrlFragment[]);
|
|
16212
|
+
}
|
|
16213
|
+
/**
|
|
16214
|
+
* This directive loads the configured environment domain spec and sets up the {@link ElderUrlFragmentSwitcherComponent}.
|
|
16215
|
+
*
|
|
16216
|
+
* IMPORTANT:
|
|
16217
|
+
* Make sure a {@link WebappDomainSpecService} is implemented which provides the environment domain spec!
|
|
16218
|
+
*/
|
|
16219
|
+
declare class WebappDomainSwitcherDirective implements OnInit {
|
|
16220
|
+
private urlFragmentSwitcher;
|
|
16221
|
+
/***************************************************************************
|
|
16222
|
+
* *
|
|
16223
|
+
* Fields *
|
|
16224
|
+
* *
|
|
16225
|
+
**************************************************************************/
|
|
16226
|
+
private envSwitchConfigService;
|
|
16227
|
+
/***************************************************************************
|
|
16228
|
+
* *
|
|
16229
|
+
* Constructor *
|
|
16230
|
+
* *
|
|
16231
|
+
**************************************************************************/
|
|
16232
|
+
constructor(urlFragmentSwitcher: ElderUrlFragmentSwitcherComponent);
|
|
16233
|
+
ngOnInit(): void;
|
|
16234
|
+
/***************************************************************************
|
|
16235
|
+
* *
|
|
16236
|
+
* Private methods *
|
|
16237
|
+
* *
|
|
16238
|
+
**************************************************************************/
|
|
16239
|
+
private buildElderEnvSwitch;
|
|
16240
|
+
private buildUrlFragment;
|
|
16241
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WebappDomainSwitcherDirective, never>;
|
|
16242
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<WebappDomainSwitcherDirective, "elder-domain-switcher, [elder-domain-switcher], [elderDomainSwitcher]", never, {}, {}, never, never, true, never>;
|
|
16243
|
+
}
|
|
16244
|
+
|
|
16245
16245
|
declare class SubBar {
|
|
16246
16246
|
widthPercent: number;
|
|
16247
16247
|
color: string;
|
|
@@ -17853,5 +17853,5 @@ declare class KafentModule {
|
|
|
17853
17853
|
static ɵinj: i0.ɵɵInjectorDeclaration<KafentModule>;
|
|
17854
17854
|
}
|
|
17855
17855
|
|
|
17856
|
-
export { ActivationEventSource, ActivationModel, Arrays, AuditedEntity, AutoStartSpec, Batcher, BlobUrl, BytesFormat, BytesPerSecondFormat, BytesPipe, CardDropEvent, CardOrganizerData, CardStack, CollectionUtil, ComparatorBuilder, CompositeSort, ConfirmDialogConfig, ContinuableListing, CountryPhoneFormatService, CsvColumnSpec, CsvSerializer, CsvSpec, CsvStreamExporter, CsvStreamExporterBuilder, CsvStreamExporterBuilderService, CuratedDataSource, CuratedListDataSource, CuratedPagedDataSource, Currency, CurrencyCode, CurrencyFormatUtil, CurrencyUnit, CurrencyUnitRegistry, CustomDateAdapter, CustomMatcherSpec, DataContextActivePage, DataContextAutoStarter, DataContextBase, DataContextBuilder, DataContextContinuableBase, DataContextContinuablePaged, DataContextContinuableToken, DataContextLifeCycleBinding, DataContextSelectionDirective, DataContextSimple, DataContextSnapshot, DataContextSourceEventBinding, DataContextStateIndicatorComponent, DataContextStatus, DataSourceAdapter, DataSourceBase, DataSourceChangeEvent, DataSourceEntityPatch, DataSourceProcessor, DataTransferFactory, DataTransferProgress, DataTransferProgressAggregate, DataTransferState, DataTransferStatus, DataViewActivationController, DataViewDndControllerService, DataViewDndGroupControllerService, DataViewDndModelUtil, DataViewDragEnteredEvent, DataViewDragExitedEvent, DataViewIframeAdapterDirective, DataViewIframeComponent, DataViewItemDropEvent, DataViewMessage, DataViewMessageTypeValues, DataViewOptionsProviderBinding, DataViewSelection, DataViewSelectionInit, DateUtil, DelegateContinuableDataSource, DelegateDataSource, DelegateListDataSource, DelegatePagedDataSource, Dimensions, DomUtil, DrawerOutletBinding, DurationBucket, DurationFormat, DurationFormatUtil, ELDER_DATA_VIEW, ELDER_SELECT_BASE, ElderAccessDeniedComponent, ElderAccessDeniedModule, ElderAppHeaderComponent, ElderAuditModule, ElderAuditedEntityComponent, ElderAutoSelectFirstDirective, ElderAutoSelectSuggestFirstDirective, ElderAutocompleteDirective, ElderAutocompleteManyDirective, ElderAutocompleteModule, ElderBadgeDirective, ElderBasicPaneLayoutComponent, ElderBlobViewerComponent, ElderBreadCrumbsComponent, ElderBreadCrumbsModule, ElderButtonGroupComponent, ElderButtonGroupModule, ElderCardComponent, ElderCardContentDirective, ElderCardHeaderActionsDirective, ElderCardHeaderComponent, ElderCardModule, ElderCardOrganizerComponent, ElderCardOrganizerModule, ElderCardPanelComponent, ElderCardStackComponent, ElderCardSubtitleDirective, ElderCardTitleDirective, ElderCenterCellDirective, ElderChipLabelDirective, ElderChipListSelectComponent, ElderChipListSelectModule, ElderChipsIncludeExcludeDirective, ElderChipsModule, ElderClearSelectDirective, ElderClipboardPutDirective, ElderClipboardService, ElderCompositeSortComponent, ElderCompositeSortDcDirective, ElderConfirmDialogComponent, ElderConnectivityModule, ElderConnectivityService, ElderContainersModule, ElderContinuatorComponent, ElderCsvExportBtnComponent, ElderCsvModule, ElderCurrencyModule, ElderCurrencyPipe, ElderDataCommonModule, ElderDataToolbarComponent, ElderDataTransferModule, ElderDataTransferService, ElderDataViewBaseComponent, ElderDataViewDndDirective, ElderDataViewDndGroupDirective, ElderDataViewItemDragDirective, ElderDataViewOptions, ElderDataViewOptionsProvider, ElderDateSwitcherComponent, ElderDateTimeInputComponent, ElderDelayedFocusDirective, ElderDeleteActiveDirective, ElderDetailDialogComponent, ElderDetailDirective, ElderDialogConfig, ElderDialogModule, ElderDialogPanelComponent, ElderDialogService, ElderDimensionsInputComponent, ElderDropZoneComponent, ElderDurationInputComponent, ElderEntityValueAccessorUtil, ElderEnumTranslationService, ElderErrorModule, ElderEventSourceService, ElderExceptionDetailComponent, ElderExpandToggleButtonComponent, ElderExpandToggleButtonModule, ElderFileDropZoneDirective, ElderFileModule, ElderFileSelectComponent, ElderFileSelectDirective, ElderFileUploadComponent, ElderFilterChipTemplateComponent, ElderFormFieldControlBase, ElderFormFieldDenseDirective, ElderFormFieldLabelDirective, ElderFormFieldNoHintDirective, ElderFormFieldNoSpinnerDirective, ElderFormsDirectivesModule, ElderFormsModule, ElderFromFieldBase, ElderFromFieldEntityBase, ElderFromFieldMultiEntityBase, ElderGridActivationDirective, ElderGridComponent, ElderGridModule, ElderGridTileDirective, ElderGridToolbarDirective, ElderHeaderComponent, ElderHeaderModule, ElderI18nEntitiesModule, ElderIFrameModule, ElderInfiniteAutocompleteDirective, ElderInfiniteScrollDirective, ElderInfiniteScrollModule, ElderInputPatternDirective, ElderIntervalInputComponent, ElderIntervalPickerBindingDirective, ElderIntervalPickerComponent, ElderIntervalPickerToggleComponent, ElderKeyEventDirective, ElderLabelInputComponent, ElderLabelsModule, ElderLanguageConfig, ElderLanguageInterceptor, ElderLanguageModule, ElderLanguageService, ElderLanguageSwitcherComponent, ElderLocalDateInputComponent, ElderLocalDndSupportDirective, ElderLocalTimeInputComponent, ElderLocalesDeChModule, ElderLocalizedInputComponent, ElderLocalizedInputDialogComponent, ElderLocalizedInputDialogService, ElderLocalizedInputTableComponent, ElderLocalizedTextColumnDirective, ElderLocalizedTextsDirective, ElderMasterActivationDirective, ElderMasterDetailComponent, ElderMasterDetailModule, ElderMasterDetailService, ElderMasterDirective, ElderMaxValidator, ElderMeasuresModule, ElderMinValidator, ElderMultiEntityValueAccessorUtil, ElderMultiSelectAllInitialDirective, ElderMultiSelectBase, ElderMultiSelectChipOptionsComponent, ElderMultiSelectChipsComponent, ElderMultiSelectChipsOptionsDirective, ElderMultiSelectFormField, ElderMultiTranslateHttpLoader, ElderMultipleOfUtil, ElderMultipleOfValidator, ElderNavGroupComponent, ElderNavLinkComponent, ElderNavListComponent, ElderNavModule, ElderNextFocusableDirective, ElderNumberCellDirective, ElderOfflineIndicatorComponent, ElderOverlayComponent, ElderOverlayModule, ElderOverlayOriginDirective, ElderOverlayRef, ElderOverlayTriggerDirective, ElderPaddingDirective, ElderPageExitLockIndicatorComponent, ElderPaneActionsComponent, ElderPaneComponent, ElderPaneContentComponent, ElderPaneHeaderComponent, ElderPaneSubtitleComponent, ElderPaneTitleComponent, ElderPanelModule, ElderPeriodInputComponent, ElderPipesModule, ElderPlugParentFormDirective, ElderProgressBarComponent, ElderProgressBarModule, ElderQuantityFormFieldComponent, ElderQuantityInputControlComponent, ElderQuantityPipe, ElderQuantityRangeValidator, ElderQuantityService, ElderQuantityTransformPipe, ElderQuestionDialogComponent, ElderRepeatPipe, ElderRequiredDimensionsValidator, ElderRequiredIgnoreZeroValidator, ElderRequiredQuantityValidator, ElderRoundPipe, ElderRouteOutletDrawerService, ElderRouterOutletService, ElderRouterService, ElderSafeUrlPipe, ElderScrollContainerComponent, ElderScrollbarDirective, ElderScrollbarModule, ElderSearchBoxComponent, ElderSearchContextDirective, ElderSearchIncludeExcludeDirective, ElderSearchInputDirective, ElderSearchModule, ElderSearchPanelComponent, ElderSearchUrlDirective, ElderSelectBase, ElderSelectChipAvatarDirective, ElderSelectChipDirective, ElderSelectComponent, ElderSelectComponentState, ElderSelectCustomInputDirective, ElderSelectFormField, ElderSelectModule, ElderSelectOnTabDirective, ElderSelectOptionComponent, ElderSelectValueDirective, ElderSelectionDialogComponent, ElderSelectionDialogDirective, ElderSelectionMasterCheckboxComponent, ElderSelectionPopupTriggerAdapterDirective, ElderShellCenterDirective, ElderShellComponent, ElderShellModule, ElderShellNavigationToggleComponent, ElderShellService, ElderShellSideLeftDirective, ElderShellSideRightDirective, ElderShellSlotDirective, ElderSimpleSelectionViewComponent, ElderSimpleSelectionViewModule, ElderSinglePaneWrapperComponent, ElderSingleSortComponent, ElderSingleStateCheckboxDirective, ElderStackCardDirective, ElderStopEventPropagationDirective, ElderSuggestionPanelComponent, ElderSvgViewerComponent, ElderTabDirective, ElderTabFocusTrapDirective, ElderTabGroupRoutingDirective, ElderTabModule, ElderTableActivationDirective, ElderTableComponent, ElderTableDropListConnectorDirective, ElderTableExtensionDirective, ElderTableGroup, ElderTableModel, ElderTableModelCdkTableBinding, ElderTableModelQueryGroup, ElderTableModule, ElderTableNavigationBarDirective, ElderTableProviders, ElderTableRootDirective, ElderTableSelectionCellComponent, ElderTableSortDirective, ElderTableToolbarDirective, ElderThemeApplierDirective, ElderThemeDirective, ElderThemeModule, ElderThemePreferenceService, ElderThemeService, ElderThemeToggleComponent, ElderTileComponent, ElderTimeModule, ElderToastModule, ElderToastService, ElderTogglePanelComponent, ElderTogglePanelPrimaryDirective, ElderTogglePanelSecondaryDirective, ElderTogglePanelTriggerDirective, ElderToggleTextInputDirective, ElderToolbarColumnDirective, ElderToolbarComponent, ElderToolbarContentDirective, ElderToolbarModule, ElderToolbarService, ElderToolbarTitleComponent, ElderToolbarTitleService, ElderTouchedDirective, ElderTripleStateCheckboxDirective, ElderTruncatePipe, ElderUnitSelectDirective, ElderUnitService, ElderUrlFragment, ElderUrlFragmentModule, ElderUrlFragmentParamsService, ElderUrlFragmentSwitcherComponent, ElderValidationErrorDirective, ElderViewersModule, EntitiesChangeEvent, EntityDelta, EntityIdUtil, EntitySetPatch, EnvDomainFragmentSpec, EnvDomainSpec, EnvDomainSpecService, EnvDomainSwitcherDirective, EnvUrlFragmentSwitcherConfig, ErrorUtil, ExceptionDetailCtx, FileEntry, FileListingRx, FileUploadClient, Filter, FilterContext, FilterUtil, FocusUtil, FormFieldBaseComponent, GlobalDragDropService, HttpClientBuilder, HttpClientPristine, HttpDataTransfer, HttpDataTransferAggregateComponent, HttpDataTransferComponent, HttpDataTransferIndicatorComponent, HttpDataTransferOverviewComponent, HttpParamsBuilder, I18nBase, I18nPickAsyncPipe, I18nPickPipe, I18nText, IFrameState, IframeCloseDirective, IframeDialogComponent, IframeHostComponent, IframeService, IframeSideContentComponent, IncludeExcludeSelectionModel, IncludeExcludeState, IncludeExcludeValue, IndexedEntities, InternalRestClientConfig, Interval, IsoDurationPipe, IsoIntervalFormatUtil, IsoIntervalParsePipe, IsoIntervalPipe, ItemActivationEvent, ItemActivationOptions, JsonMapUtil, KafentConfig, KafentEvent, KafentEventService, KafentEventStream, KafentEventStreamDisabled, KafentEventStreamSse, KafentEventTransport, KafentModule, KafentSseEventChannel, KafentTokenProvider, KafentTokenProviderSessionStorage, KafentTopicSse, KnownElderThemes, KnownLocaleTags, LocalDataFilter, LocalListDataSource, LocalPagedDataSource, Locale, LocalisationPickerService, MasterDetailActivationEvent, MasterSelectionState, MatTableDataContextBinding, MatTableDataContextBindingBuilder, MultiModelBaseComponent, NamedColorDirective, NamedColorSelectDirective, NamedColorSelectValueComponent, NextNumberUtil, ObjectFieldMatcher, ObjectPathResolver, Objects, OnlineStatus, Page, PageExitGuardModule, PageExitGuardService, PageExitLock, PageRequest, Pageable, ParseUtil, Path, PathNode, PeriodBucket, PeriodDuration, PeriodFormat, PhoneFormatService, PhonePipe, ProcessIterationContext, ProcessState, PropertyPathUtil, Quantity, QueryListBinding, QuestionDialogConfig, ReactiveEventSource, ReactiveEventSourceState, ReactiveFetchEventSource, ReactiveFetchEventSourceService, ReactiveMap, ReactiveSSeMessage, RefreshingEntity, ResizeObserverDirective, RestClient, RestClientConfig, RestClientContinuable, RestClientList, RestClientPaged, RoutedTabActivationFailed, SearchInputState, SelectChipSpecUtil, SelectOptionChipSpecUtil, SelectionModel, SelectionModelPopupDirective, Sets, SimpleLocalisationPicker, SimpleSearchInput, Sort, SortUtil, StandardToastComponent, SubBar, SuggestionProvider, TargetValue, TemplateCompositeControl, TemplatedSelectionDialogComponent, TemporalPlainDateInterval, TemporalUtil, ThemeSpec, TimeAgoPipe, TimeDurationPipe, TimeUtil, ToIsoDateStringPipe, ToastType, TokenChunkRequest, ToolbarHeader, Translated, TranslatedConverter, TranslatedEnumValue, TranslatedText, TypedEventMessage, Unit, UnitDimension, UnitDimensionInfo, UnitInfo, UnitRegistry, UnreachableCaseError, UrlBuilder, UrlQueryParams, UuidUtil, ValueAccessorBase, ValueChangeEvent, ValueWrapper, ViewDropModelUpdateInstruction, ViewProviders, WebLocalStorage, WebSessionStorage, WeightPipe, alphaNumStringComparator, booleanTransformFn, buildFormIntegrationProviders, coerceInterval, coerceIntervalIsoStr, createDataOptionsProvider, createSelectionModel, elderChipColorLevels, elderChipColorStates, elderNamedColorRoles, elderNamedColorToken, elderNamedColors, existingOrNewElderTableModel, initSearchUrlService, isActivePagedDataContext, isContinuableDataContext, isContinuableDataSource, isDataContext, isDataSource, isDataViewMessageType, isElderEntityValueAccessor, isElderMultiEntityValueAccessor, isListDataSource, isLocalListDataSource, isPagedDataSource, lazySample, lazySampleTime, naturalValueComparator, newElderTableModel, proxyControlContainer, registerLocale, runInZone, themeInit };
|
|
17856
|
+
export { ActivationEventSource, ActivationModel, Arrays, AuditedEntity, AutoStartSpec, Batcher, BlobUrl, BytesFormat, BytesPerSecondFormat, BytesPipe, CardDropEvent, CardOrganizerData, CardStack, CollectionUtil, ComparatorBuilder, CompositeSort, ConfirmDialogConfig, ContinuableListing, CountryPhoneFormatService, CsvColumnSpec, CsvSerializer, CsvSpec, CsvStreamExporter, CsvStreamExporterBuilder, CsvStreamExporterBuilderService, CuratedDataSource, CuratedListDataSource, CuratedPagedDataSource, Currency, CurrencyCode, CurrencyFormatUtil, CurrencyUnit, CurrencyUnitRegistry, CustomDateAdapter, CustomMatcherSpec, DataContextActivePage, DataContextAutoStarter, DataContextBase, DataContextBuilder, DataContextContinuableBase, DataContextContinuablePaged, DataContextContinuableToken, DataContextLifeCycleBinding, DataContextSelectionDirective, DataContextSimple, DataContextSnapshot, DataContextSourceEventBinding, DataContextStateIndicatorComponent, DataContextStatus, DataSourceAdapter, DataSourceBase, DataSourceChangeEvent, DataSourceEntityPatch, DataSourceProcessor, DataTransferFactory, DataTransferProgress, DataTransferProgressAggregate, DataTransferState, DataTransferStatus, DataViewActivationController, DataViewDndControllerService, DataViewDndGroupControllerService, DataViewDndModelUtil, DataViewDragEnteredEvent, DataViewDragExitedEvent, DataViewIframeAdapterDirective, DataViewIframeComponent, DataViewItemDropEvent, DataViewMessage, DataViewMessageTypeValues, DataViewOptionsProviderBinding, DataViewSelection, DataViewSelectionInit, DateUtil, DelegateContinuableDataSource, DelegateDataSource, DelegateListDataSource, DelegatePagedDataSource, Dimensions, DomUtil, DrawerOutletBinding, DurationBucket, DurationFormat, DurationFormatUtil, ELDER_DATA_VIEW, ELDER_SELECT_BASE, ElderAccessDeniedComponent, ElderAccessDeniedModule, ElderAppHeaderComponent, ElderAuditModule, ElderAuditedEntityComponent, ElderAutoSelectFirstDirective, ElderAutoSelectSuggestFirstDirective, ElderAutocompleteDirective, ElderAutocompleteManyDirective, ElderAutocompleteModule, ElderBadgeDirective, ElderBasicPaneLayoutComponent, ElderBlobViewerComponent, ElderBreadCrumbsComponent, ElderBreadCrumbsModule, ElderButtonGroupComponent, ElderButtonGroupModule, ElderCardComponent, ElderCardContentDirective, ElderCardHeaderActionsDirective, ElderCardHeaderComponent, ElderCardModule, ElderCardOrganizerComponent, ElderCardOrganizerModule, ElderCardPanelComponent, ElderCardStackComponent, ElderCardSubtitleDirective, ElderCardTitleDirective, ElderCenterCellDirective, ElderChipLabelDirective, ElderChipListSelectComponent, ElderChipListSelectModule, ElderChipsIncludeExcludeDirective, ElderChipsModule, ElderClearSelectDirective, ElderClipboardPutDirective, ElderClipboardService, ElderCompositeSortComponent, ElderCompositeSortDcDirective, ElderConfirmDialogComponent, ElderConnectivityModule, ElderConnectivityService, ElderContainersModule, ElderContinuatorComponent, ElderCsvExportBtnComponent, ElderCsvModule, ElderCurrencyModule, ElderCurrencyPipe, ElderDataCommonModule, ElderDataToolbarComponent, ElderDataTransferModule, ElderDataTransferService, ElderDataViewBaseComponent, ElderDataViewDndDirective, ElderDataViewDndGroupDirective, ElderDataViewItemDragDirective, ElderDataViewOptions, ElderDataViewOptionsProvider, ElderDateSwitcherComponent, ElderDateTimeInputComponent, ElderDelayedFocusDirective, ElderDeleteActiveDirective, ElderDetailDialogComponent, ElderDetailDirective, ElderDialogConfig, ElderDialogModule, ElderDialogPanelComponent, ElderDialogService, ElderDimensionsInputComponent, ElderDropZoneComponent, ElderDurationInputComponent, ElderEntityValueAccessorUtil, ElderEnumTranslationService, ElderErrorModule, ElderEventSourceService, ElderExceptionDetailComponent, ElderExpandToggleButtonComponent, ElderExpandToggleButtonModule, ElderFileDropZoneDirective, ElderFileModule, ElderFileSelectComponent, ElderFileSelectDirective, ElderFileUploadComponent, ElderFilterChipTemplateComponent, ElderFormFieldControlBase, ElderFormFieldDenseDirective, ElderFormFieldLabelDirective, ElderFormFieldNoHintDirective, ElderFormFieldNoSpinnerDirective, ElderFormsDirectivesModule, ElderFormsModule, ElderFromFieldBase, ElderFromFieldEntityBase, ElderFromFieldMultiEntityBase, ElderGridActivationDirective, ElderGridComponent, ElderGridModule, ElderGridTileDirective, ElderGridToolbarDirective, ElderHeaderComponent, ElderHeaderModule, ElderI18nEntitiesModule, ElderIFrameModule, ElderInfiniteAutocompleteDirective, ElderInfiniteScrollDirective, ElderInfiniteScrollModule, ElderInputPatternDirective, ElderIntervalInputComponent, ElderIntervalPickerBindingDirective, ElderIntervalPickerComponent, ElderIntervalPickerToggleComponent, ElderKeyEventDirective, ElderLabelInputComponent, ElderLabelsModule, ElderLanguageConfig, ElderLanguageInterceptor, ElderLanguageModule, ElderLanguageService, ElderLanguageSwitcherComponent, ElderLocalDateInputComponent, ElderLocalDndSupportDirective, ElderLocalTimeInputComponent, ElderLocalesDeChModule, ElderLocalizedInputComponent, ElderLocalizedInputDialogComponent, ElderLocalizedInputDialogService, ElderLocalizedInputTableComponent, ElderLocalizedTextColumnDirective, ElderLocalizedTextsDirective, ElderMasterActivationDirective, ElderMasterDetailComponent, ElderMasterDetailModule, ElderMasterDetailService, ElderMasterDirective, ElderMaxValidator, ElderMeasuresModule, ElderMinValidator, ElderMultiEntityValueAccessorUtil, ElderMultiSelectAllInitialDirective, ElderMultiSelectBase, ElderMultiSelectChipOptionsComponent, ElderMultiSelectChipsComponent, ElderMultiSelectChipsOptionsDirective, ElderMultiSelectFormField, ElderMultiTranslateHttpLoader, ElderMultipleOfUtil, ElderMultipleOfValidator, ElderNavGroupComponent, ElderNavLinkComponent, ElderNavListComponent, ElderNavModule, ElderNextFocusableDirective, ElderNumberCellDirective, ElderOfflineIndicatorComponent, ElderOverlayComponent, ElderOverlayModule, ElderOverlayOriginDirective, ElderOverlayRef, ElderOverlayTriggerDirective, ElderPaddingDirective, ElderPageExitLockIndicatorComponent, ElderPaneActionsComponent, ElderPaneComponent, ElderPaneContentComponent, ElderPaneHeaderComponent, ElderPaneSubtitleComponent, ElderPaneTitleComponent, ElderPanelModule, ElderPeriodInputComponent, ElderPipesModule, ElderPlugParentFormDirective, ElderProgressBarComponent, ElderProgressBarModule, ElderQuantityFormFieldComponent, ElderQuantityInputControlComponent, ElderQuantityPipe, ElderQuantityRangeValidator, ElderQuantityService, ElderQuantityTransformPipe, ElderQuestionDialogComponent, ElderRepeatPipe, ElderRequiredDimensionsValidator, ElderRequiredIgnoreZeroValidator, ElderRequiredQuantityValidator, ElderRoundPipe, ElderRouteOutletDrawerService, ElderRouterOutletService, ElderRouterService, ElderSafeUrlPipe, ElderScrollContainerComponent, ElderScrollbarDirective, ElderScrollbarModule, ElderSearchBoxComponent, ElderSearchContextDirective, ElderSearchIncludeExcludeDirective, ElderSearchInputDirective, ElderSearchModule, ElderSearchPanelComponent, ElderSearchUrlDirective, ElderSelectBase, ElderSelectChipAvatarDirective, ElderSelectChipDirective, ElderSelectComponent, ElderSelectComponentState, ElderSelectCustomInputDirective, ElderSelectFormField, ElderSelectModule, ElderSelectOnTabDirective, ElderSelectOptionComponent, ElderSelectValueDirective, ElderSelectionDialogComponent, ElderSelectionDialogDirective, ElderSelectionMasterCheckboxComponent, ElderSelectionPopupTriggerAdapterDirective, ElderShellCenterDirective, ElderShellComponent, ElderShellModule, ElderShellNavigationToggleComponent, ElderShellService, ElderShellSideLeftDirective, ElderShellSideRightDirective, ElderShellSlotDirective, ElderSimpleSelectionViewComponent, ElderSimpleSelectionViewModule, ElderSinglePaneWrapperComponent, ElderSingleSortComponent, ElderSingleStateCheckboxDirective, ElderStackCardDirective, ElderStopEventPropagationDirective, ElderSuggestionPanelComponent, ElderSvgViewerComponent, ElderTabDirective, ElderTabFocusTrapDirective, ElderTabGroupRoutingDirective, ElderTabModule, ElderTableActivationDirective, ElderTableComponent, ElderTableDropListConnectorDirective, ElderTableExtensionDirective, ElderTableGroup, ElderTableModel, ElderTableModelCdkTableBinding, ElderTableModelQueryGroup, ElderTableModule, ElderTableNavigationBarDirective, ElderTableProviders, ElderTableRootDirective, ElderTableSelectionCellComponent, ElderTableSortDirective, ElderTableToolbarDirective, ElderThemeApplierDirective, ElderThemeDirective, ElderThemeModule, ElderThemePreferenceService, ElderThemeService, ElderThemeToggleComponent, ElderTileComponent, ElderTimeModule, ElderToastModule, ElderToastService, ElderTogglePanelComponent, ElderTogglePanelPrimaryDirective, ElderTogglePanelSecondaryDirective, ElderTogglePanelTriggerDirective, ElderToggleTextInputDirective, ElderToolbarColumnDirective, ElderToolbarComponent, ElderToolbarContentDirective, ElderToolbarModule, ElderToolbarService, ElderToolbarTitleComponent, ElderToolbarTitleService, ElderTouchedDirective, ElderTripleStateCheckboxDirective, ElderTruncatePipe, ElderUnitSelectDirective, ElderUnitService, ElderUrlFragment, ElderUrlFragmentModule, ElderUrlFragmentParamsService, ElderUrlFragmentSwitcherComponent, ElderValidationErrorDirective, ElderViewersModule, EntitiesChangeEvent, EntityDelta, EntityIdUtil, EntitySetPatch, ErrorUtil, ExceptionDetailCtx, FileEntry, FileListingRx, FileUploadClient, Filter, FilterContext, FilterUtil, FocusUtil, FormFieldBaseComponent, GlobalDragDropService, HttpClientBuilder, HttpClientPristine, HttpDataTransfer, HttpDataTransferAggregateComponent, HttpDataTransferComponent, HttpDataTransferIndicatorComponent, HttpDataTransferOverviewComponent, HttpParamsBuilder, I18nBase, I18nPickAsyncPipe, I18nPickPipe, I18nText, IFrameState, IframeCloseDirective, IframeDialogComponent, IframeHostComponent, IframeService, IframeSideContentComponent, IncludeExcludeSelectionModel, IncludeExcludeState, IncludeExcludeValue, IndexedEntities, InternalRestClientConfig, Interval, IsoDurationPipe, IsoIntervalFormatUtil, IsoIntervalParsePipe, IsoIntervalPipe, ItemActivationEvent, ItemActivationOptions, JsonMapUtil, KafentConfig, KafentEvent, KafentEventService, KafentEventStream, KafentEventStreamDisabled, KafentEventStreamSse, KafentEventTransport, KafentModule, KafentSseEventChannel, KafentTokenProvider, KafentTokenProviderSessionStorage, KafentTopicSse, KnownElderThemes, KnownLocaleTags, LocalDataFilter, LocalListDataSource, LocalPagedDataSource, Locale, LocalisationPickerService, MasterDetailActivationEvent, MasterSelectionState, MatTableDataContextBinding, MatTableDataContextBindingBuilder, MultiModelBaseComponent, NamedColorDirective, NamedColorSelectDirective, NamedColorSelectValueComponent, NextNumberUtil, ObjectFieldMatcher, ObjectPathResolver, Objects, OnlineStatus, Page, PageExitGuardModule, PageExitGuardService, PageExitLock, PageRequest, Pageable, ParseUtil, Path, PathNode, PeriodBucket, PeriodDuration, PeriodFormat, PhoneFormatService, PhonePipe, ProcessIterationContext, ProcessState, PropertyPathUtil, Quantity, QueryListBinding, QuestionDialogConfig, ReactiveEventSource, ReactiveEventSourceState, ReactiveFetchEventSource, ReactiveFetchEventSourceService, ReactiveMap, ReactiveSSeMessage, RefreshingEntity, ResizeObserverDirective, RestClient, RestClientConfig, RestClientContinuable, RestClientList, RestClientPaged, RoutedTabActivationFailed, SearchInputState, SelectChipSpecUtil, SelectOptionChipSpecUtil, SelectionModel, SelectionModelPopupDirective, Sets, SimpleLocalisationPicker, SimpleSearchInput, Sort, SortUtil, StandardToastComponent, SubBar, SuggestionProvider, TargetValue, TemplateCompositeControl, TemplatedSelectionDialogComponent, TemporalPlainDateInterval, TemporalUtil, ThemeSpec, TimeAgoPipe, TimeDurationPipe, TimeUtil, ToIsoDateStringPipe, ToastType, TokenChunkRequest, ToolbarHeader, Translated, TranslatedConverter, TranslatedEnumValue, TranslatedText, TypedEventMessage, Unit, UnitDimension, UnitDimensionInfo, UnitInfo, UnitRegistry, UnreachableCaseError, UrlBuilder, UrlQueryParams, UuidUtil, ValueAccessorBase, ValueChangeEvent, ValueWrapper, ViewDropModelUpdateInstruction, ViewProviders, WebLocalStorage, WebSessionStorage, WebappDomainFragmentSpec, WebappDomainSpec, WebappDomainSpecService, WebappDomainSwitcherDirective, WebappUrlFragmentSwitcherConfig, WeightPipe, alphaNumStringComparator, booleanTransformFn, buildFormIntegrationProviders, coerceInterval, coerceIntervalIsoStr, createDataOptionsProvider, createSelectionModel, elderChipColorLevels, elderChipColorStates, elderNamedColorRoles, elderNamedColorToken, elderNamedColors, existingOrNewElderTableModel, initSearchUrlService, isActivePagedDataContext, isContinuableDataContext, isContinuableDataSource, isDataContext, isDataSource, isDataViewMessageType, isElderEntityValueAccessor, isElderMultiEntityValueAccessor, isListDataSource, isLocalListDataSource, isPagedDataSource, lazySample, lazySampleTime, naturalValueComparator, newElderTableModel, proxyControlContainer, registerLocale, runInZone, themeInit };
|
|
17857
17857
|
export type { ChipAvatarSpec, ChipColorSpec, ComparatorFn, ConfirmDeleteOptions, CountryPhoneFormat, CurrencyIndication, DataViewMessageType, ElderActivationOptions, ElderApplyControlFn, ElderAutoActivateItem, ElderAutoActivationMode, ElderDataViewInteractionMode, ElderLocalizedInputOptions, ElderMasterDetailMode, ElderNamedColor, ElderNamedColorRole, ElderSize, ElderToolbarContentSlot, EventSourceRequestInit, ExceptionDetail, Focusable, GenericMatcherOptions, IAuditedEntity, IContinuableDataSource, IContinuationFetcher, IDataContext, IDataContextActivePage, IDataContextContinuable, IDataSource, IElderDataView, IElderDetailDialogOptions, IElderEntityValueAccessor, IElderMultiEntityValueAccessor, IFileUploadClient, IFrameParams, IFrameStateType, IListDataSource, IListFetcher, IMasterDetailActivationOptions, IPageFetcher, IPagedDataSource, ISelectionModelDialogOptions, IStandardErrorDetail, ISuggestionProvider, ITranslated, ITranslatedText, ITranslationResource, IdExtractor, IncludeExcludeCycleStrategy, InputValue, IsoDateStr, IsoDurationStr, IsoIntervalStr, JsonMap, KafentConsumerEventRequest, KafentEventFilter, KafentEventRequestBase, KafentLiveEventRequest, KeyGetterFn, LanguageTag, LocalDataFilterFn, LocalDataSortFn, LocaleMap, LocalisationPicker, Localized, MatchOptions, ObservedElementDimension, PhoneData, QuantityPipeOptions, ScrollDirection, SearchInput, SelectChipSpec, SelectOptionChipSpec, ShellContentSlot, SortDirection, TextResolverFn$1 as TextResolverFn, Toast, ToastErrorDetails, ToastOptions, TrailingSpec, UnitCode, ValueSpec };
|