Changeset 3277100
- Timestamp:
- 04/19/2025 08:21:24 AM (12 months ago)
- Location:
- currency-manager-for-gravity-forms
- Files:
-
- 10 added
- 2 deleted
- 10 edited
- 1 copied
-
tags/1.0.1 (copied) (copied from currency-manager-for-gravity-forms/trunk)
-
tags/1.0.1/README.txt (deleted)
-
tags/1.0.1/admin/css/cmgf-admin.css (modified) (2 diffs)
-
tags/1.0.1/build (added)
-
tags/1.0.1/build/index.asset.php (added)
-
tags/1.0.1/build/index.js (added)
-
tags/1.0.1/build/index.js.map (added)
-
tags/1.0.1/cmgf.php (modified) (1 diff)
-
tags/1.0.1/readme.txt (modified) (1 diff)
-
tags/1.0.1/src/CurrencyManager.js (modified) (1 diff)
-
tags/1.0.1/src/components/CurrencyList.js (modified) (3 diffs)
-
tags/1.0.1/src/components/MultiCurrencyUpsell.jsx (added)
-
trunk/README.txt (deleted)
-
trunk/admin/css/cmgf-admin.css (modified) (2 diffs)
-
trunk/build (added)
-
trunk/build/index.asset.php (added)
-
trunk/build/index.js (added)
-
trunk/build/index.js.map (added)
-
trunk/cmgf.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/src/CurrencyManager.js (modified) (1 diff)
-
trunk/src/components/CurrencyList.js (modified) (3 diffs)
-
trunk/src/components/MultiCurrencyUpsell.jsx (added)
Legend:
- Unmodified
- Added
- Removed
-
currency-manager-for-gravity-forms/tags/1.0.1/admin/css/cmgf-admin.css
r3277064 r3277100 1 1 body.modal-open { 2 2 overflow: auto !important; 3 } 4 5 div#wpcontent { 6 background: #fff; 3 7 } 4 8 … … 166 170 margin-top: 20px; 167 171 } 172 173 .cmgf-multi-currency-upsell { 174 display: block; 175 margin-top: 20px; 176 } 177 -
currency-manager-for-gravity-forms/tags/1.0.1/cmgf.php
r3277064 r3277100 5 5 * Plugin URI: https://ideawp.com/plugins/currency-manager-for-gravity-forms 6 6 * Description: Easily add new currencies to Gravity Forms currencies. 7 * Version: 1.0. 07 * Version: 1.0.1 8 8 * Author: IdeaWP 9 9 * Author URI: https://ideawp.com -
currency-manager-for-gravity-forms/tags/1.0.1/readme.txt
r3277089 r3277100 5 5 Requires at least: 5.6 6 6 Tested up to: 6.8 7 Stable tag: 1.0 7 Stable tag: 1.0.1 8 8 Requires PHP: 5.4 9 9 License: GPLv2 or later -
currency-manager-for-gravity-forms/tags/1.0.1/src/CurrencyManager.js
r3277064 r3277100 7 7 import useCurrencies from './hooks/useCurrencies'; 8 8 import { NEW_CURRENCY_ARGS } from './constants'; 9 import MultiCurrencyUpsell from './components/MultiCurrencyUpsell'; 9 10 10 11 const CurrencyManager = () => { -
currency-manager-for-gravity-forms/tags/1.0.1/src/components/CurrencyList.js
r3277064 r3277100 4 4 import Loader from './Loader'; 5 5 import NoCurrency from './NoCurrency'; 6 import MultiCurrencyUpsell from './MultiCurrencyUpsell'; 6 7 7 8 const CurrencyList = ( { … … 45 46 46 47 return ( 47 <div >48 <div className="cmgf-container__list-wrapper"> 48 49 { isLoading ? ( 49 50 <Loader /> … … 143 144 ) } 144 145 145 { !isLoading && 0 === currencies.length && ( 146 <NoCurrency 147 modalOpen = {modalOpen} 148 /> 149 ) } 146 { !isLoading && 0 === currencies.length && ( 147 <NoCurrency 148 modalOpen = {modalOpen} 149 /> 150 ) } 151 152 { !isLoading && ( 153 <MultiCurrencyUpsell /> 154 ) } 150 155 </div> 151 156 ); -
currency-manager-for-gravity-forms/trunk/admin/css/cmgf-admin.css
r3277064 r3277100 1 1 body.modal-open { 2 2 overflow: auto !important; 3 } 4 5 div#wpcontent { 6 background: #fff; 3 7 } 4 8 … … 166 170 margin-top: 20px; 167 171 } 172 173 .cmgf-multi-currency-upsell { 174 display: block; 175 margin-top: 20px; 176 } 177 -
currency-manager-for-gravity-forms/trunk/cmgf.php
r3277064 r3277100 5 5 * Plugin URI: https://ideawp.com/plugins/currency-manager-for-gravity-forms 6 6 * Description: Easily add new currencies to Gravity Forms currencies. 7 * Version: 1.0. 07 * Version: 1.0.1 8 8 * Author: IdeaWP 9 9 * Author URI: https://ideawp.com -
currency-manager-for-gravity-forms/trunk/readme.txt
r3277089 r3277100 5 5 Requires at least: 5.6 6 6 Tested up to: 6.8 7 Stable tag: 1.0 7 Stable tag: 1.0.1 8 8 Requires PHP: 5.4 9 9 License: GPLv2 or later -
currency-manager-for-gravity-forms/trunk/src/CurrencyManager.js
r3277064 r3277100 7 7 import useCurrencies from './hooks/useCurrencies'; 8 8 import { NEW_CURRENCY_ARGS } from './constants'; 9 import MultiCurrencyUpsell from './components/MultiCurrencyUpsell'; 9 10 10 11 const CurrencyManager = () => { -
currency-manager-for-gravity-forms/trunk/src/components/CurrencyList.js
r3277064 r3277100 4 4 import Loader from './Loader'; 5 5 import NoCurrency from './NoCurrency'; 6 import MultiCurrencyUpsell from './MultiCurrencyUpsell'; 6 7 7 8 const CurrencyList = ( { … … 45 46 46 47 return ( 47 <div >48 <div className="cmgf-container__list-wrapper"> 48 49 { isLoading ? ( 49 50 <Loader /> … … 143 144 ) } 144 145 145 { !isLoading && 0 === currencies.length && ( 146 <NoCurrency 147 modalOpen = {modalOpen} 148 /> 149 ) } 146 { !isLoading && 0 === currencies.length && ( 147 <NoCurrency 148 modalOpen = {modalOpen} 149 /> 150 ) } 151 152 { !isLoading && ( 153 <MultiCurrencyUpsell /> 154 ) } 150 155 </div> 151 156 );
Note: See TracChangeset
for help on using the changeset viewer.