Skip to content

Commit 52a9d7d

Browse files
authored
Merge pull request #18 from Bit-Apps-Pro/niloy-dev
Version updated to 2.1.0
2 parents 9ef003b + b60199e commit 52a9d7d

File tree

291 files changed

+1643
-1037
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

291 files changed

+1643
-1037
lines changed

.vscode/extensions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
"stylelint.vscode-stylelint",
88
"cipchk.cssrem"
99
]
10-
}
10+
}

.vscode/settings.json

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,8 @@
1313
"editor.codeActionsOnSave": {
1414
"source.fixAll.eslint": "explicit"
1515
},
16-
"stylelint.snippet": [
17-
"css",
18-
"scss"
19-
],
20-
"stylelint.validate": [
21-
"css",
22-
"scss",
23-
"postcss"
24-
],
16+
"stylelint.snippet": ["css", "scss"],
17+
"stylelint.validate": ["css", "scss", "postcss"],
2518
"files.eol": "\n",
2619
"search.exclude": {
2720
"**/.git": true,
@@ -41,12 +34,10 @@
4134
"**/tmp": true,
4235
"**/yarn.lock": true,
4336
"**/vendor": true,
44-
"**/tests/__libs": true,
37+
"**/tests/__libs": true
4538
},
4639
"typescript.tsdk": "frontend-dev\\node_modules\\typescript\\lib",
47-
"css.lint.validProperties": [
48-
"composes"
49-
],
40+
"css.lint.validProperties": ["composes"],
5041
"cSpell.words": [
5142
"ABSPATH",
5243
"antd",
@@ -80,5 +71,5 @@
8071
},
8172
"[php]": {
8273
"editor.defaultFormatter": "junstyle.php-cs-fixer"
83-
},
84-
}
74+
}
75+
}

bitwpfi.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Plugin Name: Bit Integrations
55
* Plugin URI: https://bitapps.pro/bit-integrations
66
* Description: Bit Integrations is a platform that integrates with over 200+ different platforms to help with various tasks on your WordPress site, like WooCommerce, Form builder, Page builder, LMS, Sales funnels, Bookings, CRM, Webhooks, Email marketing, Social media and Spreadsheets, etc
7-
* Version: 2.0.9
7+
* Version: 2.1.0
88
* Author: Automation & Integration Plugin - Bit Apps
99
* Author URI: https://bitapps.pro
1010
* Text Domain: bit-integrations
@@ -23,7 +23,7 @@
2323
$btcbi_db_version = '1.0';
2424

2525
// Define most essential constants.
26-
define('BTCBI_VERSION', '2.0.9');
26+
define('BTCBI_VERSION', '2.1.0');
2727
define('BTCBI_PLUGIN_MAIN_FILE', __FILE__);
2828

2929
require_once plugin_dir_path(__FILE__) . 'includes/loader.php';

frontend-dev/logo.svg

Lines changed: 36 additions & 22 deletions
Loading

frontend-dev/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"lodash": "^4.17.21",
1414
"mutative": "^0.5.0",
1515
"node-sass": "^9.0.0",
16+
"prettier": "^3.3.2",
1617
"react": "^18.3.1",
1718
"react-accessible-treeview": "^2.9.0",
1819
"react-content-loader": "^6.2.1",

frontend-dev/pnpm-lock.yaml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend-dev/src/App.jsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ function App() {
6565
<div className="flx">
6666
<div className="logo flx" title={__('Integrations for Forms')}>
6767
{/* <Link to="/" className="flx"> */}
68-
<img src={logo} alt="logo" style={{ marginLeft: '8px' }} />
69-
<span className="ml-2 mr-2 ">Bit Integrations</span>
68+
<img src={logo} alt="logo" style={{ marginLeft: '8px', width: '170px' }} />
69+
{/* <span className="ml-2 mr-2 ">Bit Integrations</span> */}
7070
{/* </Link> */}
7171
</div>
7272
<nav className="top-nav ml-2">
@@ -110,7 +110,6 @@ function App() {
110110
</div>
111111
</div>
112112

113-
114113
<div className="route-wrp">
115114
<Routes>
116115
<Route path="/" element={

frontend-dev/src/Utils/StaticData/hooklist.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ const hooklist = [
33
{ label: 'Brizy', value: 'brizy_form_submit_data', logo: 'Brizy' },
44
{ label: 'Divi', value: 'et_pb_contact_form_submit', logo: 'Divi' },
55
{ label: 'Kadence Blocks Form', value: 'kadence_blocks_form_submission', logo: 'Kadence Blocks Form' },
6+
{ label: 'Kadence Advance Blocks Form', value: 'kadence_blocks_advanced_form_submission', logo: 'Kadence Blocks Form' },
67
// { label: 'Forminator', value: 'forminator_custom_form_submit_before_set_fields', logo: 'Forminator' },
78
// { label: 'Fluent CRM (Add Contact)', value: 'fluentcrm_contact_created', logo: 'Fluent CRM' },
89
// { label: 'Fluent CRM (Contact added to lists)', value: 'fluentcrm_contact_added_to_lists', logo: 'Fluent CRM' },

frontend-dev/src/Utils/StaticData/webhookIntegrations.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ export const webhookIntegrations = [
99
"FluentSupport",
1010
];
1111

12-
export const customFormIntegrations = ["Breakdance", "Elementor"];
12+
export const customFormIntegrations = ["Breakdance", "Elementor","Kadence"];
1313
export const actionHookIntegrations = ["ActionHook"];

frontend-dev/src/components/AllIntegrations/AcademyLms/AcademyLms.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function AcademyLms({ formFields, setFlow, flow, allIntegURL }) {
7070
<button
7171
onClick={() => nextPage(3)}
7272
// disabled={!academyLmsConf?.recipient_id}
73-
className="btn f-right btcd-btn-lg green sh-sm flx"
73+
className="btn f-right btcd-btn-lg purple sh-sm flx"
7474
type="button"
7575
>
7676
{__('Next', 'bit-integrations')}

0 commit comments

Comments
 (0)