@openmrs/ngx-formentry 3.2.1-pre.271 → 3.2.1-pre.276
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -1
- package/src/app/adult-1.4.json +6858 -0
- package/src/app/adult-1.6.json +8082 -0
- package/src/app/adult.json +5700 -0
- package/src/app/app.component.html +25 -0
- package/src/app/app.component.spec.ts +23 -0
- package/src/app/app.component.ts +414 -0
- package/src/app/app.module.ts +24 -0
- package/src/app/mock/mock-form.ts +101 -0
- package/src/app/mock/mock-obs.ts +440 -0
- package/src/app/mock/mock-translations.ts +73 -0
- package/src/app/mock/obs.json +4188 -0
- package/src/app/mock/orders.json +338 -0
- package/src/app/mock/schema/adult-return.json +72 -0
- package/src/app/mock/schema/compiled-adult-return.json +706 -0
- package/src/app/mock/schema/component_art.json +1705 -0
- package/src/app/mock/schema/component_hospitalization.json +133 -0
- package/src/app/mock/schema/component_preclinic-review.json +480 -0
- package/src/app/ncd-registration-1.0.json +456 -0
- package/src/app/translate/json-loader.ts +10 -0
- package/src/app/translate/translate.module.ts +23 -0
- package/src/assets/.gitkeep +0 -0
- package/src/assets/carbon.select.theme.css +356 -0
- package/src/environments/environment.prod.ts +3 -0
- package/src/environments/environment.ts +15 -0
- package/src/favicon.ico +0 -0
- package/src/index.html +23 -0
- package/src/karma.conf.js +37 -0
- package/src/main.ts +13 -0
- package/src/polyfills.ts +68 -0
- package/src/styles.scss +8 -0
- package/src/test.ts +23 -0
- package/src/translations/en.json +53 -0
- package/src/translations/fr.json +53 -0
- package/src/tsconfig.app.json +13 -0
- package/src/tsconfig.spec.json +9 -0
- package/src/tslint.json +9 -0
- package/src/typings.d.ts +4 -0
- package/.editorconfig +0 -13
- package/.eslintrc.json +0 -45
- package/.prettierignore +0 -40
- package/.prettierrc +0 -6
- package/.turbo/turbo-build:lib.log +0 -37
- package/.yarn/plugins/@yarnpkg/plugin-version.cjs +0 -550
- package/angular.json +0 -164
- package/proxy.conf.json +0 -6
- package/scripts/build.sh +0 -2
- package/tsconfig.json +0 -29
- package/turbo.json +0 -18
- /package/{.yarn/versions/b206d73c.yml → src/app/app.component.css} +0 -0
package/angular.json
DELETED
|
@@ -1,164 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
3
|
-
"cli": {
|
|
4
|
-
"analytics": false,
|
|
5
|
-
"defaultCollection": "@angular-eslint/schematics",
|
|
6
|
-
"packageManager": "yarn"
|
|
7
|
-
},
|
|
8
|
-
"version": 1,
|
|
9
|
-
"newProjectRoot": "projects",
|
|
10
|
-
"projects": {
|
|
11
|
-
"ngx-openmrs-formentry": {
|
|
12
|
-
"root": "",
|
|
13
|
-
"sourceRoot": "src",
|
|
14
|
-
"projectType": "application",
|
|
15
|
-
"prefix": "app",
|
|
16
|
-
"schematics": {},
|
|
17
|
-
"architect": {
|
|
18
|
-
"build": {
|
|
19
|
-
"builder": "@angular-devkit/build-angular:browser",
|
|
20
|
-
"options": {
|
|
21
|
-
"allowedCommonJsDependencies": ["core-js", "raf"],
|
|
22
|
-
"outputPath": "dist/ngx-openmrs-formentry",
|
|
23
|
-
"index": "src/index.html",
|
|
24
|
-
"main": "src/main.ts",
|
|
25
|
-
"polyfills": "src/polyfills.ts",
|
|
26
|
-
"tsConfig": "src/tsconfig.app.json",
|
|
27
|
-
"assets": ["src/favicon.ico", "src/assets"],
|
|
28
|
-
"styles": [
|
|
29
|
-
"src/styles.scss",
|
|
30
|
-
"projects/ngx-formentry/styles/ngx-formentry.css"
|
|
31
|
-
],
|
|
32
|
-
"stylePreprocessorOptions": {
|
|
33
|
-
"includePaths": ["projects/ngx-formentry/styles", "dist"]
|
|
34
|
-
},
|
|
35
|
-
"scripts": [],
|
|
36
|
-
"vendorChunk": true,
|
|
37
|
-
"extractLicenses": false,
|
|
38
|
-
"buildOptimizer": false,
|
|
39
|
-
"sourceMap": true,
|
|
40
|
-
"optimization": false,
|
|
41
|
-
"namedChunks": true
|
|
42
|
-
},
|
|
43
|
-
"configurations": {
|
|
44
|
-
"production": {
|
|
45
|
-
"budgets": [
|
|
46
|
-
{
|
|
47
|
-
"type": "anyComponentStyle",
|
|
48
|
-
"maximumWarning": "6kb"
|
|
49
|
-
}
|
|
50
|
-
],
|
|
51
|
-
"fileReplacements": [
|
|
52
|
-
{
|
|
53
|
-
"replace": "src/environments/environment.ts",
|
|
54
|
-
"with": "src/environments/environment.prod.ts"
|
|
55
|
-
}
|
|
56
|
-
],
|
|
57
|
-
"optimization": true,
|
|
58
|
-
"outputHashing": "all",
|
|
59
|
-
"sourceMap": false,
|
|
60
|
-
"namedChunks": false,
|
|
61
|
-
"extractLicenses": true,
|
|
62
|
-
"vendorChunk": false,
|
|
63
|
-
"buildOptimizer": true
|
|
64
|
-
}
|
|
65
|
-
},
|
|
66
|
-
"defaultConfiguration": ""
|
|
67
|
-
},
|
|
68
|
-
"serve": {
|
|
69
|
-
"builder": "@angular-devkit/build-angular:dev-server",
|
|
70
|
-
"options": {
|
|
71
|
-
"browserTarget": "ngx-openmrs-formentry:build"
|
|
72
|
-
},
|
|
73
|
-
"configurations": {
|
|
74
|
-
"production": {
|
|
75
|
-
"browserTarget": "ngx-openmrs-formentry:build:production"
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
},
|
|
79
|
-
"extract-i18n": {
|
|
80
|
-
"builder": "@angular-devkit/build-angular:extract-i18n",
|
|
81
|
-
"options": {
|
|
82
|
-
"browserTarget": "ngx-openmrs-formentry:build"
|
|
83
|
-
}
|
|
84
|
-
},
|
|
85
|
-
"test": {
|
|
86
|
-
"builder": "@angular-devkit/build-angular:karma",
|
|
87
|
-
"options": {
|
|
88
|
-
"main": "src/test.ts",
|
|
89
|
-
"polyfills": "src/polyfills.ts",
|
|
90
|
-
"tsConfig": "src/tsconfig.spec.json",
|
|
91
|
-
"karmaConfig": "src/karma.conf.js",
|
|
92
|
-
"styles": ["src/styles.scss"],
|
|
93
|
-
"scripts": ["node_modules/systemjs/dist/system.min.js"],
|
|
94
|
-
"assets": ["src/favicon.ico", "src/assets"]
|
|
95
|
-
}
|
|
96
|
-
},
|
|
97
|
-
"lint": {
|
|
98
|
-
"builder": "@angular-eslint/builder:lint",
|
|
99
|
-
"options": {
|
|
100
|
-
"lintFilePatterns": ["src/**/*.ts", "src/**/*.html"]
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
},
|
|
105
|
-
"ngx-openmrs-formentry-e2e": {
|
|
106
|
-
"root": "e2e/",
|
|
107
|
-
"projectType": "application",
|
|
108
|
-
"architect": {
|
|
109
|
-
"e2e": {
|
|
110
|
-
"builder": "@angular-devkit/build-angular:protractor",
|
|
111
|
-
"options": {
|
|
112
|
-
"protractorConfig": "e2e/protractor.conf.js",
|
|
113
|
-
"devServerTarget": "ngx-openmrs-formentry:serve"
|
|
114
|
-
}
|
|
115
|
-
},
|
|
116
|
-
"lint": {
|
|
117
|
-
"builder": "@angular-eslint/builder:lint",
|
|
118
|
-
"options": {
|
|
119
|
-
"lintFilePatterns": ["e2e//**/*.ts", "e2e//**/*.html"]
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
},
|
|
124
|
-
"ngx-formentry": {
|
|
125
|
-
"root": "projects/ngx-formentry",
|
|
126
|
-
"sourceRoot": "projects/ngx-formentry/src",
|
|
127
|
-
"projectType": "library",
|
|
128
|
-
"prefix": "lib",
|
|
129
|
-
"architect": {
|
|
130
|
-
"build": {
|
|
131
|
-
"builder": "@angular-devkit/build-angular:ng-packagr",
|
|
132
|
-
"options": {
|
|
133
|
-
"tsConfig": "projects/ngx-formentry/tsconfig.lib.json",
|
|
134
|
-
"project": "projects/ngx-formentry/ng-package.json"
|
|
135
|
-
},
|
|
136
|
-
"configurations": {
|
|
137
|
-
"production": {
|
|
138
|
-
"project": "projects/ngx-formentry/ng-package.prod.json",
|
|
139
|
-
"tsConfig": "projects/ngx-formentry/tsconfig.lib.prod.json"
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
},
|
|
143
|
-
"test": {
|
|
144
|
-
"builder": "@angular-devkit/build-angular:karma",
|
|
145
|
-
"options": {
|
|
146
|
-
"main": "projects/ngx-formentry/src/test.ts",
|
|
147
|
-
"tsConfig": "projects/ngx-formentry/tsconfig.spec.json",
|
|
148
|
-
"karmaConfig": "projects/ngx-formentry/karma.conf.js"
|
|
149
|
-
}
|
|
150
|
-
},
|
|
151
|
-
"lint": {
|
|
152
|
-
"builder": "@angular-eslint/builder:lint",
|
|
153
|
-
"options": {
|
|
154
|
-
"lintFilePatterns": [
|
|
155
|
-
"projects/ngx-formentry/**/*.ts",
|
|
156
|
-
"projects/ngx-formentry/**/*.html"
|
|
157
|
-
]
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
},
|
|
163
|
-
"defaultProject": "ngx-formentry"
|
|
164
|
-
}
|
package/proxy.conf.json
DELETED
package/scripts/build.sh
DELETED
package/tsconfig.json
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compileOnSave": false,
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"baseUrl": "./",
|
|
5
|
-
"outDir": "./dist/out-tsc",
|
|
6
|
-
"allowSyntheticDefaultImports": true,
|
|
7
|
-
"sourceMap": true,
|
|
8
|
-
"declaration": false,
|
|
9
|
-
"downlevelIteration": true,
|
|
10
|
-
"esModuleInterop": true,
|
|
11
|
-
"experimentalDecorators": true,
|
|
12
|
-
"module": "es2020",
|
|
13
|
-
"moduleResolution": "node",
|
|
14
|
-
"resolveJsonModule": true,
|
|
15
|
-
"importHelpers": true,
|
|
16
|
-
"target": "es2015",
|
|
17
|
-
"typeRoots": ["node_modules/@types"],
|
|
18
|
-
"lib": ["es2018", "dom"],
|
|
19
|
-
"paths": {
|
|
20
|
-
"@openmrs/ngx-formentry": ["projects/ngx-formentry/src/lib"],
|
|
21
|
-
"@openmrs/ngx-formentry/*": ["projects/ngx-formentry/src/lib*"]
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"angularCompilerOptions": {
|
|
25
|
-
"disableTypeScriptVersionCheck": true,
|
|
26
|
-
"fullTemplateTypeCheck": true,
|
|
27
|
-
"strictInjectionParameters": true
|
|
28
|
-
}
|
|
29
|
-
}
|
package/turbo.json
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://turborepo.org/schema.json",
|
|
3
|
-
"pipeline": {
|
|
4
|
-
"build": {
|
|
5
|
-
"outputs": ["dist/**"]
|
|
6
|
-
},
|
|
7
|
-
"build:lib": {
|
|
8
|
-
"outputs": ["dist/**"]
|
|
9
|
-
},
|
|
10
|
-
"lint": {
|
|
11
|
-
"outputs": []
|
|
12
|
-
},
|
|
13
|
-
"test": {
|
|
14
|
-
"dependsOn": [],
|
|
15
|
-
"outputs": []
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
}
|
|
File without changes
|