@gravitywiz/types 0.0.7 → 0.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.
- package/index.d.ts +2 -1
- package/package.json +2 -3
- package/tsconfig.json +6 -0
- package/.editorconfig +0 -9
package/index.d.ts
CHANGED
|
@@ -101,7 +101,7 @@ declare global {
|
|
|
101
101
|
type FeedMeta<M = {}> = M & {
|
|
102
102
|
feed_name: string;
|
|
103
103
|
}
|
|
104
|
-
|
|
104
|
+
|
|
105
105
|
type GFConditionalLogicOperators = 'is' | 'isnot' | '>' | '<' | 'contains' | 'starts_with' | 'ends_with';
|
|
106
106
|
|
|
107
107
|
type GFConditionalLogicLogicType = 'all' | 'any';
|
|
@@ -142,6 +142,7 @@ declare global {
|
|
|
142
142
|
selectedValue: string,
|
|
143
143
|
inputName: string | false
|
|
144
144
|
) => string;
|
|
145
|
+
CreateConditionalLogic: (objectType: string, object: any) => void
|
|
145
146
|
|
|
146
147
|
// Frontend
|
|
147
148
|
gform: {
|
package/package.json
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gravitywiz/types",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"description": "TypesScript type definitions for Gravity Forms and Gravity Wiz.",
|
|
5
5
|
"author": "Gravity Wiz",
|
|
6
|
-
"license": "
|
|
6
|
+
"license": "GPL-2.0-or-later",
|
|
7
7
|
"main": "",
|
|
8
8
|
"types": "index.d.ts",
|
|
9
|
-
"private": false,
|
|
10
9
|
"dependencies": {
|
|
11
10
|
"@types/jquery": "^3.5.16",
|
|
12
11
|
"@types/plupload": "^2.0.10"
|
package/tsconfig.json
ADDED