@nettyapps/ntybase 0.1.4 → 0.1.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/index.d.ts
CHANGED
|
@@ -122,6 +122,7 @@ declare class CommonService {
|
|
|
122
122
|
private datePipe;
|
|
123
123
|
private decimalPipe;
|
|
124
124
|
private alertService;
|
|
125
|
+
private translate;
|
|
125
126
|
protected dialog: MatDialog;
|
|
126
127
|
rightSidenavOpen: _angular_core.WritableSignal<boolean>;
|
|
127
128
|
toggleRightSidenav(open: boolean): void;
|
|
@@ -219,6 +220,7 @@ declare class CommonService {
|
|
|
219
220
|
/** User is not allowed to access the page
|
|
220
221
|
*
|
|
221
222
|
*/
|
|
223
|
+
translateService: TranslateService;
|
|
222
224
|
userNotAllowedToRead(title?: string, message?: string): Promise<void>;
|
|
223
225
|
userNotAllowedToAdd(title?: string, message?: string): Promise<void>;
|
|
224
226
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CommonService, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nettyapps/ntybase",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^20.1.7",
|
|
6
6
|
"@angular/core": "^20.1.7"
|
|
@@ -16,6 +16,12 @@
|
|
|
16
16
|
"./themes/*": {
|
|
17
17
|
"default": "./themes/*"
|
|
18
18
|
},
|
|
19
|
+
"./styles/*": {
|
|
20
|
+
"default": "./styles/*"
|
|
21
|
+
},
|
|
22
|
+
"./translations/*": {
|
|
23
|
+
"default": "./translations/*"
|
|
24
|
+
},
|
|
19
25
|
"./package.json": {
|
|
20
26
|
"default": "./package.json"
|
|
21
27
|
},
|
|
@@ -69,6 +69,9 @@
|
|
|
69
69
|
"@unsavedChangesConfirm" : "You have unsaved changes. Are you sure you want to leave?",
|
|
70
70
|
"@updateFailed" : "Update failed",
|
|
71
71
|
"@username" : "User name",
|
|
72
|
+
"@accessLimitation" : "Access accessLimitation",
|
|
73
|
+
"@userCannotAccessThisScreen":"User cannot access this screen",
|
|
74
|
+
"@userCannotAddNewRecord":"User cannot add new record",
|
|
72
75
|
"mfaCode" : "Code",
|
|
73
76
|
"mfaCode is required" : "MFA Code is required",
|
|
74
77
|
"password is required" : "Password is required",
|
|
@@ -69,6 +69,9 @@
|
|
|
69
69
|
"@unsavedChangesConfirm" : "Kaydedilmemiş değişiklikler var. Ayrılmak istediğinize emin misiniz?",
|
|
70
70
|
"@updateFailed" : "Güncelleme başarısız oldu",
|
|
71
71
|
"@username" : "Kullanıcı adı",
|
|
72
|
+
"@accessLimitation" : "Erişim limiti",
|
|
73
|
+
"@userCannotAccessThisScreen":"Kullanıcı bu ekrana erişemez",
|
|
74
|
+
"@userCannotAddNewRecord":"Kullanıcı yeni kayıt ekleyemez",
|
|
72
75
|
"mfaCode" : "Güvenlik kodu",
|
|
73
76
|
"mfaCode is required" : "Güvenlik kodu zorunludur",
|
|
74
77
|
"password is required" : "Şifre zorunludur",
|