@myissue/vue-website-page-builder 3.4.14 → 3.4.16
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/README.md +0 -26
- package/dist/style.css +1 -1
- package/dist/vue-website-page-builder.js +340 -364
- package/dist/vue-website-page-builder.umd.cjs +30 -35
- package/package.json +1 -1
- package/src/css/style.css +2 -1
- package/src/services/PageBuilderService.ts +0 -43
package/README.md
CHANGED
|
@@ -40,7 +40,6 @@
|
|
|
40
40
|
- [Publish Button](#publish-button)
|
|
41
41
|
- [Styling the Main Page Builder Container](#styling-the-main-page-builder-container)
|
|
42
42
|
- [Download HTML File](#download-html-file)
|
|
43
|
-
- [Exporting Used CSS Classes](#exporting-used-css-classes)
|
|
44
43
|
- [Custom Components](#custom-components)
|
|
45
44
|
- [Custom Media Library Component](#custom-media-library-component)
|
|
46
45
|
- [Integrate Unsplash Library](#integrate-unsplash-library)
|
|
@@ -717,31 +716,6 @@ const configPageBuilder = {
|
|
|
717
716
|
} as const
|
|
718
717
|
```
|
|
719
718
|
|
|
720
|
-
## Exporting Used CSS Classes
|
|
721
|
-
|
|
722
|
-
```ts
|
|
723
|
-
const cssExport = pageBuilderService.exportCssFromPageBuilder()
|
|
724
|
-
console.log(cssExport)
|
|
725
|
-
```
|
|
726
|
-
|
|
727
|
-
Sample Output:
|
|
728
|
-
|
|
729
|
-
```
|
|
730
|
-
/* Classes used in this page (for Tailwind or custom CSS):
|
|
731
|
-
.lg:pbx-grid-cols-2
|
|
732
|
-
.lg:pbx-grid-cols-3
|
|
733
|
-
.lg:pbx-px-4
|
|
734
|
-
.lg:pbx-text-4xl
|
|
735
|
-
...
|
|
736
|
-
.pbx-w-full
|
|
737
|
-
.sm:pbx-grid-cols-2
|
|
738
|
-
.sm:pbx-grid-cols-3
|
|
739
|
-
*/
|
|
740
|
-
|
|
741
|
-
```
|
|
742
|
-
|
|
743
|
-
You can copy these class names into your tailwind.config.js safelist if you use Tailwind, or use them for debugging and documentation.
|
|
744
|
-
|
|
745
719
|
## Custom Components
|
|
746
720
|
|
|
747
721
|
If you want to use your own components—whether custom-designed or tailored to your application's needs—you can inject them directly into the builder.
|