@openmrs/ngx-formentry 3.2.1-pre.275 → 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.
Files changed (50) hide show
  1. package/package.json +5 -1
  2. package/src/app/adult-1.4.json +6858 -0
  3. package/src/app/adult-1.6.json +8082 -0
  4. package/src/app/adult.json +5700 -0
  5. package/src/app/app.component.html +25 -0
  6. package/src/app/app.component.spec.ts +23 -0
  7. package/src/app/app.component.ts +414 -0
  8. package/src/app/app.module.ts +24 -0
  9. package/src/app/mock/mock-form.ts +101 -0
  10. package/src/app/mock/mock-obs.ts +440 -0
  11. package/src/app/mock/mock-translations.ts +73 -0
  12. package/src/app/mock/obs.json +4188 -0
  13. package/src/app/mock/orders.json +338 -0
  14. package/src/app/mock/schema/adult-return.json +72 -0
  15. package/src/app/mock/schema/compiled-adult-return.json +706 -0
  16. package/src/app/mock/schema/component_art.json +1705 -0
  17. package/src/app/mock/schema/component_hospitalization.json +133 -0
  18. package/src/app/mock/schema/component_preclinic-review.json +480 -0
  19. package/src/app/ncd-registration-1.0.json +456 -0
  20. package/src/app/translate/json-loader.ts +10 -0
  21. package/src/app/translate/translate.module.ts +23 -0
  22. package/src/assets/.gitkeep +0 -0
  23. package/src/assets/carbon.select.theme.css +356 -0
  24. package/src/environments/environment.prod.ts +3 -0
  25. package/src/environments/environment.ts +15 -0
  26. package/src/favicon.ico +0 -0
  27. package/src/index.html +23 -0
  28. package/src/karma.conf.js +37 -0
  29. package/src/main.ts +13 -0
  30. package/src/polyfills.ts +68 -0
  31. package/src/styles.scss +8 -0
  32. package/src/test.ts +23 -0
  33. package/src/translations/en.json +53 -0
  34. package/src/translations/fr.json +53 -0
  35. package/src/tsconfig.app.json +13 -0
  36. package/src/tsconfig.spec.json +9 -0
  37. package/src/tslint.json +9 -0
  38. package/src/typings.d.ts +4 -0
  39. package/.editorconfig +0 -13
  40. package/.eslintrc.json +0 -45
  41. package/.prettierignore +0 -40
  42. package/.prettierrc +0 -6
  43. package/.turbo/turbo-build:lib.log +0 -37
  44. package/.yarn/plugins/@yarnpkg/plugin-version.cjs +0 -550
  45. package/angular.json +0 -164
  46. package/proxy.conf.json +0 -6
  47. package/scripts/build.sh +0 -2
  48. package/tsconfig.json +0 -29
  49. package/turbo.json +0 -18
  50. /package/{.yarn/versions/6b8f5374.yml → src/app/app.component.css} +0 -0
@@ -0,0 +1,9 @@
1
+ {
2
+ "extends": "../tslint.json",
3
+ "rules": {
4
+ "directive-selector": [true, "attribute", "app", "camelCase"],
5
+ "component-selector": [true, "element", "app", "kebab-case"],
6
+ "no-unused-expression": false,
7
+ "no-output-on-prefix": false
8
+ }
9
+ }
@@ -0,0 +1,4 @@
1
+ declare module '*.json' {
2
+ const value: any;
3
+ export default value;
4
+ }
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,6 +0,0 @@
1
- {
2
- "semi": true,
3
- "singleQuote": true,
4
- "tabWidth": 2,
5
- "trailingComma": "none"
6
- }
@@ -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-02T17:37:15.366Z - Time: 23566ms
37
-