vue2-bbl-editor 1.3.0 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -2
- package/CONTENT_WRAPPER_GUIDE.md +1 -1
- package/README.md +1 -1
- package/dist/vue2-bbl-editor.common.js +67 -67
- package/dist/vue2-bbl-editor.common.js.map +1 -1
- package/dist/vue2-bbl-editor.umd.js +67 -67
- package/dist/vue2-bbl-editor.umd.js.map +1 -1
- package/dist/vue2-bbl-editor.umd.min.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -17,8 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
17
17
|
- **Both API support**: Available in both Options API and Composition API components
|
|
18
18
|
|
|
19
19
|
#### CDN Distribution System
|
|
20
|
-
- **Created `editor
|
|
21
|
-
- **Version-agnostic CDN URL**: `https://cdn.jsdelivr.net/npm/vue2-premium-bbl-editor/dist/editor
|
|
20
|
+
- **Created `vue2-html-bbl-editor.css`**: Comprehensive CSS file for HTML output styling via CDN
|
|
21
|
+
- **Version-agnostic CDN URL**: `https://cdn.jsdelivr.net/npm/vue2-premium-bbl-editor/dist/vue2-html-bbl-editor.css`
|
|
22
22
|
- **Global styling support**: Enables consistent styling across different frameworks and projects
|
|
23
23
|
- **Responsive design**: Mobile-optimized styles for all content types
|
|
24
24
|
|
package/CONTENT_WRAPPER_GUIDE.md
CHANGED
|
@@ -306,7 +306,7 @@ const content = editor.getContent('html', false) // No wrapper
|
|
|
306
306
|
Always include the CDN CSS when rendering wrapped content:
|
|
307
307
|
|
|
308
308
|
```html
|
|
309
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vue2-premium-bbl-editor/dist/editor
|
|
309
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vue2-premium-bbl-editor/dist/vue2-html-bbl-editor.css" />
|
|
310
310
|
```
|
|
311
311
|
|
|
312
312
|
### 4. Manual Wrapping
|
package/README.md
CHANGED
|
@@ -32,7 +32,7 @@ For rendering editor HTML content in external projects (React, Vue, Angular, etc
|
|
|
32
32
|
|
|
33
33
|
```html
|
|
34
34
|
<!-- Global CDN styles for HTML output rendering -->
|
|
35
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vue2-bbl-editor/dist/editor
|
|
35
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vue2-bbl-editor/dist/vue2-html-bbl-editor.css" />
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
Then wrap your editor HTML content with the `.bbl-html-section` class:
|