ng-thaana 1.6.0 → 1.6.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.
Files changed (39) hide show
  1. package/dist/ng-thaana/fesm2022/ng-thaana.mjs +67 -0
  2. package/dist/ng-thaana/fesm2022/ng-thaana.mjs.map +1 -0
  3. package/dist/ng-thaana/index.d.ts +23 -0
  4. package/package.json +1 -1
  5. package/.angular/cache/20.3.10/ng-packagr/d2a95bee5ebcad52ca150fdaf477f08e931834f07df304a524039edc5a344942 +0 -1
  6. package/.angular/cache/20.3.10/ng-packagr/tsbuildinfo/ng-thaana.tsbuildinfo +0 -1
  7. package/.editorconfig +0 -16
  8. package/.vscode/settings.json +0 -3
  9. package/angular.json +0 -143
  10. package/projects/ng-thaana/karma.conf.js +0 -44
  11. package/projects/ng-thaana/ng-package.json +0 -7
  12. package/projects/ng-thaana/package.json +0 -11
  13. package/projects/ng-thaana/src/lib/ng-thaana.directive.ts +0 -29
  14. package/projects/ng-thaana/src/lib/ng-thaana.module.ts +0 -16
  15. package/projects/ng-thaana/src/public-api.ts +0 -6
  16. package/projects/ng-thaana/src/test.ts +0 -26
  17. package/projects/ng-thaana/tsconfig.lib.json +0 -20
  18. package/projects/ng-thaana/tsconfig.lib.prod.json +0 -10
  19. package/projects/ng-thaana/tsconfig.spec.json +0 -17
  20. package/projects/thaana-tester/.browserslistrc +0 -17
  21. package/projects/thaana-tester/karma.conf.js +0 -44
  22. package/projects/thaana-tester/src/app/app.component.html +0 -8
  23. package/projects/thaana-tester/src/app/app.component.scss +0 -0
  24. package/projects/thaana-tester/src/app/app.component.spec.ts +0 -31
  25. package/projects/thaana-tester/src/app/app.component.ts +0 -20
  26. package/projects/thaana-tester/src/app/app.module.ts +0 -20
  27. package/projects/thaana-tester/src/assets/.gitkeep +0 -0
  28. package/projects/thaana-tester/src/environments/environment.prod.ts +0 -3
  29. package/projects/thaana-tester/src/environments/environment.ts +0 -16
  30. package/projects/thaana-tester/src/favicon.ico +0 -0
  31. package/projects/thaana-tester/src/index.html +0 -13
  32. package/projects/thaana-tester/src/main.ts +0 -12
  33. package/projects/thaana-tester/src/polyfills.ts +0 -65
  34. package/projects/thaana-tester/src/styles.scss +0 -1
  35. package/projects/thaana-tester/src/test.ts +0 -25
  36. package/projects/thaana-tester/tsconfig.app.json +0 -15
  37. package/projects/thaana-tester/tsconfig.spec.json +0 -18
  38. package/tsconfig.json +0 -36
  39. /package/{projects → dist}/ng-thaana/README.md +0 -0
