PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.4.8
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.4.8
4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 3.10.4 All 148 releases
← All changes | classes/Visualizer/Gutenberg/src/Components/Import/RemoteImport.js +17 -1 3.1.33.4.8 View file →
@@ -12,8 +12,13 @@
12 12 SelectControl,
13 13 TextControl
14 14 } = wp.components;
15 15
16 +/**
17 + * Internal dependencies
18 + */
19 +import JSONImport from './JSONImport.js';
20 +
16 21 class RemoteImport extends Component {
17 22 constructor() {
18 23 super( ...arguments );
19 24 }
@@ -105,9 +110,9 @@
105 110 className="visualizer-inner-sections"
106 111 initialOpen={ false }
107 112 >
108 113
109 - <p>{ __( 'Enable this feature in BUSINESS version!' ) }</p>
114 + <p>{ __( 'Upgrade your license to at least the DEVELOPER version to activate this feature!' ) }</p>
110 115
111 116 <Button
112 117 isPrimary
113 118 href={ visualizerLocalize.proTeaser }
@@ -117,8 +122,19 @@
117 122 </Button>
118 123
119 124 </PanelBody>
120 125 }
126 +
127 + <JSONImport
128 + id={ this.props.id }
129 + chart={ this.props.chart }
130 + editSchedule={ this.props.editJSONSchedule }
131 + editJSONURL={ this.props.editJSONURL }
132 + editJSONHeaders={ this.props.editJSONHeaders }
133 + editJSONRoot={ this.props.editJSONRoot }
134 + editJSONPaging={ this.props.editJSONPaging }
135 + JSONImportData={ this.props.JSONImportData }
136 + />
121 137
122 138 </PanelBody>
123 139 );
124 140 }