@builder.io/sdk-qwik 0.5.1-0 → 0.5.1
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/lib/index.qwik.cjs +1 -1
- package/lib/index.qwik.mjs +1 -1
- package/package.json +1 -1
- package/types/components/block/components/component-ref/component-ref.helpers.d.ts +1 -1
- package/types/components/content/index.d.ts +1 -1
- package/types/constants/sdk-version.d.ts +1 -1
- package/types/index-helpers/blocks-exports.d.ts +10 -10
package/lib/index.qwik.cjs
CHANGED
|
@@ -11115,7 +11115,7 @@ const getInteractionPropertiesForEvent = (event) => {
|
|
|
11115
11115
|
}
|
|
11116
11116
|
};
|
|
11117
11117
|
};
|
|
11118
|
-
const SDK_VERSION = "0.5.1
|
|
11118
|
+
const SDK_VERSION = "0.5.1";
|
|
11119
11119
|
const registry = {};
|
|
11120
11120
|
function register(type, info) {
|
|
11121
11121
|
let typeList = registry[type];
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -11113,7 +11113,7 @@ const getInteractionPropertiesForEvent = (event) => {
|
|
|
11113
11113
|
}
|
|
11114
11114
|
};
|
|
11115
11115
|
};
|
|
11116
|
-
const SDK_VERSION = "0.5.1
|
|
11116
|
+
const SDK_VERSION = "0.5.1";
|
|
11117
11117
|
const registry = {};
|
|
11118
11118
|
function register(type, info) {
|
|
11119
11119
|
let typeList = registry[type];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { BuilderContextInterface, RegisteredComponents } from '../../../../context/types.js';
|
|
2
2
|
import type { BuilderBlock } from '../../../../types/builder-block.js';
|
|
3
3
|
import type { PropsWithBuilderData } from '../../../../types/builder-props.js';
|
|
4
|
-
import type { InteractiveElementProps } from '../interactive-element
|
|
4
|
+
import type { InteractiveElementProps } from '../interactive-element';
|
|
5
5
|
type ComponentOptions = PropsWithBuilderData<{
|
|
6
6
|
[index: string]: any;
|
|
7
7
|
attributes?: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './content
|
|
1
|
+
export { default } from './content';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "0.5.1
|
|
1
|
+
export declare const SDK_VERSION = "0.5.1";
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export { default as Button } from '../blocks/button/button
|
|
2
|
-
export { default as Columns } from '../blocks/columns/columns
|
|
3
|
-
export { default as Fragment } from '../blocks/fragment/fragment
|
|
4
|
-
export { default as Image } from '../blocks/image/image
|
|
5
|
-
export { default as RenderBlocks } from '../components/blocks/blocks
|
|
6
|
-
export { default as Section } from '../blocks/section/section
|
|
7
|
-
export { default as Symbol } from '../blocks/symbol/symbol
|
|
8
|
-
export { default as Text } from '../blocks/text/text
|
|
9
|
-
export { default as Video } from '../blocks/video/video
|
|
10
|
-
export { default as RenderContent } from '../components/content-variants/content-variants
|
|
1
|
+
export { default as Button } from '../blocks/button/button';
|
|
2
|
+
export { default as Columns } from '../blocks/columns/columns';
|
|
3
|
+
export { default as Fragment } from '../blocks/fragment/fragment';
|
|
4
|
+
export { default as Image } from '../blocks/image/image';
|
|
5
|
+
export { default as RenderBlocks } from '../components/blocks/blocks';
|
|
6
|
+
export { default as Section } from '../blocks/section/section';
|
|
7
|
+
export { default as Symbol } from '../blocks/symbol/symbol';
|
|
8
|
+
export { default as Text } from '../blocks/text/text';
|
|
9
|
+
export { default as Video } from '../blocks/video/video';
|
|
10
|
+
export { default as RenderContent } from '../components/content-variants/content-variants';
|