@nettyapps/ntybase 21.0.16 → 21.0.18
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/fesm2022/{nettyapps-ntybase-en-USbase-BVtoVBU3.mjs → nettyapps-ntybase-en-USbase-BiAVQmCh.mjs} +4 -2
- package/fesm2022/{nettyapps-ntybase-en-USbase-BVtoVBU3.mjs.map → nettyapps-ntybase-en-USbase-BiAVQmCh.mjs.map} +1 -1
- package/fesm2022/{nettyapps-ntybase-tr-TRbase-BPeaVYNs.mjs → nettyapps-ntybase-tr-TRbase-DsdNRueU.mjs} +4 -2
- package/fesm2022/{nettyapps-ntybase-tr-TRbase-BPeaVYNs.mjs.map → nettyapps-ntybase-tr-TRbase-DsdNRueU.mjs.map} +1 -1
- package/fesm2022/nettyapps-ntybase.mjs +20 -3
- package/fesm2022/nettyapps-ntybase.mjs.map +1 -1
- package/package.json +4 -2
- package/translations/en-USbase.json +3 -1
- package/translations/tr-TRbase.json +3 -1
- package/types/nettyapps-ntybase.d.ts +3 -0
package/package.json
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nettyapps/ntybase",
|
|
3
|
-
"version": "21.0.
|
|
3
|
+
"version": "21.0.18",
|
|
4
4
|
"description": "This library provides foundational services and components for NettyApps Angular applications.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
8
|
"peerDependencies": {
|
|
9
9
|
"@angular/common": ">= 21.0.0",
|
|
10
|
-
"@angular/core": ">= 21.0.0"
|
|
10
|
+
"@angular/core": ">= 21.0.0",
|
|
11
|
+
"@nettyapps/ntycontract": ">= 21.0.3",
|
|
12
|
+
"@nettyapps/ntyui": ">= 21.0.7"
|
|
11
13
|
},
|
|
12
14
|
"dependencies": {
|
|
13
15
|
"tslib": "^2.3.0"
|
|
@@ -257,5 +257,7 @@
|
|
|
257
257
|
"@defaultFilterActive": "Default Filter Active - Switch to Custom",
|
|
258
258
|
"@customFilterModeEnabled": "Custom Filter Mode Enabled",
|
|
259
259
|
"@defaultFilterModeEnabled": "Default Filter Mode Enabled",
|
|
260
|
-
"@invalidFormat": "Invalid Format"
|
|
260
|
+
"@invalidFormat": "Invalid Format",
|
|
261
|
+
"@openInPopup": "Records open as pop-ups now",
|
|
262
|
+
"@openInSidenav": "Records will now open in the sidenav"
|
|
261
263
|
}
|
|
@@ -257,5 +257,7 @@
|
|
|
257
257
|
"@defaultFilterActive": "Varsayılan Filtre Aktif - Özele Geç",
|
|
258
258
|
"@customFilterModeEnabled": "Özel Filtre Modu Aktif",
|
|
259
259
|
"@defaultFilterModeEnabled": "Varsayılan Filtre Modu Aktif",
|
|
260
|
-
"@invalidFormat": "Geçersiz Format"
|
|
260
|
+
"@invalidFormat": "Geçersiz Format",
|
|
261
|
+
"@openInPopup": "Kayıtlar artık açılır pencerede görüntülenecek",
|
|
262
|
+
"@openInSidenav": "Kayıtlar artık yan panelde görüntülenecek"
|
|
261
263
|
}
|
|
@@ -302,6 +302,7 @@ declare abstract class NettyAgGridBase<T extends {
|
|
|
302
302
|
protected searchValueName: i0.WritableSignal<string>;
|
|
303
303
|
protected preferenceType: i0.WritableSignal<string>;
|
|
304
304
|
searchValue: i0.WritableSignal<string>;
|
|
305
|
+
protected openInPopup: i0.WritableSignal<boolean>;
|
|
305
306
|
protected nettyAgGridService: NettyAgGridService;
|
|
306
307
|
protected translateService: TranslateService;
|
|
307
308
|
protected commonService: CommonService;
|
|
@@ -344,6 +345,7 @@ declare abstract class NettyAgGridBase<T extends {
|
|
|
344
345
|
backClicked(): void;
|
|
345
346
|
gotoURL(routePrefix: string[], rightSidenav: string[] | undefined, parameters: string, type?: string, dialogComponent?: any, isNewTab?: boolean, isPopup?: boolean): void;
|
|
346
347
|
popupGotoURL(urlSegments: string[]): void;
|
|
348
|
+
toggleOpenMode(): void;
|
|
347
349
|
/**
|
|
348
350
|
* Listens for update events from CommonService and refreshes the grid accordingly.
|
|
349
351
|
* - For 'add' or 'update' actions: Updates the relevant row
|
|
@@ -409,6 +411,7 @@ declare abstract class NettyAgGridSaveBase<T> implements DoCheck {
|
|
|
409
411
|
* Determine view mode based on current route
|
|
410
412
|
*/
|
|
411
413
|
protected determineViewMode(): void;
|
|
414
|
+
ngOnInit(): void;
|
|
412
415
|
/**
|
|
413
416
|
* Set data to the form while preserving any unsaved changes
|
|
414
417
|
* @param item - Data object of type T to populate the form
|