8 | )
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/clients/pro/webpack/config.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | module.exports = {
4 | title: 'globular',
5 | // Options for webpack-dev-server
6 | // See https://webpack.js.org/configuration/dev-server
7 | devServer: {
8 | host: 'localhost',
9 | port: 4000
10 | },
11 | // when you use electron please set to relative path like ./
12 | // otherwise only set to absolute path when you're using history mode
13 | publicPath: '/',
14 | cssModules: true,
15 | jsx: false
16 | }
17 |
--------------------------------------------------------------------------------
/clients/pro/webpack/index.php:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/clients/pro/webpack/log-plugin.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 | const chalk = require('chalk')
3 |
4 | // this plugin if for loggin url after each time the compilation is done.
5 | module.exports = class LogPlugin {
6 | constructor(options) {
7 | this.options = options
8 | }
9 |
10 | apply(compiler) {
11 | compiler.plugin('done', () => {
12 | console.log(`> VuePack is running at ${chalk.yellow(`http://${this.options.host}:${this.options.port}`)}\n`)
13 | })
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/clients/pro/webpack/tab.php:
--------------------------------------------------------------------------------
1 | get_tab_html();
--------------------------------------------------------------------------------
/clients/render/components/index.js:
--------------------------------------------------------------------------------
1 | import {CalderaFormsFieldRender,CalderaFormsFieldPropType} from "./CalderaFormsFieldRender";
2 | import {CalderaFormsRender} from "./CalderaFormsRender";
3 | import {CalderaFormsFieldGroup} from "./CalderaFormsFieldGroup";
4 |
5 | /**
6 | * The Caldera Forms version 2 form renderer.
7 | *
8 | * @since 1.8.0
9 | */
10 | export{
11 | CalderaFormsFieldGroup,
12 | CalderaFormsFieldPropType,
13 | CalderaFormsFieldRender,
14 | CalderaFormsRender
15 | }
16 |
--------------------------------------------------------------------------------
/clients/render/index.scss:
--------------------------------------------------------------------------------
1 | @import 'components/Fields/styles/files-field';
--------------------------------------------------------------------------------
/clients/state/actions/form.js:
--------------------------------------------------------------------------------
1 | export const SET_FORMS = 'SET_FORMS';
2 | export const SET_FORM = 'SET_FORM';
3 | export const SET_CURRENT_FORM_ID = 'SET_CURRENT_FORM_ID';
4 | export const ADD_FORM_PREVIEW = 'ADD_FORM_PREVIEW';
5 |
6 | import * as cfFormsState from '@caldera-labs/state';
7 |
8 |
9 | /**
10 | * Shared redux(-like) action callbacks
11 | *
12 | * @type {{setForm(*=): *, setForms(*=): *, addFormPreview(*=, *=): *}}
13 | */
14 | export const actionFunctions = cfFormsState.store.actions;
--------------------------------------------------------------------------------
/clients/tests/setupJest.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import jquery from 'jquery';
3 |
4 | global.wp = {
5 | shortcode: {
6 |
7 | },
8 | apiRequest: {
9 |
10 | }
11 | };
12 |
13 | Object.defineProperty( global.wp, 'element', {
14 | get: () => React,
15 | } );
16 |
17 | /**
18 | * Setup fetch mocking
19 | * @link https://www.npmjs.com/package/jest-fetch-mock#usage
20 | */
21 | global.fetch = require('jest-fetch-mock');
22 |
23 | /**
24 | * Setup jQuery
25 | */
26 | global.$ = global.jQuery = jquery;
--------------------------------------------------------------------------------
/clients/tests/unit/README.md:
--------------------------------------------------------------------------------
1 |
2 | ## Directory Structure
3 | Beacuse snapshots get store in the di
--------------------------------------------------------------------------------
/clients/tests/unit/__snapshots__/index.test.js.snap:
--------------------------------------------------------------------------------
1 | // Jest Snapshot v1, https://goo.gl/fbAQLP
2 |
3 | exports[`Testing Can snapshot 1`] = `"{\\"roy\\":true}"`;
4 |
--------------------------------------------------------------------------------
/clients/tests/unit/createEnzymeAdapter.js:
--------------------------------------------------------------------------------
1 | import Enzyme from 'enzyme';
2 | import Adapter from 'enzyme-adapter-react-16';
3 | export const EnzymeAdapter = Enzyme.configure({adapter: new Adapter()});
4 |
--------------------------------------------------------------------------------
/clients/tests/unit/render/md5_screenshot.php:
--------------------------------------------------------------------------------
1 | {
4 | it( 'Has 3 reducers combined', () => {
5 | expect(Object.keys({a:1,b:1,c:1}).length).toBe(3);
6 | })
7 | });
--------------------------------------------------------------------------------
/clients/viewer/README.md:
--------------------------------------------------------------------------------
1 | **This client is not yet in use. assets/js/viewer/*.js is used instead**
2 |
3 | # Caldera Forms Entry Viewer Client
4 |
5 | ## Plan
6 | * Step 1: Make the REST API
7 | ** https://github.com/CalderaWP/Caldera-Forms/issues/2195
8 | ** https://github.com/CalderaWP/Caldera-Forms/issues/2194
9 | * Step 2: Migrate code from old entry viewer
10 | * Step 3: Profit
11 | * Step 4: Make better
12 | * Step 5: Use in admin client
13 |
--------------------------------------------------------------------------------
/clients/viewer/index.js:
--------------------------------------------------------------------------------
1 | //Hi Roy
--------------------------------------------------------------------------------
/cypress.json:
--------------------------------------------------------------------------------
1 | {
2 | "env": {
3 | "wp_site": {
4 | "url": "http://localhost:8228",
5 | "user": "admin",
6 | "pass": "password"
7 | }
8 | },
9 | "projectId": "3jgs4a"
10 | }
11 |
--------------------------------------------------------------------------------
/cypress/fixtures/Fotolia_36098251_femme-automne-couronne-feuilles-et-chat-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/fixtures/Fotolia_36098251_femme-automne-couronne-feuilles-et-chat-1.jpg
--------------------------------------------------------------------------------
/cypress/fixtures/Fotolia_65129014-femme-fond-coucher-soleil-ete2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/fixtures/Fotolia_65129014-femme-fond-coucher-soleil-ete2.jpg
--------------------------------------------------------------------------------
/cypress/fixtures/example.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "Using fixtures to represent data",
3 | "email": "hello@cypress.io",
4 | "body": "Fixtures are a great way to mock data for responses to routes"
5 | }
--------------------------------------------------------------------------------
/cypress/fixtures/filesFieldTests/Fotolia_36098251_femme-automne-couronne-feuilles-et-chat-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/fixtures/filesFieldTests/Fotolia_36098251_femme-automne-couronne-feuilles-et-chat-1.jpg
--------------------------------------------------------------------------------
/cypress/fixtures/filesFieldTests/Fotolia_65129014-femme-fond-coucher-soleil-ete2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/fixtures/filesFieldTests/Fotolia_65129014-femme-fond-coucher-soleil-ete2.jpg
--------------------------------------------------------------------------------
/cypress/integration/cf2-file-not-required-not-block-submit.js:
--------------------------------------------------------------------------------
1 | import {
2 | visitPage,
3 | cfAlertHasText,
4 | cfFieldClickButton
5 | } from '../support/util';
6 |
7 |
8 | describe('Name of test', () => {
9 | beforeEach(() => {
10 | visitPage('cf2-file-not-required');
11 | });
12 |
13 | const formId = 'CF5bee2f0d5a1d6';
14 | const button = 'fld_3314268';
15 |
16 | it( 'When submitted with non-required file fields that are left empty, it submits', () => {
17 | cfFieldClickButton(button);
18 | cfAlertHasText( formId,'GOOD');
19 | });
20 |
21 |
22 | });
--------------------------------------------------------------------------------
/cypress/integration/cf2-file-two-not-requireds-not-block-submit.js:
--------------------------------------------------------------------------------
1 | import {
2 | visitPage,
3 | cfAlertHasText,
4 | cfFieldClickButton
5 | } from '../support/util';
6 |
7 |
8 | describe('Name of test', () => {
9 | beforeEach(() => {
10 | visitPage('cf2-file-2-not-required');
11 | });
12 |
13 | const formId = 'CF5bee3162ab0b2';
14 | const button = 'fld_7332208';
15 |
16 | it( 'When submitted with two non-required file field, left empty it submits', () => {
17 | cfFieldClickButton(button);
18 | cfAlertHasText( formId,'GOOD');
19 | });
20 |
21 |
22 | });
--------------------------------------------------------------------------------
/cypress/screenshots/calculation-checkbox.test.js/Calculations - With Checkbox -- Does not add hidden checkbox (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/calculation-checkbox.test.js/Calculations - With Checkbox -- Does not add hidden checkbox (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/calculation-checkbox.test.js/Calculations - With Checkbox -- adds up checkbox (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/calculation-checkbox.test.js/Calculations - With Checkbox -- adds up checkbox (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/calculation-checkbox.test.js/Calculations - With Checkbox -- adds up two checkbox fields (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/calculation-checkbox.test.js/Calculations - With Checkbox -- adds up two checkbox fields (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/calculation-money.test.js/Calculations - money style -- Divides and accounts for hidden field being hidden (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/calculation-money.test.js/Calculations - money style -- Divides and accounts for hidden field being hidden (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/calculation-money.test.js/Calculations - money style -- Price option + Quantity option (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/calculation-money.test.js/Calculations - money style -- Price option + Quantity option (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/calculation-money.test.js/Calculations - money style -- Radio-based options (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/calculation-money.test.js/Calculations - money style -- Radio-based options (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/calculations-1962.test.js/Name of test -- Does the math correctly after intial load (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/calculations-1962.test.js/Name of test -- Does the math correctly after intial load (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/calculations-1962.test.js/Name of test -- Has the right initial load (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/calculations-1962.test.js/Name of test -- Has the right initial load (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/calculations-1979.test.js/1979 Calculations -- Updates and does math correctly (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/calculations-1979.test.js/1979 Calculations -- Updates and does math correctly (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/calculations-1993.test.js/1993 Calculations -- Updates after initial load with correct math (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/calculations-1993.test.js/1993 Calculations -- Updates after initial load with correct math (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/calculations-2063.1.test.js/2063.1 CONDITIONALS CREATE@1.6.2.2 DEV@1.5.7.1 -- Does not include hidden (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/calculations-2063.1.test.js/2063.1 CONDITIONALS CREATE@1.6.2.2 DEV@1.5.7.1 -- Does not include hidden (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/calculations-2063.test.js/2063 CALCULATIONS CREATE@X DEV@1.5.7.1 -- Does math (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/calculations-2063.test.js/2063 CALCULATIONS CREATE@X DEV@1.5.7.1 -- Does math (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/calculations-2082.js/2082 CALCULATIONS CREATED@1.5.7.1 DEV@1.5.8 -- Does math based on select field without calc value set (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/calculations-2082.js/2082 CALCULATIONS CREATED@1.5.7.1 DEV@1.5.8 -- Does math based on select field without calc value set (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/calculations-x1.test.js/X1 Calculations -- Updates and does math correctly (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/calculations-x1.test.js/X1 Calculations -- Updates and does math correctly (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/calculations-x2.test.js/X2 Calculations -- Updates and does math correctly (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/calculations-x2.test.js/X2 Calculations -- Updates and does math correctly (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/calculations-x3.test.js/X3 Calculations -- Does something else (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/calculations-x3.test.js/X3 Calculations -- Does something else (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/cc-2107.test.js/2107 Credit Cards -- CC fields submit when has expiration and ccv (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/cc-2107.test.js/2107 Credit Cards -- CC fields submit when has expiration and ccv (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/cc-2107.test.js/2107 Credit Cards -- CC fields validation works on page 2 (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/cc-2107.test.js/2107 Credit Cards -- CC fields validation works on page 2 (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/cf2-file-not-required-not-block-submit.js/Name of test -- When submitted with non-required file fields that are left empty, it submits (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/cf2-file-not-required-not-block-submit.js/Name of test -- When submitted with non-required file fields that are left empty, it submits (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/cf2-file-two-not-requireds-not-block-submit.js/Name of test -- When submitted with two non-required file field, left empty it submits (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/cf2-file-two-not-requireds-not-block-submit.js/Name of test -- When submitted with two non-required file field, left empty it submits (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/cf2-file-ui.js/Test CF2 file field interface -- Drop event with one file (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/cf2-file-ui.js/Test CF2 file field interface -- Drop event with one file (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/cf2-file-ui.js/Test CF2 file field interface -- Drop event with two files (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/cf2-file-ui.js/Test CF2 file field interface -- Drop event with two files (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/cf2-file-ui.js/Test CF2 file field interface -- Test click on Dropzone (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/cf2-file-ui.js/Test CF2 file field interface -- Test click on Dropzone (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-disable.test.js/Conditionals - disable type - text fields -- Disables all when all are checked, except disable all (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-disable.test.js/Conditionals - disable type - text fields -- Disables all when all are checked, except disable all (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-disable.test.js/Conditionals - disable type - text fields -- Disables color field (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-disable.test.js/Conditionals - disable type - text fields -- Disables color field (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-disable.test.js/Conditionals - disable type - text fields -- Disables email field (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-disable.test.js/Conditionals - disable type - text fields -- Disables email field (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-disable.test.js/Conditionals - disable type - text fields -- Disables none when all are checked, including disable all (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-disable.test.js/Conditionals - disable type - text fields -- Disables none when all are checked, including disable all (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-disable.test.js/Conditionals - disable type - text fields -- Disables phone basic field (failed) (1).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-disable.test.js/Conditionals - disable type - text fields -- Disables phone basic field (failed) (1).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-disable.test.js/Conditionals - disable type - text fields -- Disables phone basic field (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-disable.test.js/Conditionals - disable type - text fields -- Disables phone basic field (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-disable.test.js/Conditionals - disable type - text fields -- Disables phone better field (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-disable.test.js/Conditionals - disable type - text fields -- Disables phone better field (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-disable.test.js/Conditionals - disable type - text fields -- Disables text field (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-disable.test.js/Conditionals - disable type - text fields -- Disables text field (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-disable.test.js/Conditionals - disable type - text fields -- Disables url field (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-disable.test.js/Conditionals - disable type - text fields -- Disables url field (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-fancy-multi-page.js/Conditionals test hide conditionals of fancy fields on page 2 -- After hide and unhide, looks the same (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-fancy-multi-page.js/Conditionals test hide conditionals of fancy fields on page 2 -- After hide and unhide, looks the same (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-fancy-multi-page.js/Conditionals test hide conditionals of fancy fields on page 2 -- Has the correct initial load (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-fancy-multi-page.js/Conditionals test hide conditionals of fancy fields on page 2 -- Has the correct initial load (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-fancy.js/Conditionals test hide conditionals of fancy fields -- After hide and unhide, looks the same (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-fancy.js/Conditionals test hide conditionals of fancy fields -- After hide and unhide, looks the same (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - select fields -- Hides and shows based on checkbox (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - select fields -- Hides and shows based on checkbox (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - select fields -- Hides and shows based on radio (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - select fields -- Hides and shows based on radio (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - select fields -- Hides shows the other fields (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - select fields -- Hides shows the other fields (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - select fields -- Hidesshows checkbox fields and keeps values (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - select fields -- Hidesshows checkbox fields and keeps values (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - select fields -- Keeps date value (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - select fields -- Keeps date value (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - select fields -- Keeps dropdown value (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - select fields -- Keeps dropdown value (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - select fields -- Keeps stateProvidence value (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - select fields -- Keeps stateProvidence value (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - select fields -- preserves value of radio field (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - select fields -- preserves value of radio field (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - text fields -- Can hide and unhide all (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - text fields -- Can hide and unhide all (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - text fields -- Hide and update values of number-like text fields (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - text fields -- Hide and update values of number-like text fields (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - text fields -- Hide and update values of regular text fields (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - text fields -- Hide and update values of regular text fields (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - text fields -- can hide and show based on text value (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-hide.test.js/Conditionals - hide type - text fields -- can hide and show based on text value (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-show.test.js/Conditionals - show type - select fields -- Hides and shows based on checkbox -- before each hook (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-show.test.js/Conditionals - show type - select fields -- Hides and shows based on checkbox -- before each hook (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-show.test.js/Conditionals - show type - text fields -- Show and update values of number-like text fields (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-show.test.js/Conditionals - show type - text fields -- Show and update values of number-like text fields (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-show.test.js/Conditionals - show type - text fields -- Show and update values of regular text fields (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-show.test.js/Conditionals - show type - text fields -- Show and update values of regular text fields (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-summary-cf2-fields-2766.js/conditionals and summary cf2 fields 2766 -- Change in text cf2 text fields updates summary (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-summary-cf2-fields-2766.js/conditionals and summary cf2 fields 2766 -- Change in text cf2 text fields updates summary (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-x10.test.js/X10 Conditionals -- Hides based on dropdown (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-x10.test.js/X10 Conditionals -- Hides based on dropdown (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-x10.test.js/X10 Conditionals -- Hides if text starts with (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-x10.test.js/X10 Conditionals -- Hides if text starts with (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-x10.test.js/X10 Conditionals -- hides if number is (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-x10.test.js/X10 Conditionals -- hides if number is (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-x10.test.js/X10 Conditionals -- hides if number is less than (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-x10.test.js/X10 Conditionals -- hides if number is less than (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-x11.test.js/X11 Conditionals Show Single Page create@1.5.5 -- Hides and shows a number field based on a radio and brings back its value (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-x11.test.js/X11 Conditionals Show Single Page create@1.5.5 -- Hides and shows a number field based on a radio and brings back its value (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-x11.test.js/X11 Conditionals Show Single Page create@1.5.5 -- Hides and shows a text field based on a checkbox and brings back its value (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-x11.test.js/X11 Conditionals Show Single Page create@1.5.5 -- Hides and shows a text field based on a checkbox and brings back its value (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-x8.test.js/X8 Conditionals Hide create@1.5.5 -- Updates conditionals across pages (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-x8.test.js/X8 Conditionals Hide create@1.5.5 -- Updates conditionals across pages (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-x9.test.js/X9 CONDITIONALS SHOW CREATE@1.5.5 -- Hides and shows based on a checkbox across pages (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-x9.test.js/X9 CONDITIONALS SHOW CREATE@1.5.5 -- Hides and shows based on a checkbox across pages (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditionals-x9.test.js/X9 CONDITIONALS SHOW CREATE@1.5.5 -- Hides and shows based on a radio across pages (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditionals-x9.test.js/X9 CONDITIONALS SHOW CREATE@1.5.5 -- Hides and shows based on a radio across pages (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/conditonals-ui.js/Using fields with conditionals -- Sets field for conditional (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/conditonals-ui.js/Using fields with conditionals -- Sets field for conditional (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/create-form.test.js/Clone a form -- Clones a form (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/create-form.test.js/Clone a form -- Clones a form (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/create-form.test.js/Clone a form -- Shows clone option when hovered (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/create-form.test.js/Clone a form -- Shows clone option when hovered (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/date-validation-2747.js/Date Picker validation tests -- Leaving it empty triggers validation error (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/date-validation-2747.js/Date Picker validation tests -- Leaving it empty triggers validation error (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/date-validation-2747.js/Date Picker validation tests -- We can clear the validation error (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/date-validation-2747.js/Date Picker validation tests -- We can clear the validation error (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/editor-variables.test.js/Check variables -- Adds the variable to magic tags list (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/editor-variables.test.js/Check variables -- Adds the variable to magic tags list (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/editor-variables.test.js/Check variables -- Create a variable (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/editor-variables.test.js/Check variables -- Create a variable (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/editor-variables.test.js/Check variables -- Remove a variable (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/editor-variables.test.js/Check variables -- Remove a variable (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/html-summary-2013.test.js/2013 html summary -- Updates summary (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/html-summary-2013.test.js/2013 html summary -- Updates summary (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/html-summary-2014.test.js/Name of test -- Updates values (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/html-summary-2014.test.js/Name of test -- Updates values (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/html-summary-2049.test.js/2049 HTMLSUMMARY CREATE@1.5.7 DEV@1.5.7 -- Breaks sync correctly from dropdown field to text field (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/html-summary-2049.test.js/2049 HTMLSUMMARY CREATE@1.5.7 DEV@1.5.7 -- Breaks sync correctly from dropdown field to text field (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/html-summary-2049.test.js/2049 HTMLSUMMARY CREATE@1.5.7 DEV@1.5.7 -- Stays in sync from dropdown field to text field (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/html-summary-2049.test.js/2049 HTMLSUMMARY CREATE@1.5.7 DEV@1.5.7 -- Stays in sync from dropdown field to text field (failed).png
--------------------------------------------------------------------------------
/cypress/screenshots/test-entry-editor.js/Editing forms using entry editor -- Can edit a required number field whose value is 0 (failed).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/screenshots/test-entry-editor.js/Editing forms using entry editor -- Can edit a required number field whose value is 0 (failed).png
--------------------------------------------------------------------------------
/cypress/videos/--TEMPLATE-integration-test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/--TEMPLATE-integration-test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/calculation-checkbox.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/calculation-checkbox.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/calculation-manual.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/calculation-manual.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/calculation-money.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/calculation-money.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/calculations-1962.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/calculations-1962.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/calculations-1979.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/calculations-1979.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/calculations-1993.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/calculations-1993.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/calculations-2063.1.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/calculations-2063.1.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/calculations-2063.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/calculations-2063.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/calculations-2082.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/calculations-2082.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/calculations-x1.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/calculations-x1.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/calculations-x2.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/calculations-x2.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/calculations-x3.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/calculations-x3.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/cc-2107.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/cc-2107.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/cf2-file-not-required-not-block-submit.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/cf2-file-not-required-not-block-submit.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/cf2-file-two-not-requireds-not-block-submit.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/cf2-file-two-not-requireds-not-block-submit.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/cf2-file-ui.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/cf2-file-ui.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/conditionals-disable.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/conditionals-disable.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/conditionals-fancy-multi-page.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/conditionals-fancy-multi-page.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/conditionals-fancy.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/conditionals-fancy.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/conditionals-hide.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/conditionals-hide.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/conditionals-show.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/conditionals-show.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/conditionals-summary-cf2-fields-2766.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/conditionals-summary-cf2-fields-2766.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/conditionals-x10.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/conditionals-x10.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/conditionals-x11.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/conditionals-x11.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/conditionals-x8.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/conditionals-x8.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/conditionals-x9.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/conditionals-x9.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/conditonals-ui.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/conditonals-ui.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/create-form.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/create-form.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/date-validation-2747.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/date-validation-2747.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/editor-variables.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/editor-variables.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/html-summary-2013.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/html-summary-2013.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/html-summary-2014.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/html-summary-2014.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/html-summary-2049.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/html-summary-2049.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/select-2090.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/select-2090.test.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/test-editor-basic.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/test-editor-basic.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/test-entry-editor.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/test-entry-editor.js.mp4
--------------------------------------------------------------------------------
/cypress/videos/test.test.js.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CalderaWP/Caldera-Forms/fe4c0f71a0d2c53362505ec9e2248753b1daed47/cypress/videos/test.test.js.mp4
--------------------------------------------------------------------------------
/fields/advanced_file/preview.php:
--------------------------------------------------------------------------------
1 |