@abp/ng.theme.shared 7.4.2 → 8.0.0-rc.1
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/esm2022/lib/adapters/date-time.adapter.mjs +44 -0
- package/esm2022/lib/adapters/date.adapter.mjs +41 -0
- package/esm2022/lib/adapters/index.mjs +4 -0
- package/esm2022/lib/adapters/time.adapter.mjs +36 -0
- package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +5 -5
- package/esm2022/lib/components/breadcrumb-items/breadcrumb-items.component.mjs +4 -4
- package/esm2022/lib/components/button/button.component.mjs +5 -5
- package/esm2022/lib/components/card/card-body.component.mjs +4 -4
- package/esm2022/lib/components/card/card-footer.component.mjs +4 -4
- package/esm2022/lib/components/card/card-header.component.mjs +4 -4
- package/esm2022/lib/components/card/card-header.directive.mjs +4 -4
- package/esm2022/lib/components/card/card-img-top.directive.mjs +4 -4
- package/esm2022/lib/components/card/card-subtitle.directive.mjs +4 -4
- package/esm2022/lib/components/card/card-title.directive.mjs +4 -4
- package/esm2022/lib/components/card/card.component.mjs +4 -4
- package/esm2022/lib/components/card/card.module.mjs +5 -5
- package/esm2022/lib/components/checkbox/checkbox.component.mjs +8 -8
- package/esm2022/lib/components/confirmation/confirmation.component.mjs +6 -6
- package/esm2022/lib/components/form-input/form-input.component.mjs +8 -8
- package/esm2022/lib/components/http-error-wrapper/http-error-wrapper.component.mjs +5 -5
- package/esm2022/lib/components/internet-connection-status/internet-connection-status.component.mjs +4 -4
- package/esm2022/lib/components/loader-bar/loader-bar.component.mjs +5 -5
- package/esm2022/lib/components/loading/loading.component.mjs +4 -4
- package/esm2022/lib/components/modal/modal-close.directive.mjs +6 -6
- package/esm2022/lib/components/modal/modal-ref.service.mjs +4 -4
- package/esm2022/lib/components/modal/modal.component.mjs +6 -6
- package/esm2022/lib/components/password/password.component.mjs +14 -13
- package/esm2022/lib/components/toast/toast.component.mjs +4 -4
- package/esm2022/lib/components/toast-container/toast-container.component.mjs +4 -4
- package/esm2022/lib/directives/disabled.directive.mjs +30 -0
- package/esm2022/lib/directives/ellipsis.directive.mjs +7 -18
- package/esm2022/lib/directives/index.mjs +2 -1
- package/esm2022/lib/directives/loading.directive.mjs +5 -5
- package/esm2022/lib/directives/ngx-datatable-default.directive.mjs +7 -6
- package/esm2022/lib/directives/ngx-datatable-list.directive.mjs +7 -6
- package/esm2022/lib/directives/visible.directive.mjs +6 -5
- package/esm2022/lib/handlers/document-dir.handler.mjs +5 -5
- package/esm2022/lib/handlers/error.handler.mjs +5 -5
- package/esm2022/lib/models/nav-item.mjs +1 -1
- package/esm2022/lib/services/abp-format-error-handler.service.mjs +4 -4
- package/esm2022/lib/services/confirmation.service.mjs +5 -5
- package/esm2022/lib/services/create-error-component.service.mjs +5 -5
- package/esm2022/lib/services/nav-items.service.mjs +4 -4
- package/esm2022/lib/services/page-alert.service.mjs +5 -5
- package/esm2022/lib/services/router-error-handler.service.mjs +4 -4
- package/esm2022/lib/services/status-code-error-handler.service.mjs +4 -4
- package/esm2022/lib/services/tenant-resolve-error-handler.service.mjs +4 -4
- package/esm2022/lib/services/toaster.service.mjs +5 -5
- package/esm2022/lib/services/unknown-status-code-error-handler.service.mjs +4 -4
- package/esm2022/lib/services/user-menu.service.mjs +4 -4
- package/esm2022/lib/theme-shared.module.mjs +35 -32
- package/esm2022/lib/utils/date-parser-formatter.mjs +6 -6
- package/esm2022/public-api.mjs +2 -1
- package/esm2022/testing/lib/theme-shared-testing.module.mjs +5 -5
- package/fesm2022/abp-ng.theme.shared-testing.mjs +4 -4
- package/fesm2022/abp-ng.theme.shared-testing.mjs.map +1 -1
- package/fesm2022/abp-ng.theme.shared.mjs +352 -220
- package/fesm2022/abp-ng.theme.shared.mjs.map +1 -1
- package/lib/adapters/index.d.ts +3 -0
- package/lib/components/checkbox/checkbox.component.d.ts +1 -2
- package/lib/components/form-input/form-input.component.d.ts +1 -2
- package/lib/components/password/password.component.d.ts +5 -3
- package/{extensions/lib → lib}/directives/disabled.directive.d.ts +1 -1
- package/lib/directives/ellipsis.directive.d.ts +1 -6
- package/lib/directives/index.d.ts +1 -0
- package/lib/directives/ngx-datatable-default.directive.d.ts +1 -1
- package/lib/directives/ngx-datatable-list.directive.d.ts +1 -1
- package/lib/directives/visible.directive.d.ts +1 -1
- package/lib/services/page-alert.service.d.ts +0 -1
- package/lib/theme-shared.module.d.ts +17 -16
- package/package.json +3 -9
- package/public-api.d.ts +1 -0
- package/esm2022/extensions/abp-ng.theme.shared-extensions.mjs +0 -5
- package/esm2022/extensions/lib/adapters/date-time.adapter.mjs +0 -44
- package/esm2022/extensions/lib/adapters/date.adapter.mjs +0 -41
- package/esm2022/extensions/lib/adapters/time.adapter.mjs +0 -36
- package/esm2022/extensions/lib/components/abstract-actions/abstract-actions.component.mjs +0 -25
- package/esm2022/extensions/lib/components/date-time-picker/date-time-picker.component.mjs +0 -109
- package/esm2022/extensions/lib/components/extensible-form/extensible-form-prop.component.mjs +0 -198
- package/esm2022/extensions/lib/components/extensible-form/extensible-form.component.mjs +0 -73
- package/esm2022/extensions/lib/components/extensible-table/extensible-table.component.mjs +0 -139
- package/esm2022/extensions/lib/components/grid-actions/grid-actions.component.mjs +0 -39
- package/esm2022/extensions/lib/components/page-toolbar/page-toolbar.component.mjs +0 -38
- package/esm2022/extensions/lib/constants/extra-properties.mjs +0 -2
- package/esm2022/extensions/lib/directives/disabled.directive.mjs +0 -29
- package/esm2022/extensions/lib/directives/prop-data.directive.mjs +0 -41
- package/esm2022/extensions/lib/enums/components.mjs +0 -2
- package/esm2022/extensions/lib/enums/props.enum.mjs +0 -2
- package/esm2022/extensions/lib/models/actions.mjs +0 -48
- package/esm2022/extensions/lib/models/entity-actions.mjs +0 -31
- package/esm2022/extensions/lib/models/entity-props.mjs +0 -44
- package/esm2022/extensions/lib/models/form-props.mjs +0 -76
- package/esm2022/extensions/lib/models/internal/object-extensions.mjs +0 -2
- package/esm2022/extensions/lib/models/object-extensions.mjs +0 -3
- package/esm2022/extensions/lib/models/props.mjs +0 -54
- package/esm2022/extensions/lib/models/toolbar-actions.mjs +0 -44
- package/esm2022/extensions/lib/pipes/create-injector.pipe.mjs +0 -36
- package/esm2022/extensions/lib/services/extensions.service.mjs +0 -24
- package/esm2022/extensions/lib/tokens/extensible-form-view-provider.token.mjs +0 -3
- package/esm2022/extensions/lib/tokens/extensions.token.mjs +0 -12
- package/esm2022/extensions/lib/ui-extensions.module.mjs +0 -98
- package/esm2022/extensions/lib/utils/actions.util.mjs +0 -9
- package/esm2022/extensions/lib/utils/enum.util.mjs +0 -42
- package/esm2022/extensions/lib/utils/factory.util.mjs +0 -4
- package/esm2022/extensions/lib/utils/form-props.util.mjs +0 -51
- package/esm2022/extensions/lib/utils/localization.util.mjs +0 -13
- package/esm2022/extensions/lib/utils/props.util.mjs +0 -14
- package/esm2022/extensions/lib/utils/state.util.mjs +0 -126
- package/esm2022/extensions/lib/utils/typeahead.util.mjs +0 -52
- package/esm2022/extensions/lib/utils/validation.util.mjs +0 -11
- package/esm2022/extensions/public-api.mjs +0 -31
- package/extensions/index.d.ts +0 -5
- package/extensions/lib/components/abstract-actions/abstract-actions.component.d.ts +0 -12
- package/extensions/lib/components/date-time-picker/date-time-picker.component.d.ts +0 -16
- package/extensions/lib/components/extensible-form/extensible-form-prop.component.d.ts +0 -43
- package/extensions/lib/components/extensible-form/extensible-form.component.d.ts +0 -25
- package/extensions/lib/components/extensible-table/extensible-table.component.d.ts +0 -38
- package/extensions/lib/components/grid-actions/grid-actions.component.d.ts +0 -13
- package/extensions/lib/components/page-toolbar/page-toolbar.component.d.ts +0 -20
- package/extensions/lib/constants/extra-properties.d.ts +0 -1
- package/extensions/lib/directives/prop-data.directive.d.ts +0 -19
- package/extensions/lib/enums/components.d.ts +0 -3
- package/extensions/lib/enums/props.enum.d.ts +0 -16
- package/extensions/lib/models/actions.d.ts +0 -38
- package/extensions/lib/models/entity-actions.d.ts +0 -24
- package/extensions/lib/models/entity-props.d.ts +0 -30
- package/extensions/lib/models/form-props.d.ts +0 -59
- package/extensions/lib/models/internal/object-extensions.d.ts +0 -86
- package/extensions/lib/models/object-extensions.d.ts +0 -2
- package/extensions/lib/models/props.d.ts +0 -45
- package/extensions/lib/models/toolbar-actions.d.ts +0 -38
- package/extensions/lib/pipes/create-injector.pipe.d.ts +0 -8
- package/extensions/lib/services/extensions.service.d.ts +0 -14
- package/extensions/lib/tokens/extensible-form-view-provider.token.d.ts +0 -5
- package/extensions/lib/tokens/extensions.token.d.ts +0 -20
- package/extensions/lib/ui-extensions.module.d.ts +0 -24
- package/extensions/lib/utils/actions.util.d.ts +0 -7
- package/extensions/lib/utils/enum.util.d.ts +0 -7
- package/extensions/lib/utils/factory.util.d.ts +0 -1
- package/extensions/lib/utils/form-props.util.d.ts +0 -3
- package/extensions/lib/utils/localization.util.d.ts +0 -3
- package/extensions/lib/utils/props.util.d.ts +0 -9
- package/extensions/lib/utils/state.util.d.ts +0 -5
- package/extensions/lib/utils/typeahead.util.d.ts +0 -11
- package/extensions/lib/utils/validation.util.d.ts +0 -3
- package/extensions/public-api.d.ts +0 -30
- package/fesm2022/abp-ng.theme.shared-extensions.mjs +0 -1474
- package/fesm2022/abp-ng.theme.shared-extensions.mjs.map +0 -1
- /package/{extensions/lib → lib}/adapters/date-time.adapter.d.ts +0 -0
- /package/{extensions/lib → lib}/adapters/date.adapter.d.ts +0 -0
- /package/{extensions/lib → lib}/adapters/time.adapter.d.ts +0 -0
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { EntityActionsFactory } from '../models/entity-actions';
|
|
2
|
-
import { EntityPropsFactory } from '../models/entity-props';
|
|
3
|
-
import { CreateFormPropsFactory, EditFormPropsFactory } from '../models/form-props';
|
|
4
|
-
import { ToolbarActionsFactory } from '../models/toolbar-actions';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class ExtensionsService<R = any> {
|
|
7
|
-
readonly entityActions: EntityActionsFactory<R>;
|
|
8
|
-
readonly toolbarActions: ToolbarActionsFactory<R[]>;
|
|
9
|
-
readonly entityProps: EntityPropsFactory<R>;
|
|
10
|
-
readonly createFormProps: CreateFormPropsFactory<R>;
|
|
11
|
-
readonly editFormProps: EditFormPropsFactory<R>;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ExtensionsService<any>, never>;
|
|
13
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ExtensionsService<any>>;
|
|
14
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { InjectionToken } from '@angular/core';
|
|
2
|
-
import { ActionCallback, ReadonlyActionData as ActionData } from '../models/actions';
|
|
3
|
-
import { ExtensionsService } from '../services/extensions.service';
|
|
4
|
-
import { Observable } from 'rxjs';
|
|
5
|
-
import { ePropType } from '../enums/props.enum';
|
|
6
|
-
import { FormProp } from '../models/form-props';
|
|
7
|
-
export declare const EXTENSIONS_IDENTIFIER: InjectionToken<string>;
|
|
8
|
-
export type ActionKeys = Extract<'entityActions' | 'toolbarActions', keyof ExtensionsService>;
|
|
9
|
-
export declare const EXTENSIONS_ACTION_TYPE: InjectionToken<ActionKeys>;
|
|
10
|
-
export declare const EXTENSIONS_ACTION_DATA: InjectionToken<ActionData>;
|
|
11
|
-
export declare const EXTENSIONS_ACTION_CALLBACK: InjectionToken<ActionCallback<unknown>>;
|
|
12
|
-
export declare const PROP_DATA_STREAM: InjectionToken<Observable<any>>;
|
|
13
|
-
type EntityPropTypeClassMap = {
|
|
14
|
-
[key in ePropType]: string;
|
|
15
|
-
};
|
|
16
|
-
export type EntityPropTypeClass = Partial<EntityPropTypeClassMap>;
|
|
17
|
-
export declare const ENTITY_PROP_TYPE_CLASSES: InjectionToken<Partial<EntityPropTypeClassMap>>;
|
|
18
|
-
export declare const EXTENSIONS_FORM_PROP: InjectionToken<FormProp<any>>;
|
|
19
|
-
export declare const EXTENSIONS_FORM_PROP_DATA: InjectionToken<unknown>;
|
|
20
|
-
export {};
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./components/date-time-picker/date-time-picker.component";
|
|
3
|
-
import * as i2 from "./components/page-toolbar/page-toolbar.component";
|
|
4
|
-
import * as i3 from "./components/grid-actions/grid-actions.component";
|
|
5
|
-
import * as i4 from "./components/extensible-form/extensible-form-prop.component";
|
|
6
|
-
import * as i5 from "./components/extensible-form/extensible-form.component";
|
|
7
|
-
import * as i6 from "./components/extensible-table/extensible-table.component";
|
|
8
|
-
import * as i7 from "./directives/prop-data.directive";
|
|
9
|
-
import * as i8 from "./directives/disabled.directive";
|
|
10
|
-
import * as i9 from "./pipes/create-injector.pipe";
|
|
11
|
-
import * as i10 from "@abp/ng.core";
|
|
12
|
-
import * as i11 from "@abp/ng.theme.shared";
|
|
13
|
-
import * as i12 from "@ngx-validate/core";
|
|
14
|
-
import * as i13 from "@ng-bootstrap/ng-bootstrap";
|
|
15
|
-
export declare class BaseUiExtensionsModule {
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BaseUiExtensionsModule, never>;
|
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BaseUiExtensionsModule, [typeof i1.DateTimePickerComponent, typeof i2.PageToolbarComponent, typeof i3.GridActionsComponent, typeof i4.ExtensibleFormPropComponent, typeof i5.ExtensibleFormComponent, typeof i6.ExtensibleTableComponent, typeof i7.PropDataDirective, typeof i8.DisabledDirective, typeof i9.CreateInjectorPipe], [typeof i10.CoreModule, typeof i11.ThemeSharedModule, typeof i12.NgxValidateCoreModule, typeof i13.NgbDatepickerModule, typeof i13.NgbDropdownModule, typeof i13.NgbTimepickerModule, typeof i13.NgbTypeaheadModule, typeof i13.NgbTooltipModule], [typeof i1.DateTimePickerComponent, typeof i2.PageToolbarComponent, typeof i3.GridActionsComponent, typeof i5.ExtensibleFormComponent, typeof i6.ExtensibleTableComponent, typeof i7.PropDataDirective, typeof i8.DisabledDirective, typeof i9.CreateInjectorPipe]>;
|
|
18
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<BaseUiExtensionsModule>;
|
|
19
|
-
}
|
|
20
|
-
export declare class UiExtensionsModule {
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UiExtensionsModule, never>;
|
|
22
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<UiExtensionsModule, never, [typeof BaseUiExtensionsModule], [typeof BaseUiExtensionsModule]>;
|
|
23
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<UiExtensionsModule>;
|
|
24
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { ActionsFactory } from "../models/actions";
|
|
2
|
-
import { EntityActionContributorCallbacks, EntityActionDefaults, EntityActionsFactory } from '../models/entity-actions';
|
|
3
|
-
import { ToolbarActionContributorCallbacks, ToolbarActionDefaults, ToolbarActionsFactory } from '../models/toolbar-actions';
|
|
4
|
-
export declare function mergeWithDefaultActions<F extends ActionsFactory<any>>(extension: F, defaultActions: InferredActionDefaults<F>, ...contributors: InferredActionContributorCallbacks<F>[]): void;
|
|
5
|
-
type InferredActionDefaults<F> = F extends EntityActionsFactory<infer RE> ? EntityActionDefaults<RE> : F extends ToolbarActionsFactory<infer RT> ? ToolbarActionDefaults<RT> : never;
|
|
6
|
-
type InferredActionContributorCallbacks<F> = F extends EntityActionsFactory<infer RE> ? EntityActionContributorCallbacks<RE> : F extends ToolbarActionsFactory<infer RT> ? ToolbarActionContributorCallbacks<RT> : never;
|
|
7
|
-
export {};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { ABP, ExtensionEnumFieldDto } from '@abp/ng.core';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { ObjectExtensions } from '../models/object-extensions';
|
|
4
|
-
import { PropCallback } from '../models/props';
|
|
5
|
-
export declare function createEnum(members: ExtensionEnumFieldDto[]): any;
|
|
6
|
-
export declare function createEnumValueResolver<T = any>(enumType: string, lookupEnum: ObjectExtensions.ExtensionEnumDto, propName: string): PropCallback<T, Observable<string>>;
|
|
7
|
-
export declare function createEnumOptions<T = any>(enumType: string, lookupEnum: ObjectExtensions.ExtensionEnumDto): PropCallback<T, Observable<ABP.Option<any>[]>>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function selfFactory(dependency?: any): any;
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import { ApplicationLocalizationConfigurationDto } from '@abp/ng.core';
|
|
2
|
-
import { ObjectExtensions } from '../models/object-extensions';
|
|
3
|
-
export declare function createDisplayNameLocalizationPipeKeyGenerator(localization: ApplicationLocalizationConfigurationDto): (displayName: ObjectExtensions.LocalizableStringDto, fallback: ObjectExtensions.LocalizableStringDto) => string;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Observable } from 'rxjs';
|
|
2
|
-
import { EntityPropContributorCallbacks, EntityPropDefaults, EntityPropsFactory } from '../models/entity-props';
|
|
3
|
-
import { CreateFormPropContributorCallbacks, CreateFormPropDefaults, CreateFormPropsFactory, EditFormPropContributorCallbacks, EditFormPropDefaults, EditFormPropsFactory } from '../models/form-props';
|
|
4
|
-
import { PropCallback, PropsFactory } from '../models/props';
|
|
5
|
-
export declare function createExtraPropertyValueResolver<T>(name: string): PropCallback<T, Observable<any>>;
|
|
6
|
-
export declare function mergeWithDefaultProps<F extends PropsFactory<any>>(extension: F, defaultProps: InferredPropDefaults<F>, ...contributors: InferredPropContributorCallbacks<F>[]): void;
|
|
7
|
-
type InferredPropDefaults<F> = F extends EntityPropsFactory<infer RE> ? EntityPropDefaults<RE> : F extends CreateFormPropsFactory<infer RCF> ? CreateFormPropDefaults<RCF> : F extends EditFormPropsFactory<infer REF> ? EditFormPropDefaults<REF> : never;
|
|
8
|
-
type InferredPropContributorCallbacks<F> = F extends EntityPropsFactory<infer RE> ? EntityPropContributorCallbacks<RE> : F extends CreateFormPropsFactory<infer RCF> ? CreateFormPropContributorCallbacks<RCF> : F extends EditFormPropsFactory<infer REF> ? EditFormPropContributorCallbacks<REF> : never;
|
|
9
|
-
export {};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { ConfigStateService } from '@abp/ng.core';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { ObjectExtensions } from '../models/object-extensions';
|
|
4
|
-
export declare function getObjectExtensionEntitiesFromStore(configState: ConfigStateService, moduleKey: string): Observable<ObjectExtensions.EntityExtensions>;
|
|
5
|
-
export declare function mapEntitiesToContributors<T = any>(configState: ConfigStateService, resource: string): import("rxjs").UnaryFunction<Observable<any>, Observable<ObjectExtensions.PropContributors<any>>>;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { ABP, ExtensionPropertyUiLookupDto } from '@abp/ng.core';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { ePropType } from '../enums/props.enum';
|
|
4
|
-
import { ObjectExtensions } from '../models/object-extensions';
|
|
5
|
-
import { PropCallback } from '../models/props';
|
|
6
|
-
export declare function createTypeaheadOptions(lookup: ExtensionPropertyUiLookupDto): PropCallback<any, Observable<ABP.Option<any>[]>>;
|
|
7
|
-
export declare function getTypeaheadType(lookup: ExtensionPropertyUiLookupDto, name: string): ePropType.Hidden | ePropType.Typeahead;
|
|
8
|
-
export declare function createTypeaheadDisplayNameGenerator(displayNameGeneratorFn: ObjectExtensions.DisplayNameGeneratorFn, properties: ObjectExtensions.EntityExtensionProperties): ObjectExtensions.DisplayNameGeneratorFn;
|
|
9
|
-
export declare function addTypeaheadTextSuffix(name: string): string;
|
|
10
|
-
export declare function hasTypeaheadTextSuffix(name: string): boolean;
|
|
11
|
-
export declare function removeTypeaheadTextSuffix(name: string): string;
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
export * from './lib/adapters/date-time.adapter';
|
|
2
|
-
export * from './lib/adapters/date.adapter';
|
|
3
|
-
export * from './lib/adapters/time.adapter';
|
|
4
|
-
export * from './lib/components/date-time-picker/date-time-picker.component';
|
|
5
|
-
export * from './lib/components/extensible-form/extensible-form-prop.component';
|
|
6
|
-
export * from './lib/components/extensible-form/extensible-form.component';
|
|
7
|
-
export * from './lib/components/extensible-table/extensible-table.component';
|
|
8
|
-
export * from './lib/components/grid-actions/grid-actions.component';
|
|
9
|
-
export * from './lib/components/page-toolbar/page-toolbar.component';
|
|
10
|
-
export * from './lib/constants/extra-properties';
|
|
11
|
-
export * from './lib/directives/disabled.directive';
|
|
12
|
-
export * from './lib/directives/prop-data.directive';
|
|
13
|
-
export * from './lib/enums/props.enum';
|
|
14
|
-
export * from './lib/enums/components';
|
|
15
|
-
export { ActionCallback, ActionList, ActionPredicate, ReadonlyActionData as ActionData, } from './lib/models/actions';
|
|
16
|
-
export { EntityAction, EntityActionContributorCallback, EntityActionList, EntityActionOptions, EntityActions, EntityActionsFactory, } from './lib/models/entity-actions';
|
|
17
|
-
export { EntityProp, EntityPropContributorCallback, EntityPropList, EntityPropOptions, EntityProps, EntityPropsFactory, } from './lib/models/entity-props';
|
|
18
|
-
export { CreateFormPropContributorCallback, CreateFormPropsFactory, EditFormPropContributorCallback, EditFormPropsFactory, FormProp, FormPropData, FormPropList, FormPropOptions, FormProps, } from './lib/models/form-props';
|
|
19
|
-
export * from './lib/models/object-extensions';
|
|
20
|
-
export { PropCallback, PropList, PropPredicate, ReadonlyPropData as PropData, } from './lib/models/props';
|
|
21
|
-
export { ToolbarAction, ToolbarActionContributorCallback, ToolbarActionList, ToolbarActionOptions, ToolbarActions, ToolbarActionsFactory, ToolbarComponent, ToolbarComponentOptions, } from './lib/models/toolbar-actions';
|
|
22
|
-
export * from './lib/pipes/create-injector.pipe';
|
|
23
|
-
export * from './lib/services/extensions.service';
|
|
24
|
-
export * from './lib/tokens/extensions.token';
|
|
25
|
-
export * from './lib/tokens/extensible-form-view-provider.token';
|
|
26
|
-
export * from './lib/ui-extensions.module';
|
|
27
|
-
export * from './lib/utils/actions.util';
|
|
28
|
-
export * from './lib/utils/form-props.util';
|
|
29
|
-
export * from './lib/utils/props.util';
|
|
30
|
-
export * from './lib/utils/state.util';
|