@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/src/tslint.json
ADDED
package/src/typings.d.ts
ADDED
package/.editorconfig
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# Editor configuration, see http://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
|
-
[*.md]
|
|
12
|
-
max_line_length = off
|
|
13
|
-
trim_trailing_whitespace = false
|
package/.eslintrc.json
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"root": true,
|
|
3
|
-
"ignorePatterns": ["projects/**/*", "**/*.spec.ts"],
|
|
4
|
-
"overrides": [
|
|
5
|
-
{
|
|
6
|
-
"files": ["*.ts"],
|
|
7
|
-
"parserOptions": {
|
|
8
|
-
"project": ["tsconfig.json", "e2e/tsconfig.json"],
|
|
9
|
-
"createDefaultProgram": true
|
|
10
|
-
},
|
|
11
|
-
"extends": [
|
|
12
|
-
"plugin:@angular-eslint/recommended",
|
|
13
|
-
"plugin:@angular-eslint/template/process-inline-templates",
|
|
14
|
-
"prettier"
|
|
15
|
-
],
|
|
16
|
-
"rules": {
|
|
17
|
-
"@angular-eslint/component-selector": [
|
|
18
|
-
"warn",
|
|
19
|
-
{
|
|
20
|
-
"prefix": "app",
|
|
21
|
-
"style": "kebab-case",
|
|
22
|
-
"type": "element"
|
|
23
|
-
}
|
|
24
|
-
],
|
|
25
|
-
"@angular-eslint/directive-selector": [
|
|
26
|
-
"warn",
|
|
27
|
-
{
|
|
28
|
-
"prefix": "app",
|
|
29
|
-
"style": "camelCase",
|
|
30
|
-
"type": "attribute"
|
|
31
|
-
}
|
|
32
|
-
],
|
|
33
|
-
"@angular-eslint/no-empty-lifecycle-method": "warn",
|
|
34
|
-
"@angular-eslint/no-input-rename": "warn",
|
|
35
|
-
"@angular-eslint/no-output-native": "warn",
|
|
36
|
-
"@angular-eslint/no-output-on-prefix": "warn"
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"files": ["*.html"],
|
|
41
|
-
"extends": ["plugin:@angular-eslint/template/recommended"],
|
|
42
|
-
"rules": {}
|
|
43
|
-
}
|
|
44
|
-
]
|
|
45
|
-
}
|
package/.prettierignore
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
# See http://help.github.com/ignore-files/ for more about ignoring files.
|
|
2
|
-
|
|
3
|
-
# compiled output
|
|
4
|
-
/dist
|
|
5
|
-
/tmp
|
|
6
|
-
/out-tsc
|
|
7
|
-
|
|
8
|
-
# dependencies
|
|
9
|
-
/node_modules
|
|
10
|
-
|
|
11
|
-
# IDEs and editors
|
|
12
|
-
/.idea
|
|
13
|
-
.project
|
|
14
|
-
.classpath
|
|
15
|
-
.c9/
|
|
16
|
-
*.launch
|
|
17
|
-
.settings/
|
|
18
|
-
*.sublime-workspace
|
|
19
|
-
|
|
20
|
-
# IDE - VSCode
|
|
21
|
-
.vscode/*
|
|
22
|
-
!.vscode/settings.json
|
|
23
|
-
!.vscode/tasks.json
|
|
24
|
-
!.vscode/launch.json
|
|
25
|
-
!.vscode/extensions.json
|
|
26
|
-
|
|
27
|
-
# misc
|
|
28
|
-
/.sass-cache
|
|
29
|
-
/connect.lock
|
|
30
|
-
/coverage
|
|
31
|
-
/libpeerconnection.log
|
|
32
|
-
npm-debug.log
|
|
33
|
-
yarn-error.log
|
|
34
|
-
testem.log
|
|
35
|
-
/typings
|
|
36
|
-
|
|
37
|
-
# System Files
|
|
38
|
-
.DS_Store
|
|
39
|
-
Thumbs.db
|
|
40
|
-
./package-lock.json
|
package/.prettierrc
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
Building Angular Package
|
|
2
|
-
|
|
3
|
-
------------------------------------------------------------------------------
|
|
4
|
-
Building entry point '@openmrs/ngx-formentry'
|
|
5
|
-
------------------------------------------------------------------------------
|
|
6
|
-
- Compiling with Angular sources in Ivy partial compilation mode.
|
|
7
|
-
- @ngx-translate/core [es2015/esm2015] (git+https://github.com/ngx-translate/core.git)
|
|
8
|
-
- @ng-select/ng-select [es2015/esm2015] (ng-select/ng-select)
|
|
9
|
-
- @angular/cdk/keycodes [es2015/esm2015] (https://github.com/angular/components.git)
|
|
10
|
-
- @angular/cdk/platform [es2015/esm2015] (https://github.com/angular/components.git)
|
|
11
|
-
- @angular/cdk/observers [es2015/esm2015] (https://github.com/angular/components.git)
|
|
12
|
-
- @angular/cdk/a11y [es2015/esm2015] (https://github.com/angular/components.git)
|
|
13
|
-
- @angular/cdk/bidi [es2015/esm2015] (https://github.com/angular/components.git)
|
|
14
|
-
- @angular/cdk/collections [es2015/esm2015] (https://github.com/angular/components.git)
|
|
15
|
-
- @angular/cdk/scrolling [es2015/esm2015] (https://github.com/angular/components.git)
|
|
16
|
-
- @angular/cdk/portal [es2015/esm2015] (https://github.com/angular/components.git)
|
|
17
|
-
- @angular/cdk/overlay [es2015/esm2015] (https://github.com/angular/components.git)
|
|
18
|
-
- @angular-extensions/elements [es2015/esm2015] (git+https://github.com/angular-extensions/elements.git)
|
|
19
|
-
✔ Compiling with Angular sources in Ivy partial compilation mode.
|
|
20
|
-
- Generating FESM2020
|
|
21
|
-
✔ Generating FESM2020
|
|
22
|
-
- Generating FESM2015
|
|
23
|
-
✔ Generating FESM2015
|
|
24
|
-
- Copying assets
|
|
25
|
-
✔ Copying assets
|
|
26
|
-
- Writing package manifest
|
|
27
|
-
✔ Writing package manifest
|
|
28
|
-
✔ Built @openmrs/ngx-formentry
|
|
29
|
-
|
|
30
|
-
------------------------------------------------------------------------------
|
|
31
|
-
Built Angular Package
|
|
32
|
-
- from: /home/runner/work/openmrs-ngx-formentry/openmrs-ngx-formentry/projects/ngx-formentry
|
|
33
|
-
- to: /home/runner/work/openmrs-ngx-formentry/openmrs-ngx-formentry/dist/ngx-formentry
|
|
34
|
-
------------------------------------------------------------------------------
|
|
35
|
-
|
|
36
|
-
Build at: 2023-10-02T14:50:26.030Z - Time: 25246ms
|
|
37
|
-
|