|
|
@@ -94,7 +94,7 @@ module.exports = {
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
- test: /ckeditor5-[^/\\]+[/\\]theme[/\\].+\.css/,
|
|
|
+ test: /ckeditor5-[^/\\]+[/\\]theme[/\\].+\.css$/,
|
|
|
use: [
|
|
|
{
|
|
|
loader: 'style-loader',
|
|
|
@@ -249,19 +249,23 @@ The differences in data representations of the product preview are summarized in
|
|
|
<tr>
|
|
|
<td>Model</td>
|
|
|
<td>
|
|
|
- <pre><code><productPreview id="..." /></code></pre>
|
|
|
+ <pre><code><productPreview id="..." /></code></pre>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td>Editing view</td>
|
|
|
<td>
|
|
|
- <pre><code><section class="product" data-id="..."> 	<div class="product__react-wrapper"> 		<ProductPreview /> // React component 	</div> </section></code></pre>
|
|
|
+ <pre><code><section class="product" data-id="...">
|
|
|
+ <div class="product__react-wrapper">
|
|
|
+ <ProductPreview /> // React component
|
|
|
+ </div>
|
|
|
+</section></code></pre>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td>Data view (editor output)</td>
|
|
|
<td>
|
|
|
- <pre><code><section class="product" data-id="..." /></section></code></pre>
|
|
|
+ <pre><code><section class="product" data-id="..."></section></code></pre>
|
|
|
</td>
|
|
|
</tr>
|
|
|
</table>
|