@unicef-polymer/etools-form-builder 3.0.0-rc.21 → 3.0.0-rc.23

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 (31) hide show
  1. package/LICENSE +674 -674
  2. package/README.md +1 -1
  3. package/dist/form-attachments-popup/form-attachments-popup.js +135 -135
  4. package/dist/form-fields/abstract-field-base.class.d.ts +1 -0
  5. package/dist/form-fields/abstract-field-base.class.js +105 -101
  6. package/dist/form-fields/field-renderer-component.d.ts +1 -1
  7. package/dist/form-fields/field-renderer-component.js +153 -148
  8. package/dist/form-fields/repeatable-fields/repeatable-attachment-field.js +111 -111
  9. package/dist/form-fields/repeatable-fields/repeatable-base-field.js +22 -22
  10. package/dist/form-fields/repeatable-fields/repeatable-number-field.js +19 -19
  11. package/dist/form-fields/repeatable-fields/repeatable-scale-field.js +57 -57
  12. package/dist/form-fields/repeatable-fields/repeatable-text-field.js +19 -19
  13. package/dist/form-fields/single-fields/attachment-field.js +13 -13
  14. package/dist/form-fields/single-fields/boolean-field.js +16 -16
  15. package/dist/form-fields/single-fields/number-field.js +20 -20
  16. package/dist/form-fields/single-fields/scale-field.js +58 -58
  17. package/dist/form-fields/single-fields/text-field.js +31 -23
  18. package/dist/form-groups/form-abstract-group.js +126 -126
  19. package/dist/form-groups/form-card.js +30 -30
  20. package/dist/form-groups/form-collapsed-card.js +34 -34
  21. package/dist/lib/additional-components/confirmation-dialog.js +20 -20
  22. package/dist/lib/additional-components/etools-fb-card.js +135 -135
  23. package/dist/lib/styles/attachments.styles.js +61 -61
  24. package/dist/lib/styles/card-styles.js +147 -147
  25. package/dist/lib/styles/dialog.styles.js +83 -83
  26. package/dist/lib/styles/elevation-styles.js +33 -33
  27. package/dist/lib/styles/flex-layout-classes.js +316 -316
  28. package/dist/lib/styles/form-builder-card.styles.js +53 -53
  29. package/dist/lib/styles/page-layout-styles.js +198 -198
  30. package/dist/lib/styles/shared-styles.js +61 -61
  31. package/package.json +58 -58
