n8n-nodes-extended-forms 0.2.6 → 0.3.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.
- package/dist/credentials/GithubIssuesApi.credentials.js +1 -36
- package/dist/credentials/GithubIssuesOAuth2Api.credentials.js +1 -53
- package/dist/nodes/Form123/Form.node.js +1 -388
- package/dist/nodes/Form123/Form.node.js.map +1 -1
- package/dist/nodes/Form123/FormTrigger.node.js +1 -27
- package/dist/nodes/Form123/common.descriptions.js +1 -647
- package/dist/nodes/Form123/cssVariables.js +1 -73
- package/dist/nodes/Form123/interfaces.d.ts +4 -0
- package/dist/nodes/Form123/interfaces.js +1 -4
- package/dist/nodes/Form123/interfaces.js.map +1 -1
- package/dist/nodes/Form123/templates/form-trigger-completion.handlebars +1 -1
- package/dist/nodes/Form123/templates/form-trigger.handlebars +694 -71
- package/dist/nodes/Form123/utils/descriptions.js +1 -10
- package/dist/nodes/Form123/utils/formCompletionUtils.js +1 -106
- package/dist/nodes/Form123/utils/formNodeUtils.js +3 -75
- package/dist/nodes/Form123/utils/formNodeUtils.js.map +1 -1
- package/dist/nodes/Form123/utils/templateRenderer.js +1 -71
- package/dist/nodes/Form123/utils/utilities.js +3 -47
- package/dist/nodes/Form123/utils/utils.d.ts +11 -3
- package/dist/nodes/Form123/utils/utils.js +3 -593
- package/dist/nodes/Form123/utils/utils.js.map +1 -1
- package/dist/nodes/Form123/utils/waitUtils.js +1 -67
- package/dist/nodes/Form123/v1/FormTriggerV1.node.js +1 -82
- package/dist/nodes/Form123/v2/FormTriggerV2.node.js +1 -193
- package/dist/nodes/Form123/v2/FormTriggerV2.node.js.map +1 -1
- package/dist/package.json +3 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -1
|
@@ -1,74 +1,2 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.cssVariables = void 0;
|
|
4
|
-
exports.cssVariables = `
|
|
5
|
-
:root {
|
|
6
|
-
--font-family: 'Open Sans', sans-serif;
|
|
7
|
-
--font-weight-normal: 400;
|
|
8
|
-
--font-weight-bold: 600;
|
|
9
|
-
--font-size-body: 12px;
|
|
10
|
-
--font-size-label: 14px;
|
|
11
|
-
--font-size-test-notice: 12px;
|
|
12
|
-
--font-size-input: 14px;
|
|
13
|
-
--font-size-header: 20px;
|
|
14
|
-
--font-size-paragraph: 14px;
|
|
15
|
-
--font-size-link: 12px;
|
|
16
|
-
--font-size-error: 12px;
|
|
17
|
-
--font-size-html-h1: 28px;
|
|
18
|
-
--font-size-html-h2: 20px;
|
|
19
|
-
--font-size-html-h3: 16px;
|
|
20
|
-
--font-size-html-h4: 14px;
|
|
21
|
-
--font-size-html-h5: 12px;
|
|
22
|
-
--font-size-html-h6: 10px;
|
|
23
|
-
--font-size-subheader: 14px;
|
|
24
|
-
|
|
25
|
-
/* Colors */
|
|
26
|
-
--color-background: #fbfcfe;
|
|
27
|
-
--color-test-notice-text: #e6a23d;
|
|
28
|
-
--color-test-notice-bg: #fefaf6;
|
|
29
|
-
--color-test-notice-border: #f6dcb7;
|
|
30
|
-
--color-card-bg: #ffffff;
|
|
31
|
-
--color-card-border: #dbdfe7;
|
|
32
|
-
--color-card-shadow: rgba(99, 77, 255, 0.06);
|
|
33
|
-
--color-link: #7e8186;
|
|
34
|
-
--color-header: #525356;
|
|
35
|
-
--color-label: #555555;
|
|
36
|
-
--color-input-border: #dbdfe7;
|
|
37
|
-
--color-input-text: #71747A;
|
|
38
|
-
--color-focus-border: rgb(90, 76, 194);
|
|
39
|
-
--color-submit-btn-bg: #ff6d5a;
|
|
40
|
-
--color-submit-btn-text: #ffffff;
|
|
41
|
-
--color-error: #ea1f30;
|
|
42
|
-
--color-required: #ff6d5a;
|
|
43
|
-
--color-clear-button-bg: #7e8186;
|
|
44
|
-
--color-html-text: #555;
|
|
45
|
-
--color-html-link: #ff6d5a;
|
|
46
|
-
--color-header-subtext: #7e8186;
|
|
47
|
-
|
|
48
|
-
/* Border Radii */
|
|
49
|
-
--border-radius-card: 8px;
|
|
50
|
-
--border-radius-input: 6px;
|
|
51
|
-
--border-radius-clear-btn: 50%;
|
|
52
|
-
--card-border-radius: 8px;
|
|
53
|
-
|
|
54
|
-
/* Spacing */
|
|
55
|
-
--padding-container-top: 24px;
|
|
56
|
-
--padding-card: 24px;
|
|
57
|
-
--padding-test-notice-vertical: 12px;
|
|
58
|
-
--padding-test-notice-horizontal: 24px;
|
|
59
|
-
--margin-bottom-card: 16px;
|
|
60
|
-
--padding-form-input: 12px;
|
|
61
|
-
--card-padding: 24px;
|
|
62
|
-
--card-margin-bottom: 16px;
|
|
63
|
-
|
|
64
|
-
/* Dimensions */
|
|
65
|
-
--container-width: 448px;
|
|
66
|
-
--submit-btn-height: 48px;
|
|
67
|
-
--checkbox-size: 18px;
|
|
68
|
-
|
|
69
|
-
/* Others */
|
|
70
|
-
--box-shadow-card: 0px 4px 16px 0px var(--color-card-shadow);
|
|
71
|
-
--opacity-placeholder: 0.5;
|
|
72
|
-
}
|
|
73
|
-
`;
|
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.cssVariables=void 0,exports.cssVariables="\n:root {\n\t--font-family: 'Open Sans', sans-serif;\n\t--font-weight-normal: 400;\n\t--font-weight-bold: 600;\n\t--font-size-body: 12px;\n\t--font-size-label: 14px;\n\t--font-size-test-notice: 12px;\n\t--font-size-input: 14px;\n\t--font-size-header: 20px;\n\t--font-size-paragraph: 14px;\n\t--font-size-link: 12px;\n\t--font-size-error: 12px;\n\t--font-size-html-h1: 28px;\n\t--font-size-html-h2: 20px;\n\t--font-size-html-h3: 16px;\n\t--font-size-html-h4: 14px;\n\t--font-size-html-h5: 12px;\n\t--font-size-html-h6: 10px;\n\t--font-size-subheader: 14px;\n\n\t/* Colors */\n\t--color-background: #fbfcfe;\n\t--color-test-notice-text: #e6a23d;\n\t--color-test-notice-bg: #fefaf6;\n\t--color-test-notice-border: #f6dcb7;\n\t--color-card-bg: #ffffff;\n\t--color-card-border: #dbdfe7;\n\t--color-card-shadow: rgba(99, 77, 255, 0.06);\n\t--color-link: #7e8186;\n\t--color-header: #525356;\n\t--color-label: #555555;\n\t--color-input-border: #dbdfe7;\n\t--color-input-text: #71747A;\n\t--color-focus-border: rgb(90, 76, 194);\n\t--color-submit-btn-bg: #ff6d5a;\n\t--color-submit-btn-text: #ffffff;\n\t--color-error: #ea1f30;\n\t--color-required: #ff6d5a;\n\t--color-clear-button-bg: #7e8186;\n\t--color-html-text: #555;\n\t--color-html-link: #ff6d5a;\n\t--color-header-subtext: #7e8186;\n\n\t/* Border Radii */\n\t--border-radius-card: 8px;\n\t--border-radius-input: 6px;\n\t--border-radius-clear-btn: 50%;\n\t--card-border-radius: 8px;\n\n\t/* Spacing */\n\t--padding-container-top: 24px;\n\t--padding-card: 24px;\n\t--padding-test-notice-vertical: 12px;\n\t--padding-test-notice-horizontal: 24px;\n\t--margin-bottom-card: 16px;\n\t--padding-form-input: 12px;\n\t--card-padding: 24px;\n\t--card-margin-bottom: 16px;\n\n\t/* Dimensions */\n\t--container-width: 448px;\n\t--submit-btn-height: 48px;\n\t--checkbox-size: 18px;\n\n\t/* Others */\n\t--box-shadow-card: 0px 4px 16px 0px var(--color-card-shadow);\n\t--opacity-placeholder: 0.5;\n}\n";
|
|
74
2
|
//# sourceMappingURL=cssVariables.js.map
|
|
@@ -55,5 +55,9 @@ export type FormTriggerData = {
|
|
|
55
55
|
appendAttribution?: boolean;
|
|
56
56
|
buttonLabel?: string;
|
|
57
57
|
dangerousCustomCss?: string;
|
|
58
|
+
enableProgressSaving?: boolean;
|
|
59
|
+
saveProgressWebhookUrl?: string;
|
|
60
|
+
loadProgressWebhookUrl?: string;
|
|
61
|
+
progressQueryParam?: string;
|
|
58
62
|
};
|
|
59
63
|
export declare const FORM_TRIGGER_AUTHENTICATION_PROPERTY = "authentication";
|
|
@@ -1,5 +1,2 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.FORM_TRIGGER_AUTHENTICATION_PROPERTY = void 0;
|
|
4
|
-
exports.FORM_TRIGGER_AUTHENTICATION_PROPERTY = 'authentication';
|
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.FORM_TRIGGER_AUTHENTICATION_PROPERTY=void 0,exports.FORM_TRIGGER_AUTHENTICATION_PROPERTY="authentication";
|
|
5
2
|
//# sourceMappingURL=interfaces.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../../../nodes/Form123/interfaces.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../../../nodes/Form123/interfaces.ts"],"names":[],"mappings":";;;AAsEa,QAAA,oCAAoC,GAAG,gBAAgB,CAAC"}
|