ngx-tethys 19.1.3 → 19.1.5
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/CHANGELOG.md +18 -0
- package/date-picker/lib/date/date-table-cell.component.d.ts +1 -0
- package/fesm2022/ngx-tethys-date-picker.mjs +6 -2
- package/fesm2022/ngx-tethys-date-picker.mjs.map +1 -1
- package/fesm2022/ngx-tethys-i18n.mjs +35 -0
- package/fesm2022/ngx-tethys-i18n.mjs.map +1 -1
- package/fesm2022/ngx-tethys-notify.mjs +7 -5
- package/fesm2022/ngx-tethys-notify.mjs.map +1 -1
- package/fesm2022/ngx-tethys.mjs +1 -1
- package/fesm2022/ngx-tethys.mjs.map +1 -1
- package/i18n/i18n.d.ts +9 -1
- package/i18n/locales/de-de.d.ts +7 -0
- package/i18n/locales/en-us.d.ts +7 -0
- package/i18n/locales/ja-jp.d.ts +7 -0
- package/i18n/locales/zh-hans.d.ts +7 -0
- package/i18n/locales/zh-hant.d.ts +7 -0
- package/notify/notify.service.d.ts +3 -0
- package/package.json +1 -1
- package/schematics/version.d.ts +1 -1
- package/schematics/version.js +1 -1
package/i18n/locales/ja-jp.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import { Signal } from '@angular/core';
|
|
1
2
|
import { ThyGlobalNotifyConfig, ThyNotifyConfig } from './notify.config';
|
|
2
3
|
import { ThyNotifyRef } from './notify-ref';
|
|
3
4
|
import { ThyNotifyContainer } from './notify-container.component';
|
|
4
5
|
import { ThyAbstractMessageService } from 'ngx-tethys/message';
|
|
5
6
|
import { ComponentTypeOrTemplateRef } from 'ngx-tethys/core';
|
|
7
|
+
import { ThyNotifyLocale } from 'ngx-tethys/i18n';
|
|
6
8
|
import * as i0 from "@angular/core";
|
|
7
9
|
/**
|
|
8
10
|
* @order 20
|
|
@@ -10,6 +12,7 @@ import * as i0 from "@angular/core";
|
|
|
10
12
|
export declare class ThyNotifyService extends ThyAbstractMessageService<ThyNotifyContainer> {
|
|
11
13
|
private notifyQueue;
|
|
12
14
|
protected config: ThyGlobalNotifyConfig;
|
|
15
|
+
locale: Signal<ThyNotifyLocale>;
|
|
13
16
|
private _lastNotifyId;
|
|
14
17
|
private defaultConfig;
|
|
15
18
|
constructor();
|
package/package.json
CHANGED
package/schematics/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "19.1.
|
|
1
|
+
export declare const VERSION = "19.1.5";
|
package/schematics/version.js
CHANGED