@nettyapps/ntybase 21.0.1 → 21.0.2

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.
@@ -232,8 +232,9 @@ var enUSbase = {
232
232
  "@customFilterActive": "Custom Filter Active - Switch to Default",
233
233
  "@defaultFilterActive": "Default Filter Active - Switch to Custom",
234
234
  "@customFilterModeEnabled": "Custom Filter Mode Enabled",
235
- "@defaultFilterModeEnabled": "Default Filter Mode Enabled"
235
+ "@defaultFilterModeEnabled": "Default Filter Mode Enabled",
236
+ "@invalidFormat": "Invalid Format"
236
237
  };
237
238
 
238
239
  export { AG_GRID, GANTT, enUSbase as default, mfaCode };
239
- //# sourceMappingURL=nettyapps-ntybase-en-USbase-D8YJXJ5r.mjs.map
240
+ //# sourceMappingURL=nettyapps-ntybase-en-USbase-DTtwiiVT.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"nettyapps-ntybase-en-USbase-D8YJXJ5r.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"nettyapps-ntybase-en-USbase-DTtwiiVT.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -232,8 +232,9 @@ var trTRbase = {
232
232
  "@customFilterActive": "Özel Filtre Aktif - Varsayılana Geç",
233
233
  "@defaultFilterActive": "Varsayılan Filtre Aktif - Özele Geç",
234
234
  "@customFilterModeEnabled": "Özel Filtre Modu Aktif",
235
- "@defaultFilterModeEnabled": "Varsayılan Filtre Modu Aktif"
235
+ "@defaultFilterModeEnabled": "Varsayılan Filtre Modu Aktif",
236
+ "@invalidFormat": "Geçersiz Format"
236
237
  };
237
238
 
238
239
  export { AG_GRID, GANTT, trTRbase as default, mfaCode };
239
- //# sourceMappingURL=nettyapps-ntybase-tr-TRbase-DtiNXQKJ.mjs.map
240
+ //# sourceMappingURL=nettyapps-ntybase-tr-TRbase-DVtOGKau.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"nettyapps-ntybase-tr-TRbase-DtiNXQKJ.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"nettyapps-ntybase-tr-TRbase-DVtOGKau.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -4086,8 +4086,8 @@ class NettyBaseApp {
4086
4086
  i18nService = inject(I18nService);
4087
4087
  async loadBaseTranslations() {
4088
4088
  try {
4089
- const enUSBase = await import('./nettyapps-ntybase-en-USbase-D8YJXJ5r.mjs');
4090
- const trTRBase = await import('./nettyapps-ntybase-tr-TRbase-DtiNXQKJ.mjs');
4089
+ const enUSBase = await import('./nettyapps-ntybase-en-USbase-DTtwiiVT.mjs');
4090
+ const trTRBase = await import('./nettyapps-ntybase-tr-TRbase-DVtOGKau.mjs');
4091
4091
  this.i18nService.addTranslations('English', enUSBase.default);
4092
4092
  this.i18nService.addTranslations('Türkçe', trTRBase.default);
4093
4093
  }
@@ -4322,7 +4322,6 @@ class AutoCompleteLookup {
4322
4322
  !!changes['filterFieldEquality']);
4323
4323
  }
4324
4324
  initializeComponent() {
4325
- // Dialog data'sı varsa onu kullan, yoksa input'ları kullan
4326
4325
  const config = this.data || this.getInputConfig();
4327
4326
  this.loadComponent(config);
4328
4327
  }
@@ -4340,7 +4339,6 @@ class AutoCompleteLookup {
4340
4339
  return;
4341
4340
  this.container.clear();
4342
4341
  const componentRef = this.container.createComponent(config.component);
4343
- // Input'ları doğru şekilde set et - fonksiyon çağrısı YOK
4344
4342
  componentRef.setInput('popupValid', true);
4345
4343
  if (config.filterField !== undefined) {
4346
4344
  componentRef.setInput('filterField', config.filterField);
@@ -4354,11 +4352,9 @@ class AutoCompleteLookup {
4354
4352
  if (config.filterFieldNumeric !== undefined) {
4355
4353
  componentRef.setInput('filterFieldNumeric', config.filterFieldNumeric);
4356
4354
  }
4357
- // Handle output
4358
4355
  const sub = componentRef.instance.selectedElement.subscribe((data) => {
4359
4356
  this.selectedElement.emit(data);
4360
4357
  });
4361
- // Cleanup
4362
4358
  componentRef.onDestroy(() => sub.unsubscribe());
4363
4359
  }
4364
4360
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.3", ngImport: i0, type: AutoCompleteLookup, deps: [], target: i0.ɵɵFactoryTarget.Component });