@wix/forms 1.0.186 → 1.0.188
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/context.js.map +1 -0
- package/context.ts +3 -0
- package/index.js.map +1 -0
- package/index.ts +5 -0
- package/meta.js.map +1 -0
- package/meta.ts +3 -0
- package/package.json +34 -22
- package/service-plugins-context.js.map +1 -0
- package/service-plugins-context.ts +1 -0
- package/service-plugins.js.map +1 -0
- package/service-plugins.ts +1 -0
- package/build/cjs/context.js.map +0 -1
- package/build/cjs/index.js.map +0 -1
- package/build/cjs/meta.js.map +0 -1
- package/build/cjs/service-plugins-context.js.map +0 -1
- package/build/cjs/service-plugins.js.map +0 -1
- package/context/package.json +0 -7
- package/meta/package.json +0 -7
- package/service-plugins/context/package.json +0 -7
- package/service-plugins/package.json +0 -7
- package/type-bundles/context.bundle.d.ts +0 -11979
- package/type-bundles/index.bundle.d.ts +0 -11979
- package/type-bundles/meta.bundle.d.ts +0 -11463
- package/type-bundles/service-plugins-context.bundle.d.ts +0 -389
- package/type-bundles/service-plugins.bundle.d.ts +0 -389
- /package/{build/cjs/context.d.ts → context.d.ts} +0 -0
- /package/{build/cjs/context.js → context.js} +0 -0
- /package/{build/cjs/index.d.ts → index.d.ts} +0 -0
- /package/{build/cjs/index.js → index.js} +0 -0
- /package/{build/cjs/meta.d.ts → meta.d.ts} +0 -0
- /package/{build/cjs/meta.js → meta.js} +0 -0
- /package/{build/cjs/service-plugins-context.d.ts → service-plugins-context.d.ts} +0 -0
- /package/{build/cjs/service-plugins-context.js → service-plugins-context.js} +0 -0
- /package/{build/cjs/service-plugins.d.ts → service-plugins.d.ts} +0 -0
- /package/{build/cjs/service-plugins.js → service-plugins.js} +0 -0
package/context.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"context.js","sourceRoot":"","sources":["context.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kEAAkD;AAClD,6GAA6F;AAC7F,8EAA8D"}
|
package/context.ts
ADDED
package/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wDAA0C;AAIjC,sBAAK;AAHd,mGAAqF;AAGrE,8DAAyB;AAFzC,oEAAsD;AAEX,kCAAW"}
|
package/index.ts
ADDED
package/meta.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"meta.js","sourceRoot":"","sources":["meta.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+DAA+C;AAC/C,0GAA0F;AAC1F,2EAA2D"}
|
package/meta.ts
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/forms",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.188",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -9,34 +9,46 @@
|
|
|
9
9
|
"wix-sdk-module=backend,page,public"
|
|
10
10
|
],
|
|
11
11
|
"sideEffects": false,
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
"main": "./index.js",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"import": "./build/es/index.js",
|
|
16
|
+
"require": "./index.js"
|
|
17
|
+
},
|
|
18
|
+
"./meta": {
|
|
19
|
+
"import": "./build/es/meta.js",
|
|
20
|
+
"require": "./meta.js"
|
|
21
|
+
},
|
|
22
|
+
"./context": {
|
|
23
|
+
"import": "./build/es/context.js",
|
|
24
|
+
"require": "./context.js"
|
|
25
|
+
},
|
|
26
|
+
"./service-plugins": {
|
|
27
|
+
"import": "./build/es/service-plugins.js",
|
|
28
|
+
"require": "./service-plugins.js"
|
|
29
|
+
},
|
|
30
|
+
"./service-plugins/context": {
|
|
31
|
+
"import": "./build/es/service-plugins-context.js",
|
|
32
|
+
"require": "./service-plugins-context.js"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
16
35
|
"files": [
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"type-bundles",
|
|
22
|
-
"service-plugins"
|
|
36
|
+
"*",
|
|
37
|
+
"!config/*",
|
|
38
|
+
"!tsconfig.json",
|
|
39
|
+
"!tsconfig.esm.json"
|
|
23
40
|
],
|
|
24
41
|
"dependencies": {
|
|
25
|
-
"@wix/forms_form-spam-submission-reports": "1.0.
|
|
26
|
-
"@wix/forms_form-submissions": "1.0.
|
|
27
|
-
"@wix/forms_forms": "1.0.
|
|
28
|
-
"@wix/forms_submissions": "1.0.
|
|
42
|
+
"@wix/forms_form-spam-submission-reports": "1.0.26",
|
|
43
|
+
"@wix/forms_form-submissions": "1.0.33",
|
|
44
|
+
"@wix/forms_forms": "1.0.55",
|
|
45
|
+
"@wix/forms_submissions": "1.0.85"
|
|
29
46
|
},
|
|
30
47
|
"devDependencies": {
|
|
31
|
-
"glob": "^10.4.1",
|
|
32
|
-
"rollup": "^4.18.0",
|
|
33
|
-
"rollup-plugin-dts": "^6.1.1",
|
|
34
48
|
"typescript": "^5.3.2"
|
|
35
49
|
},
|
|
36
50
|
"scripts": {
|
|
37
|
-
"build": "tsc -b tsconfig.json tsconfig.esm.json
|
|
38
|
-
"build:dts-bundles": "test -f config/rollup-config.js && NODE_OPTIONS=--max-old-space-size=8192 rollup --config config/rollup-config.js || echo 'Warning: config/rollup-config.js not found!'",
|
|
39
|
-
"build:validate-dts": "tsc type-bundles/*.d.ts --noEmit",
|
|
51
|
+
"build": "tsc -b tsconfig.json tsconfig.esm.json",
|
|
40
52
|
"test": ":"
|
|
41
53
|
},
|
|
42
54
|
"wix": {
|
|
@@ -50,5 +62,5 @@
|
|
|
50
62
|
"fqdn": ""
|
|
51
63
|
}
|
|
52
64
|
},
|
|
53
|
-
"falconPackageHash": "
|
|
65
|
+
"falconPackageHash": "a988e0a8ed107968ed53ca85fc7e6fecf3f36d45bc33964894aa843f"
|
|
54
66
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"service-plugins-context.js","sourceRoot":"","sources":["service-plugins-context.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,uFAAuE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as formSubmissions from '@wix/forms_form-submissions/context';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"service-plugins.js","sourceRoot":"","sources":["service-plugins.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+EAA+D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as formSubmissions from '@wix/forms_form-submissions';
|
package/build/cjs/context.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"context.js","sourceRoot":"","sources":["../../context.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kEAAkD;AAClD,6GAA6F;AAC7F,8EAA8D"}
|
package/build/cjs/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wDAA0C;AAIjC,sBAAK;AAHd,mGAAqF;AAGrE,8DAAyB;AAFzC,oEAAsD;AAEX,kCAAW"}
|
package/build/cjs/meta.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"meta.js","sourceRoot":"","sources":["../../meta.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+DAA+C;AAC/C,0GAA0F;AAC1F,2EAA2D"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"service-plugins-context.js","sourceRoot":"","sources":["../../service-plugins-context.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,uFAAuE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"service-plugins.js","sourceRoot":"","sources":["../../service-plugins.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+EAA+D"}
|
package/context/package.json
DELETED
package/meta/package.json
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"sideEffects": false,
|
|
3
|
-
"module": "../../build/es/service-plugins-context.js",
|
|
4
|
-
"main": "../../build/cjs/service-plugins-context.js",
|
|
5
|
-
"typings": "../../build/cjs/service-plugins-context.d.ts",
|
|
6
|
-
"typesBundle": "../../type-bundles/service-plugins-context.bundle.d.ts"
|
|
7
|
-
}
|