package/package.json CHANGED
@@ -1,58 +1,58 @@
1
- {
2
- "name": "@unicef-polymer/etools-form-builder",
3
- "description": "Etools FM Form Builder components",
4
- "version": "3.0.0-rc.21",
5
- "contributors": [
6
- "eTools Team"
7
- ],
8
- "license": "BSD-3-Clause",
9
- "repository": "https://github.com/unicef-polymer/fm-form-builder",
10
- "main": "dist/index.js",
11
- "types": "dist/index.d.ts",
12
- "files": [
13
- "dist"
14
- ],
15
- "scripts": {
16
- "tsToJs": "rm -rf dist && tsc --skipLibCheck",
17
- "watch": "tsc --watch",
18
- "lint": "eslint ./src/**/*.ts --ext ts",
19
- "format": "eslint --ext .ts ./src/**/*.ts --fix --ignore-path .gitignore",
20
- "rd:init": "relative-deps init",
21
- "rd:add": "relative-deps add",
22
- "rd:reload": "relative-deps",
23
- "prepublishOnly": "npm run tsToJs"
24
- },
25
- "dependencies": {
26
- "@shoelace-style/shoelace": "^2.10.0",
27
- "@types/ramda": "^0.26.43",
28
- "@webcomponents/webcomponentsjs": "^2.6.0",
29
- "lit": "^2.7.5",
30
- "lit-element": "^2.5.1",
31
- "lit-translate": "^1.2.1",
32
- "ramda": "^0.27.1",
33
- "relative-deps": "^1.0.7",
34
- "typescript": "^4.9.5",
35
- "web-animations-js": "^2.3.2"
36
- },
37
- "peerDependencies": {
38
- "@unicef-polymer/etools-unicef": ">=1.0.0"
39
- },
40
- "devDependencies": {
41
- "@unicef-polymer/etools-unicef": "^1.0.0-rc.64",
42
- "@typescript-eslint/eslint-plugin": "^5.7.0",
43
- "@typescript-eslint/parser": "^5.7.0",
44
- "@typescript-eslint/typescript-estree": "^5.7.0",
45
- "acorn": "^8.0.4",
46
- "eslint": "^7.32.0",
47
- "eslint-config-google": "^0.14.0",
48
- "eslint-config-prettier": "^6.15.0",
49
- "eslint-plugin-html": "^6.2.0",
50
- "eslint-plugin-lit": "^1.6.1",
51
- "eslint-plugin-prettier": "^3.4.1",
52
- "prettier": "^2.3.2",
53
- "minimist": ">=0.2.1",
54
- "lodash": ">=4.17.21",
55
- "ansi-regex": ">=5.0.1",
56
- "glob-parent": ">=5.1.2"
57
- }
58
- }
1
+ {
2
+ "name": "@unicef-polymer/etools-form-builder",
3
+ "description": "Etools FM Form Builder components",
4
+ "version": "3.0.0-rc.23",
5
+ "contributors": [
6
+ "eTools Team"
7
+ ],
8
+ "license": "BSD-3-Clause",
9
+ "repository": "https://github.com/unicef-polymer/fm-form-builder",
10
+ "main": "dist/index.js",
11
+ "types": "dist/index.d.ts",
12
+ "files": [
13
+ "dist"
14
+ ],
15
+ "scripts": {
16
+ "tsToJs": "rm -rf dist && tsc --skipLibCheck",
17
+ "watch": "tsc --watch",
18
+ "lint": "eslint ./src/**/*.ts --ext ts",
19
+ "format": "eslint --ext .ts ./src/**/*.ts --fix --ignore-path .gitignore",
20
+ "rd:init": "relative-deps init",
21
+ "rd:add": "relative-deps add",
22
+ "rd:reload": "relative-deps",
23
+ "prepublishOnly": "npm run tsToJs"
24
+ },
25
+ "dependencies": {
26
+ "@shoelace-style/shoelace": "^2.10.0",
27
+ "@types/ramda": "^0.26.43",
28
+ "@webcomponents/webcomponentsjs": "^2.6.0",
29
+ "lit": "^2.7.5",
30
+ "lit-element": "^2.5.1",
31
+ "lit-translate": "^1.2.1",
32
+ "ramda": "^0.27.1",
33
+ "relative-deps": "^1.0.7",
34
+ "typescript": "^4.9.5",
35
+ "web-animations-js": "^2.3.2"
36
+ },
37
+ "peerDependencies": {
38
+ "@unicef-polymer/etools-unicef": ">=1.0.0"
39
+ },
40
+ "devDependencies": {
41
+ "@unicef-polymer/etools-unicef": "^1.0.0-rc.80",
42
+ "@typescript-eslint/eslint-plugin": "^5.7.0",
43
+ "@typescript-eslint/parser": "^5.7.0",
44
+ "@typescript-eslint/typescript-estree": "^5.7.0",
45
+ "acorn": "^8.0.4",
46
+ "eslint": "^7.32.0",
47
+ "eslint-config-google": "^0.14.0",
48
+ "eslint-config-prettier": "^6.15.0",
49
+ "eslint-plugin-html": "^6.2.0",
50
+ "eslint-plugin-lit": "^1.6.1",
51
+ "eslint-plugin-prettier": "^3.4.1",
52
+ "prettier": "^2.3.2",
53
+ "minimist": ">=0.2.1",
54
+ "lodash": ">=4.17.21",
55
+ "ansi-regex": ">=5.0.1",
56
+ "glob-parent": ">=5.1.2"
57
+ }
58
+ }