@exmg/exm-form 1.0.6 → 1.0.8

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 (3) hide show
  1. package/README.md +4 -4
  2. package/index.d.ts +1 -1
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -4,10 +4,10 @@
4
4
 
5
5
  The Exmg Form enhances form design by offering a more intuitive layout visualization, streamlining the user experience with several key features. These include:
6
6
 
7
- - Automated form validity checks, ensuring data integrity.
8
- - Dynamic submit button control, which enables or disables the button based on form completeness.
9
- - JSON output capability, allowing for easy data serialization and integration.
10
- - A loading spinner, providing a visual indicator for asynchronous form submissions.
7
+ - Automated form validity checks, ensuring data integrity
8
+ - Dynamic submit button control, which enables or disables the button based on form completeness
9
+ - JSON output capability, allowing for easy data serialization and integration
10
+ - A loading spinner, providing a visual indicator for asynchronous form submissions
11
11
 
12
12
  ## Installation
13
13
 
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export { ExmForm } from './src/exm-form.js';
2
- export { ExmFormValidateMixin } from './src/exm-form-validate-mixin.js';
2
+ export { ExmFormValidateMixin, Constructor } from './src/exm-form-validate-mixin.js';
3
3
  export { ExmFormBase, serializeForm } from './src/exm-form-base.js';
4
4
  export { style as formStyles } from './src/styles/exm-form-css.js';
5
5
  export { style as formBaseStyles } from './src/styles/exm-form-base-css.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exmg/exm-form",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -43,5 +43,5 @@
43
43
  "publishConfig": {
44
44
  "access": "public"
45
45
  },
46
- "gitHead": "3a7e80814357f7b89d46a44cc821834a9131f25b"
46
+ "gitHead": "3a8b0c37996bb46cb2466c6adeaeae8142958d4e"
47
47
  }