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.
- package/bundles/nuxeo-development-framework.umd.js +47 -29
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/notifications/public-api.js +8 -5
- package/esm2015/lib/core/services/user/user-preferences.service.js +36 -18
- package/esm2015/public-api.js +2 -1
- package/fesm2015/nuxeo-development-framework.js +39 -22
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/notifications/public-api.d.ts +7 -4
- package/lib/core/services/user/user-preferences.service.d.ts +4 -3
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -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
|
|
2
|
-
import { Observable } from
|
|
3
|
-
import { LocalStoragService } from
|
|
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
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';
|