limitng 0.19.83 → 0.19.85

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.
@@ -0,0 +1,12 @@
1
+ import { AfterViewInit, ElementRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ImleciBasaAlDirective implements AfterViewInit {
4
+ private el;
5
+ private inputElement;
6
+ constructor(el: ElementRef<HTMLElement>);
7
+ ngAfterViewInit(): void;
8
+ onFocus(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ImleciBasaAlDirective, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ImleciBasaAlDirective, "input[imleciBasaAl], textarea[imleciBasaAl], p-inputNumber[imleciBasaAl]", never, {}, {}, never, never, true, never>;
11
+ }
12
+ //# sourceMappingURL=imleciBasaAl.directive.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"imleciBasaAl.directive.d.ts","sourceRoot":"","sources":["../../../src/app/components/directives/imleciBasaAl.directive/imleciBasaAl.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,UAAU,EAAgB,MAAM,eAAe,CAAC;;AAEnF,qBAIa,qBAAsB,YAAW,aAAa;IAG7C,OAAO,CAAC,EAAE;IAFtB,OAAO,CAAC,YAAY,CAAuD;gBAEvD,EAAE,EAAE,UAAU,CAAC,WAAW,CAAC;IAE/C,eAAe,IAAI,IAAI;IAavB,OAAO,IAAI,IAAI;yCAlBJ,qBAAqB;2CAArB,qBAAqB;CAyBjC"}
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="limitng/directives/imleciBasaAl.directive" />
5
+ export * from './public_api';
6
+ //# sourceMappingURL=limitng-directives-imleciBasaAl.directive.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"limitng-directives-imleciBasaAl.directive.d.ts","sourceRoot":"","sources":["../../../src/app/components/directives/imleciBasaAl.directive/limitng-directives-imleciBasaAl.directive.ts"],"names":[],"mappings":"AAAA;;GAEG;;AAEH,cAAc,cAAc,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './imleciBasaAl.directive';
2
+ //# sourceMappingURL=public_api.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"public_api.d.ts","sourceRoot":"","sources":["../../../src/app/components/directives/imleciBasaAl.directive/public_api.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAC"}
@@ -2,6 +2,6 @@ import * as i0 from "@angular/core";
2
2
  export declare class OkTuslariylaIcerdeGezinDirective {
3
3
  handleKeyDown(evt: KeyboardEvent): void;
4
4
  static ɵfac: i0.ɵɵFactoryDeclaration<OkTuslariylaIcerdeGezinDirective, never>;
5
- static ɵdir: i0.ɵɵDirectiveDeclaration<OkTuslariylaIcerdeGezinDirective, "[okTuslariylaIcerdeGezin]", never, {}, {}, never, never, true, never>;
5
+ static ɵdir: i0.ɵɵDirectiveDeclaration<OkTuslariylaIcerdeGezinDirective, "input[okTuslariylaIcerdeGezin], textarea[okTuslariylaIcerdeGezin], p-inputNumber[okTuslariylaIcerdeGezin]", never, {}, {}, never, never, true, never>;
6
6
  }
7
7
  //# sourceMappingURL=okTuslariylaIcerdeGezin.directive.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"okTuslariylaIcerdeGezin.directive.d.ts","sourceRoot":"","sources":["../../../src/app/components/directives/okTuslariylaIcerdeGezin.directive/okTuslariylaIcerdeGezin.directive.ts"],"names":[],"mappings":";AAEA,qBAKa,gCAAgC;IAE3C,aAAa,CAAC,GAAG,EAAE,aAAa;yCAFrB,gCAAgC;2CAAhC,gCAAgC;CAS5C"}
1
+ {"version":3,"file":"okTuslariylaIcerdeGezin.directive.d.ts","sourceRoot":"","sources":["../../../src/app/components/directives/okTuslariylaIcerdeGezin.directive/okTuslariylaIcerdeGezin.directive.ts"],"names":[],"mappings":";AAEA,qBAKa,gCAAgC;IAE3C,aAAa,CAAC,GAAG,EAAE,aAAa,GAAG,IAAI;yCAF5B,gCAAgC;2CAAhC,gCAAgC;CAO5C"}
@@ -0,0 +1,46 @@
1
+ import * as i0 from '@angular/core';
2
+ import { HostListener, Directive } from '@angular/core';
3
+
4
+ class ImleciBasaAlDirective {
5
+ constructor(el) {
6
+ this.el = el;
7
+ this.inputElement = null;
8
+ }
9
+ ngAfterViewInit() {
10
+ const nativeEl = this.el.nativeElement;
11
+ // Eğer doğrudan input veya textarea ise onu kullan
12
+ if (nativeEl instanceof HTMLInputElement || nativeEl instanceof HTMLTextAreaElement) {
13
+ this.inputElement = nativeEl;
14
+ }
15
+ else {
16
+ // Özel bileşen (örneğin p-inputNumber), içindeki input'u bul
17
+ this.inputElement = nativeEl.querySelector('input');
18
+ }
19
+ }
20
+ onFocus() {
21
+ setTimeout(() => {
22
+ if (this.inputElement && document.activeElement === this.inputElement) {
23
+ this.inputElement.setSelectionRange(0, 0);
24
+ }
25
+ });
26
+ }
27
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ImleciBasaAlDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
28
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: ImleciBasaAlDirective, isStandalone: true, selector: "input[imleciBasaAl], textarea[imleciBasaAl], p-inputNumber[imleciBasaAl]", host: { listeners: { "focusin": "onFocus()" } }, ngImport: i0 }); }
29
+ }
30
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ImleciBasaAlDirective, decorators: [{
31
+ type: Directive,
32
+ args: [{
33
+ selector: 'input[imleciBasaAl], textarea[imleciBasaAl], p-inputNumber[imleciBasaAl]',
34
+ standalone: true
35
+ }]
36
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { onFocus: [{
37
+ type: HostListener,
38
+ args: ['focusin']
39
+ }] } });
40
+
41
+ /**
42
+ * Generated bundle index. Do not edit.
43
+ */
44
+
45
+ export { ImleciBasaAlDirective };
46
+ //# sourceMappingURL=limitng-directives-imleciBasaAl.directive.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"limitng-directives-imleciBasaAl.directive.mjs","sources":["../../src/app/components/directives/imleciBasaAl.directive/imleciBasaAl.directive.ts","../../src/app/components/directives/imleciBasaAl.directive/limitng-directives-imleciBasaAl.directive.ts"],"sourcesContent":["import { AfterViewInit, Directive, ElementRef, HostListener } from '@angular/core';\r\n\r\n@Directive({\r\n selector: 'input[imleciBasaAl], textarea[imleciBasaAl], p-inputNumber[imleciBasaAl]',\r\n standalone: true\r\n})\r\nexport class ImleciBasaAlDirective implements AfterViewInit {\r\n private inputElement: HTMLInputElement | HTMLTextAreaElement | null = null;\r\n\r\n constructor(private el: ElementRef<HTMLElement>) {}\r\n\r\n ngAfterViewInit(): void {\r\n const nativeEl = this.el.nativeElement;\r\n\r\n // Eğer doğrudan input veya textarea ise onu kullan\r\n if (nativeEl instanceof HTMLInputElement || nativeEl instanceof HTMLTextAreaElement) {\r\n this.inputElement = nativeEl;\r\n } else {\r\n // Özel bileşen (örneğin p-inputNumber), içindeki input'u bul\r\n this.inputElement = nativeEl.querySelector('input');\r\n }\r\n }\r\n\r\n @HostListener('focusin')\r\n onFocus(): void {\r\n setTimeout(() => {\r\n if (this.inputElement && document.activeElement === this.inputElement) {\r\n this.inputElement.setSelectionRange(0, 0);\r\n }\r\n });\r\n }\r\n}","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":";;;MAMa,qBAAqB,CAAA;AAGhC,IAAA,WAAA,CAAoB,EAA2B,EAAA;QAA3B,IAAE,CAAA,EAAA,GAAF,EAAE;QAFd,IAAY,CAAA,YAAA,GAAkD,IAAI;;IAI1E,eAAe,GAAA;AACb,QAAA,MAAM,QAAQ,GAAG,IAAI,CAAC,EAAE,CAAC,aAAa;;QAGtC,IAAI,QAAQ,YAAY,gBAAgB,IAAI,QAAQ,YAAY,mBAAmB,EAAE;AACnF,YAAA,IAAI,CAAC,YAAY,GAAG,QAAQ;;aACvB;;YAEL,IAAI,CAAC,YAAY,GAAG,QAAQ,CAAC,aAAa,CAAC,OAAO,CAAC;;;IAKvD,OAAO,GAAA;QACL,UAAU,CAAC,MAAK;AACd,YAAA,IAAI,IAAI,CAAC,YAAY,IAAI,QAAQ,CAAC,aAAa,KAAK,IAAI,CAAC,YAAY,EAAE;gBACrE,IAAI,CAAC,YAAY,CAAC,iBAAiB,CAAC,CAAC,EAAE,CAAC,CAAC;;AAE7C,SAAC,CAAC;;+GAvBO,qBAAqB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;mGAArB,qBAAqB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,0EAAA,EAAA,IAAA,EAAA,EAAA,SAAA,EAAA,EAAA,SAAA,EAAA,WAAA,EAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;;4FAArB,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBAJjC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,0EAA0E;AACpF,oBAAA,UAAU,EAAE;AACb,iBAAA;+EAmBC,OAAO,EAAA,CAAA;sBADN,YAAY;uBAAC,SAAS;;;ACvBzB;;AAEG;;;;"}
@@ -3,19 +3,17 @@ import { HostListener, Directive } from '@angular/core';
3
3
 
