@eo-sdk/client 9.0.0-rc.4 → 9.0.0-rc.6
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/app/eo-client/settings/settings.component.d.ts +34 -4
- package/app/eo-framework/app-shell/app-bar/app-bar.component.d.ts +3 -1
- package/app/eo-framework/form-elements/form-input/input-focus/input-focus.directive.d.ts +1 -0
- package/app/eo-framework/grid/column-configurator/column-configurator.component.d.ts +2 -0
- package/app/eo-framework/grid/extensions/filter/setFilters/set-filter.component.d.ts +1 -0
- package/app/eo-framework-core/api/grid.service.d.ts +8 -2
- package/assets/_default/config/main.json +1 -7
- package/assets/_default/i18n/de.json +17 -6
- package/assets/_default/i18n/en.json +17 -6
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js +73 -28
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js.map +1 -1
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js +2 -2
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js.map +1 -1
- package/bundles/eo-sdk-client.umd.js +260 -94
- package/bundles/eo-sdk-client.umd.js.map +1 -1
- package/bundles/eo-sdk-client.umd.min.js +1 -1
- package/bundles/eo-sdk-client.umd.min.js.map +1 -1
- package/eo-sdk-client.d.ts +11 -10
- package/eo-sdk-client.metadata.json +1 -1
- package/esm2015/app/eo-client/about-state/about-state.component.js +3 -3
- package/esm2015/app/eo-client/settings/settings.component.js +118 -10
- package/esm2015/app/eo-framework/app-shell/app-bar/app-bar.component.js +11 -4
- package/esm2015/app/eo-framework/form-elements/form-input/form-input.component.js +2 -2
- package/esm2015/app/eo-framework/form-elements/form-input/input-focus/input-focus.directive.js +7 -3
- package/esm2015/app/eo-framework/grid/column-configurator/column-configurator.component.js +31 -6
- package/esm2015/app/eo-framework/grid/extensions/filter/setFilters/set-filter.component.js +4 -2
- package/esm2015/app/eo-framework/grid/extensions/filter/text/text-filter.component.js +2 -3
- package/esm2015/app/eo-framework/grid/filters/list-filter.component.js +2 -2
- package/esm2015/app/eo-framework/inbox-details/inbox-details.component.js +5 -1
- package/esm2015/app/eo-framework/object-details/object-history/object-history.component.js +4 -3
- package/esm2015/app/eo-framework/object-form/object-form/form-element/form-element.component.js +2 -2
- package/esm2015/app/eo-framework/result-list/result-list.component.js +3 -3
- package/esm2015/app/eo-framework/ui/eo-dialog/eo-dialog.component.js +2 -2
- package/esm2015/app/eo-framework/ui/ui.module.js +4 -2
- package/esm2015/app/eo-framework/ui/user-avatar/user-avatar.component.js +3 -2
- package/esm2015/app/eo-framework-core/api/grid.service.js +11 -5
- package/esm2015/app/eo-framework-core/api/plugins.service.js +2 -1
- package/esm2015/eo-sdk-client.js +12 -11
- package/esm2015/projects/eo-sdk/core/lib/service/auth/auth.service.js +5 -5
- package/esm2015/projects/eo-sdk/core/lib/service/backend/backend.service.js +21 -14
- package/esm2015/projects/eo-sdk/core/lib/service/config/config.service.js +22 -4
- package/esm2015/projects/eo-sdk/core/lib/service/events/events.js +3 -2
- package/esm2015/projects/eo-sdk/core/lib/service/search/search-query.model.js +5 -4
- package/esm2015/projects/eo-sdk/core/lib/service/search/search.service.js +7 -3
- package/esm2015/projects/eo-sdk/core/lib/service/user/user.service.js +17 -3
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js +72 -28
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js.map +1 -1
- package/fesm2015/eo-sdk-client.js +239 -80
- package/fesm2015/eo-sdk-client.js.map +1 -1
- package/package.json +2 -2
- package/projects/eo-sdk/core/eo-sdk-client-projects-eo-sdk-core.metadata.json +1 -1
- package/projects/eo-sdk/core/lib/service/backend/backend.service.d.ts +2 -0
- package/projects/eo-sdk/core/lib/service/config/config.service.d.ts +5 -0
- package/projects/eo-sdk/core/lib/service/events/events.d.ts +1 -0
- package/projects/eo-sdk/core/lib/service/search/search-query.model.d.ts +8 -1
- package/projects/eo-sdk/core/lib/service/user/user.service.d.ts +10 -1
- package/projects/eo-sdk/core/package.json +1 -1
- package/scss/_form.scss +2 -2
- package/styles.css +1 -1
package/eo-sdk-client.d.ts
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
* Generated bundle index. Do not edit.
|
|
3
3
|
*/
|
|
4
4
|
export * from './public_api';
|
|
5
|
-
export { EoClientRoutingModule as
|
|
6
|
-
export { InboxStateRoutingModule as
|
|
7
|
-
export { ObjectStateRoutingModule as
|
|
8
|
-
export { PrepareStateRoutingModule as
|
|
9
|
-
export { ProcessStateComponent as
|
|
5
|
+
export { EoClientRoutingModule as ɵcs } from './app/eo-client/eo-client-routing.module';
|
|
6
|
+
export { InboxStateRoutingModule as ɵcq } from './app/eo-client/inbox-state/inbox-state-routing.module';
|
|
7
|
+
export { ObjectStateRoutingModule as ɵcp } from './app/eo-client/object-state/object-state-routing.module';
|
|
8
|
+
export { PrepareStateRoutingModule as ɵcr } from './app/eo-client/prepare-state/prepare-state-routing.module';
|
|
9
|
+
export { ProcessStateComponent as ɵct } from './app/eo-client/process-state/process-state.component';
|
|
10
10
|
export { PendingChangesGuard as ɵa } from './app/eo-framework-core/pending-changes/pending-changes-guard.service';
|
|
11
11
|
export { PipesModule as ɵe } from './app/eo-framework-core/pipes/pipes.module';
|
|
12
12
|
export { ActionComponentAnchorDirective as ɵv } from './app/eo-framework/actions/action-menu/action-component-anchor/action-component-anchor.directive';
|
|
@@ -59,17 +59,18 @@ export { ReferenceFinderService as ɵo } from './app/eo-framework/form-elements/
|
|
|
59
59
|
export { PaginationComponent as ɵs } from './app/eo-framework/grid/extensions/pagination/pagination.component';
|
|
60
60
|
export { DynamicListFilterComponent as ɵq } from './app/eo-framework/grid/filters/dynamic-list-filter.component';
|
|
61
61
|
export { ListFilterComponent as ɵr } from './app/eo-framework/grid/filters/list-filter.component';
|
|
62
|
-
export { DuetimeInfoComponent as
|
|
63
|
-
export { EditIconComponent as
|
|
64
|
-
export { PrepareContentExistsInfoComponent as
|
|
62
|
+
export { DuetimeInfoComponent as ɵcm } from './app/eo-framework/inbox-details/duetimeInfo/duetimeInfo.component';
|
|
63
|
+
export { EditIconComponent as ɵcl } from './app/eo-framework/object-details/edit-icon/edit-icon.component';
|
|
64
|
+
export { PrepareContentExistsInfoComponent as ɵcn } from './app/eo-framework/prepare-details/prepare-content-exists-info/prepare-content-exists-info.component';
|
|
65
65
|
export { ProcessFormComponent as ɵu } from './app/eo-framework/process-form/process-form.component';
|
|
66
66
|
export { ProcessFormModule as ɵt } from './app/eo-framework/process-form/process-form.module';
|
|
67
|
-
export { StoredQueryModule as
|
|
67
|
+
export { StoredQueryModule as ɵco } from './app/eo-framework/stored-query';
|
|
68
68
|
export { TreeNodeComponent as ɵj } from './app/eo-framework/tree/tree-node/tree-node.component';
|
|
69
|
+
export { UserAvatarComponent as ɵcj } from './app/eo-framework/ui';
|
|
69
70
|
export { IndexdataSummaryEntryComponent as ɵh } from './app/eo-framework/ui/indexdata-summary/indexdata-summary-entry/indexdata-summary-entry.component';
|
|
70
71
|
export { QueryScopeSelectComponent as ɵg } from './app/eo-framework/ui/query-scope-select/query-scope-select.component';
|
|
71
72
|
export { UploadOverlayGuard as ɵb } from './app/eo-framework/upload-overlay/upload-overlay-guard.service';
|
|
72
73
|
export { UnsubscribeOnDestroy as ɵf } from './app/eo-framework/util';
|
|
73
74
|
export { PreventDoubleClickDirective as ɵci } from './app/eo-framework/util/directive/prevent-double-click.directive';
|
|
74
|
-
export { TrapFocusDirective as
|
|
75
|
+
export { TrapFocusDirective as ɵck } from './app/eo-framework/util/directive/trap-focus.directive';
|
|
75
76
|
export { OrderByPipe as ɵi } from './app/eo-framework/util/sortable/order-by.pipe';
|