@builder.io/sdk-solid 3.0.5 → 3.0.7
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/dist/index.d.ts +8 -2
- package/lib/browser/dev.js +562 -110
- package/lib/browser/dev.jsx +596 -148
- package/lib/browser/index.js +562 -110
- package/lib/browser/index.jsx +596 -148
- package/lib/edge/dev.js +562 -110
- package/lib/edge/dev.jsx +596 -148
- package/lib/edge/index.js +562 -110
- package/lib/edge/index.jsx +596 -148
- package/lib/node/dev.js +562 -110
- package/lib/node/dev.jsx +596 -148
- package/lib/node/index.js +562 -110
- package/lib/node/index.jsx +596 -148
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -39,7 +39,6 @@ interface BuilderBlock {
|
|
|
39
39
|
large?: Partial<CSSStyleDeclaration>;
|
|
40
40
|
medium?: Partial<CSSStyleDeclaration>;
|
|
41
41
|
small?: Partial<CSSStyleDeclaration>;
|
|
42
|
-
/** @deprecated */
|
|
43
42
|
xsmall?: Partial<CSSStyleDeclaration>;
|
|
44
43
|
};
|
|
45
44
|
component?: {
|
|
@@ -229,6 +228,7 @@ interface Input {
|
|
|
229
228
|
* Use optionally with inputs of type `reference`. Restricts the content entry picker to a specific model by name.
|
|
230
229
|
*/
|
|
231
230
|
model?: string;
|
|
231
|
+
behavior?: string;
|
|
232
232
|
valueType?: {
|
|
233
233
|
type?: string;
|
|
234
234
|
};
|
|
@@ -242,6 +242,7 @@ type Dictionary<T> = {
|
|
|
242
242
|
};
|
|
243
243
|
|
|
244
244
|
interface Breakpoints {
|
|
245
|
+
xsmall?: number;
|
|
245
246
|
small: number;
|
|
246
247
|
medium: number;
|
|
247
248
|
}
|
|
@@ -779,6 +780,11 @@ declare const _default: solid_js.Context<{
|
|
|
779
780
|
model: string;
|
|
780
781
|
}>;
|
|
781
782
|
|
|
783
|
+
interface UserAttributes {
|
|
784
|
+
[key: string]: any;
|
|
785
|
+
}
|
|
786
|
+
declare const setClientUserAttributes: (attributes: UserAttributes) => void;
|
|
787
|
+
|
|
782
788
|
type QueryObject = Record<string, string | string[]>;
|
|
783
789
|
type Search = URLSearchParams | string | QueryObject;
|
|
784
790
|
|
|
@@ -1104,4 +1110,4 @@ declare const _processContentResult: (options: GetContentOptions, content: Conte
|
|
|
1104
1110
|
*/
|
|
1105
1111
|
declare function fetchEntries(options: GetContentOptions): Promise<BuilderContent[]>;
|
|
1106
1112
|
|
|
1107
|
-
export { Blocks, BlocksProps, BuilderBlock, BuilderContent, _default as BuilderContext, BuilderContextInterface, Button, ButtonProps, ColumnProps, Columns, ComponentInfo, ContentVariants as Content, ContentVariantsPrps as ContentProps, FragmentComponent as Fragment, FragmentProps, GetContentOptions, Image, ImageProps, InsertMenuConfig, InsertMenuItem, RegisteredComponent, RegisteredComponents, SectionComponent as Section, SectionProps, Settings, Symbol, SymbolProps, Text, TextProps, Video, VideoProps, _processContentResult, createRegisterComponentMessage, fetchBuilderProps, fetchEntries, fetchOneEntry, getBuilderSearchParams, isEditing, isPreviewing, register, setEditorSettings, subscribeToEditor, track };
|
|
1113
|
+
export { Blocks, BlocksProps, BuilderBlock, BuilderContent, _default as BuilderContext, BuilderContextInterface, Button, ButtonProps, ColumnProps, Columns, ComponentInfo, ContentVariants as Content, ContentVariantsPrps as ContentProps, FragmentComponent as Fragment, FragmentProps, GetContentOptions, Image, ImageProps, InsertMenuConfig, InsertMenuItem, RegisteredComponent, RegisteredComponents, SectionComponent as Section, SectionProps, Settings, Symbol, SymbolProps, Text, TextProps, Video, VideoProps, _processContentResult, createRegisterComponentMessage, fetchBuilderProps, fetchEntries, fetchOneEntry, getBuilderSearchParams, isEditing, isPreviewing, register, setClientUserAttributes, setEditorSettings, subscribeToEditor, track };
|