nuxeo-development-framework 3.8.4 → 3.8.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.
@@ -1,8 +1,11 @@
1
1
  export * from './components';
2
- export * from './constants';
2
+ export * from './constants/date';
3
+ export * from './constants/pagination';
4
+ export * from './constants/panel';
5
+ export * from './constants/status';
3
6
  export * from './containers';
7
+ export * from './directives/button.directive';
8
+ export * from './directives/notification.directive';
4
9
  export * from './models';
5
10
  export * from './notifications.module';
6
- export * from './services';
7
- export * from './directives/notification.directive';
8
- export * from './directives/button.directive';
11
+ export * from './services/notifications.service';
@@ -1,12 +1,13 @@
1
- import { TranslateService } from '@ngx-translate/core';
2
- import { Observable } from 'rxjs';
3
- import { LocalStoragService } from '../localStorag/local-storag.service';
1
+ import { TranslateService } from "@ngx-translate/core";
2
+ import { Observable } from "rxjs";
3
+ import { LocalStoragService } from "../localStorag/local-storag.service";
4
4
  import * as i0 from "@angular/core";
5
5
  export declare enum UserPreferenceValues {
6
6
  Locale = "locale",
7
7
  ExpandedSideNavStatus = "expandedSidenav"
8
8
  }
9
9
  export declare class UserPreferencesService {
10
+ #private;
10
11
  translate: TranslateService;
11
12
  private storage;
12
13
  defaults: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxeo-development-framework",
3
- "version": "3.8.4",
3
+ "version": "3.8.6",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "12.2.3",
6
6
  "@angular/common": "12.2.3",
package/public-api.d.ts CHANGED
@@ -203,6 +203,7 @@ export * from './lib/core/services/translation/translate-loader.service';
203
203
  export * from './lib/core/services/translation/translation.service';
204
204
  export * from './lib/core/services/user/user-preferences.service';
205
205
  export * from './lib/core/utilities/moment-date-adapter';
206
+ export * from './lib/core/utilities/utility.service';
206
207
  export * from './lib/pipes/file-size.pipe';
207
208
  export * from './lib/pipes/hijri-date.pipe';
208
209
  export * from './lib/pipes/localized-date.pipe';