@rolster/forms 3.3.0 → 4.0.0

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.
@@ -2,8 +2,9 @@ export * from './form-array/form-array-control.type';
2
2
  export { FormArrayControl, FormArrayVoid, formArrayControl } from './form-array/form-array-control';
3
3
  export * from './form-array/form-array-group.type';
4
4
  export { FormArrayGroup, formArrayGroup } from './form-array/form-array-group';
5
- export { FormArrayList, formArrayList } from './form-array/form-array-list';
6
5
  export * from './form-array/form-array-list.type';
6
+ export { FormArrayList, formArrayList } from './form-array/form-array-list';
7
+ export * from './form-array/form-array.type';
7
8
  export { FormArray, formArray } from './form-array/form-array';
8
9
  export * from './form-group/form-group.type';
9
10
  export { FormControls, FormGroup, formGroup } from './form-group/form-group';
package/dist/esm/index.js CHANGED
@@ -2,8 +2,9 @@ export * from './form-array/form-array-control.type';
2
2
  export { FormArrayControl, formArrayControl } from './form-array/form-array-control';
3
3
  export * from './form-array/form-array-group.type';
4
4
  export { FormArrayGroup, formArrayGroup } from './form-array/form-array-group';
5
- export { FormArrayList, formArrayList } from './form-array/form-array-list';
6
5
  export * from './form-array/form-array-list.type';
6
+ export { FormArrayList, formArrayList } from './form-array/form-array-list';
7
+ export * from './form-array/form-array.type';
7
8
  export { FormArray, formArray } from './form-array/form-array';
8
9
  export * from './form-group/form-group.type';
9
10
  export { FormGroup, formGroup } from './form-group/form-group';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,sCAAsC,CAAC;AACrD,OAAO,EACL,gBAAgB,EAEhB,gBAAgB,EACjB,MAAM,iCAAiC,CAAC;AACzC,cAAc,oCAAoC,CAAC;AACnD,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAC/E,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AAC5E,cAAc,mCAAmC,CAAC;AAClD,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AAC/D,cAAc,8BAA8B,CAAC;AAC7C,OAAO,EAAgB,SAAS,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AAC7E,cAAc,kCAAkC,CAAC;AACjD,OAAO,EACL,WAAW,EAEX,WAAW,EACZ,MAAM,6BAA6B,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,sCAAsC,CAAC;AACrD,OAAO,EACL,gBAAgB,EAEhB,gBAAgB,EACjB,MAAM,iCAAiC,CAAC;AACzC,cAAc,oCAAoC,CAAC;AACnD,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAC/E,cAAc,mCAAmC,CAAC;AAClD,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AAC5E,cAAc,8BAA8B,CAAC;AAC7C,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AAC/D,cAAc,8BAA8B,CAAC;AAC7C,OAAO,EAAgB,SAAS,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AAC7E,cAAc,kCAAkC,CAAC;AACjD,OAAO,EACL,WAAW,EAEX,WAAW,EACZ,MAAM,6BAA6B,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rolster/forms",
3
- "version": "3.3.0",
3
+ "version": "4.0.0",
4
4
  "type": "module",
5
5
  "description": "It implements a set of classes that allow managing the control of states of the input components of the UI.",
6
6
  "license": "MIT",
@@ -12,7 +12,7 @@
12
12
  }
13
13
  ],
14
14
  "types": "./dist/esm/index.d.ts",
15
- "main": "./dist/esm/index.js",
15
+ "main": "./dist/cjs/index.js",
16
16
  "module": "./dist/esm/index.js",
17
17
  "exports": {
18
18
  ".": {
@@ -39,17 +39,17 @@
39
39
  "scripts": {
40
40
  "prettier": "prettier --write \"src/**/*.{ts}\"",
41
41
  "clean": "rimraf ./dist",
42
- "build": "npm run clean && tsc -p tsconfig.app.json && rollup -c rollup.config.js",
42
+ "build": "npm run clean && tsc -p tsconfig.app.json && rollup -c rollup.config.mjs",
43
43
  "test": "vitest run",
44
44
  "prepublishOnly": "npm run build"
45
45
  },
46
46
  "dependencies": {
47
- "@rolster/commons": "^3.2.1",
48
- "@rolster/validators": "^2.4.1",
47
+ "@rolster/commons": "^4.0.0",
48
+ "@rolster/validators": "^3.0.0",
49
49
  "uuid": "^13.0.0"
50
50
  },
51
51
  "devDependencies": {
52
- "@rolster/rollup": "^1.0.10",
52
+ "@rolster/rollup": "^1.1.0",
53
53
  "@rolster/types": "^1.1.0",
54
54
  "@vitest/ui": "^3.2.4",
55
55
  "jsdom": "^27.0.0",
@@ -61,7 +61,7 @@
61
61
  },
62
62
  "repository": {
63
63
  "type": "git",
64
- "url": "https://github.com/rolster-developments/typescript-forms.git"
64
+ "url": "git+https://github.com/rolster-developments/typescript-forms.git"
65
65
  },
66
66
  "keywords": [
67
67
  "rolster",