@blaze-cms/react-page-builder 0.142.1-core-styles.0 → 0.143.0-alpha.0
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
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
# [0.143.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.142.0...v0.143.0-alpha.0) (2024-06-13)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blaze-cms/react-page-builder",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.143.0-alpha.0",
|
|
4
4
|
"description": "Blaze react page builder",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib-es/index.js",
|
|
@@ -27,15 +27,15 @@
|
|
|
27
27
|
},
|
|
28
28
|
"license": "GPL-3.0",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@blaze-cms/core-auth-ui": "0.
|
|
31
|
-
"@blaze-cms/core-errors": "0.
|
|
32
|
-
"@blaze-cms/core-errors-ui": "0.
|
|
30
|
+
"@blaze-cms/core-auth-ui": "0.143.0-alpha.0",
|
|
31
|
+
"@blaze-cms/core-errors": "^0.140.3",
|
|
32
|
+
"@blaze-cms/core-errors-ui": "^0.140.3",
|
|
33
33
|
"@blaze-cms/image-cdn-react": "0.3.0-alpha.6",
|
|
34
|
-
"@blaze-cms/nextjs-components": "0.
|
|
35
|
-
"@blaze-cms/plugin-search-ui": "0.
|
|
36
|
-
"@blaze-cms/setup-ui": "0.
|
|
37
|
-
"@blaze-cms/utils": "0.
|
|
38
|
-
"@blaze-cms/utils-handlebars": "0.
|
|
34
|
+
"@blaze-cms/nextjs-components": "0.143.0-alpha.0",
|
|
35
|
+
"@blaze-cms/plugin-search-ui": "0.143.0-alpha.0",
|
|
36
|
+
"@blaze-cms/setup-ui": "^0.140.3",
|
|
37
|
+
"@blaze-cms/utils": "0.143.0-alpha.0",
|
|
38
|
+
"@blaze-cms/utils-handlebars": "0.143.0-alpha.0",
|
|
39
39
|
"@blaze-react/breadcrumb": "0.8.0-alpha.60",
|
|
40
40
|
"@blaze-react/button": "0.5.19",
|
|
41
41
|
"@blaze-react/checkboxes": "0.5.31",
|
|
@@ -90,5 +90,5 @@
|
|
|
90
90
|
"lib/*",
|
|
91
91
|
"lib-es/*"
|
|
92
92
|
],
|
|
93
|
-
"gitHead": "
|
|
93
|
+
"gitHead": "f55b617de7434f3df2dfd60ae6986b14de129953"
|
|
94
94
|
}
|
|
@@ -96,11 +96,11 @@ describe('buildLoopPropsContent helper function', () => {
|
|
|
96
96
|
nestedLoopProp: [
|
|
97
97
|
{
|
|
98
98
|
nestedValue: 'abc',
|
|
99
|
-
url: '
|
|
99
|
+
url: 'https://blazecms.app/abc'
|
|
100
100
|
},
|
|
101
101
|
{
|
|
102
102
|
nestedValue: '123',
|
|
103
|
-
url: '
|
|
103
|
+
url: 'https://blazecms.app/123'
|
|
104
104
|
},
|
|
105
105
|
{
|
|
106
106
|
nestedValue: 'no url',
|
|
@@ -81,7 +81,7 @@ describe('Layout component', () => {
|
|
|
81
81
|
});
|
|
82
82
|
|
|
83
83
|
it('should add background image style', () => {
|
|
84
|
-
const url = '
|
|
84
|
+
const url = 'https://blazecms.app/image.jpg';
|
|
85
85
|
useGetImages.mockReturnValueOnce({ data: { getFile: { url } } });
|
|
86
86
|
const type = ROW;
|
|
87
87
|
const { asFragment, container, getByTestId } = render(Layout, {
|
|
@@ -4,7 +4,7 @@ exports[`Layout component should add background image style 1`] = `
|
|
|
4
4
|
<DocumentFragment>
|
|
5
5
|
<div
|
|
6
6
|
class="row wide hide-desktop hide-tablet hide-mobile"
|
|
7
|
-
style="background-image: url(
|
|
7
|
+
style="background-image: url(https://blazecms.app/image.jpg);"
|
|
8
8
|
>
|
|
9
9
|
<div
|
|
10
10
|
data-testid="child-test-id"
|