4
4
  class OkTuslariylaIcerdeGezinDirective {
5
5
  handleKeyDown(evt) {
6
- const tag = evt.target.tagName.toLowerCase();
7
- if ((tag === 'input' || tag === 'textarea') &&
8
- (evt.key === 'ArrowLeft' || evt.key === 'ArrowRight')) {
6
+ if (evt.key === 'ArrowLeft' || evt.key === 'ArrowRight') {
9
7
  evt.stopPropagation();
10
8
  }
11
9
  }
12
10
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: OkTuslariylaIcerdeGezinDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
13
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: OkTuslariylaIcerdeGezinDirective, isStandalone: true, selector: "[okTuslariylaIcerdeGezin]", host: { listeners: { "keydown": "handleKeyDown($event)" } }, ngImport: i0 }); }
11
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: OkTuslariylaIcerdeGezinDirective, isStandalone: true, selector: "input[okTuslariylaIcerdeGezin], textarea[okTuslariylaIcerdeGezin], p-inputNumber[okTuslariylaIcerdeGezin]", host: { listeners: { "keydown": "handleKeyDown($event)" } }, ngImport: i0 }); }
14
12
  }
15
13
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: OkTuslariylaIcerdeGezinDirective, decorators: [{
16
14
  type: Directive,
17
15
  args: [{
18
- selector: '[okTuslariylaIcerdeGezin]',
16
+ selector: 'input[okTuslariylaIcerdeGezin], textarea[okTuslariylaIcerdeGezin], p-inputNumber[okTuslariylaIcerdeGezin]',
19
17
  standalone: true
20
18
  }]
21
19
  }], propDecorators: { handleKeyDown: [{
@@ -1 +1 @@
1
- {"version":3,"file":"limitng-directives-okTuslariylaIcerdeGezin.directive.mjs","sources":["../../src/app/components/directives/okTuslariylaIcerdeGezin.directive/okTuslariylaIcerdeGezin.directive.ts","../../src/app/components/directives/okTuslariylaIcerdeGezin.directive/limitng-directives-okTuslariylaIcerdeGezin.directive.ts"],"sourcesContent":["import { Directive, HostListener } from \"@angular/core\";\r\n\r\n@Directive({\r\n selector: '[okTuslariylaIcerdeGezin]',\r\n standalone: true\r\n})\r\n\r\nexport class OkTuslariylaIcerdeGezinDirective {\r\n @HostListener('keydown', ['$event'])\r\n handleKeyDown(evt: KeyboardEvent) {\r\n const tag = (evt.target as HTMLElement).tagName.toLowerCase();\r\n if ((tag === 'input' || tag === 'textarea') &&\r\n (evt.key === 'ArrowLeft' || evt.key === 'ArrowRight')) {\r\n evt.stopPropagation();\r\n }\r\n }\r\n}","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":";;;MAOa,gCAAgC,CAAA;AAE3C,IAAA,aAAa,CAAC,GAAkB,EAAA;QAC9B,MAAM,GAAG,GAAI,GAAG,CAAC,MAAsB,CAAC,OAAO,CAAC,WAAW,EAAE;QAC7D,IAAI,CAAC,GAAG,KAAK,OAAO,IAAI,GAAG,KAAK,UAAU;AACxC,aAAC,GAAG,CAAC,GAAG,KAAK,WAAW,IAAI,GAAG,CAAC,GAAG,KAAK,YAAY,CAAC,EAAE;YACvD,GAAG,CAAC,eAAe,EAAE;;;+GANd,gCAAgC,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;mGAAhC,gCAAgC,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,2BAAA,EAAA,IAAA,EAAA,EAAA,SAAA,EAAA,EAAA,SAAA,EAAA,uBAAA,EAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;;4FAAhC,gCAAgC,EAAA,UAAA,EAAA,CAAA;kBAL5C,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,2BAA2B;AACrC,oBAAA,UAAU,EAAE;AACb,iBAAA;8BAIC,aAAa,EAAA,CAAA;sBADZ,YAAY;uBAAC,SAAS,EAAE,CAAC,QAAQ,CAAC;;;ACRrC;;AAEG;;;;"}
1
+ {"version":3,"file":"limitng-directives-okTuslariylaIcerdeGezin.directive.mjs","sources":["../../src/app/components/directives/okTuslariylaIcerdeGezin.directive/okTuslariylaIcerdeGezin.directive.ts","../../src/app/components/directives/okTuslariylaIcerdeGezin.directive/limitng-directives-okTuslariylaIcerdeGezin.directive.ts"],"sourcesContent":["import { Directive, HostListener } from '@angular/core';\r\n\r\n@Directive({\r\n selector: 'input[okTuslariylaIcerdeGezin], textarea[okTuslariylaIcerdeGezin], p-inputNumber[okTuslariylaIcerdeGezin]',\r\n standalone: true\r\n})\r\n\r\nexport class OkTuslariylaIcerdeGezinDirective {\r\n @HostListener('keydown', ['$event'])\r\n handleKeyDown(evt: KeyboardEvent): void {\r\n if (evt.key === 'ArrowLeft' || evt.key === 'ArrowRight') {\r\n evt.stopPropagation();\r\n }\r\n }\r\n}\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":";;;MAOa,gCAAgC,CAAA;AAE3C,IAAA,aAAa,CAAC,GAAkB,EAAA;AAC9B,QAAA,IAAI,GAAG,CAAC,GAAG,KAAK,WAAW,IAAI,GAAG,CAAC,GAAG,KAAK,YAAY,EAAE;YACvD,GAAG,CAAC,eAAe,EAAE;;;+GAJd,gCAAgC,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;mGAAhC,gCAAgC,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,2GAAA,EAAA,IAAA,EAAA,EAAA,SAAA,EAAA,EAAA,SAAA,EAAA,uBAAA,EAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;;4FAAhC,gCAAgC,EAAA,UAAA,EAAA,CAAA;kBAL5C,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,2GAA2G;AACrH,oBAAA,UAAU,EAAE;AACb,iBAAA;8BAIC,aAAa,EAAA,CAAA;sBADZ,YAAY;uBAAC,SAAS,EAAE,CAAC,QAAQ,CAAC;;;ACRrC;;AAEG;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "limitng",
3
- "version": "0.19.83",
3
+ "version": "0.19.85",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "http://limitdestek.com:3000/Limit/LimitNG"
@@ -42,6 +42,14 @@
42
42
  "types": "./api/index.d.ts",
43
43
  "default": "./fesm2022/limitng-api.mjs"
44
44
  },
45
+ "./dikey-baslikli-panel-sol": {
46
+ "types": "./dikey-baslikli-panel-sol/index.d.ts",
47
+ "default": "./fesm2022/limitng-dikey-baslikli-panel-sol.mjs"
48
+ },
49
+ "./filtre-bar": {
50
+ "types": "./filtre-bar/index.d.ts",
51
+ "default": "./fesm2022/limitng-filtre-bar.mjs"
52
+ },
45
53
  "./dikey-baslikli-panel": {
46
54
  "types": "./dikey-baslikli-panel/index.d.ts",
47
55
  "default": "./fesm2022/limitng-dikey-baslikli-panel.mjs"
@@ -50,14 +58,6 @@
50
58
  "types": "./directives/index.d.ts",
51
59
  "default": "./fesm2022/limitng-directives.mjs"
52
60
  },
53
- "./filtre-bar": {
54
- "types": "./filtre-bar/index.d.ts",
55
- "default": "./fesm2022/limitng-filtre-bar.mjs"
56
- },
57
- "./dikey-baslikli-panel-sol": {
58
- "types": "./dikey-baslikli-panel-sol/index.d.ts",
59
- "default": "./fesm2022/limitng-dikey-baslikli-panel-sol.mjs"
60
- },
61
61
  "./geri-ileri-detay": {
62
62
  "types": "./geri-ileri-detay/index.d.ts",
63
63
  "default": "./fesm2022/limitng-geri-ileri-detay.mjs"
@@ -90,25 +90,21 @@
90
90
  "types": "./api/models/index.d.ts",
91
91
  "default": "./fesm2022/limitng-api-models.mjs"
92
92
  },
93
- "./directives/adresAlani.directive": {
94
- "types": "./directives/adresAlani.directive/index.d.ts",
95
- "default": "./fesm2022/limitng-directives-adresAlani.directive.mjs"
96
- },
97
93
  "./directives/adAlani.directive": {
98
94
  "types": "./directives/adAlani.directive/index.d.ts",
99
95
  "default": "./fesm2022/limitng-directives-adAlani.directive.mjs"
100
96
  },
101
- "./directives/ciftBoslukTek.directive": {
102
- "types": "./directives/ciftBoslukTek.directive/index.d.ts",
103
- "default": "./fesm2022/limitng-directives-ciftBoslukTek.directive.mjs"
104
- },
105
97
  "./directives/buyukHarf.directive": {
106
98
  "types": "./directives/buyukHarf.directive/index.d.ts",
107
99
  "default": "./fesm2022/limitng-directives-buyukHarf.directive.mjs"
108
100
  },
109
- "./directives/dirty.directive": {
110
- "types": "./directives/dirty.directive/index.d.ts",
111
- "default": "./fesm2022/limitng-directives-dirty.directive.mjs"
101
+ "./directives/ciftBoslukTek.directive": {
102
+ "types": "./directives/ciftBoslukTek.directive/index.d.ts",
103
+ "default": "./fesm2022/limitng-directives-ciftBoslukTek.directive.mjs"
104
+ },
105
+ "./directives/adresAlani.directive": {
106
+ "types": "./directives/adresAlani.directive/index.d.ts",
107
+ "default": "./fesm2022/limitng-directives-adresAlani.directive.mjs"
112
108
  },
113
109
  "./directives/disable.directive": {
114
110
  "types": "./directives/disable.directive/index.d.ts",
@@ -122,6 +118,14 @@
122
118
  "types": "./directives/ilkHarfBuyuk.directive/index.d.ts",
123
119
  "default": "./fesm2022/limitng-directives-ilkHarfBuyuk.directive.mjs"
124
120
  },
121
+ "./directives/imleciBasaAl.directive": {
122
+ "types": "./directives/imleciBasaAl.directive/index.d.ts",
123
+ "default": "./fesm2022/limitng-directives-imleciBasaAl.directive.mjs"
124
+ },
125
+ "./directives/dirty.directive": {
126
+ "types": "./directives/dirty.directive/index.d.ts",
127
+ "default": "./fesm2022/limitng-directives-dirty.directive.mjs"
128
+ },
125
129
  "./directives/kodAlani.directive": {
126
130
  "types": "./directives/kodAlani.directive/index.d.ts",
127
131
  "default": "./fesm2022/limitng-directives-kodAlani.directive.mjs"
@@ -146,14 +150,14 @@
146
150
  "types": "./directives/sutunGenisligi.directive/index.d.ts",
147
151
  "default": "./fesm2022/limitng-directives-sutunGenisligi.directive.mjs"
148
152
  },
149
- "./directives/tumBoslukSil.directive": {
150
- "types": "./directives/tumBoslukSil.directive/index.d.ts",
151
- "default": "./fesm2022/limitng-directives-tumBoslukSil.directive.mjs"
152
- },
153
153
  "./directives/translate-key.directive.ts": {
154
154
  "types": "./directives/translate-key.directive.ts/index.d.ts",
155
155
  "default": "./fesm2022/limitng-directives-translate-key.directive.ts.mjs"
156
156
  },
157
+ "./directives/tumBoslukSil.directive": {
158
+ "types": "./directives/tumBoslukSil.directive/index.d.ts",
159
+ "default": "./fesm2022/limitng-directives-tumBoslukSil.directive.mjs"
160
+ },
157
161
  "./directives/tumIlkHarfBuyuk.directive": {
158
162
  "types": "./directives/tumIlkHarfBuyuk.directive/index.d.ts",
159
163
  "default": "./fesm2022/limitng-directives-tumIlkHarfBuyuk.directive.mjs"
@@ -186,26 +190,30 @@
186
190
  "types": "./pipes/safe.pipe/index.d.ts",
187
191
  "default": "./fesm2022/limitng-pipes-safe.pipe.mjs"
188
192
  },
189
- "./api/models/bildirimler": {
190
- "types": "./api/models/bildirimler/index.d.ts",
191
- "default": "./fesm2022/limitng-api-models-bildirimler.mjs"
192
- },
193
193
  "./pipes/tooltip-formatter.pipe": {
194
194
  "types": "./pipes/tooltip-formatter.pipe/index.d.ts",
195
195
  "default": "./fesm2022/limitng-pipes-tooltip-formatter.pipe.mjs"
196
196
  },
197
+ "./rapor-kart/models": {
198
+ "types": "./rapor-kart/models/index.d.ts",
199
+ "default": "./fesm2022/limitng-rapor-kart-models.mjs"
200
+ },
201
+ "./api/models/bildirimler": {
202
+ "types": "./api/models/bildirimler/index.d.ts",
203
+ "default": "./fesm2022/limitng-api-models-bildirimler.mjs"
204
+ },
197
205
  "./api/models/enums": {
198
206
  "types": "./api/models/enums/index.d.ts",
199
207
  "default": "./fesm2022/limitng-api-models-enums.mjs"
200
208
  },
201
- "./api/models/fourDConstants": {
202
- "types": "./api/models/fourDConstants/index.d.ts",
203
- "default": "./fesm2022/limitng-api-models-fourDConstants.mjs"
204
- },
205
209
  "./api/models/kisisel": {
206
210
  "types": "./api/models/kisisel/index.d.ts",
207
211
  "default": "./fesm2022/limitng-api-models-kisisel.mjs"
208
212
  },
213
+ "./api/models/fourDConstants": {
214
+ "types": "./api/models/fourDConstants/index.d.ts",
215
+ "default": "./fesm2022/limitng-api-models-fourDConstants.mjs"
216
+ },
209
217
  "./api/models/logbook": {
210
218
  "types": "./api/models/logbook/index.d.ts",
211
219
  "default": "./fesm2022/limitng-api-models-logbook.mjs"
@@ -218,10 +226,6 @@
218
226
  "types": "./api/models/onay/index.d.ts",
219
227
  "default": "./fesm2022/limitng-api-models-onay.mjs"
220
228
  },
221
- "./rapor-kart/models": {
222
- "types": "./rapor-kart/models/index.d.ts",
223
- "default": "./fesm2022/limitng-rapor-kart-models.mjs"
224
- },
225
229
  "./api/models/ortak": {
226
230
  "types": "./api/models/ortak/index.d.ts",
227
231
  "default": "./fesm2022/limitng-api-models-ortak.mjs"
@@ -286,10 +290,6 @@
286
290
  "types": "./api/models/raporlar/listedensec/index.d.ts",
287
291
  "default": "./fesm2022/limitng-api-models-raporlar-listedensec.mjs"
288
292
  },
289
- "./api/models/raporlar/rapordetaylari": {
290
- "types": "./api/models/raporlar/rapordetaylari/index.d.ts",
291
- "default": "./fesm2022/limitng-api-models-raporlar-rapordetaylari.mjs"
292
- },
293
293
  "./api/models/raporlar/raporzamanlama": {
294
294
  "types": "./api/models/raporlar/raporzamanlama/index.d.ts",
295
295
  "default": "./fesm2022/limitng-api-models-raporlar-raporzamanlama.mjs"
@@ -298,6 +298,10 @@
298
298
  "types": "./api/models/raporlar/tablodansec/index.d.ts",
299
299
  "default": "./fesm2022/limitng-api-models-raporlar-tablodansec.mjs"
300
300
  },
301
+ "./api/models/raporlar/rapordetaylari": {
302
+ "types": "./api/models/raporlar/rapordetaylari/index.d.ts",
303
+ "default": "./fesm2022/limitng-api-models-raporlar-rapordetaylari.mjs"
304
+ },
301
305
  "./api/models/timeSheet/timeSheetGirisListeler": {
302
306
  "types": "./api/models/timeSheet/timeSheetGirisListeler/index.d.ts",
303
307
  "default": "./fesm2022/limitng-api-models-timeSheet-timeSheetGirisListeler.mjs"