@nettyapps/ntybase 21.0.6 → 21.0.7

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.
@@ -113,6 +113,13 @@ var GANTT = {
113
113
  PREPARATION: "Preparation",
114
114
  PRODUCTION: "Production",
115
115
  CLEANING: "Cleaning",
116
+ SEARCH_RESOURCE_PLACEHOLDER: "Search by resource...",
117
+ SEARCH_TASK_NAME_PLACEHOLDER: "Search by production order...",
118
+ CLEAR_ALL_FILTERS_TOOLTIP: "Clear all filters",
119
+ CLEAR_ALL_FILTERS: "Clear",
120
+ SHOWING_RESULTS: "Showing {{shown}} of {{total}}",
121
+ NO_RESULTS_FOUND: "No results found matching your search criteria.",
122
+ CLEAR_FILTERS: "Clear Filters",
116
123
  Create: "Add",
117
124
  GanttChartErrorLoadingComponent: "Error Loading Component"
118
125
  };
@@ -237,4 +244,4 @@ var enUSbase = {
237
244
  };
238
245
 
239
246
  export { AG_GRID, GANTT, enUSbase as default, mfaCode };
240
- //# sourceMappingURL=nettyapps-ntybase-en-USbase-DTtwiiVT.mjs.map
247
+ //# sourceMappingURL=nettyapps-ntybase-en-USbase-Bp2ffXGK.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"nettyapps-ntybase-en-USbase-DTtwiiVT.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"nettyapps-ntybase-en-USbase-Bp2ffXGK.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -113,6 +113,13 @@ var GANTT = {
113
113
  PREPARATION: "Hazırlık",
114
114
  PRODUCTION: "Üretim",
115
115
  CLEANING: "Temizlik",
116
+ SEARCH_RESOURCE_PLACEHOLDER: "Kaynağa göre ara..",
117
+ SEARCH_TASK_NAME_PLACEHOLDER: "Üretim emrine göre ara...",
118
+ CLEAR_ALL_FILTERS_TOOLTIP: "Tüm filtreleri temizle",
119
+ CLEAR_ALL_FILTERS: "Temizle",
120
+ SHOWING_RESULTS: "{{shown}}/{{total}} gösteriliyor",
121
+ NO_RESULTS_FOUND: "Arama kriterlerinize uygun sonuç bulunamadı.",
122
+ CLEAR_FILTERS: "Filtreleri Temizle",
116
123
  Create: "Ekle",
117
124
  GanttChartErrorLoadingComponent: "Component yüklenirken hata oluştu"
118
125
  };
@@ -237,4 +244,4 @@ var trTRbase = {
237
244
  };
238
245
 
239
246
  export { AG_GRID, GANTT, trTRbase as default, mfaCode };
240
- //# sourceMappingURL=nettyapps-ntybase-tr-TRbase-DVtOGKau.mjs.map
247
+ //# sourceMappingURL=nettyapps-ntybase-tr-TRbase-6UXSvhYH.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"nettyapps-ntybase-tr-TRbase-DVtOGKau.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"nettyapps-ntybase-tr-TRbase-6UXSvhYH.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1604,11 +1604,12 @@ class NettyAgGridBase {
1604
1604
  else if (this.hasValidValue(this.queryParameterType())) {
1605
1605
  this.parameterType.set(this.queryParameterType());
1606
1606
  }
1607
- // Clear right side nav if parameterGUID is not provided
1608
1607
  if (this.hasValidValue(this.parameterGUID)) {
1609
1608
  this.setFilter();
1609
+ this.loadData();
1610
1610
  }
1611
1611
  else {
1612
+ // Clear right side nav if parameterGUID is not provided
1612
1613
  this.commonService.clearOutlet();
1613
1614
  }
1614
1615
  });
@@ -3564,8 +3565,8 @@ class NettyBaseApp {
3564
3565
  i18nService = inject(I18nService);
3565
3566
  async loadBaseTranslations() {
3566
3567
  try {
3567
- const enUSBase = await import('./nettyapps-ntybase-en-USbase-DTtwiiVT.mjs');
3568
- const trTRBase = await import('./nettyapps-ntybase-tr-TRbase-DVtOGKau.mjs');
3568
+ const enUSBase = await import('./nettyapps-ntybase-en-USbase-Bp2ffXGK.mjs');
3569
+ const trTRBase = await import('./nettyapps-ntybase-tr-TRbase-6UXSvhYH.mjs');
3569
3570
  this.i18nService.addTranslations('English', enUSBase.default);
3570
3571
  this.i18nService.addTranslations('Türkçe', trTRBase.default);
3571
3572
  }