@@ -0,0 +1,67 @@
1
+ import * as i0 from '@angular/core';
2
+ import { EventEmitter, Output, Input, Directive, NgModule } from '@angular/core';
3
+ import Thaana from 'dhivehi';
4
+
5
+ class NgThaanaDirective {
6
+ el;
7
+ flavor = 'phonetic';
8
+ ngThaana = new EventEmitter();
9
+ thaanaToggled = new EventEmitter();
10
+ constructor(el) {
11
+ this.el = el;
12
+ }
13
+ ngAfterViewInit() {
14
+ this.el.nativeElement.style.direction = 'rtl';
15
+ this.el.nativeElement.addEventListener('thaana-toggled', (e) => {
16
+ this.thaanaToggled.emit(e.detail);
17
+ });
18
+ Thaana(this.el.nativeElement, { flavor: this.flavor });
19
+ }
20
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.11", ngImport: i0, type: NgThaanaDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
21
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.11", type: NgThaanaDirective, isStandalone: false, selector: "[ng-thaana]", inputs: { flavor: "flavor" }, outputs: { ngThaana: "ng-thaana", thaanaToggled: "thaana-toggled" }, ngImport: i0 });
22
+ }
23
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.11", ngImport: i0, type: NgThaanaDirective, decorators: [{
24
+ type: Directive,
25
+ args: [{
26
+ selector: '[ng-thaana]',
27
+ standalone: false
28
+ }]
29
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { flavor: [{
30
+ type: Input,
31
+ args: ['flavor']
32
+ }], ngThaana: [{
33
+ type: Output,
34
+ args: ['ng-thaana']
35
+ }], thaanaToggled: [{
36
+ type: Output,
37
+ args: ['thaana-toggled']
38
+ }] } });
39
+
40
+ class NgThaanaModule {
41
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.11", ngImport: i0, type: NgThaanaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
42
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.11", ngImport: i0, type: NgThaanaModule, declarations: [NgThaanaDirective], exports: [NgThaanaDirective] });
43
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.11", ngImport: i0, type: NgThaanaModule });
44
+ }
45
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.11", ngImport: i0, type: NgThaanaModule, decorators: [{
46
+ type: NgModule,
47
+ args: [{
48
+ declarations: [
49
+ NgThaanaDirective
50
+ ],
51
+ imports: [],
52
+ exports: [
53
+ NgThaanaDirective
54
+ ]
55
+ }]
56
+ }] });
57
+
58
+ /*
59
+ * Public API Surface of ng-thaana
60
+ */
61
+
62
+ /**
63
+ * Generated bundle index. Do not edit.
64
+ */
65
+
66
+ export { NgThaanaDirective, NgThaanaModule };
67
+ //# sourceMappingURL=ng-thaana.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ng-thaana.mjs","sources":["../../../projects/ng-thaana/src/lib/ng-thaana.directive.ts","../../../projects/ng-thaana/src/lib/ng-thaana.module.ts","../../../projects/ng-thaana/src/public-api.ts","../../../projects/ng-thaana/src/ng-thaana.ts"],"sourcesContent":["import { AfterViewInit, EventEmitter } from '@angular/core';\nimport { Directive, ElementRef, Input, Output} from '@angular/core';\n\nimport Thaana from 'dhivehi'\n\n\nexport type Flavor = 'phonetic' | 'typewriter' | 'faseyha'\n\n@Directive({\n selector: '[ng-thaana]',\n standalone: false\n})\nexport class NgThaanaDirective implements AfterViewInit {\n\n @Input('flavor') flavor: Flavor = 'phonetic';\n @Output('ng-thaana') ngThaana = new EventEmitter<string>();\n @Output('thaana-toggled') thaanaToggled = new EventEmitter<string>();\n\n constructor(private el: ElementRef) {}\n\n ngAfterViewInit(): void {\n this.el.nativeElement.style.direction = 'rtl'\n this.el.nativeElement.addEventListener('thaana-toggled', (e: CustomEvent) => {\n this.thaanaToggled.emit(e.detail)\n })\n Thaana(this.el.nativeElement, { flavor: this.flavor })\n }\n\n}\n","import { NgModule } from '@angular/core';\nimport { NgThaanaDirective } from './ng-thaana.directive';\n\n\n\n@NgModule({\n declarations: [\n NgThaanaDirective\n ],\n imports: [\n ],\n exports: [\n NgThaanaDirective\n ]\n})\nexport class NgThaanaModule { }\n","/*\n * Public API Surface of ng-thaana\n */\n\nexport * from './lib/ng-thaana.directive';\nexport * from './lib/ng-thaana.module';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAYa,iBAAiB,CAAA;AAMR,IAAA,EAAA;IAJH,MAAM,GAAW,UAAU;AACvB,IAAA,QAAQ,GAAG,IAAI,YAAY,EAAU;AAChC,IAAA,aAAa,GAAG,IAAI,YAAY,EAAU;AAEpE,IAAA,WAAA,CAAoB,EAAc,EAAA;QAAd,IAAA,CAAA,EAAE,GAAF,EAAE;IAAe;IAErC,eAAe,GAAA;QACb,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC,KAAK,CAAC,SAAS,GAAG,KAAK;AAC7C,QAAA,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC,gBAAgB,CAAC,gBAAgB,EAAE,CAAC,CAAc,KAAI;YAC1E,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC;AACnC,QAAA,CAAC,CAAC;AACF,QAAA,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,aAAa,EAAE,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC;IACxD;wGAdW,iBAAiB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;4FAAjB,iBAAiB,EAAA,YAAA,EAAA,KAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,EAAA,MAAA,EAAA,QAAA,EAAA,EAAA,OAAA,EAAA,EAAA,QAAA,EAAA,WAAA,EAAA,aAAA,EAAA,gBAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA;;4FAAjB,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAJ7B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,aAAa;AACvB,oBAAA,UAAU,EAAE;AACb,iBAAA;;sBAGE,KAAK;uBAAC,QAAQ;;sBACd,MAAM;uBAAC,WAAW;;sBAClB,MAAM;uBAAC,gBAAgB;;;MCDb,cAAc,CAAA;wGAAd,cAAc,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA;yGAAd,cAAc,EAAA,YAAA,EAAA,CARvB,iBAAiB,CAAA,EAAA,OAAA,EAAA,CAKjB,iBAAiB,CAAA,EAAA,CAAA;yGAGR,cAAc,EAAA,CAAA;;4FAAd,cAAc,EAAA,UAAA,EAAA,CAAA;kBAV1B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ;AACD,qBAAA;AACD,oBAAA,OAAO,EAAE,EACR;AACD,oBAAA,OAAO,EAAE;wBACP;AACD;AACF,iBAAA;;;ACdD;;AAEG;;ACFH;;AAEG;;;;"}
@@ -0,0 +1,23 @@
1
+ import * as i0 from '@angular/core';
2
+ import { AfterViewInit, EventEmitter, ElementRef } from '@angular/core';
3
+
4
+ type Flavor = 'phonetic' | 'typewriter' | 'faseyha';
5
+ declare class NgThaanaDirective implements AfterViewInit {
6
+ private el;
7
+ flavor: Flavor;
8
+ ngThaana: EventEmitter<string>;
9
+ thaanaToggled: EventEmitter<string>;
10
+ constructor(el: ElementRef);
11
+ ngAfterViewInit(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgThaanaDirective, never>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NgThaanaDirective, "[ng-thaana]", never, { "flavor": { "alias": "flavor"; "required": false; }; }, { "ngThaana": "ng-thaana"; "thaanaToggled": "thaana-toggled"; }, never, never, false, never>;
14
+ }
15
+
16
+ declare class NgThaanaModule {
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgThaanaModule, never>;
18
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NgThaanaModule, [typeof NgThaanaDirective], never, [typeof NgThaanaDirective]>;
19
+ static ɵinj: i0.ɵɵInjectorDeclaration<NgThaanaModule>;
20
+ }
21
+
22
+ export { NgThaanaDirective, NgThaanaModule };
23
+ export type { Flavor };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ng-thaana",
3
- "version": "1.6.0",
3
+ "version": "1.6.2",
4
4
  "scripts": {
5
5
  "ng": "ng",
6
6
  "start": "ng serve",
@@ -1 +0,0 @@
1
- {"hash":"19c3b88e983913be012122d8d9859de7babf128daf6e720aebcef13afe4ef2b9","types":[{"exports":["Flavor","NgThaanaDirective","NgThaanaModule"],"facadeModuleId":"/Users/yameen/playground/tmp/ng-thaana/dist/ng-thaana/tmp-typings/ng-thaana.d.ts","isDynamicEntry":false,"isEntry":true,"isImplicitEntry":false,"moduleIds":["/Users/yameen/playground/tmp/ng-thaana/dist/ng-thaana/tmp-typings/lib/ng-thaana.directive.d.ts","/Users/yameen/playground/tmp/ng-thaana/dist/ng-thaana/tmp-typings/lib/ng-thaana.module.d.ts","/Users/yameen/playground/tmp/ng-thaana/dist/ng-thaana/tmp-typings/ng-thaana.d.ts"],"name":"ng-thaana.d","type":"chunk","dynamicImports":[],"fileName":"index.d.ts","implicitlyLoadedBefore":[],"importedBindings":{"@angular/core":["AfterViewInit","EventEmitter","ElementRef","*"]},"imports":["@angular/core"],"modules":{"/Users/yameen/playground/tmp/ng-thaana/dist/ng-thaana/tmp-typings/lib/ng-thaana.directive.d.ts":{"code":"type Flavor = 'phonetic' | 'typewriter' | 'faseyha';\ndeclare class NgThaanaDirective implements AfterViewInit {\n private el;\n flavor: Flavor;\n ngThaana: EventEmitter<string>;\n thaanaToggled: EventEmitter<string>;\n constructor(el: ElementRef);\n ngAfterViewInit(): void;\n static ɵfac: i0.ɵɵFactoryDeclaration<NgThaanaDirective, never>;\n static ɵdir: i0.ɵɵDirectiveDeclaration<NgThaanaDirective, \"[ng-thaana]\", never, { \"flavor\": { \"alias\": \"flavor\"; \"required\": false; }; }, { \"ngThaana\": \"ng-thaana\"; \"thaanaToggled\": \"thaana-toggled\"; }, never, never, false, never>;\n}","originalLength":749,"removedExports":[],"renderedExports":["Flavor","NgThaanaDirective"],"renderedLength":592},"/Users/yameen/playground/tmp/ng-thaana/dist/ng-thaana/tmp-typings/lib/ng-thaana.module.d.ts":{"code":"declare class NgThaanaModule {\n static ɵfac: i0.ɵɵFactoryDeclaration<NgThaanaModule, never>;\n static ɵmod: i0.ɵɵNgModuleDeclaration<NgThaanaModule, [typeof NgThaanaDirective], never, [typeof NgThaanaDirective]>;\n static ɵinj: i0.ɵɵInjectorDeclaration<NgThaanaModule>;\n}","originalLength":374,"removedExports":[],"renderedExports":["NgThaanaModule"],"renderedLength":278},"/Users/yameen/playground/tmp/ng-thaana/dist/ng-thaana/tmp-typings/ng-thaana.d.ts":{"code":null,"originalLength":114,"removedExports":[],"renderedExports":[],"renderedLength":0}},"referencedFiles":[],"code":"import * as i0 from '@angular/core';\nimport { AfterViewInit, EventEmitter, ElementRef } from '@angular/core';\n\ntype Flavor = 'phonetic' | 'typewriter' | 'faseyha';\ndeclare class NgThaanaDirective implements AfterViewInit {\n private el;\n flavor: Flavor;\n ngThaana: EventEmitter<string>;\n thaanaToggled: EventEmitter<string>;\n constructor(el: ElementRef);\n ngAfterViewInit(): void;\n static ɵfac: i0.ɵɵFactoryDeclaration<NgThaanaDirective, never>;\n static ɵdir: i0.ɵɵDirectiveDeclaration<NgThaanaDirective, \"[ng-thaana]\", never, { \"flavor\": { \"alias\": \"flavor\"; \"required\": false; }; }, { \"ngThaana\": \"ng-thaana\"; \"thaanaToggled\": \"thaana-toggled\"; }, never, never, false, never>;\n}\n\ndeclare class NgThaanaModule {\n static ɵfac: i0.ɵɵFactoryDeclaration<NgThaanaModule, never>;\n static ɵmod: i0.ɵɵNgModuleDeclaration<NgThaanaModule, [typeof NgThaanaDirective], never, [typeof NgThaanaDirective]>;\n static ɵinj: i0.ɵɵInjectorDeclaration<NgThaanaModule>;\n}\n\nexport { NgThaanaDirective, NgThaanaModule };\nexport type { Flavor };\n","map":null,"preliminaryFileName":"index.d.ts","sourcemapFileName":null}],"fesm2022":[{"exports":["NgThaanaDirective","NgThaanaModule"],"facadeModuleId":"/Users/yameen/playground/tmp/ng-thaana/dist/ng-thaana/tmp-esm2022/ng-thaana.js","isDynamicEntry":false,"isEntry":true,"isImplicitEntry":false,"moduleIds":["/Users/yameen/playground/tmp/ng-thaana/dist/ng-thaana/tmp-esm2022/lib/ng-thaana.directive.js","/Users/yameen/playground/tmp/ng-thaana/dist/ng-thaana/tmp-esm2022/lib/ng-thaana.module.js","/Users/yameen/playground/tmp/ng-thaana/dist/ng-thaana/tmp-esm2022/public-api.js","/Users/yameen/playground/tmp/ng-thaana/dist/ng-thaana/tmp-esm2022/ng-thaana.js"],"name":"ng-thaana","type":"chunk","dynamicImports":[],"fileName":"ng-thaana.mjs","implicitlyLoadedBefore":[],"importedBindings":{"@angular/core":["EventEmitter","*","Output","Input","Directive","NgModule"],"dhivehi":["default"]},"imports":["@angular/core","dhivehi"],"modules":{"/Users/yameen/playground/tmp/ng-thaana/dist/ng-thaana/tmp-esm2022/lib/ng-thaana.directive.js":{"code":"class NgThaanaDirective {\n el;\n flavor = 'phonetic';\n ngThaana = new EventEmitter();\n thaanaToggled = new EventEmitter();\n constructor(el) {\n this.el = el;\n }\n ngAfterViewInit() {\n this.el.nativeElement.style.direction = 'rtl';\n this.el.nativeElement.addEventListener('thaana-toggled', (e) => {\n this.thaanaToggled.emit(e.detail);\n });\n Thaana(this.el.nativeElement, { flavor: this.flavor });\n }\n static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"20.3.11\", ngImport: i0, type: NgThaanaDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });\n static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"20.3.11\", type: NgThaanaDirective, isStandalone: false, selector: \"[ng-thaana]\", inputs: { flavor: \"flavor\" }, outputs: { ngThaana: \"ng-thaana\", thaanaToggled: \"thaana-toggled\" }, ngImport: i0 });\n}\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"20.3.11\", ngImport: i0, type: NgThaanaDirective, decorators: [{\n type: Directive,\n args: [{\n selector: '[ng-thaana]',\n standalone: false\n }]\n }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { flavor: [{\n type: Input,\n args: ['flavor']\n }], ngThaana: [{\n type: Output,\n args: ['ng-thaana']\n }], thaanaToggled: [{\n type: Output,\n args: ['thaana-toggled']\n }] } });","originalLength":1815,"removedExports":[],"renderedExports":["NgThaanaDirective"],"renderedLength":1589},"/Users/yameen/playground/tmp/ng-thaana/dist/ng-thaana/tmp-esm2022/lib/ng-thaana.module.js":{"code":"class NgThaanaModule {\n static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"20.3.11\", ngImport: i0, type: NgThaanaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });\n static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: \"14.0.0\", version: \"20.3.11\", ngImport: i0, type: NgThaanaModule, declarations: [NgThaanaDirective], exports: [NgThaanaDirective] });\n static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: \"12.0.0\", version: \"20.3.11\", ngImport: i0, type: NgThaanaModule });\n}\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"20.3.11\", ngImport: i0, type: NgThaanaModule, decorators: [{\n type: NgModule,\n args: [{\n declarations: [\n NgThaanaDirective\n ],\n imports: [],\n exports: [\n NgThaanaDirective\n ]\n }]\n }] });","originalLength":1132,"removedExports":[],"renderedExports":["NgThaanaModule"],"renderedLength":942},"/Users/yameen/playground/tmp/ng-thaana/dist/ng-thaana/tmp-esm2022/public-api.js":{"code":"/*\n * Public API Surface of ng-thaana\n */","originalLength":163,"removedExports":[],"renderedExports":[],"renderedLength":41},"/Users/yameen/playground/tmp/ng-thaana/dist/ng-thaana/tmp-esm2022/ng-thaana.js":{"code":"/**\n * Generated bundle index. Do not edit.\n */","originalLength":115,"removedExports":[],"renderedExports":[],"renderedLength":47}},"referencedFiles":[],"code":"import * as i0 from '@angular/core';\nimport { EventEmitter, Output, Input, Directive, NgModule } from '@angular/core';\nimport Thaana from 'dhivehi';\n\nclass NgThaanaDirective {\n el;\n flavor = 'phonetic';\n ngThaana = new EventEmitter();\n thaanaToggled = new EventEmitter();\n constructor(el) {\n this.el = el;\n }\n ngAfterViewInit() {\n this.el.nativeElement.style.direction = 'rtl';\n this.el.nativeElement.addEventListener('thaana-toggled', (e) => {\n this.thaanaToggled.emit(e.detail);\n });\n Thaana(this.el.nativeElement, { flavor: this.flavor });\n }\n static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"20.3.11\", ngImport: i0, type: NgThaanaDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });\n static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"20.3.11\", type: NgThaanaDirective, isStandalone: false, selector: \"[ng-thaana]\", inputs: { flavor: \"flavor\" }, outputs: { ngThaana: \"ng-thaana\", thaanaToggled: \"thaana-toggled\" }, ngImport: i0 });\n}\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"20.3.11\", ngImport: i0, type: NgThaanaDirective, decorators: [{\n type: Directive,\n args: [{\n selector: '[ng-thaana]',\n standalone: false\n }]\n }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { flavor: [{\n type: Input,\n args: ['flavor']\n }], ngThaana: [{\n type: Output,\n args: ['ng-thaana']\n }], thaanaToggled: [{\n type: Output,\n args: ['thaana-toggled']\n }] } });\n\nclass NgThaanaModule {\n static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"20.3.11\", ngImport: i0, type: NgThaanaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });\n static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: \"14.0.0\", version: \"20.3.11\", ngImport: i0, type: NgThaanaModule, declarations: [NgThaanaDirective], exports: [NgThaanaDirective] });\n static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: \"12.0.0\", version: \"20.3.11\", ngImport: i0, type: NgThaanaModule });\n}\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"20.3.11\", ngImport: i0, type: NgThaanaModule, decorators: [{\n type: NgModule,\n args: [{\n declarations: [\n NgThaanaDirective\n ],\n imports: [],\n exports: [\n NgThaanaDirective\n ]\n }]\n }] });\n\n/*\n * Public API Surface of ng-thaana\n */\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { NgThaanaDirective, NgThaanaModule };\n//# sourceMappingURL=ng-thaana.mjs.map\n","map":null,"preliminaryFileName":"ng-thaana.mjs","sourcemapFileName":"ng-thaana.mjs.map"},{"fileName":"ng-thaana.mjs.map","names":[],"needsCodeReference":false,"originalFileName":null,"originalFileNames":[],"source":"{\"version\":3,\"file\":\"ng-thaana.mjs\",\"sources\":[\"../../../projects/ng-thaana/src/lib/ng-thaana.directive.ts\",\"../../../projects/ng-thaana/src/lib/ng-thaana.module.ts\",\"../../../projects/ng-thaana/src/public-api.ts\",\"../../../projects/ng-thaana/src/ng-thaana.ts\"],\"sourcesContent\":[\"import { AfterViewInit, EventEmitter } from '@angular/core';\\nimport { Directive, ElementRef, Input, Output} from '@angular/core';\\n\\nimport Thaana from 'dhivehi'\\n\\n\\nexport type Flavor = 'phonetic' | 'typewriter' | 'faseyha'\\n\\n@Directive({\\n selector: '[ng-thaana]',\\n standalone: false\\n})\\nexport class NgThaanaDirective implements AfterViewInit {\\n\\n @Input('flavor') flavor: Flavor = 'phonetic';\\n @Output('ng-thaana') ngThaana = new EventEmitter<string>();\\n @Output('thaana-toggled') thaanaToggled = new EventEmitter<string>();\\n\\n constructor(private el: ElementRef) {}\\n\\n ngAfterViewInit(): void {\\n this.el.nativeElement.style.direction = 'rtl'\\n this.el.nativeElement.addEventListener('thaana-toggled', (e: CustomEvent) => {\\n this.thaanaToggled.emit(e.detail)\\n })\\n Thaana(this.el.nativeElement, { flavor: this.flavor })\\n }\\n\\n}\\n\",\"import { NgModule } from '@angular/core';\\nimport { NgThaanaDirective } from './ng-thaana.directive';\\n\\n\\n\\n@NgModule({\\n declarations: [\\n NgThaanaDirective\\n ],\\n imports: [\\n ],\\n exports: [\\n NgThaanaDirective\\n ]\\n})\\nexport class NgThaanaModule { }\\n\",\"/*\\n * Public API Surface of ng-thaana\\n */\\n\\nexport * from './lib/ng-thaana.directive';\\nexport * from './lib/ng-thaana.module';\\n\",\"/**\\n * Generated bundle index. Do not edit.\\n */\\n\\nexport * from './public-api';\\n\"],\"names\":[],\"mappings\":\";;;;MAYa,iBAAiB,CAAA;AAMR,IAAA,EAAA;IAJH,MAAM,GAAW,UAAU;AACvB,IAAA,QAAQ,GAAG,IAAI,YAAY,EAAU;AAChC,IAAA,aAAa,GAAG,IAAI,YAAY,EAAU;AAEpE,IAAA,WAAA,CAAoB,EAAc,EAAA;QAAd,IAAA,CAAA,EAAE,GAAF,EAAE;IAAe;IAErC,eAAe,GAAA;QACb,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC,KAAK,CAAC,SAAS,GAAG,KAAK;AAC7C,QAAA,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC,gBAAgB,CAAC,gBAAgB,EAAE,CAAC,CAAc,KAAI;YAC1E,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC;AACnC,QAAA,CAAC,CAAC;AACF,QAAA,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,aAAa,EAAE,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC;IACxD;wGAdW,iBAAiB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;4FAAjB,iBAAiB,EAAA,YAAA,EAAA,KAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,EAAA,MAAA,EAAA,QAAA,EAAA,EAAA,OAAA,EAAA,EAAA,QAAA,EAAA,WAAA,EAAA,aAAA,EAAA,gBAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA;;4FAAjB,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAJ7B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,aAAa;AACvB,oBAAA,UAAU,EAAE;AACb,iBAAA;;sBAGE,KAAK;uBAAC,QAAQ;;sBACd,MAAM;uBAAC,WAAW;;sBAClB,MAAM;uBAAC,gBAAgB;;;MCDb,cAAc,CAAA;wGAAd,cAAc,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA;yGAAd,cAAc,EAAA,YAAA,EAAA,CARvB,iBAAiB,CAAA,EAAA,OAAA,EAAA,CAKjB,iBAAiB,CAAA,EAAA,CAAA;yGAGR,cAAc,EAAA,CAAA;;4FAAd,cAAc,EAAA,UAAA,EAAA,CAAA;kBAV1B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ;AACD,qBAAA;AACD,oBAAA,OAAO,EAAE,EACR;AACD,oBAAA,OAAO,EAAE;wBACP;AACD;AACF,iBAAA;;;ACdD;;AAEG;;ACFH;;AAEG;;;;\"}","type":"asset"}]}
@@ -1 +0,0 @@
1
- {"fileNames":["../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.d.ts","../../../../../projects/ng-thaana/src/public-api.ngtypecheck.ts","../../../../../projects/ng-thaana/src/lib/ng-thaana.directive.ngtypecheck.ts","../../../../../node_modules/.pnpm/@angular+core@20.3.11_@angular+compiler@20.3.11_rxjs@7.8.2_zone.js@0.15.1/node_modules/@angular/core/formatter.d.d.ts","../../../../../node_modules/.pnpm/@angular+core@20.3.11_@angular+compiler@20.3.11_rxjs@7.8.2_zone.js@0.15.1/node_modules/@angular/core/event_dispatcher.d.d.ts","../../../../../node_modules/.pnpm/@angular+core@20.3.11_@angular+compiler@20.3.11_rxjs@7.8.2_zone.js@0.15.1/node_modules/@angular/core/chrome_dev_tools_performance.d.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/subscription.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/subscriber.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operator.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/types.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/audit.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/audittime.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/buffer.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/buffercount.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/buffertime.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/buffertoggle.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/bufferwhen.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/catcherror.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/combinelatestall.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/combineall.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/combinelatest.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/combinelatestwith.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/concat.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/concatall.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/concatmap.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/concatmapto.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/concatwith.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/connect.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/count.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/debounce.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/debouncetime.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/defaultifempty.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/delay.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/delaywhen.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/dematerialize.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/distinct.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/distinctuntilchanged.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/distinctuntilkeychanged.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/elementat.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/endwith.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/every.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/exhaustall.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/exhaust.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/exhaustmap.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/expand.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/filter.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/finalize.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/find.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/findindex.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/first.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/subject.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/groupby.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/ignoreelements.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/isempty.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/last.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/map.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/mapto.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/notification.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/materialize.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/max.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/merge.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/mergeall.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/mergemap.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/flatmap.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/mergemapto.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/mergescan.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/mergewith.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/min.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/connectableobservable.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/multicast.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/observeon.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/onerrorresumenextwith.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/pairwise.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/partition.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/pluck.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/publish.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/publishbehavior.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/publishlast.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/publishreplay.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/race.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/racewith.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/reduce.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/repeat.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/repeatwhen.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/retry.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/retrywhen.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/refcount.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/sample.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/sampletime.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/scan.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/sequenceequal.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/share.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/sharereplay.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/single.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/skip.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/skiplast.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/skipuntil.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/skipwhile.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/startwith.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/subscribeon.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/switchall.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/switchmap.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/switchmapto.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/switchscan.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/take.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/takelast.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/takeuntil.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/takewhile.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/tap.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/throttle.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/throttletime.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/throwifempty.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/timeinterval.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/timeout.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/timeoutwith.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/timestamp.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/toarray.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/window.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/windowcount.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/windowtime.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/windowtoggle.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/windowwhen.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/withlatestfrom.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/zip.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/zipall.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/operators/zipwith.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/operators/index.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/scheduler/action.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/scheduler.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/testing/testmessage.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/testing/subscriptionlog.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/testing/subscriptionloggable.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/testing/coldobservable.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/testing/hotobservable.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/scheduler/asyncscheduler.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/scheduler/timerhandle.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/scheduler/asyncaction.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/scheduler/virtualtimescheduler.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/testing/testscheduler.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/testing/index.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/symbol/observable.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/dom/animationframes.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/behaviorsubject.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/replaysubject.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/asyncsubject.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/scheduler/asapscheduler.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/scheduler/asap.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/scheduler/async.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/scheduler/queuescheduler.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/scheduler/queue.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/scheduler/animationframescheduler.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/scheduler/animationframe.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/util/identity.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/util/pipe.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/util/noop.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/util/isobservable.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/lastvaluefrom.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/firstvaluefrom.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/util/argumentoutofrangeerror.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/util/emptyerror.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/util/notfounderror.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/util/objectunsubscribederror.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/util/sequenceerror.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/util/unsubscriptionerror.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/bindcallback.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/bindnodecallback.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/anycatcher.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/combinelatest.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/concat.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/connectable.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/defer.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/empty.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/forkjoin.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/from.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/fromevent.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/fromeventpattern.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/generate.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/iif.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/interval.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/merge.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/never.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/of.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/onerrorresumenext.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/pairs.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/partition.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/race.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/range.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/throwerror.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/timer.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/using.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/observable/zip.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/scheduled/scheduled.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/internal/config.d.ts","../../../../../node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/types/index.d.ts","../../../../../node_modules/.pnpm/@angular+core@20.3.11_@angular+compiler@20.3.11_rxjs@7.8.2_zone.js@0.15.1/node_modules/@angular/core/effect.d.d.ts","../../../../../node_modules/.pnpm/@angular+core@20.3.11_@angular+compiler@20.3.11_rxjs@7.8.2_zone.js@0.15.1/node_modules/@angular/core/primitives/di/index.d.ts","../../../../../node_modules/.pnpm/@angular+core@20.3.11_@angular+compiler@20.3.11_rxjs@7.8.2_zone.js@0.15.1/node_modules/@angular/core/discovery.d.d.ts","../../../../../node_modules/.pnpm/@angular+core@20.3.11_@angular+compiler@20.3.11_rxjs@7.8.2_zone.js@0.15.1/node_modules/@angular/core/api.d.d.ts","../../../../../node_modules/.pnpm/@angular+core@20.3.11_@angular+compiler@20.3.11_rxjs@7.8.2_zone.js@0.15.1/node_modules/@angular/core/weak_ref.d.d.ts","../../../../../node_modules/.pnpm/@angular+core@20.3.11_@angular+compiler@20.3.11_rxjs@7.8.2_zone.js@0.15.1/node_modules/@angular/core/index.d.ts","../../../../../node_modules/.pnpm/dhivehi@1.2.12/node_modules/dhivehi/lib/index.d.ts","../../../../../projects/ng-thaana/src/lib/ng-thaana.directive.ts","../../../../../projects/ng-thaana/src/lib/ng-thaana.module.ngtypecheck.ts","../../../../../projects/ng-thaana/src/lib/ng-thaana.module.ts","../../../../../projects/ng-thaana/src/public-api.ts","../../../../../projects/ng-thaana/src/ng-thaana.ts"],"fileIdsList":[[37],[35,36],[35,36,37,226,227,228],[35],[35,36,37,226,227,228,229,230,231],[38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,54,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,161,170,172,173,174,175,176,177,179,180,182,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225],[83],[39,42],[41],[41,42],[38,39,40,42],[39,41,42,199],[42],[38,41,83],[41,42,199],[41,207],[39,41,42],[51],[74],[95],[41,42,83],[42,90],[41,42,83,101],[41,42,101],[42,142],[42,83],[38,42,160],[38,42,161],[183],[167,169],[178],[167],[38,42,160,167,168],[160,161,169],[181],[38,42,167,168,169],[40,41,42],[38,42],[39,41,161,162,163,164],[83,161,162,163,164],[161,163],[41,162,163,165,166,170],[38,41],[42,185],[43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158],[171],[32],[32,34,232,233],[32,232,234,235],[32,237],[32,33,234,236]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","signature":"da14a67372982ca6e605fea114900b492b3316618581634e0ce72afbcb09baca"},{"version":"ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","signature":"da14a67372982ca6e605fea114900b492b3316618581634e0ce72afbcb09baca"},{"version":"df790f3e6e6720931ae4e61209b787b35a353e1e9bc9a1452f3085aa0a8f1246","affectsGlobalScope":true,"impliedFormat":99},{"version":"a9d053706c327b7114a4715a8f45fb478f19f8a56812febec75d0290ac9e40d6","affectsGlobalScope":true,"impliedFormat":99},{"version":"d8a6d4812234d63f9be0a6b7db74c0fd16ebf79c12b16dae20fa6a2dd7997f4a","affectsGlobalScope":true,"impliedFormat":99},{"version":"073ca26c96184db9941b5ec0ddea6981c9b816156d9095747809e524fdd90e35","impliedFormat":1},{"version":"e41d17a2ec23306d953cda34e573ed62954ca6ea9b8c8b74e013d07a6886ce47","impliedFormat":1},{"version":"241bd4add06f06f0699dcd58f3b334718d85e3045d9e9d4fa556f11f4d1569c1","impliedFormat":1},{"version":"2ae3787e1498b20aad1b9c2ee9ea517ec30e89b70d242d8e3e52d1e091039695","impliedFormat":1},{"version":"c7c72c4cffb1bc83617eefed71ed68cc89df73cab9e19507ccdecb3e72b4967e","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8bff8a60af0173430b18d9c3e5c443eaa3c515617210c0c7b3d2e1743c19ecb","impliedFormat":1},{"version":"38b38db08e7121828294dec10957a7a9ff263e33e2a904b346516d4a4acca482","impliedFormat":1},{"version":"a76ebdf2579e68e4cfe618269c47e5a12a4e045c2805ed7f7ab37af8daa6b091","impliedFormat":1},{"version":"8a2aaea564939c22be05d665cc955996721bad6d43148f8fa21ae8f64afecd37","impliedFormat":1},{"version":"e59d36b7b6e8ba2dd36d032a5f5c279d2460968c8b4e691ca384f118fb09b52a","impliedFormat":1},{"version":"e96885c0684c9042ec72a9a43ef977f6b4b4a2728f4b9e737edcbaa0c74e5bf6","impliedFormat":1},{"version":"95950a187596e206d32d5d9c7b932901088c65ed8f9040e614aa8e321e0225ef","impliedFormat":1},{"version":"89e061244da3fc21b7330f4bd32f47c1813dd4d7f1dc3d0883d88943f035b993","impliedFormat":1},{"version":"e46558c2e04d06207b080138678020448e7fc201f3d69c2601b0d1456105f29a","impliedFormat":1},{"version":"71549375db52b1163411dba383b5f4618bdf35dc57fa327a1c7d135cf9bf67d1","impliedFormat":1},{"version":"7e6b2d61d6215a4e82ea75bc31a80ebb8ad0c2b37a60c10c70dd671e8d9d6d5d","impliedFormat":1},{"version":"78bea05df2896083cca28ed75784dde46d4b194984e8fc559123b56873580a23","impliedFormat":1},{"version":"5dd04ced37b7ea09f29d277db11f160df7fd73ba8b9dba86cb25552e0653a637","impliedFormat":1},{"version":"f74b81712e06605677ae1f061600201c425430151f95b5ef4d04387ad7617e6a","impliedFormat":1},{"version":"9a72847fcf4ac937e352d40810f7b7aec7422d9178451148296cf1aa19467620","impliedFormat":1},{"version":"3ae18f60e0b96fa1e025059b7d25b3247ba4dcb5f4372f6d6e67ce2adac74eac","impliedFormat":1},{"version":"2b9260f44a2e071450ae82c110f5dc8f330c9e5c3e85567ed97248330f2bf639","impliedFormat":1},{"version":"4f196e13684186bda6f5115fc4677a87cf84a0c9c4fc17b8f51e0984f3697b6d","impliedFormat":1},{"version":"61419f2c5822b28c1ea483258437c1faab87d00c6f84481aa22afb3380d8e9a4","impliedFormat":1},{"version":"64479aee03812264e421c0bf5104a953ca7b02740ba80090aead1330d0effe91","impliedFormat":1},{"version":"0521108c9f8ddb17654a0a54dae6ba9667c99eddccfd6af5748113e022d1c37a","impliedFormat":1},{"version":"c5570e504be103e255d80c60b56c367bf45d502ca52ee35c55dec882f6563b5c","impliedFormat":1},{"version":"ee764e6e9a7f2b987cc1a2c0a9afd7a8f4d5ebc4fdb66ad557a7f14a8c2bd320","impliedFormat":1},{"version":"0520b5093712c10c6ef23b5fea2f833bf5481771977112500045e5ea7e8e2b69","impliedFormat":1},{"version":"5c3cf26654cf762ac4d7fd7b83f09acfe08eef88d2d6983b9a5a423cb4004ca3","impliedFormat":1},{"version":"e60fa19cf7911c1623b891155d7eb6b7e844e9afdf5738e3b46f3b687730a2bd","impliedFormat":1},{"version":"b1fd72ff2bb0ba91bb588f3e5329f8fc884eb859794f1c4657a2bfa122ae54d0","impliedFormat":1},{"version":"6cf42a4f3cfec648545925d43afaa8bb364ac10a839ffed88249da109361b275","impliedFormat":1},{"version":"d7058e75920120b142a9d57be25562a3cd9a936269fd52908505f530105f2ec4","impliedFormat":1},{"version":"6df52b70d7f7702202f672541a5f4a424d478ee5be51a9d37b8ccbe1dbf3c0f2","impliedFormat":1},{"version":"0ca7f997e9a4d8985e842b7c882e521b6f63233c4086e9fe79dd7a9dc4742b5e","impliedFormat":1},{"version":"91046b5c6b55d3b194c81fd4df52f687736fad3095e9d103ead92bb64dc160ee","impliedFormat":1},{"version":"db5704fdad56c74dfc5941283c1182ed471bd17598209d3ac4a49faa72e43cfc","impliedFormat":1},{"version":"758e8e89559b02b81bc0f8fd395b17ad5aff75490c862cbe369bb1a3d1577c40","impliedFormat":1},{"version":"2ee64342c077b1868f1834c063f575063051edd6e2964257d34aad032d6b657c","impliedFormat":1},{"version":"6f6b4b3d670b6a5f0e24ea001c1b3d36453c539195e875687950a178f1730fa7","impliedFormat":1},{"version":"a472a1d3f25ce13a1d44911cd3983956ac040ce2018e155435ea34afb25f864c","impliedFormat":1},{"version":"b48b83a86dd9cfe36f8776b3ff52fcd45b0e043c0538dc4a4b149ba45fe367b9","impliedFormat":1},{"version":"792de5c062444bd2ee0413fb766e57e03cce7cdaebbfc52fc0c7c8e95069c96b","impliedFormat":1},{"version":"a79e3e81094c7a04a885bad9b049c519aace53300fb8a0fe4f26727cb5a746ce","impliedFormat":1},{"version":"93181bac0d90db185bb730c95214f6118ae997fe836a98a49664147fbcaf1988","impliedFormat":1},{"version":"8a4e89564d8ea66ad87ee3762e07540f9f0656a62043c910d819b4746fc429c5","impliedFormat":1},{"version":"b9011d99942889a0f95e120d06b698c628b0b6fdc3e6b7ecb459b97ed7d5bcc6","impliedFormat":1},{"version":"4d639cbbcc2f8f9ce6d55d5d503830d6c2556251df332dc5255d75af53c8a0e7","impliedFormat":1},{"version":"cdb48277f600ab5f429ecf1c5ea046683bc6b9f73f3deab9a100adac4b34969c","impliedFormat":1},{"version":"75be84956a29040a1afbe864c0a7a369dfdb739380072484eff153905ef867ee","impliedFormat":1},{"version":"b06b4adc2ae03331a92abd1b19af8eb91ec2bf8541747ee355887a167d53145e","impliedFormat":1},{"version":"c54166a85bd60f86d1ebb90ce0117c0ecb850b8a33b366691629fdf26f1bbbd8","impliedFormat":1},{"version":"0d417c15c5c635384d5f1819cc253a540fe786cc3fda32f6a2ae266671506a21","impliedFormat":1},{"version":"80f23f1d60fbed356f726b3b26f9d348dddbb34027926d10d59fad961e70a730","impliedFormat":1},{"version":"cb59317243a11379a101eb2f27b9df1022674c3df1df0727360a0a3f963f523b","impliedFormat":1},{"version":"cc20bb2227dd5de0aab0c8d697d1572f8000550e62c7bf5c92f212f657dd88c5","impliedFormat":1},{"version":"06b8a7d46195b6b3980e523ef59746702fd210b71681a83a5cf73799623621f9","impliedFormat":1},{"version":"860e4405959f646c101b8005a191298b2381af8f33716dc5f42097e4620608f8","impliedFormat":1},{"version":"f7e32adf714b8f25d3c1783473abec3f2e82d5724538d8dcf6f51baaaff1ca7a","impliedFormat":1},{"version":"d0da80c845999a16c24d0783033fb5366ada98df17867c98ad433ede05cd87fd","impliedFormat":1},{"version":"bfbf80f9cd4558af2d7b2006065340aaaced15947d590045253ded50aabb9bc5","impliedFormat":1},{"version":"fd9a991b51870325e46ebb0e6e18722d313f60cd8e596e645ec5ac15b96dbf4e","impliedFormat":1},{"version":"c3bd2b94e4298f81743d92945b80e9b56c1cdfb2bef43c149b7106a2491b1fc9","impliedFormat":1},{"version":"a246cce57f558f9ebaffd55c1e5673da44ea603b4da3b2b47eb88915d30a9181","impliedFormat":1},{"version":"d993eacc103c5a065227153c9aae8acea3a4322fe1a169ee7c70b77015bf0bb2","impliedFormat":1},{"version":"fc2b03d0c042aa1627406e753a26a1eaad01b3c496510a78016822ef8d456bb6","impliedFormat":1},{"version":"063c7ebbe756f0155a8b453f410ca6b76ffa1bbc1048735bcaf9c7c81a1ce35f","impliedFormat":1},{"version":"314e402cd481370d08f63051ae8b8c8e6370db5ee3b8820eeeaaf8d722a6dac6","impliedFormat":1},{"version":"9669075ac38ce36b638b290ba468233980d9f38bdc62f0519213b2fd3e2552ec","impliedFormat":1},{"version":"4d123de012c24e2f373925100be73d50517ac490f9ed3578ac82d0168bfbd303","impliedFormat":1},{"version":"656c9af789629aa36b39092bee3757034009620439d9a39912f587538033ce28","impliedFormat":1},{"version":"3ac3f4bdb8c0905d4c3035d6f7fb20118c21e8a17bee46d3735195b0c2a9f39f","impliedFormat":1},{"version":"1f453e6798ed29c86f703e9b41662640d4f2e61337007f27ac1c616f20093f69","impliedFormat":1},{"version":"af43b7871ff21c62bf1a54ec5c488e31a8d3408d5b51ff2e9f8581b6c55f2fc7","impliedFormat":1},{"version":"70550511d25cbb0b6a64dcac7fffc3c1397fd4cbeb6b23ccc7f9b794ab8a6954","impliedFormat":1},{"version":"af0fbf08386603a62f2a78c42d998c90353b1f1d22e05a384545f7accf881e0a","impliedFormat":1},{"version":"cefc20054d20b85b534206dbcedd509bb74f87f3d8bc45c58c7be3a76caa45e1","impliedFormat":1},{"version":"ad6eee4877d0f7e5244d34bc5026fd6e9cf8e66c5c79416b73f9f6ebf132f924","impliedFormat":1},{"version":"4888fd2bcfee9a0ce89d0df860d233e0cee8ee9c479b6bd5a5d5f9aae98342fe","impliedFormat":1},{"version":"f4749c102ced952aa6f40f0b579865429c4869f6d83df91000e98005476bee87","impliedFormat":1},{"version":"56654d2c5923598384e71cb808fac2818ca3f07dd23bb018988a39d5e64f268b","impliedFormat":1},{"version":"8b6719d3b9e65863da5390cb26994602c10a315aa16e7d70778a63fee6c4c079","impliedFormat":1},{"version":"05f56cd4b929977d18df8f3d08a4c929a2592ef5af083e79974b20a063f30940","impliedFormat":1},{"version":"547d3c406a21b30e2b78629ecc0b2ddaf652d9e0bdb2d59ceebce5612906df33","impliedFormat":1},{"version":"b3a4f9385279443c3a5568ec914a9492b59a723386161fd5ef0619d9f8982f97","impliedFormat":1},{"version":"3fe66aba4fbe0c3ba196a4f9ed2a776fe99dc4d1567a558fb11693e9fcc4e6ed","impliedFormat":1},{"version":"140eef237c7db06fc5adcb5df434ee21e81ee3a6fd57e1a75b8b3750aa2df2d8","impliedFormat":1},{"version":"0944ec553e4744efae790c68807a461720cff9f3977d4911ac0d918a17c9dd99","impliedFormat":1},{"version":"cb46b38d5e791acaa243bf342b8b5f8491639847463ac965b93896d4fb0af0d9","impliedFormat":1},{"version":"7c7d9e116fe51100ff766703e6b5e4424f51ad8977fe474ddd8d0959aa6de257","impliedFormat":1},{"version":"af70a2567e586be0083df3938b6a6792e6821363d8ef559ad8d721a33a5bcdaf","impliedFormat":1},{"version":"006cff3a8bcb92d77953f49a94cd7d5272fef4ab488b9052ef82b6a1260d870b","impliedFormat":1},{"version":"7d44bfdc8ee5e9af70738ff652c622ae3ad81815e63ab49bdc593d34cb3a68e5","impliedFormat":1},{"version":"339814517abd4dbc7b5f013dfd3b5e37ef0ea914a8bbe65413ecffd668792bc6","impliedFormat":1},{"version":"34d5bc0a6958967ec237c99f980155b5145b76e6eb927c9ffc57d8680326b5d8","impliedFormat":1},{"version":"9eae79b70c9d8288032cbe1b21d0941f6bd4f315e14786b2c1d10bccc634e897","impliedFormat":1},{"version":"18ce015ed308ea469b13b17f99ce53bbb97975855b2a09b86c052eefa4aa013a","impliedFormat":1},{"version":"5a931bc4106194e474be141e0bc1046629510dc95b9a0e4b02a3783847222965","impliedFormat":1},{"version":"5e5f371bf23d5ced2212a5ff56675aefbd0c9b3f4d4fdda1b6123ac6e28f058c","impliedFormat":1},{"version":"907c17ad5a05eecb29b42b36cc8fec6437be27cc4986bb3a218e4f74f606911c","impliedFormat":1},{"version":"ce60a562cd2a92f37a88f2ddd99a3abfbc5848d7baf38c48fb8d3243701fcb75","impliedFormat":1},{"version":"a726ad2d0a98bfffbe8bc1cd2d90b6d831638c0adc750ce73103a471eb9a891c","impliedFormat":1},{"version":"f44c0c8ce58d3dacac016607a1a90e5342d830ea84c48d2e571408087ae55894","impliedFormat":1},{"version":"75a315a098e630e734d9bc932d9841b64b30f7a349a20cf4717bf93044eff113","impliedFormat":1},{"version":"9131d95e32b3d4611d4046a613e022637348f6cebfe68230d4e81b691e4761a1","impliedFormat":1},{"version":"b03aa292cfdcd4edc3af00a7dbd71136dd067ec70a7536b655b82f4dd444e857","impliedFormat":1},{"version":"b6e2b0448ced813b8c207810d96551a26e7d7bb73255eea4b9701698f78846d6","impliedFormat":1},{"version":"8ae10cd85c1bd94d2f2d17c4cbd25c068a4b2471c70c2d96434239f97040747a","impliedFormat":1},{"version":"9ed5b799c50467b0c9f81ddf544b6bcda3e34d92076d6cab183c84511e45c39f","impliedFormat":1},{"version":"b4fa87cc1833839e51c49f20de71230e259c15b2c9c3e89e4814acc1d1ef10de","impliedFormat":1},{"version":"e90ac9e4ac0326faa1bc39f37af38ace0f9d4a655cd6d147713c653139cf4928","impliedFormat":1},{"version":"ea27110249d12e072956473a86fd1965df8e1be985f3b686b4e277afefdde584","impliedFormat":1},{"version":"8776a368617ce51129b74db7d55c3373dadcce5d0701e61d106e99998922a239","impliedFormat":1},{"version":"5666075052877fe2fdddd5b16de03168076cf0f03fbca5c1d4a3b8f43cba570c","impliedFormat":1},{"version":"9108ab5af05418f599ab48186193b1b07034c79a4a212a7f73535903ba4ca249","impliedFormat":1},{"version":"bb4e2cdcadf9c9e6ee2820af23cee6582d47c9c9c13b0dca1baaffe01fbbcb5f","impliedFormat":1},{"version":"6e30d0b5a1441d831d19fe02300ab3d83726abd5141cbcc0e2993fa0efd33db4","impliedFormat":1},{"version":"423f28126b2fc8d8d6fa558035309000a1297ed24473c595b7dec52e5c7ebae5","impliedFormat":1},{"version":"fb30734f82083d4790775dae393cd004924ebcbfde49849d9430bf0f0229dd16","impliedFormat":1},{"version":"2c92b04a7a4a1cd9501e1be338bf435738964130fb2ad5bd6c339ee41224ac4c","impliedFormat":1},{"version":"c5c5f0157b41833180419dacfbd2bcce78fb1a51c136bd4bcba5249864d8b9b5","impliedFormat":1},{"version":"02ae43d5bae42efcd5a00d3923e764895ce056bca005a9f4e623aa6b4797c8af","impliedFormat":1},{"version":"db6e01f17012a9d7b610ae764f94a1af850f5d98c9c826ad61747dca0fb800bd","impliedFormat":1},{"version":"8a44b424edee7bb17dc35a558cc15f92555f14a0441205613e0e50452ab3a602","impliedFormat":1},{"version":"24a00d0f98b799e6f628373249ece352b328089c3383b5606214357e9107e7d5","impliedFormat":1},{"version":"33637e3bc64edd2075d4071c55d60b32bdb0d243652977c66c964021b6fc8066","impliedFormat":1},{"version":"0f0ad9f14dedfdca37260931fac1edf0f6b951c629e84027255512f06a6ebc4c","impliedFormat":1},{"version":"16ad86c48bf950f5a480dc812b64225ca4a071827d3d18ffc5ec1ae176399e36","impliedFormat":1},{"version":"8cbf55a11ff59fd2b8e39a4aa08e25c5ddce46e3af0ed71fb51610607a13c505","impliedFormat":1},{"version":"d5bc4544938741f5daf8f3a339bfbf0d880da9e89e79f44a6383aaf056fe0159","impliedFormat":1},{"version":"97f9169882d393e6f303f570168ca86b5fe9aab556e9a43672dae7e6bb8e6495","impliedFormat":1},{"version":"7c9adb3fcd7851497818120b7e151465406e711d6a596a71b807f3a17853cb58","impliedFormat":1},{"version":"6752d402f9282dd6f6317c8c048aaaac27295739a166eed27e00391b358fed9a","impliedFormat":1},{"version":"9fd7466b77020847dbc9d2165829796bf7ea00895b2520ff3752ffdcff53564b","impliedFormat":1},{"version":"fbfc12d54a4488c2eb166ed63bab0fb34413e97069af273210cf39da5280c8d6","impliedFormat":1},{"version":"85a84240002b7cf577cec637167f0383409d086e3c4443852ca248fc6e16711e","impliedFormat":1},{"version":"84794e3abd045880e0fadcf062b648faf982aa80cfc56d28d80120e298178626","impliedFormat":1},{"version":"053d8b827286a16a669a36ffc8ccc8acdf8cc154c096610aa12348b8c493c7b8","impliedFormat":1},{"version":"3cce4ce031710970fe12d4f7834375f5fd455aa129af4c11eb787935923ff551","impliedFormat":1},{"version":"8f62cbd3afbd6a07bb8c934294b6bfbe437021b89e53a4da7de2648ecfc7af25","impliedFormat":1},{"version":"62c3621d34fb2567c17a2c4b89914ebefbfbd1b1b875b070391a7d4f722e55dc","impliedFormat":1},{"version":"c05ac811542e0b59cb9c2e8f60e983461f0b0e39cea93e320fad447ff8e474f3","impliedFormat":1},{"version":"8e7a5b8f867b99cc8763c0b024068fb58e09f7da2c4810c12833e1ca6eb11c4f","impliedFormat":1},{"version":"132351cbd8437a463757d3510258d0fa98fd3ebef336f56d6f359cf3e177a3ce","impliedFormat":1},{"version":"df877050b04c29b9f8409aa10278d586825f511f0841d1ec41b6554f8362092b","impliedFormat":1},{"version":"33d1888c3c27d3180b7fd20bac84e97ecad94b49830d5dd306f9e770213027d1","impliedFormat":1},{"version":"ee942c58036a0de88505ffd7c129f86125b783888288c2389330168677d6347f","impliedFormat":1},{"version":"a3f317d500c30ea56d41501632cdcc376dae6d24770563a5e59c039e1c2a08ec","impliedFormat":1},{"version":"eb21ddc3a8136a12e69176531197def71dc28ffaf357b74d4bf83407bd845991","impliedFormat":1},{"version":"0c1651a159995dfa784c57b4ea9944f16bdf8d924ed2d8b3db5c25d25749a343","impliedFormat":1},{"version":"aaa13958e03409d72e179b5d7f6ec5c6cc666b7be14773ae7b6b5ee4921e52db","impliedFormat":1},{"version":"0a86e049843ad02977a94bb9cdfec287a6c5a0a4b6b5391a6648b1a122072c5a","impliedFormat":1},{"version":"40f06693e2e3e58526b713c937895c02e113552dc8ba81ecd49cdd9596567ddb","impliedFormat":1},{"version":"4ed5e1992aedb174fb8f5aa8796aa6d4dcb8bd819b4af1b162a222b680a37fa0","impliedFormat":1},{"version":"d7f4bd46a8b97232ea6f8c28012b8d2b995e55e729d11405f159d3e00c51420a","impliedFormat":1},{"version":"d604d413aff031f4bfbdae1560e54ebf503d374464d76d50a2c6ded4df525712","impliedFormat":1},{"version":"e4f4f9cf1e3ac9fd91ada072e4d428ecbf0aa6dc57138fb797b8a0ca3a1d521c","impliedFormat":1},{"version":"12bfd290936824373edda13f48a4094adee93239b9a73432db603127881a300d","impliedFormat":1},{"version":"340ceb3ea308f8e98264988a663640e567c553b8d6dc7d5e43a8f3b64f780374","impliedFormat":1},{"version":"c5a769564e530fba3ec696d0a5cff1709b9095a0bdf5b0826d940d2fc9786413","impliedFormat":1},{"version":"7124ef724c3fc833a17896f2d994c368230a8d4b235baed39aa8037db31de54f","impliedFormat":1},{"version":"5de1c0759a76e7710f76899dcae601386424eab11fb2efaf190f2b0f09c3d3d3","impliedFormat":1},{"version":"9c5ee8f7e581f045b6be979f062a61bf076d362bf89c7f966b993a23424e8b0d","impliedFormat":1},{"version":"1a11df987948a86aa1ec4867907c59bdf431f13ed2270444bf47f788a5c7f92d","impliedFormat":1},{"version":"8018dd2e95e7ce6e613ddd81672a54532614dc745520a2f9e3860ff7fb1be0ca","impliedFormat":1},{"version":"b756781cd40d465da57d1fc6a442c34ae61fe8c802d752aace24f6a43fedacee","impliedFormat":1},{"version":"0fe76167c87289ea094e01616dcbab795c11b56bad23e1ef8aba9aa37e93432a","impliedFormat":1},{"version":"3a45029dba46b1f091e8dc4d784e7be970e209cd7d4ff02bd15270a98a9ba24b","impliedFormat":1},{"version":"032c1581f921f8874cf42966f27fd04afcabbb7878fa708a8251cac5415a2a06","impliedFormat":1},{"version":"69c68ed9652842ce4b8e495d63d2cd425862104c9fb7661f72e7aa8a9ef836f8","impliedFormat":1},{"version":"0e704ee6e9fd8b6a5a7167886f4d8915f4bc22ed79f19cb7b32bd28458f50643","impliedFormat":1},{"version":"06f62a14599a68bcde148d1efd60c2e52e8fa540cc7dcfa4477af132bb3de271","impliedFormat":1},{"version":"904a96f84b1bcee9a7f0f258d17f8692e6652a0390566515fe6741a5c6db8c1c","impliedFormat":1},{"version":"11f19ce32d21222419cecab448fa335017ebebf4f9e5457c4fa9df42fa2dcca7","impliedFormat":1},{"version":"2e8ee2cbb5e9159764e2189cf5547aebd0e6b0d9a64d479397bb051cd1991744","impliedFormat":1},{"version":"1b0471d75f5adb7f545c1a97c02a0f825851b95fe6e069ac6ecaa461b8bb321d","impliedFormat":1},{"version":"1d157c31a02b1e5cca9bc495b3d8d39f4b42b409da79f863fb953fbe3c7d4884","impliedFormat":1},{"version":"07baaceaec03d88a4b78cb0651b25f1ae0322ac1aa0b555ae3749a79a41cba86","impliedFormat":1},{"version":"619a132f634b4ebe5b4b4179ea5870f62f2cb09916a25957bff17b408de8b56d","impliedFormat":1},{"version":"f60fa446a397eb1aead9c4e568faf2df8068b4d0306ebc075fb4be16ed26b741","impliedFormat":1},{"version":"f3cb784be4d9e91f966a0b5052a098d9b53b0af0d341f690585b0cc05c6ca412","impliedFormat":1},{"version":"350f63439f8fe2e06c97368ddc7fb6d6c676d54f59520966f7dbbe6a4586014e","impliedFormat":1},{"version":"eba613b9b357ac8c50a925fa31dc7e65ff3b95a07efbaa684b624f143d8d34ba","impliedFormat":1},{"version":"45b74185005ed45bec3f07cac6e4d68eaf02ead9ff5a66721679fb28020e5e7c","impliedFormat":1},{"version":"0f6199602df09bdb12b95b5434f5d7474b1490d2cd8cc036364ab3ba6fd24263","impliedFormat":1},{"version":"c8ca7fd9ec7a3ec82185bfc8213e4a7f63ae748fd6fced931741d23ef4ea3c0f","impliedFormat":1},{"version":"5c6a8a3c2a8d059f0592d4eab59b062210a1c871117968b10797dee36d991ef7","impliedFormat":1},{"version":"ad77fd25ece8e09247040826a777dc181f974d28257c9cd5acb4921b51967bd8","impliedFormat":1},{"version":"e0febb222240aa2a64b9b8bcd7ba515545644f8fa8e9705d177d4816d6dd0fd4","impliedFormat":99},{"version":"5f493740984de4b74957f46edf9ff101e974066f5d587086aab964760957d315","impliedFormat":99},{"version":"5864c6a1facf16a3fb6f193513783d66b9a2f86bf01d2c9fcfc13cd8d270ed76","impliedFormat":99},{"version":"83d2432964b124ea6bbf52604e7977659b747122431eb32524c8233889a22e07","impliedFormat":99},{"version":"1a6875159f622c0a292af502383da72e9cc02991fe32e5b85e1d5e1579337409","impliedFormat":99},{"version":"9e9e3e608ae7bfbf0caf93d866b346e6caf6f9f3a7cc95f4d648a1c0059316d1","impliedFormat":99},{"version":"27ce41291137ce30fd5819c2642e373060568a5d5d8d5b3db22c2bdd047ef97c","impliedFormat":1},{"version":"d74dd4dce4c7ad8d5fdff8474b789eff03092ba6c10971d6e74911e3c5150f72","signature":"d1ec8fe16e0348d162d62db464be6561ef4deb09b3f0b8021197d433ca0264b8"},{"version":"ddd578018a259d1c494c834bdd8707769d07d1eb64f87f5217560cd2181b9e93","signature":"da14a67372982ca6e605fea114900b492b3316618581634e0ce72afbcb09baca"},{"version":"659694888c4124f5b4db30ca8695e782800ec5349bd482ae4641cb827c8b6dcb","signature":"283589e4b8b163d7b09a0b3e4089d3000acba2fd6e943de8c1e58c35befc95f5"},{"version":"f50b91e5ba168a97fbb96ed56eace845f8bbeef7c7fff2cd7d40ebcb93b01c07","signature":"cc015c617a4f188b31d9a9e0be0c1f01f8f618b4830915cdf4967e221776935b"},{"version":"269d25eb06209a2c77ae508fc403acce843266c8a3c2cc55b511a264b5c1868c","signature":"25053a95945aed90eb87d2855ea643879fccf68fd16d22a74e0fd5179c9d17af"}],"root":[33,237,238],"options":{"composite":false,"declaration":true,"declarationDir":"../../../../../dist/ng-thaana/tmp-typings","declarationMap":false,"downlevelIteration":true,"experimentalDecorators":true,"importHelpers":true,"inlineSourceMap":false,"inlineSources":true,"module":6,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"outDir":"../../../../../dist/ng-thaana/tmp-esm2022","removeComments":false,"rootDir":"../../../../../projects/ng-thaana/src","sourceMap":true,"sourceRoot":"","strict":true,"target":9,"tsBuildInfoFile":"./ng-thaana.tsbuildinfo"},"referencedMap":[[230,1],[37,2],[229,3],[227,4],[232,5],[226,6],[177,7],[175,7],[225,8],[190,9],[189,9],[90,10],[41,11],[197,10],[198,10],[200,12],[201,10],[202,13],[101,14],[203,10],[174,10],[204,10],[205,15],[206,10],[207,9],[208,16],[209,10],[210,10],[211,10],[212,10],[213,9],[214,10],[215,10],[216,10],[217,10],[218,17],[219,10],[220,10],[221,10],[222,10],[223,10],[40,8],[43,13],[44,13],[45,13],[46,13],[47,13],[48,13],[49,13],[50,10],[52,18],[53,13],[51,13],[54,13],[55,13],[56,13],[57,13],[58,13],[59,13],[60,10],[61,13],[62,13],[63,13],[64,13],[65,13],[66,10],[67,13],[68,13],[69,13],[70,13],[71,13],[72,13],[73,10],[75,19],[74,13],[76,13],[77,13],[78,13],[79,13],[80,17],[81,10],[82,10],[96,20],[84,21],[85,13],[86,13],[87,10],[88,13],[89,13],[91,22],[92,13],[93,13],[94,13],[95,13],[97,13],[98,13],[99,13],[100,13],[102,23],[103,13],[104,13],[105,13],[106,10],[107,13],[108,24],[109,24],[110,24],[111,10],[112,13],[113,13],[114,13],[119,13],[115,13],[116,10],[117,13],[118,10],[120,13],[121,13],[122,13],[123,13],[124,13],[125,13],[126,10],[127,13],[128,13],[129,13],[130,13],[131,13],[132,13],[133,13],[134,13],[135,13],[136,13],[137,13],[138,13],[139,13],[140,13],[141,13],[142,13],[143,25],[144,13],[145,13],[146,13],[147,13],[148,13],[149,13],[150,10],[151,10],[152,10],[153,10],[154,10],[155,13],[156,13],[157,13],[158,13],[176,26],[224,10],[161,27],[160,28],[184,29],[183,30],[179,31],[178,30],[180,32],[169,33],[167,34],[182,35],[181,32],[170,36],[83,37],[39,38],[38,13],[165,39],[166,40],[164,41],[162,13],[171,42],[42,43],[188,9],[186,44],[159,45],[172,46],[34,47],[234,48],[235,47],[236,49],[238,50],[33,47],[237,51]],"semanticDiagnosticsPerFile":[33,34,235],"version":"5.9.3"}
package/.editorconfig DELETED
@@ -1,16 +0,0 @@
1
- # Editor configuration, see https://editorconfig.org
2
- root = true
3
-
4
- [*]
5
- charset = utf-8
6
- indent_style = space
7
- indent_size = 2
8
- insert_final_newline = true
9
- trim_trailing_whitespace = true
10
-
11
- [*.ts]
12
- quote_type = single
13
-
14
- [*.md]
15
- max_line_length = off
16
- trim_trailing_whitespace = false
@@ -1,3 +0,0 @@
1
- {
2
- "nuxt.isNuxtApp": false
3
- }
package/angular.json DELETED
@@ -1,143 +0,0 @@
1
- {
2
- "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3
- "version": 1,
4
- "newProjectRoot": "projects",
5
- "defaultProject": "thaana-tester",
6
- "projects": {
7
- "ngThaana": {
8
- "projectType": "library",
9
- "root": "projects/ng-thaana",
10
- "sourceRoot": "projects/ng-thaana/src",
11
- "prefix": "lib",
12
- "architect": {
13
- "build": {
14
- "builder": "@angular-devkit/build-angular:ng-packagr",
15
- "options": {
16
- "project": "projects/ng-thaana/ng-package.json"
17
- },
18
- "configurations": {
19
- "production": {
20
- "tsConfig": "projects/ng-thaana/tsconfig.lib.prod.json"
21
- },
22
- "development": {
23
- "tsConfig": "projects/ng-thaana/tsconfig.lib.json"
24
- }
25
- },
26
- "defaultConfiguration": "production"
27
- },
28
- "test": {
29
- "builder": "@angular-devkit/build-angular:karma",
30
- "options": {
31
- "main": "projects/ng-thaana/src/test.ts",
32
- "tsConfig": "projects/ng-thaana/tsconfig.spec.json",
33
- "karmaConfig": "projects/ng-thaana/karma.conf.js"
34
- }
35
- }
36
- }
37
- },
38
- "thaana-tester": {
39
- "projectType": "application",
40
- "schematics": {
41
- "@schematics/angular:component": {
42
- "style": "scss"
43
- },
44
- "@schematics/angular:application": {
45
- "strict": true
46
- }
47
- },
48
- "root": "projects/thaana-tester",
49
- "sourceRoot": "projects/thaana-tester/src",
50
- "prefix": "app",
51
- "architect": {
52
- "build": {
53
- "builder": "@angular-devkit/build-angular:browser",
54
- "options": {
55
- "outputPath": "dist/thaana-tester",
56
- "index": "projects/thaana-tester/src/index.html",
57
- "main": "projects/thaana-tester/src/main.ts",
58
- "polyfills": "projects/thaana-tester/src/polyfills.ts",
59
- "tsConfig": "projects/thaana-tester/tsconfig.app.json",
60
- "inlineStyleLanguage": "scss",
61
- "assets": [
62
- "projects/thaana-tester/src/favicon.ico",
63
- "projects/thaana-tester/src/assets"
64
- ],
65
- "styles": [
66
- "projects/thaana-tester/src/styles.scss"
67
- ],
68
- "scripts": []
69
- },
70
- "configurations": {
71
- "production": {
72
- "budgets": [
73
- {
74
- "type": "initial",
75
- "maximumWarning": "500kb",
76
- "maximumError": "1mb"
77
- },
78
- {
79
- "type": "anyComponentStyle",
80
- "maximumWarning": "2kb",
81
- "maximumError": "4kb"
82
- }
83
- ],
84
- "fileReplacements": [
85
- {
86
- "replace": "projects/thaana-tester/src/environments/environment.ts",
87
- "with": "projects/thaana-tester/src/environments/environment.prod.ts"
88
- }
89
- ],
90
- "outputHashing": "all"
91
- },
92
- "development": {
93
- "buildOptimizer": false,
94
- "optimization": false,
95
- "vendorChunk": true,
96
- "extractLicenses": false,
97
- "sourceMap": true,
98
- "namedChunks": true
99
- }
100
- },
101
- "defaultConfiguration": "production"
102
- },
103
- "serve": {
104
- "builder": "@angular-devkit/build-angular:dev-server",
105
- "configurations": {
106
- "production": {
107
- "browserTarget": "thaana-tester:build:production"
108
- },
109
- "development": {
110
- "browserTarget": "thaana-tester:build:development"
111
- }
112
- },
113
- "defaultConfiguration": "development"
114
- },
115
- "extract-i18n": {
116
- "builder": "@angular-devkit/build-angular:extract-i18n",
117
- "options": {
118
- "browserTarget": "thaana-tester:build"
119
- }
120
- },
121
- "test": {
122
- "builder": "@angular-devkit/build-angular:karma",
123
- "options": {
124
- "main": "projects/thaana-tester/src/test.ts",
125
- "polyfills": "projects/thaana-tester/src/polyfills.ts",
126
- "tsConfig": "projects/thaana-tester/tsconfig.spec.json",
127
- "karmaConfig": "projects/thaana-tester/karma.conf.js",
128
- "inlineStyleLanguage": "scss",
129
- "assets": [
130
- "projects/thaana-tester/src/favicon.ico",
131
- "projects/thaana-tester/src/assets"
132
- ],
133
- "styles": [
134
- "projects/thaana-tester/src/styles.scss"
135
- ],
136
- "scripts": []
137
- }
138
- }
139
- }
140
- }
141
- },
142
- "defaultProject": "ngThaana"
143
- }
@@ -1,44 +0,0 @@
1
- // Karma configuration file, see link for more information
2
- // https://karma-runner.github.io/1.0/config/configuration-file.html
3
-
4
- module.exports = function (config) {
5
- config.set({
6
- basePath: '',
7
- frameworks: ['jasmine', '@angular-devkit/build-angular'],
8
- plugins: [
9
- require('karma-jasmine'),
10
- require('karma-chrome-launcher'),
11
- require('karma-jasmine-html-reporter'),
12
- require('karma-coverage'),
13
- require('@angular-devkit/build-angular/plugins/karma')
14
- ],
15
- client: {
16
- jasmine: {
17
- // you can add configuration options for Jasmine here
18
- // the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html
19
- // for example, you can disable the random execution with `random: false`
20
- // or set a specific seed with `seed: 4321`
21
- },
22
- clearContext: false // leave Jasmine Spec Runner output visible in browser
23
- },
24
- jasmineHtmlReporter: {
25
- suppressAll: true // removes the duplicated traces
26
- },
27
- coverageReporter: {
28
- dir: require('path').join(__dirname, '../../coverage/ng-thaana'),
29
- subdir: '.',
30
- reporters: [
31
- { type: 'html' },
32
- { type: 'text-summary' }
33
- ]
34
- },
35
- reporters: ['progress', 'kjhtml'],
36
- port: 9876,
37
- colors: true,
38
- logLevel: config.LOG_INFO,
39
- autoWatch: true,
40
- browsers: ['Chrome'],
41
- singleRun: false,
42
- restartOnFileChange: true
43
- });
44
- };
@@ -1,7 +0,0 @@
1
- {
2
- "$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
3
- "dest": "../../dist/ng-thaana",
4
- "lib": {
5
- "entryFile": "src/public-api.ts"
6
- }
7
- }
@@ -1,11 +0,0 @@
1
- {
2
- "name": "ng-thaana",
3
- "version": "1.6.0",
4
- "peerDependencies": {
5
- "@angular/common": "^17.0.5 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0",
6
- "@angular/core": "^17.0.5 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0"
7
- },
8
- "dependencies": {
9
- "tslib": "^2.2.0"
10
- }
11
- }
@@ -1,29 +0,0 @@
1
- import { AfterViewInit, EventEmitter } from '@angular/core';
2
- import { Directive, ElementRef, Input, Output} from '@angular/core';
3
-
4
- import Thaana from 'dhivehi'
5
-
6
-
7
- export type Flavor = 'phonetic' | 'typewriter' | 'faseyha'
8
-
9
- @Directive({
10
- selector: '[ng-thaana]',
11
- standalone: false
12
- })
13
- export class NgThaanaDirective implements AfterViewInit {
14
-
15
- @Input('flavor') flavor: Flavor = 'phonetic';
16
- @Output('ng-thaana') ngThaana = new EventEmitter<string>();
17
- @Output('thaana-toggled') thaanaToggled = new EventEmitter<string>();
18
-
19
- constructor(private el: ElementRef) {}
20
-
21
- ngAfterViewInit(): void {
22
- this.el.nativeElement.style.direction = 'rtl'
23
- this.el.nativeElement.addEventListener('thaana-toggled', (e: CustomEvent) => {
24
- this.thaanaToggled.emit(e.detail)
25
- })
26
- Thaana(this.el.nativeElement, { flavor: this.flavor })
27
- }
28
-
29
- }
@@ -1,16 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { NgThaanaDirective } from './ng-thaana.directive';
3
-
4
-
5
-
6
- @NgModule({
7
- declarations: [
8
- NgThaanaDirective
9
- ],
10
- imports: [
11
- ],
12
- exports: [
13
- NgThaanaDirective
14
- ]
15
- })
16
- export class NgThaanaModule { }
@@ -1,6 +0,0 @@
1
- /*
2
- * Public API Surface of ng-thaana
3
- */
4
-
5
- export * from './lib/ng-thaana.directive';
6
- export * from './lib/ng-thaana.module';
@@ -1,26 +0,0 @@
1
- // This file is required by karma.conf.js and loads recursively all the .spec and framework files
2
-
3
- import 'zone.js';
4
- import 'zone.js/testing';
5
- import { getTestBed } from '@angular/core/testing';
6
- import {
7
- BrowserDynamicTestingModule,
8
- platformBrowserDynamicTesting
9
- } from '@angular/platform-browser-dynamic/testing';
10
-
11
- declare const require: {
12
- context(path: string, deep?: boolean, filter?: RegExp): {
13
- keys(): string[];
14
- <T>(id: string): T;
15
- };
16
- };
17
-
18
- // First, initialize the Angular testing environment.
19
- getTestBed().initTestEnvironment(
20
- BrowserDynamicTestingModule,
21
- platformBrowserDynamicTesting()
22
- );
23
- // Then we find all the tests.
24
- const context = require.context('./', true, /\.spec\.ts$/);
25
- // And load the modules.
26
- context.keys().map(context);
@@ -1,20 +0,0 @@
1
- /* To learn more about this file see: https://angular.io/config/tsconfig. */
2
- {
3
- "extends": "../../tsconfig.json",
4
- "compilerOptions": {
5
- "outDir": "../../out-tsc/lib",
6
- "target": "es2015",
7
- "declaration": true,
8
- "declarationMap": true,
9
- "inlineSources": true,
10
- "types": [],
11
- "lib": [
12
- "dom",
13
- "es2018"
14
- ]
15
- },
16
- "exclude": [
17
- "src/test.ts",
18
- "**/*.spec.ts"
19
- ]
20
- }
@@ -1,10 +0,0 @@
1
- /* To learn more about this file see: https://angular.io/config/tsconfig. */
2
- {
3
- "extends": "./tsconfig.lib.json",
4
- "compilerOptions": {
5
- "declarationMap": false
6
- },
7
- "angularCompilerOptions": {
8
- "compilationMode": "partial"
9
- }
10
- }
@@ -1,17 +0,0 @@
1
- /* To learn more about this file see: https://angular.io/config/tsconfig. */
2
- {
3
- "extends": "../../tsconfig.json",
4
- "compilerOptions": {
5
- "outDir": "../../out-tsc/spec",
6
- "types": [
7
- "jasmine"
8
- ]
9
- },
10
- "files": [
11
- "src/test.ts"
12
- ],
13
- "include": [
14
- "**/*.spec.ts",
15
- "**/*.d.ts"
16
- ]
17
- }
@@ -1,17 +0,0 @@
1
- # This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
2
- # For additional information regarding the format and rule options, please see:
3
- # https://github.com/browserslist/browserslist#queries
4
-
5
- # For the full list of supported browsers by the Angular framework, please see:
6
- # https://angular.io/guide/browser-support
7
-
8
- # You can see what browsers were selected by your queries by running:
9
- # npx browserslist
10
-
11
- last 1 Chrome version
12
- last 1 Firefox version
13
- last 2 Edge major versions
14
- last 2 Safari major versions
15
- last 2 iOS major versions
16
- Firefox ESR
17
- not IE 11 # Angular supports IE 11 only as an opt-in. To opt-in, remove the 'not' prefix on this line.
@@ -1,44 +0,0 @@
1
- // Karma configuration file, see link for more information
2
- // https://karma-runner.github.io/1.0/config/configuration-file.html
3
-
4
- module.exports = function (config) {
5
- config.set({
6
- basePath: '',
7
- frameworks: ['jasmine', '@angular-devkit/build-angular'],
8
- plugins: [
9
- require('karma-jasmine'),
10
- require('karma-chrome-launcher'),
11
- require('karma-jasmine-html-reporter'),
12
- require('karma-coverage'),
13
- require('@angular-devkit/build-angular/plugins/karma')
14
- ],
15
- client: {
16
- jasmine: {
17
- // you can add configuration options for Jasmine here
18
- // the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html
19
- // for example, you can disable the random execution with `random: false`
20
- // or set a specific seed with `seed: 4321`
21
- },
22
- clearContext: false // leave Jasmine Spec Runner output visible in browser
23
- },
24
- jasmineHtmlReporter: {
25
- suppressAll: true // removes the duplicated traces
26
- },
27
- coverageReporter: {
28
- dir: require('path').join(__dirname, '../../coverage/thaana-tester'),
29
- subdir: '.',
30
- reporters: [
31
- { type: 'html' },
32
- { type: 'text-summary' }
33
- ]
34
- },
35
- reporters: ['progress', 'kjhtml'],
36
- port: 9876,
37
- colors: true,
38
- logLevel: config.LOG_INFO,
39
- autoWatch: true,
40
- browsers: ['Chrome'],
41
- singleRun: false,
42
- restartOnFileChange: true
43
- });
44
- };
@@ -1,8 +0,0 @@
1
- <div>
2
-
3
- <input [(ngModel)]='name' flavor='faseyha' ng-thaana placeholder="Search..." />
4
-
5
- <!-- With post callback -->
6
- <input [(ngModel)]='name' (thaana-toggled)="toggled($event)" (ng-thaana)='postCallback($event)' placeholder="Search..." />
7
-
8
- </div>
File without changes
@@ -1,31 +0,0 @@
1
- import { TestBed } from '@angular/core/testing';
2
- import { AppComponent } from './app.component';
3
-
4
- describe('AppComponent', () => {
5
- beforeEach(async () => {
6
- await TestBed.configureTestingModule({
7
- declarations: [
8
- AppComponent
9
- ],
10
- }).compileComponents();
11
- });
12
-
13
- it('should create the app', () => {
14
- const fixture = TestBed.createComponent(AppComponent);
15
- const app = fixture.componentInstance;
16
- expect(app).toBeTruthy();
17
- });
18
-
19
- it(`should have as title 'thaana-tester'`, () => {
20
- const fixture = TestBed.createComponent(AppComponent);
21
- const app = fixture.componentInstance;
22
- expect(app.title).toEqual('thaana-tester');
23
- });
24
-
25
- it('should render title', () => {
26
- const fixture = TestBed.createComponent(AppComponent);
27
- fixture.detectChanges();
28
- const compiled = fixture.nativeElement as HTMLElement;
29
- expect(compiled.querySelector('.content span')?.textContent).toContain('thaana-tester app is running!');
30
- });
31
- });
@@ -1,20 +0,0 @@
1
- import { Component } from '@angular/core';
2
-
3
- @Component({
4
- selector: 'app-root',
5
- templateUrl: './app.component.html',
6
- styleUrls: ['./app.component.scss']
7
- })
8
- export class AppComponent {
9
- title = 'thaana-tester';
10
-
11
- name!: string
12
-
13
- postCallback(e: any) {
14
- console.log('You typed: ', e);
15
- }
16
-
17
- toggled(e: any) {
18
- console.log('You typed: ', e);
19
- }
20
- }
@@ -1,20 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { FormsModule } from '@angular/forms';
3
- import { BrowserModule } from '@angular/platform-browser';
4
- import { NgThaanaModule } from '../../../ng-thaana/src/lib/ng-thaana.module';
5
-
6
- import { AppComponent } from './app.component';
7
-
8
- @NgModule({
9
- declarations: [
10
- AppComponent,
11
- ],
12
- imports: [
13
- BrowserModule,
14
- NgThaanaModule,
15
- FormsModule,
16
- ],
17
- providers: [],
18
- bootstrap: [AppComponent]
19
- })
20
- export class AppModule { }
File without changes
@@ -1,3 +0,0 @@
1
- export const environment = {
2
- production: true
3
- };
@@ -1,16 +0,0 @@
1
- // This file can be replaced during build by using the `fileReplacements` array.
2
- // `ng build` replaces `environment.ts` with `environment.prod.ts`.
3
- // The list of file replacements can be found in `angular.json`.
4
-
5
- export const environment = {
6
- production: false
7
- };
8
-
9
- /*
10
- * For easier debugging in development mode, you can import the following file
11
- * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
12
- *
13
- * This import should be commented out in production mode because it will have a negative impact
14
- * on performance if an error is thrown.
15
- */
16
- // import 'zone.js/plugins/zone-error'; // Included with Angular CLI.
@@ -1,13 +0,0 @@
1
- <!doctype html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="utf-8">
5
- <title>ThaanaTester</title>
6
- <base href="/">
7
- <meta name="viewport" content="width=device-width, initial-scale=1">
8
- <link rel="icon" type="image/x-icon" href="favicon.ico">
9
- </head>
10
- <body>
11
- <app-root></app-root>
12
- </body>
13
- </html>
@@ -1,12 +0,0 @@
1
- import { enableProdMode } from '@angular/core';
2
- import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
3
-
4
- import { AppModule } from './app/app.module';
5
- import { environment } from './environments/environment';
6
-
7
- if (environment.production) {
8
- enableProdMode();
9
- }
10
-
11
- platformBrowserDynamic().bootstrapModule(AppModule)
12
- .catch(err => console.error(err));
@@ -1,65 +0,0 @@
1
- /**
2
- * This file includes polyfills needed by Angular and is loaded before the app.
3
- * You can add your own extra polyfills to this file.
4
- *
5
- * This file is divided into 2 sections:
6
- * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.
7
- * 2. Application imports. Files imported after ZoneJS that should be loaded before your main
8
- * file.
9
- *
10
- * The current setup is for so-called "evergreen" browsers; the last versions of browsers that
11
- * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),
12
- * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile.
13
- *
14
- * Learn more in https://angular.io/guide/browser-support
15
- */
16
-
17
- /***************************************************************************************************
18
- * BROWSER POLYFILLS
19
- */
20
-
21
- /**
22
- * IE11 requires the following for NgClass support on SVG elements
23
- */
24
- // import 'classlist.js'; // Run `npm install --save classlist.js`.
25
-
26
- /**
27
- * Web Animations `@angular/platform-browser/animations`
28
- * Only required if AnimationBuilder is used within the application and using IE/Edge or Safari.
29
- * Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0).
30
- */
31
- // import 'web-animations-js'; // Run `npm install --save web-animations-js`.
32
-
33
- /**
34
- * By default, zone.js will patch all possible macroTask and DomEvents
35
- * user can disable parts of macroTask/DomEvents patch by setting following flags
36
- * because those flags need to be set before `zone.js` being loaded, and webpack
37
- * will put import in the top of bundle, so user need to create a separate file
38
- * in this directory (for example: zone-flags.ts), and put the following flags
39
- * into that file, and then add the following code before importing zone.js.
40
- * import './zone-flags';
41
- *
42
- * The flags allowed in zone-flags.ts are listed here.
43
- *
44
- * The following flags will work for all browsers.
45
- *
46
- * (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame
47
- * (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick
48
- * (window as any).__zone_symbol__UNPATCHED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames
49
- *
50
- * in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js
51
- * with the following flag, it will bypass `zone.js` patch for IE/Edge
52
- *
53
- * (window as any).__Zone_enable_cross_context_check = true;
54
- *
55
- */
56
-
57
- /***************************************************************************************************
58
- * Zone JS is required by default for Angular itself.
59
- */
60
- import 'zone.js'; // Included with Angular CLI.
61
-
62
-
63
- /***************************************************************************************************
64
- * APPLICATION IMPORTS
65
- */
@@ -1 +0,0 @@
1
- /* You can add global styles to this file, and also import other style files */
@@ -1,25 +0,0 @@
1
- // This file is required by karma.conf.js and loads recursively all the .spec and framework files
2
-
3
- import 'zone.js/testing';
4
- import { getTestBed } from '@angular/core/testing';
5
- import {
6
- BrowserDynamicTestingModule,
7
- platformBrowserDynamicTesting
8
- } from '@angular/platform-browser-dynamic/testing';
9
-
10
- declare const require: {
11
- context(path: string, deep?: boolean, filter?: RegExp): {
12
- keys(): string[];
13
- <T>(id: string): T;
14
- };
15
- };
16
-
17
- // First, initialize the Angular testing environment.
18
- getTestBed().initTestEnvironment(
19
- BrowserDynamicTestingModule,
20
- platformBrowserDynamicTesting()
21
- );
22
- // Then we find all the tests.
23
- const context = require.context('./', true, /\.spec\.ts$/);
24
- // And load the modules.
25
- context.keys().map(context);
@@ -1,15 +0,0 @@
1
- /* To learn more about this file see: https://angular.io/config/tsconfig. */
2
- {
3
- "extends": "../../tsconfig.json",
4
- "compilerOptions": {
5
- "outDir": "../../out-tsc/app",
6
- "types": []
7
- },
8
- "files": [
9
- "src/main.ts",
10
- "src/polyfills.ts"
11
- ],
12
- "include": [
13
- "src/**/*.d.ts"
14
- ]
15
- }
@@ -1,18 +0,0 @@
1
- /* To learn more about this file see: https://angular.io/config/tsconfig. */
2
- {
3
- "extends": "../../tsconfig.json",
4
- "compilerOptions": {
5
- "outDir": "../../out-tsc/spec",
6
- "types": [
7
- "jasmine"
8
- ]
9
- },
10
- "files": [
11
- "src/test.ts",
12
- "src/polyfills.ts"
13
- ],
14
- "include": [
15
- "src/**/*.spec.ts",
16
- "src/**/*.d.ts"
17
- ]
18
- }
package/tsconfig.json DELETED
@@ -1,36 +0,0 @@
1
- /* To learn more about this file see: https://angular.io/config/tsconfig. */
2
- {
3
- "compileOnSave": false,
4
- "compilerOptions": {
5
- "baseUrl": "./",
6
- "outDir": "./dist/out-tsc",
7
- "forceConsistentCasingInFileNames": true,
8
- "strict": true,
9
- "noImplicitReturns": true,
10
- "noFallthroughCasesInSwitch": true,
11
- "sourceMap": true,
12
- "declaration": false,
13
- "downlevelIteration": true,
14
- "paths": {
15
- "ng-thaana": [
16
- "dist/ng-thaana/ng-thaana",
17
- "dist/ng-thaana"
18
- ]
19
- },
20
- "experimentalDecorators": true,
21
- "moduleResolution": "node",
22
- "importHelpers": true,
23
- "target": "es2017",
24
- "module": "es2020",
25
- "lib": [
26
- "es2018",
27
- "dom"
28
- ]
29
- },
30
- "angularCompilerOptions": {
31
- "enableI18nLegacyMessageIdFormat": false,
32
- "strictInjectionParameters": true,
33
- "strictInputAccessModifiers": true,
34
- "strictTemplates": true
35
- }
36
- }
File without changes