@builder.io/sdk-qwik 0.0.20 → 0.0.22

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.
@@ -281,7 +281,21 @@ const BlockStyles$1 = BlockStyles;
281
281
  function capitalizeFirstLetter(string) {
282
282
  return string.charAt(0).toUpperCase() + string.slice(1);
283
283
  }
284
- const getEventHandlerName = (key) => `on${capitalizeFirstLetter(key)}`;
284
+ const getEventHandlerName = (key) => `on${capitalizeFirstLetter(key)}$`;
285
+ function crateEventHandler(value, options) {
286
+ return qwik.inlinedQrl((event) => {
287
+ const [options2, value2] = qwik.useLexicalScope();
288
+ return evaluate({
289
+ code: value2,
290
+ context: options2.context,
291
+ state: options2.state,
292
+ event
293
+ });
294
+ }, "crateEventHandler_wgxT8Hlq4s8", [
295
+ options,
296
+ value
297
+ ]);
298
+ }
285
299
  function getBlockActions(options) {
286
300
  const obj = {};
287
301
  const optionActions = options.block.actions ?? {};
@@ -289,12 +303,7 @@ function getBlockActions(options) {
289
303
  if (!optionActions.hasOwnProperty(key))
290
304
  continue;
291
305
  const value = optionActions[key];
292
- obj[getEventHandlerName(key)] = (event) => evaluate({
293
- code: value,
294
- context: options.context,
295
- state: options.state,
296
- event
297
- });
306
+ obj[getEventHandlerName(key)] = crateEventHandler(value, options);
298
307
  }
299
308
  return obj;
300
309
  }
@@ -317,8 +326,37 @@ function getBlockProperties(block) {
317
326
  ].filter(Boolean).join(" ")
318
327
  };
319
328
  }
329
+ const convertStyleObject = (obj) => {
330
+ return obj;
331
+ };
332
+ const sanitizeBlockStyles = (_styles) => {
333
+ };
334
+ const getStyleForTarget = (styles) => {
335
+ switch (TARGET) {
336
+ case "reactNative":
337
+ return {
338
+ ...styles.large ? convertStyleObject(styles.large) : {},
339
+ ...styles.medium ? convertStyleObject(styles.medium) : {},
340
+ ...styles.small ? convertStyleObject(styles.small) : {}
341
+ };
342
+ default:
343
+ return {
344
+ ...styles.large ? convertStyleObject(styles.large) : {},
345
+ ...styles.medium ? {
346
+ [getMaxWidthQueryForSize("medium")]: convertStyleObject(styles.medium)
347
+ } : {},
348
+ ...styles.small ? {
349
+ [getMaxWidthQueryForSize("small")]: convertStyleObject(styles.small)
350
+ } : {}
351
+ };
352
+ }
353
+ };
320
354
  function getBlockStyles(block) {
321
- return null;
355
+ if (!block.responsiveStyles)
356
+ return {};
357
+ const styles = getStyleForTarget(block.responsiveStyles);
358
+ sanitizeBlockStyles();
359
+ return styles;
322
360
  }
323
361
  function getBlockTag(block) {
324
362
  return block.tagName || "div";
@@ -581,7 +619,7 @@ const RenderBlocks = /* @__PURE__ */ qwik.componentQrl(qwik.inlinedQrl((props) =
581
619
  "builder-parent-id": props.parent,
582
620
  onClick$: qwik.inlinedQrl((event) => {
583
621
  const [builderContext2, props2, state2] = qwik.useLexicalScope();
584
- return onClick$1(props2);
622
+ return (event2) => onClick$1(props2);
585
623
  }, "RenderBlocks_component_div_onClick_RzhhZa265Yg", [
586
624
  builderContext,
587
625
  props,
@@ -589,7 +627,7 @@ const RenderBlocks = /* @__PURE__ */ qwik.componentQrl(qwik.inlinedQrl((props) =
589
627
  ]),
590
628
  onMouseEnter$: qwik.inlinedQrl((event) => {
591
629
  const [builderContext2, props2, state2] = qwik.useLexicalScope();
592
- return onMouseEnter(props2);
630
+ return (event2) => onMouseEnter(props2);
593
631
  }, "RenderBlocks_component_div_onMouseEnter_nG7I7RYG3JQ", [
594
632
  builderContext,
595
633
  props,
@@ -1610,7 +1648,7 @@ const SCRIPT_MIME_TYPES = [
1610
1648
  ];
1611
1649
  const isJsScript = (script) => SCRIPT_MIME_TYPES.includes(script.type);
1612
1650
  const findAndRunScripts$1 = function findAndRunScripts(props, state, elem) {
1613
- if (!elem)
1651
+ if (!elem || !elem.getElementsByTagName)
1614
1652
  return;
1615
1653
  const scripts = elem.getElementsByTagName("script");
1616
1654
  for (let i = 0; i < scripts.length; i++) {
@@ -1691,7 +1729,7 @@ const componentInfo$1 = {
1691
1729
  static: true
1692
1730
  };
1693
1731
  const findAndRunScripts2 = function findAndRunScripts3(props, state, elem) {
1694
- if (elem && typeof window !== "undefined") {
1732
+ if (elem && elem.getElementsByTagName && typeof window !== "undefined") {
1695
1733
  const scripts = elem.getElementsByTagName("script");
1696
1734
  for (let i = 0; i < scripts.length; i++) {
1697
1735
  const script = scripts[i];
@@ -1846,7 +1884,10 @@ const convertSearchParamsToQueryObject = (searchParams) => {
1846
1884
  });
1847
1885
  return options;
1848
1886
  };
1849
- const getBuilderSearchParams = (options) => {
1887
+ const getBuilderSearchParams = (_options) => {
1888
+ if (!_options)
1889
+ return {};
1890
+ const options = normalizeSearchParams(_options);
1850
1891
  const newOptions = {};
1851
1892
  Object.keys(options).forEach((key) => {
1852
1893
  if (key.startsWith(BUILDER_SEARCHPARAMS_PREFIX)) {
@@ -1860,7 +1901,7 @@ const getBuilderSearchParamsFromWindow = () => {
1860
1901
  if (!isBrowser())
1861
1902
  return {};
1862
1903
  const searchParams = new URLSearchParams(window.location.search);
1863
- return getBuilderSearchParams(convertSearchParamsToQueryObject(searchParams));
1904
+ return getBuilderSearchParams(searchParams);
1864
1905
  };
1865
1906
  const normalizeSearchParams = (searchParams) => searchParams instanceof URLSearchParams ? convertSearchParamsToQueryObject(searchParams) : searchParams;
1866
1907
  function getGlobalThis() {
@@ -2466,15 +2507,15 @@ const RenderContent = /* @__PURE__ */ qwik.componentQrl(qwik.inlinedQrl((props)
2466
2507
  return /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, {
2467
2508
  children: useContent(props, state) ? /* @__PURE__ */ jsxRuntime.jsxs("div", {
2468
2509
  ref: elementRef,
2469
- "builder-content-id": useContent(props, state)?.id,
2470
2510
  onClick$: qwik.inlinedQrl((event) => {
2471
2511
  const [elementRef2, props2, state2] = qwik.useLexicalScope();
2472
- return onClick2(props2, state2);
2512
+ return (event2) => onClick2(props2, state2);
2473
2513
  }, "RenderContent_component__Fragment_div_onClick_wLg5o3ZkpC0", [
2474
2514
  elementRef,
2475
2515
  props,
2476
2516
  state
2477
2517
  ]),
2518
+ "builder-content-id": useContent(props, state)?.id,
2478
2519
  children: [
2479
2520
  shouldRenderContentStyles(props, state) ? /* @__PURE__ */ jsxRuntime.jsx(RenderContentStyles$1, {
2480
2521
  cssCode: useContent(props, state)?.data?.cssCode,
@@ -1,4 +1,4 @@
1
- import { createContext, mutable, componentQrl, inlinedQrl, useContextProvider, useStore, useStylesScopedQrl, useContext, useLexicalScope, Slot, useRef, useWatchQrl, useClientEffectQrl, _useMutableProps, useCleanupQrl } from "@builder.io/qwik";
1
+ import { createContext, inlinedQrl, useLexicalScope, mutable, componentQrl, useContextProvider, useStore, useStylesScopedQrl, useContext, Slot, useRef, useWatchQrl, useClientEffectQrl, _useMutableProps, useCleanupQrl } from "@builder.io/qwik";
2
2
  import { jsx, Fragment as Fragment$1, jsxs } from "@builder.io/qwik/jsx-runtime";
3
3
  const TARGET = "qwik";
4
4
  function isBrowser() {
@@ -261,7 +261,21 @@ const BlockStyles$1 = BlockStyles;
261
261
  function capitalizeFirstLetter(string) {
262
262
  return string.charAt(0).toUpperCase() + string.slice(1);
263
263
  }
264
- const getEventHandlerName = (key) => `on${capitalizeFirstLetter(key)}`;
264
+ const getEventHandlerName = (key) => `on${capitalizeFirstLetter(key)}$`;
265
+ function crateEventHandler(value, options) {
266
+ return inlinedQrl((event) => {
267
+ const [options2, value2] = useLexicalScope();
268
+ return evaluate({
269
+ code: value2,
270
+ context: options2.context,
271
+ state: options2.state,
272
+ event
273
+ });
274
+ }, "crateEventHandler_wgxT8Hlq4s8", [
275
+ options,
276
+ value
277
+ ]);
278
+ }
265
279
  function getBlockActions(options) {
266
280
  const obj = {};
267
281
  const optionActions = options.block.actions ?? {};
@@ -269,12 +283,7 @@ function getBlockActions(options) {
269
283
  if (!optionActions.hasOwnProperty(key))
270
284
  continue;
271
285
  const value = optionActions[key];
272
- obj[getEventHandlerName(key)] = (event) => evaluate({
273
- code: value,
274
- context: options.context,
275
- state: options.state,
276
- event
277
- });
286
+ obj[getEventHandlerName(key)] = crateEventHandler(value, options);
278
287
  }
279
288
  return obj;
280
289
  }
@@ -297,8 +306,37 @@ function getBlockProperties(block) {
297
306
  ].filter(Boolean).join(" ")
298
307
  };
299
308
  }
309
+ const convertStyleObject = (obj) => {
310
+ return obj;
311
+ };
312
+ const sanitizeBlockStyles = (_styles) => {
313
+ };
314
+ const getStyleForTarget = (styles) => {
315
+ switch (TARGET) {
316
+ case "reactNative":
317
+ return {
318
+ ...styles.large ? convertStyleObject(styles.large) : {},
319
+ ...styles.medium ? convertStyleObject(styles.medium) : {},
320
+ ...styles.small ? convertStyleObject(styles.small) : {}
321
+ };
322
+ default:
323
+ return {
324
+ ...styles.large ? convertStyleObject(styles.large) : {},
325
+ ...styles.medium ? {
326
+ [getMaxWidthQueryForSize("medium")]: convertStyleObject(styles.medium)
327
+ } : {},
328
+ ...styles.small ? {
329
+ [getMaxWidthQueryForSize("small")]: convertStyleObject(styles.small)
330
+ } : {}
331
+ };
332
+ }
333
+ };
300
334
  function getBlockStyles(block) {
301
- return null;
335
+ if (!block.responsiveStyles)
336
+ return {};
337
+ const styles = getStyleForTarget(block.responsiveStyles);
338
+ sanitizeBlockStyles();
339
+ return styles;
302
340
  }
303
341
  function getBlockTag(block) {
304
342
  return block.tagName || "div";
@@ -561,7 +599,7 @@ const RenderBlocks = /* @__PURE__ */ componentQrl(inlinedQrl((props) => {
561
599
  "builder-parent-id": props.parent,
562
600
  onClick$: inlinedQrl((event) => {
563
601
  const [builderContext2, props2, state2] = useLexicalScope();
564
- return onClick$1(props2);
602
+ return (event2) => onClick$1(props2);
565
603
  }, "RenderBlocks_component_div_onClick_RzhhZa265Yg", [
566
604
  builderContext,
567
605
  props,
@@ -569,7 +607,7 @@ const RenderBlocks = /* @__PURE__ */ componentQrl(inlinedQrl((props) => {
569
607
  ]),
570
608
  onMouseEnter$: inlinedQrl((event) => {
571
609
  const [builderContext2, props2, state2] = useLexicalScope();
572
- return onMouseEnter(props2);
610
+ return (event2) => onMouseEnter(props2);
573
611
  }, "RenderBlocks_component_div_onMouseEnter_nG7I7RYG3JQ", [
574
612
  builderContext,
575
613
  props,
@@ -1590,7 +1628,7 @@ const SCRIPT_MIME_TYPES = [
1590
1628
  ];
1591
1629
  const isJsScript = (script) => SCRIPT_MIME_TYPES.includes(script.type);
1592
1630
  const findAndRunScripts$1 = function findAndRunScripts(props, state, elem) {
1593
- if (!elem)
1631
+ if (!elem || !elem.getElementsByTagName)
1594
1632
  return;
1595
1633
  const scripts = elem.getElementsByTagName("script");
1596
1634
  for (let i = 0; i < scripts.length; i++) {
@@ -1671,7 +1709,7 @@ const componentInfo$1 = {
1671
1709
  static: true
1672
1710
  };
1673
1711
  const findAndRunScripts2 = function findAndRunScripts3(props, state, elem) {
1674
- if (elem && typeof window !== "undefined") {
1712
+ if (elem && elem.getElementsByTagName && typeof window !== "undefined") {
1675
1713
  const scripts = elem.getElementsByTagName("script");
1676
1714
  for (let i = 0; i < scripts.length; i++) {
1677
1715
  const script = scripts[i];
@@ -1826,7 +1864,10 @@ const convertSearchParamsToQueryObject = (searchParams) => {
1826
1864
  });
1827
1865
  return options;
1828
1866
  };
1829
- const getBuilderSearchParams = (options) => {
1867
+ const getBuilderSearchParams = (_options) => {
1868
+ if (!_options)
1869
+ return {};
1870
+ const options = normalizeSearchParams(_options);
1830
1871
  const newOptions = {};
1831
1872
  Object.keys(options).forEach((key) => {
1832
1873
  if (key.startsWith(BUILDER_SEARCHPARAMS_PREFIX)) {
@@ -1840,7 +1881,7 @@ const getBuilderSearchParamsFromWindow = () => {
1840
1881
  if (!isBrowser())
1841
1882
  return {};
1842
1883
  const searchParams = new URLSearchParams(window.location.search);
1843
- return getBuilderSearchParams(convertSearchParamsToQueryObject(searchParams));
1884
+ return getBuilderSearchParams(searchParams);
1844
1885
  };
1845
1886
  const normalizeSearchParams = (searchParams) => searchParams instanceof URLSearchParams ? convertSearchParamsToQueryObject(searchParams) : searchParams;
1846
1887
  function getGlobalThis() {
@@ -2446,15 +2487,15 @@ const RenderContent = /* @__PURE__ */ componentQrl(inlinedQrl((props) => {
2446
2487
  return /* @__PURE__ */ jsx(Fragment$1, {
2447
2488
  children: useContent(props, state) ? /* @__PURE__ */ jsxs("div", {
2448
2489
  ref: elementRef,
2449
- "builder-content-id": useContent(props, state)?.id,
2450
2490
  onClick$: inlinedQrl((event) => {
2451
2491
  const [elementRef2, props2, state2] = useLexicalScope();
2452
- return onClick2(props2, state2);
2492
+ return (event2) => onClick2(props2, state2);
2453
2493
  }, "RenderContent_component__Fragment_div_onClick_wLg5o3ZkpC0", [
2454
2494
  elementRef,
2455
2495
  props,
2456
2496
  state
2457
2497
  ]),
2498
+ "builder-content-id": useContent(props, state)?.id,
2458
2499
  children: [
2459
2500
  shouldRenderContentStyles(props, state) ? /* @__PURE__ */ jsx(RenderContentStyles$1, {
2460
2501
  cssCode: useContent(props, state)?.data?.cssCode,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/sdk-qwik",
3
- "version": "0.0.20",
3
+ "version": "0.0.22",
4
4
  "description": "Builder.io Qwik SDK",
5
5
  "type": "module",
6
6
  "main": "./lib/index.qwik.cjs",
@@ -20,12 +20,11 @@
20
20
  "release:dev": "yarn run build && npm version prerelease --no-git-tag-version && npm publish --tag latest --access public"
21
21
  },
22
22
  "devDependencies": {
23
- "@builder.io/qwik": "0.0.108-dev20220913220811",
24
23
  "@types/node": "latest",
25
24
  "typescript": "^4",
26
25
  "vite": "^3.0.4"
27
26
  },
28
27
  "peerDependencies": {
29
- "@builder.io/qwik": "0.0.108-dev20220913220811"
28
+ "@builder.io/qwik": ">=0.0.108"
30
29
  }
31
30
  }
@@ -11,7 +11,473 @@ export declare const componentRef: (props: any, state: any) => any;
11
11
  export declare const tagName: (props: any, state: any) => string;
12
12
  export declare const useBlock: (props: any, state: any) => any;
13
13
  export declare const attributes: (props: any, state: any) => {
14
- style: any;
14
+ style: {
15
+ [x: number]: string | undefined;
16
+ accentColor?: string | undefined;
17
+ alignContent?: string | undefined;
18
+ alignItems?: string | undefined;
19
+ alignSelf?: string | undefined;
20
+ alignmentBaseline?: string | undefined;
21
+ all?: string | undefined;
22
+ animation?: string | undefined;
23
+ animationDelay?: string | undefined;
24
+ animationDirection?: string | undefined;
25
+ animationDuration?: string | undefined;
26
+ animationFillMode?: string | undefined;
27
+ animationIterationCount?: string | undefined;
28
+ animationName?: string | undefined;
29
+ animationPlayState?: string | undefined;
30
+ animationTimingFunction?: string | undefined;
31
+ appearance?: string | undefined;
32
+ aspectRatio?: string | undefined;
33
+ backfaceVisibility?: string | undefined;
34
+ background?: string | undefined;
35
+ backgroundAttachment?: string | undefined;
36
+ backgroundBlendMode?: string | undefined;
37
+ backgroundClip?: string | undefined;
38
+ backgroundColor?: string | undefined;
39
+ backgroundImage?: string | undefined;
40
+ backgroundOrigin?: string | undefined;
41
+ backgroundPosition?: string | undefined;
42
+ backgroundPositionX?: string | undefined;
43
+ backgroundPositionY?: string | undefined;
44
+ backgroundRepeat?: string | undefined;
45
+ backgroundSize?: string | undefined;
46
+ baselineShift?: string | undefined;
47
+ blockSize?: string | undefined;
48
+ border?: string | undefined;
49
+ borderBlock?: string | undefined;
50
+ borderBlockColor?: string | undefined;
51
+ borderBlockEnd?: string | undefined;
52
+ borderBlockEndColor?: string | undefined;
53
+ borderBlockEndStyle?: string | undefined;
54
+ borderBlockEndWidth?: string | undefined;
55
+ borderBlockStart?: string | undefined;
56
+ borderBlockStartColor?: string | undefined;
57
+ borderBlockStartStyle?: string | undefined;
58
+ borderBlockStartWidth?: string | undefined;
59
+ borderBlockStyle?: string | undefined;
60
+ borderBlockWidth?: string | undefined;
61
+ borderBottom?: string | undefined;
62
+ borderBottomColor?: string | undefined;
63
+ borderBottomLeftRadius?: string | undefined;
64
+ borderBottomRightRadius?: string | undefined;
65
+ borderBottomStyle?: string | undefined;
66
+ borderBottomWidth?: string | undefined;
67
+ borderCollapse?: string | undefined;
68
+ borderColor?: string | undefined;
69
+ borderEndEndRadius?: string | undefined;
70
+ borderEndStartRadius?: string | undefined;
71
+ borderImage?: string | undefined;
72
+ borderImageOutset?: string | undefined;
73
+ borderImageRepeat?: string | undefined;
74
+ borderImageSlice?: string | undefined;
75
+ borderImageSource?: string | undefined;
76
+ borderImageWidth?: string | undefined;
77
+ borderInline?: string | undefined;
78
+ borderInlineColor?: string | undefined;
79
+ borderInlineEnd?: string | undefined;
80
+ borderInlineEndColor?: string | undefined;
81
+ borderInlineEndStyle?: string | undefined;
82
+ borderInlineEndWidth?: string | undefined;
83
+ borderInlineStart?: string | undefined;
84
+ borderInlineStartColor?: string | undefined;
85
+ borderInlineStartStyle?: string | undefined;
86
+ borderInlineStartWidth?: string | undefined;
87
+ borderInlineStyle?: string | undefined;
88
+ borderInlineWidth?: string | undefined;
89
+ borderLeft?: string | undefined;
90
+ borderLeftColor?: string | undefined;
91
+ borderLeftStyle?: string | undefined;
92
+ borderLeftWidth?: string | undefined;
93
+ borderRadius?: string | undefined;
94
+ borderRight?: string | undefined;
95
+ borderRightColor?: string | undefined;
96
+ borderRightStyle?: string | undefined;
97
+ borderRightWidth?: string | undefined;
98
+ borderSpacing?: string | undefined;
99
+ borderStartEndRadius?: string | undefined;
100
+ borderStartStartRadius?: string | undefined;
101
+ borderStyle?: string | undefined;
102
+ borderTop?: string | undefined;
103
+ borderTopColor?: string | undefined;
104
+ borderTopLeftRadius?: string | undefined;
105
+ borderTopRightRadius?: string | undefined;
106
+ borderTopStyle?: string | undefined;
107
+ borderTopWidth?: string | undefined;
108
+ borderWidth?: string | undefined;
109
+ bottom?: string | undefined;
110
+ boxShadow?: string | undefined;
111
+ boxSizing?: string | undefined;
112
+ breakAfter?: string | undefined;
113
+ breakBefore?: string | undefined;
114
+ breakInside?: string | undefined;
115
+ captionSide?: string | undefined;
116
+ caretColor?: string | undefined;
117
+ clear?: string | undefined;
118
+ clip?: string | undefined;
119
+ clipPath?: string | undefined;
120
+ clipRule?: string | undefined;
121
+ color?: string | undefined;
122
+ colorInterpolation?: string | undefined;
123
+ colorInterpolationFilters?: string | undefined;
124
+ colorScheme?: string | undefined;
125
+ columnCount?: string | undefined;
126
+ columnFill?: string | undefined;
127
+ columnGap?: string | undefined;
128
+ columnRule?: string | undefined;
129
+ columnRuleColor?: string | undefined;
130
+ columnRuleStyle?: string | undefined;
131
+ columnRuleWidth?: string | undefined;
132
+ columnSpan?: string | undefined;
133
+ columnWidth?: string | undefined;
134
+ columns?: string | undefined;
135
+ contain?: string | undefined;
136
+ content?: string | undefined;
137
+ counterIncrement?: string | undefined;
138
+ counterReset?: string | undefined;
139
+ counterSet?: string | undefined;
140
+ cssFloat?: string | undefined;
141
+ cssText?: string | undefined;
142
+ cursor?: string | undefined;
143
+ direction?: string | undefined;
144
+ display?: string | undefined;
145
+ dominantBaseline?: string | undefined;
146
+ emptyCells?: string | undefined;
147
+ fill?: string | undefined;
148
+ fillOpacity?: string | undefined;
149
+ fillRule?: string | undefined;
150
+ filter?: string | undefined;
151
+ flex?: string | undefined;
152
+ flexBasis?: string | undefined;
153
+ flexDirection?: string | undefined;
154
+ flexFlow?: string | undefined;
155
+ flexGrow?: string | undefined;
156
+ flexShrink?: string | undefined;
157
+ flexWrap?: string | undefined;
158
+ float?: string | undefined;
159
+ floodColor?: string | undefined;
160
+ floodOpacity?: string | undefined;
161
+ font?: string | undefined;
162
+ fontFamily?: string | undefined;
163
+ fontFeatureSettings?: string | undefined;
164
+ fontKerning?: string | undefined;
165
+ fontOpticalSizing?: string | undefined;
166
+ fontSize?: string | undefined;
167
+ fontSizeAdjust?: string | undefined;
168
+ fontStretch?: string | undefined;
169
+ fontStyle?: string | undefined;
170
+ fontSynthesis?: string | undefined;
171
+ fontVariant?: string | undefined;
172
+ fontVariantAlternates?: string | undefined;
173
+ fontVariantCaps?: string | undefined;
174
+ fontVariantEastAsian?: string | undefined;
175
+ fontVariantLigatures?: string | undefined;
176
+ fontVariantNumeric?: string | undefined;
177
+ fontVariantPosition?: string | undefined;
178
+ fontVariationSettings?: string | undefined;
179
+ fontWeight?: string | undefined;
180
+ gap?: string | undefined;
181
+ grid?: string | undefined;
182
+ gridArea?: string | undefined;
183
+ gridAutoColumns?: string | undefined;
184
+ gridAutoFlow?: string | undefined;
185
+ gridAutoRows?: string | undefined;
186
+ gridColumn?: string | undefined;
187
+ gridColumnEnd?: string | undefined;
188
+ gridColumnGap?: string | undefined;
189
+ gridColumnStart?: string | undefined;
190
+ gridGap?: string | undefined;
191
+ gridRow?: string | undefined;
192
+ gridRowEnd?: string | undefined;
193
+ gridRowGap?: string | undefined;
194
+ gridRowStart?: string | undefined;
195
+ gridTemplate?: string | undefined;
196
+ gridTemplateAreas?: string | undefined;
197
+ gridTemplateColumns?: string | undefined;
198
+ gridTemplateRows?: string | undefined;
199
+ height?: string | undefined;
200
+ hyphens?: string | undefined;
201
+ imageOrientation?: string | undefined;
202
+ imageRendering?: string | undefined;
203
+ inlineSize?: string | undefined;
204
+ inset?: string | undefined;
205
+ insetBlock?: string | undefined;
206
+ insetBlockEnd?: string | undefined;
207
+ insetBlockStart?: string | undefined;
208
+ insetInline?: string | undefined;
209
+ insetInlineEnd?: string | undefined;
210
+ insetInlineStart?: string | undefined;
211
+ isolation?: string | undefined;
212
+ justifyContent?: string | undefined;
213
+ justifyItems?: string | undefined;
214
+ justifySelf?: string | undefined;
215
+ left?: string | undefined;
216
+ length?: number | undefined;
217
+ letterSpacing?: string | undefined;
218
+ lightingColor?: string | undefined;
219
+ lineBreak?: string | undefined;
220
+ lineHeight?: string | undefined;
221
+ listStyle?: string | undefined;
222
+ listStyleImage?: string | undefined;
223
+ listStylePosition?: string | undefined;
224
+ listStyleType?: string | undefined;
225
+ margin?: string | undefined;
226
+ marginBlock?: string | undefined;
227
+ marginBlockEnd?: string | undefined;
228
+ marginBlockStart?: string | undefined;
229
+ marginBottom?: string | undefined;
230
+ marginInline?: string | undefined;
231
+ marginInlineEnd?: string | undefined;
232
+ marginInlineStart?: string | undefined;
233
+ marginLeft?: string | undefined;
234
+ marginRight?: string | undefined;
235
+ marginTop?: string | undefined;
236
+ marker?: string | undefined;
237
+ markerEnd?: string | undefined;
238
+ markerMid?: string | undefined;
239
+ markerStart?: string | undefined;
240
+ mask?: string | undefined;
241
+ maskClip?: string | undefined;
242
+ maskComposite?: string | undefined;
243
+ maskImage?: string | undefined;
244
+ maskMode?: string | undefined;
245
+ maskOrigin?: string | undefined;
246
+ maskPosition?: string | undefined;
247
+ maskRepeat?: string | undefined;
248
+ maskSize?: string | undefined;
249
+ maskType?: string | undefined;
250
+ maxBlockSize?: string | undefined;
251
+ maxHeight?: string | undefined;
252
+ maxInlineSize?: string | undefined;
253
+ maxWidth?: string | undefined;
254
+ minBlockSize?: string | undefined;
255
+ minHeight?: string | undefined;
256
+ minInlineSize?: string | undefined;
257
+ minWidth?: string | undefined;
258
+ mixBlendMode?: string | undefined;
259
+ objectFit?: string | undefined;
260
+ objectPosition?: string | undefined;
261
+ offset?: string | undefined;
262
+ offsetDistance?: string | undefined;
263
+ offsetPath?: string | undefined;
264
+ offsetRotate?: string | undefined;
265
+ opacity?: string | undefined;
266
+ order?: string | undefined;
267
+ orphans?: string | undefined;
268
+ outline?: string | undefined;
269
+ outlineColor?: string | undefined;
270
+ outlineOffset?: string | undefined;
271
+ outlineStyle?: string | undefined;
272
+ outlineWidth?: string | undefined;
273
+ overflow?: string | undefined;
274
+ overflowAnchor?: string | undefined;
275
+ overflowWrap?: string | undefined;
276
+ overflowX?: string | undefined;
277
+ overflowY?: string | undefined;
278
+ overscrollBehavior?: string | undefined;
279
+ overscrollBehaviorBlock?: string | undefined;
280
+ overscrollBehaviorInline?: string | undefined;
281
+ overscrollBehaviorX?: string | undefined;
282
+ overscrollBehaviorY?: string | undefined;
283
+ padding?: string | undefined;
284
+ paddingBlock?: string | undefined;
285
+ paddingBlockEnd?: string | undefined;
286
+ paddingBlockStart?: string | undefined;
287
+ paddingBottom?: string | undefined;
288
+ paddingInline?: string | undefined;
289
+ paddingInlineEnd?: string | undefined;
290
+ paddingInlineStart?: string | undefined;
291
+ paddingLeft?: string | undefined;
292
+ paddingRight?: string | undefined;
293
+ paddingTop?: string | undefined;
294
+ pageBreakAfter?: string | undefined;
295
+ pageBreakBefore?: string | undefined;
296
+ pageBreakInside?: string | undefined;
297
+ paintOrder?: string | undefined;
298
+ parentRule?: CSSRule | null | undefined;
299
+ perspective?: string | undefined;
300
+ perspectiveOrigin?: string | undefined;
301
+ placeContent?: string | undefined;
302
+ placeItems?: string | undefined;
303
+ placeSelf?: string | undefined;
304
+ pointerEvents?: string | undefined;
305
+ position?: string | undefined;
306
+ printColorAdjust?: string | undefined;
307
+ quotes?: string | undefined;
308
+ resize?: string | undefined;
309
+ right?: string | undefined;
310
+ rotate?: string | undefined;
311
+ rowGap?: string | undefined;
312
+ rubyPosition?: string | undefined;
313
+ scale?: string | undefined;
314
+ scrollBehavior?: string | undefined;
315
+ scrollMargin?: string | undefined;
316
+ scrollMarginBlock?: string | undefined;
317
+ scrollMarginBlockEnd?: string | undefined;
318
+ scrollMarginBlockStart?: string | undefined;
319
+ scrollMarginBottom?: string | undefined;
320
+ scrollMarginInline?: string | undefined;
321
+ scrollMarginInlineEnd?: string | undefined;
322
+ scrollMarginInlineStart?: string | undefined;
323
+ scrollMarginLeft?: string | undefined;
324
+ scrollMarginRight?: string | undefined;
325
+ scrollMarginTop?: string | undefined;
326
+ scrollPadding?: string | undefined;
327
+ scrollPaddingBlock?: string | undefined;
328
+ scrollPaddingBlockEnd?: string | undefined;
329
+ scrollPaddingBlockStart?: string | undefined;
330
+ scrollPaddingBottom?: string | undefined;
331
+ scrollPaddingInline?: string | undefined;
332
+ scrollPaddingInlineEnd?: string | undefined;
333
+ scrollPaddingInlineStart?: string | undefined;
334
+ scrollPaddingLeft?: string | undefined;
335
+ scrollPaddingRight?: string | undefined;
336
+ scrollPaddingTop?: string | undefined;
337
+ scrollSnapAlign?: string | undefined;
338
+ scrollSnapStop?: string | undefined;
339
+ scrollSnapType?: string | undefined;
340
+ scrollbarGutter?: string | undefined;
341
+ shapeImageThreshold?: string | undefined;
342
+ shapeMargin?: string | undefined;
343
+ shapeOutside?: string | undefined;
344
+ shapeRendering?: string | undefined;
345
+ stopColor?: string | undefined;
346
+ stopOpacity?: string | undefined;
347
+ stroke?: string | undefined;
348
+ strokeDasharray?: string | undefined;
349
+ strokeDashoffset?: string | undefined;
350
+ strokeLinecap?: string | undefined;
351
+ strokeLinejoin?: string | undefined;
352
+ strokeMiterlimit?: string | undefined;
353
+ strokeOpacity?: string | undefined;
354
+ strokeWidth?: string | undefined;
355
+ tabSize?: string | undefined;
356
+ tableLayout?: string | undefined;
357
+ textAlign?: string | undefined;
358
+ textAlignLast?: string | undefined;
359
+ textAnchor?: string | undefined;
360
+ textCombineUpright?: string | undefined;
361
+ textDecoration?: string | undefined;
362
+ textDecorationColor?: string | undefined;
363
+ textDecorationLine?: string | undefined;
364
+ textDecorationSkipInk?: string | undefined;
365
+ textDecorationStyle?: string | undefined;
366
+ textDecorationThickness?: string | undefined;
367
+ textEmphasis?: string | undefined;
368
+ textEmphasisColor?: string | undefined;
369
+ textEmphasisPosition?: string | undefined;
370
+ textEmphasisStyle?: string | undefined;
371
+ textIndent?: string | undefined;
372
+ textOrientation?: string | undefined;
373
+ textOverflow?: string | undefined;
374
+ textRendering?: string | undefined;
375
+ textShadow?: string | undefined;
376
+ textTransform?: string | undefined;
377
+ textUnderlineOffset?: string | undefined;
378
+ textUnderlinePosition?: string | undefined;
379
+ top?: string | undefined;
380
+ touchAction?: string | undefined;
381
+ transform?: string | undefined;
382
+ transformBox?: string | undefined;
383
+ transformOrigin?: string | undefined;
384
+ transformStyle?: string | undefined;
385
+ transition?: string | undefined;
386
+ transitionDelay?: string | undefined;
387
+ transitionDuration?: string | undefined;
388
+ transitionProperty?: string | undefined;
389
+ transitionTimingFunction?: string | undefined;
390
+ translate?: string | undefined;
391
+ unicodeBidi?: string | undefined;
392
+ userSelect?: string | undefined;
393
+ verticalAlign?: string | undefined;
394
+ visibility?: string | undefined;
395
+ webkitAlignContent?: string | undefined;
396
+ webkitAlignItems?: string | undefined;
397
+ webkitAlignSelf?: string | undefined;
398
+ webkitAnimation?: string | undefined;
399
+ webkitAnimationDelay?: string | undefined;
400
+ webkitAnimationDirection?: string | undefined;
401
+ webkitAnimationDuration?: string | undefined;
402
+ webkitAnimationFillMode?: string | undefined;
403
+ webkitAnimationIterationCount?: string | undefined;
404
+ webkitAnimationName?: string | undefined;
405
+ webkitAnimationPlayState?: string | undefined;
406
+ webkitAnimationTimingFunction?: string | undefined;
407
+ webkitAppearance?: string | undefined;
408
+ webkitBackfaceVisibility?: string | undefined;
409
+ webkitBackgroundClip?: string | undefined;
410
+ webkitBackgroundOrigin?: string | undefined;
411
+ webkitBackgroundSize?: string | undefined;
412
+ webkitBorderBottomLeftRadius?: string | undefined;
413
+ webkitBorderBottomRightRadius?: string | undefined;
414
+ webkitBorderRadius?: string | undefined;
415
+ webkitBorderTopLeftRadius?: string | undefined;
416
+ webkitBorderTopRightRadius?: string | undefined;
417
+ webkitBoxAlign?: string | undefined;
418
+ webkitBoxFlex?: string | undefined;
419
+ webkitBoxOrdinalGroup?: string | undefined;
420
+ webkitBoxOrient?: string | undefined;
421
+ webkitBoxPack?: string | undefined;
422
+ webkitBoxShadow?: string | undefined;
423
+ webkitBoxSizing?: string | undefined;
424
+ webkitFilter?: string | undefined;
425
+ webkitFlex?: string | undefined;
426
+ webkitFlexBasis?: string | undefined;
427
+ webkitFlexDirection?: string | undefined;
428
+ webkitFlexFlow?: string | undefined;
429
+ webkitFlexGrow?: string | undefined;
430
+ webkitFlexShrink?: string | undefined;
431
+ webkitFlexWrap?: string | undefined;
432
+ webkitJustifyContent?: string | undefined;
433
+ webkitLineClamp?: string | undefined;
434
+ webkitMask?: string | undefined;
435
+ webkitMaskBoxImage?: string | undefined;
436
+ webkitMaskBoxImageOutset?: string | undefined;
437
+ webkitMaskBoxImageRepeat?: string | undefined;
438
+ webkitMaskBoxImageSlice?: string | undefined;
439
+ webkitMaskBoxImageSource?: string | undefined;
440
+ webkitMaskBoxImageWidth?: string | undefined;
441
+ webkitMaskClip?: string | undefined;
442
+ webkitMaskComposite?: string | undefined;
443
+ webkitMaskImage?: string | undefined;
444
+ webkitMaskOrigin?: string | undefined;
445
+ webkitMaskPosition?: string | undefined;
446
+ webkitMaskRepeat?: string | undefined;
447
+ webkitMaskSize?: string | undefined;
448
+ webkitOrder?: string | undefined;
449
+ webkitPerspective?: string | undefined;
450
+ webkitPerspectiveOrigin?: string | undefined;
451
+ webkitTextFillColor?: string | undefined;
452
+ webkitTextSizeAdjust?: string | undefined;
453
+ webkitTextStroke?: string | undefined;
454
+ webkitTextStrokeColor?: string | undefined;
455
+ webkitTextStrokeWidth?: string | undefined;
456
+ webkitTransform?: string | undefined;
457
+ webkitTransformOrigin?: string | undefined;
458
+ webkitTransformStyle?: string | undefined;
459
+ webkitTransition?: string | undefined;
460
+ webkitTransitionDelay?: string | undefined;
461
+ webkitTransitionDuration?: string | undefined;
462
+ webkitTransitionProperty?: string | undefined;
463
+ webkitTransitionTimingFunction?: string | undefined;
464
+ webkitUserSelect?: string | undefined;
465
+ whiteSpace?: string | undefined;
466
+ widows?: string | undefined;
467
+ width?: string | undefined;
468
+ willChange?: string | undefined;
469
+ wordBreak?: string | undefined;
470
+ wordSpacing?: string | undefined;
471
+ wordWrap?: string | undefined;
472
+ writingMode?: string | undefined;
473
+ zIndex?: string | undefined;
474
+ getPropertyPriority?: ((property: string) => string) | undefined;
475
+ getPropertyValue?: ((property: string) => string) | undefined;
476
+ item?: ((index: number) => string) | undefined;
477
+ removeProperty?: ((property: string) => string) | undefined;
478
+ setProperty?: ((property: string, value: string | null, priority?: string | undefined) => void) | undefined;
479
+ [Symbol.iterator]?: (() => IterableIterator<string>) | undefined;
480
+ };
15
481
  'builder-id': string | undefined;
16
482
  class: string;
17
483
  };
@@ -1 +1 @@
1
- export declare const convertStyleObject: (obj?: Partial<CSSStyleDeclaration>) => Partial<CSSStyleDeclaration> | undefined;
1
+ export declare const convertStyleObject: (obj: Partial<CSSStyleDeclaration>) => Partial<CSSStyleDeclaration>;
@@ -0,0 +1,5 @@
1
+ import type { BuilderContextInterface } from '../context/types.js';
2
+ import { BuilderBlock } from '../types/builder-block.js';
3
+ export declare function crateEventHandler(value: string, options: {
4
+ block: BuilderBlock;
5
+ } & Pick<BuilderContextInterface, 'state' | 'context'>): (event: Event) => any;
@@ -1,2 +1,468 @@
1
1
  import { BuilderBlock } from '../types/builder-block.js';
2
- export declare function getBlockStyles(block: BuilderBlock): any;
2
+ export declare function getBlockStyles(block: BuilderBlock): {
3
+ [x: number]: string | undefined;
4
+ accentColor?: string | undefined;
5
+ alignContent?: string | undefined;
6
+ alignItems?: string | undefined;
7
+ alignSelf?: string | undefined;
8
+ alignmentBaseline?: string | undefined;
9
+ all?: string | undefined;
10
+ animation?: string | undefined;
11
+ animationDelay?: string | undefined;
12
+ animationDirection?: string | undefined;
13
+ animationDuration?: string | undefined;
14
+ animationFillMode?: string | undefined;
15
+ animationIterationCount?: string | undefined;
16
+ animationName?: string | undefined;
17
+ animationPlayState?: string | undefined;
18
+ animationTimingFunction?: string | undefined;
19
+ appearance?: string | undefined;
20
+ aspectRatio?: string | undefined;
21
+ backfaceVisibility?: string | undefined;
22
+ background?: string | undefined;
23
+ backgroundAttachment?: string | undefined;
24
+ backgroundBlendMode?: string | undefined;
25
+ backgroundClip?: string | undefined;
26
+ backgroundColor?: string | undefined;
27
+ backgroundImage?: string | undefined;
28
+ backgroundOrigin?: string | undefined;
29
+ backgroundPosition?: string | undefined;
30
+ backgroundPositionX?: string | undefined;
31
+ backgroundPositionY?: string | undefined;
32
+ backgroundRepeat?: string | undefined;
33
+ backgroundSize?: string | undefined;
34
+ baselineShift?: string | undefined;
35
+ blockSize?: string | undefined;
36
+ border?: string | undefined;
37
+ borderBlock?: string | undefined;
38
+ borderBlockColor?: string | undefined;
39
+ borderBlockEnd?: string | undefined;
40
+ borderBlockEndColor?: string | undefined;
41
+ borderBlockEndStyle?: string | undefined;
42
+ borderBlockEndWidth?: string | undefined;
43
+ borderBlockStart?: string | undefined;
44
+ borderBlockStartColor?: string | undefined;
45
+ borderBlockStartStyle?: string | undefined;
46
+ borderBlockStartWidth?: string | undefined;
47
+ borderBlockStyle?: string | undefined;
48
+ borderBlockWidth?: string | undefined;
49
+ borderBottom?: string | undefined;
50
+ borderBottomColor?: string | undefined;
51
+ borderBottomLeftRadius?: string | undefined;
52
+ borderBottomRightRadius?: string | undefined;
53
+ borderBottomStyle?: string | undefined;
54
+ borderBottomWidth?: string | undefined;
55
+ borderCollapse?: string | undefined;
56
+ borderColor?: string | undefined;
57
+ borderEndEndRadius?: string | undefined;
58
+ borderEndStartRadius?: string | undefined;
59
+ borderImage?: string | undefined;
60
+ borderImageOutset?: string | undefined;
61
+ borderImageRepeat?: string | undefined;
62
+ borderImageSlice?: string | undefined;
63
+ borderImageSource?: string | undefined;
64
+ borderImageWidth?: string | undefined;
65
+ borderInline?: string | undefined;
66
+ borderInlineColor?: string | undefined;
67
+ borderInlineEnd?: string | undefined;
68
+ borderInlineEndColor?: string | undefined;
69
+ borderInlineEndStyle?: string | undefined;
70
+ borderInlineEndWidth?: string | undefined;
71
+ borderInlineStart?: string | undefined;
72
+ borderInlineStartColor?: string | undefined;
73
+ borderInlineStartStyle?: string | undefined;
74
+ borderInlineStartWidth?: string | undefined;
75
+ borderInlineStyle?: string | undefined;
76
+ borderInlineWidth?: string | undefined;
77
+ borderLeft?: string | undefined;
78
+ borderLeftColor?: string | undefined;
79
+ borderLeftStyle?: string | undefined;
80
+ borderLeftWidth?: string | undefined;
81
+ borderRadius?: string | undefined;
82
+ borderRight?: string | undefined;
83
+ borderRightColor?: string | undefined;
84
+ borderRightStyle?: string | undefined;
85
+ borderRightWidth?: string | undefined;
86
+ borderSpacing?: string | undefined;
87
+ borderStartEndRadius?: string | undefined;
88
+ borderStartStartRadius?: string | undefined;
89
+ borderStyle?: string | undefined;
90
+ borderTop?: string | undefined;
91
+ borderTopColor?: string | undefined;
92
+ borderTopLeftRadius?: string | undefined;
93
+ borderTopRightRadius?: string | undefined;
94
+ borderTopStyle?: string | undefined;
95
+ borderTopWidth?: string | undefined;
96
+ borderWidth?: string | undefined;
97
+ bottom?: string | undefined;
98
+ boxShadow?: string | undefined;
99
+ boxSizing?: string | undefined;
100
+ breakAfter?: string | undefined;
101
+ breakBefore?: string | undefined;
102
+ breakInside?: string | undefined;
103
+ captionSide?: string | undefined;
104
+ caretColor?: string | undefined;
105
+ clear?: string | undefined;
106
+ clip?: string | undefined;
107
+ clipPath?: string | undefined;
108
+ clipRule?: string | undefined;
109
+ color?: string | undefined;
110
+ colorInterpolation?: string | undefined;
111
+ colorInterpolationFilters?: string | undefined;
112
+ colorScheme?: string | undefined;
113
+ columnCount?: string | undefined;
114
+ columnFill?: string | undefined;
115
+ columnGap?: string | undefined;
116
+ columnRule?: string | undefined;
117
+ columnRuleColor?: string | undefined;
118
+ columnRuleStyle?: string | undefined;
119
+ columnRuleWidth?: string | undefined;
120
+ columnSpan?: string | undefined;
121
+ columnWidth?: string | undefined;
122
+ columns?: string | undefined;
123
+ contain?: string | undefined;
124
+ content?: string | undefined;
125
+ counterIncrement?: string | undefined;
126
+ counterReset?: string | undefined;
127
+ counterSet?: string | undefined;
128
+ cssFloat?: string | undefined;
129
+ cssText?: string | undefined;
130
+ cursor?: string | undefined;
131
+ direction?: string | undefined;
132
+ display?: string | undefined;
133
+ dominantBaseline?: string | undefined;
134
+ emptyCells?: string | undefined;
135
+ fill?: string | undefined;
136
+ fillOpacity?: string | undefined;
137
+ fillRule?: string | undefined;
138
+ filter?: string | undefined;
139
+ flex?: string | undefined;
140
+ flexBasis?: string | undefined;
141
+ flexDirection?: string | undefined;
142
+ flexFlow?: string | undefined;
143
+ flexGrow?: string | undefined;
144
+ flexShrink?: string | undefined;
145
+ flexWrap?: string | undefined;
146
+ float?: string | undefined;
147
+ floodColor?: string | undefined;
148
+ floodOpacity?: string | undefined;
149
+ font?: string | undefined;
150
+ fontFamily?: string | undefined;
151
+ fontFeatureSettings?: string | undefined;
152
+ fontKerning?: string | undefined;
153
+ fontOpticalSizing?: string | undefined;
154
+ fontSize?: string | undefined;
155
+ fontSizeAdjust?: string | undefined;
156
+ fontStretch?: string | undefined;
157
+ fontStyle?: string | undefined;
158
+ fontSynthesis?: string | undefined;
159
+ fontVariant?: string | undefined;
160
+ fontVariantAlternates?: string | undefined;
161
+ fontVariantCaps?: string | undefined;
162
+ fontVariantEastAsian?: string | undefined;
163
+ fontVariantLigatures?: string | undefined;
164
+ fontVariantNumeric?: string | undefined;
165
+ fontVariantPosition?: string | undefined;
166
+ fontVariationSettings?: string | undefined;
167
+ fontWeight?: string | undefined;
168
+ gap?: string | undefined;
169
+ grid?: string | undefined;
170
+ gridArea?: string | undefined;
171
+ gridAutoColumns?: string | undefined;
172
+ gridAutoFlow?: string | undefined;
173
+ gridAutoRows?: string | undefined;
174
+ gridColumn?: string | undefined;
175
+ gridColumnEnd?: string | undefined;
176
+ gridColumnGap?: string | undefined;
177
+ gridColumnStart?: string | undefined;
178
+ gridGap?: string | undefined;
179
+ gridRow?: string | undefined;
180
+ gridRowEnd?: string | undefined;
181
+ gridRowGap?: string | undefined;
182
+ gridRowStart?: string | undefined;
183
+ gridTemplate?: string | undefined;
184
+ gridTemplateAreas?: string | undefined;
185
+ gridTemplateColumns?: string | undefined;
186
+ gridTemplateRows?: string | undefined;
187
+ height?: string | undefined;
188
+ hyphens?: string | undefined;
189
+ imageOrientation?: string | undefined;
190
+ imageRendering?: string | undefined;
191
+ inlineSize?: string | undefined;
192
+ inset?: string | undefined;
193
+ insetBlock?: string | undefined;
194
+ insetBlockEnd?: string | undefined;
195
+ insetBlockStart?: string | undefined;
196
+ insetInline?: string | undefined;
197
+ insetInlineEnd?: string | undefined;
198
+ insetInlineStart?: string | undefined;
199
+ isolation?: string | undefined;
200
+ justifyContent?: string | undefined;
201
+ justifyItems?: string | undefined;
202
+ justifySelf?: string | undefined;
203
+ left?: string | undefined;
204
+ length?: number | undefined;
205
+ letterSpacing?: string | undefined;
206
+ lightingColor?: string | undefined;
207
+ lineBreak?: string | undefined;
208
+ lineHeight?: string | undefined;
209
+ listStyle?: string | undefined;
210
+ listStyleImage?: string | undefined;
211
+ listStylePosition?: string | undefined;
212
+ listStyleType?: string | undefined;
213
+ margin?: string | undefined;
214
+ marginBlock?: string | undefined;
215
+ marginBlockEnd?: string | undefined;
216
+ marginBlockStart?: string | undefined;
217
+ marginBottom?: string | undefined;
218
+ marginInline?: string | undefined;
219
+ marginInlineEnd?: string | undefined;
220
+ marginInlineStart?: string | undefined;
221
+ marginLeft?: string | undefined;
222
+ marginRight?: string | undefined;
223
+ marginTop?: string | undefined;
224
+ marker?: string | undefined;
225
+ markerEnd?: string | undefined;
226
+ markerMid?: string | undefined;
227
+ markerStart?: string | undefined;
228
+ mask?: string | undefined;
229
+ maskClip?: string | undefined;
230
+ maskComposite?: string | undefined;
231
+ maskImage?: string | undefined;
232
+ maskMode?: string | undefined;
233
+ maskOrigin?: string | undefined;
234
+ maskPosition?: string | undefined;
235
+ maskRepeat?: string | undefined;
236
+ maskSize?: string | undefined;
237
+ maskType?: string | undefined;
238
+ maxBlockSize?: string | undefined;
239
+ maxHeight?: string | undefined;
240
+ maxInlineSize?: string | undefined;
241
+ maxWidth?: string | undefined;
242
+ minBlockSize?: string | undefined;
243
+ minHeight?: string | undefined;
244
+ minInlineSize?: string | undefined;
245
+ minWidth?: string | undefined;
246
+ mixBlendMode?: string | undefined;
247
+ objectFit?: string | undefined;
248
+ objectPosition?: string | undefined;
249
+ offset?: string | undefined;
250
+ offsetDistance?: string | undefined;
251
+ offsetPath?: string | undefined;
252
+ offsetRotate?: string | undefined;
253
+ opacity?: string | undefined;
254
+ order?: string | undefined;
255
+ orphans?: string | undefined;
256
+ outline?: string | undefined;
257
+ outlineColor?: string | undefined;
258
+ outlineOffset?: string | undefined;
259
+ outlineStyle?: string | undefined;
260
+ outlineWidth?: string | undefined;
261
+ overflow?: string | undefined;
262
+ overflowAnchor?: string | undefined;
263
+ overflowWrap?: string | undefined;
264
+ overflowX?: string | undefined;
265
+ overflowY?: string | undefined;
266
+ overscrollBehavior?: string | undefined;
267
+ overscrollBehaviorBlock?: string | undefined;
268
+ overscrollBehaviorInline?: string | undefined;
269
+ overscrollBehaviorX?: string | undefined;
270
+ overscrollBehaviorY?: string | undefined;
271
+ padding?: string | undefined;
272
+ paddingBlock?: string | undefined;
273
+ paddingBlockEnd?: string | undefined;
274
+ paddingBlockStart?: string | undefined;
275
+ paddingBottom?: string | undefined;
276
+ paddingInline?: string | undefined;
277
+ paddingInlineEnd?: string | undefined;
278
+ paddingInlineStart?: string | undefined;
279
+ paddingLeft?: string | undefined;
280
+ paddingRight?: string | undefined;
281
+ paddingTop?: string | undefined;
282
+ pageBreakAfter?: string | undefined;
283
+ pageBreakBefore?: string | undefined;
284
+ pageBreakInside?: string | undefined;
285
+ paintOrder?: string | undefined;
286
+ parentRule?: CSSRule | null | undefined;
287
+ perspective?: string | undefined;
288
+ perspectiveOrigin?: string | undefined;
289
+ placeContent?: string | undefined;
290
+ placeItems?: string | undefined;
291
+ placeSelf?: string | undefined;
292
+ pointerEvents?: string | undefined;
293
+ position?: string | undefined;
294
+ printColorAdjust?: string | undefined;
295
+ quotes?: string | undefined;
296
+ resize?: string | undefined;
297
+ right?: string | undefined;
298
+ rotate?: string | undefined;
299
+ rowGap?: string | undefined;
300
+ rubyPosition?: string | undefined;
301
+ scale?: string | undefined;
302
+ scrollBehavior?: string | undefined;
303
+ scrollMargin?: string | undefined;
304
+ scrollMarginBlock?: string | undefined;
305
+ scrollMarginBlockEnd?: string | undefined;
306
+ scrollMarginBlockStart?: string | undefined;
307
+ scrollMarginBottom?: string | undefined;
308
+ scrollMarginInline?: string | undefined;
309
+ scrollMarginInlineEnd?: string | undefined;
310
+ scrollMarginInlineStart?: string | undefined;
311
+ scrollMarginLeft?: string | undefined;
312
+ scrollMarginRight?: string | undefined;
313
+ scrollMarginTop?: string | undefined;
314
+ scrollPadding?: string | undefined;
315
+ scrollPaddingBlock?: string | undefined;
316
+ scrollPaddingBlockEnd?: string | undefined;
317
+ scrollPaddingBlockStart?: string | undefined;
318
+ scrollPaddingBottom?: string | undefined;
319
+ scrollPaddingInline?: string | undefined;
320
+ scrollPaddingInlineEnd?: string | undefined;
321
+ scrollPaddingInlineStart?: string | undefined;
322
+ scrollPaddingLeft?: string | undefined;
323
+ scrollPaddingRight?: string | undefined;
324
+ scrollPaddingTop?: string | undefined;
325
+ scrollSnapAlign?: string | undefined;
326
+ scrollSnapStop?: string | undefined;
327
+ scrollSnapType?: string | undefined;
328
+ scrollbarGutter?: string | undefined;
329
+ shapeImageThreshold?: string | undefined;
330
+ shapeMargin?: string | undefined;
331
+ shapeOutside?: string | undefined;
332
+ shapeRendering?: string | undefined;
333
+ stopColor?: string | undefined;
334
+ stopOpacity?: string | undefined;
335
+ stroke?: string | undefined;
336
+ strokeDasharray?: string | undefined;
337
+ strokeDashoffset?: string | undefined;
338
+ strokeLinecap?: string | undefined;
339
+ strokeLinejoin?: string | undefined;
340
+ strokeMiterlimit?: string | undefined;
341
+ strokeOpacity?: string | undefined;
342
+ strokeWidth?: string | undefined;
343
+ tabSize?: string | undefined;
344
+ tableLayout?: string | undefined;
345
+ textAlign?: string | undefined;
346
+ textAlignLast?: string | undefined;
347
+ textAnchor?: string | undefined;
348
+ textCombineUpright?: string | undefined;
349
+ textDecoration?: string | undefined;
350
+ textDecorationColor?: string | undefined;
351
+ textDecorationLine?: string | undefined;
352
+ textDecorationSkipInk?: string | undefined;
353
+ textDecorationStyle?: string | undefined;
354
+ textDecorationThickness?: string | undefined;
355
+ textEmphasis?: string | undefined;
356
+ textEmphasisColor?: string | undefined;
357
+ textEmphasisPosition?: string | undefined;
358
+ textEmphasisStyle?: string | undefined;
359
+ textIndent?: string | undefined;
360
+ textOrientation?: string | undefined;
361
+ textOverflow?: string | undefined;
362
+ textRendering?: string | undefined;
363
+ textShadow?: string | undefined;
364
+ textTransform?: string | undefined;
365
+ textUnderlineOffset?: string | undefined;
366
+ textUnderlinePosition?: string | undefined;
367
+ top?: string | undefined;
368
+ touchAction?: string | undefined;
369
+ transform?: string | undefined;
370
+ transformBox?: string | undefined;
371
+ transformOrigin?: string | undefined;
372
+ transformStyle?: string | undefined;
373
+ transition?: string | undefined;
374
+ transitionDelay?: string | undefined;
375
+ transitionDuration?: string | undefined;
376
+ transitionProperty?: string | undefined;
377
+ transitionTimingFunction?: string | undefined;
378
+ translate?: string | undefined;
379
+ unicodeBidi?: string | undefined;
380
+ userSelect?: string | undefined;
381
+ verticalAlign?: string | undefined;
382
+ visibility?: string | undefined;
383
+ webkitAlignContent?: string | undefined;
384
+ webkitAlignItems?: string | undefined;
385
+ webkitAlignSelf?: string | undefined;
386
+ webkitAnimation?: string | undefined;
387
+ webkitAnimationDelay?: string | undefined;
388
+ webkitAnimationDirection?: string | undefined;
389
+ webkitAnimationDuration?: string | undefined;
390
+ webkitAnimationFillMode?: string | undefined;
391
+ webkitAnimationIterationCount?: string | undefined;
392
+ webkitAnimationName?: string | undefined;
393
+ webkitAnimationPlayState?: string | undefined;
394
+ webkitAnimationTimingFunction?: string | undefined;
395
+ webkitAppearance?: string | undefined;
396
+ webkitBackfaceVisibility?: string | undefined;
397
+ webkitBackgroundClip?: string | undefined;
398
+ webkitBackgroundOrigin?: string | undefined;
399
+ webkitBackgroundSize?: string | undefined;
400
+ webkitBorderBottomLeftRadius?: string | undefined;
401
+ webkitBorderBottomRightRadius?: string | undefined;
402
+ webkitBorderRadius?: string | undefined;
403
+ webkitBorderTopLeftRadius?: string | undefined;
404
+ webkitBorderTopRightRadius?: string | undefined;
405
+ webkitBoxAlign?: string | undefined;
406
+ webkitBoxFlex?: string | undefined;
407
+ webkitBoxOrdinalGroup?: string | undefined;
408
+ webkitBoxOrient?: string | undefined;
409
+ webkitBoxPack?: string | undefined;
410
+ webkitBoxShadow?: string | undefined;
411
+ webkitBoxSizing?: string | undefined;
412
+ webkitFilter?: string | undefined;
413
+ webkitFlex?: string | undefined;
414
+ webkitFlexBasis?: string | undefined;
415
+ webkitFlexDirection?: string | undefined;
416
+ webkitFlexFlow?: string | undefined;
417
+ webkitFlexGrow?: string | undefined;
418
+ webkitFlexShrink?: string | undefined;
419
+ webkitFlexWrap?: string | undefined;
420
+ webkitJustifyContent?: string | undefined;
421
+ webkitLineClamp?: string | undefined;
422
+ webkitMask?: string | undefined;
423
+ webkitMaskBoxImage?: string | undefined;
424
+ webkitMaskBoxImageOutset?: string | undefined;
425
+ webkitMaskBoxImageRepeat?: string | undefined;
426
+ webkitMaskBoxImageSlice?: string | undefined;
427
+ webkitMaskBoxImageSource?: string | undefined;
428
+ webkitMaskBoxImageWidth?: string | undefined;
429
+ webkitMaskClip?: string | undefined;
430
+ webkitMaskComposite?: string | undefined;
431
+ webkitMaskImage?: string | undefined;
432
+ webkitMaskOrigin?: string | undefined;
433
+ webkitMaskPosition?: string | undefined;
434
+ webkitMaskRepeat?: string | undefined;
435
+ webkitMaskSize?: string | undefined;
436
+ webkitOrder?: string | undefined;
437
+ webkitPerspective?: string | undefined;
438
+ webkitPerspectiveOrigin?: string | undefined;
439
+ webkitTextFillColor?: string | undefined;
440
+ webkitTextSizeAdjust?: string | undefined;
441
+ webkitTextStroke?: string | undefined;
442
+ webkitTextStrokeColor?: string | undefined;
443
+ webkitTextStrokeWidth?: string | undefined;
444
+ webkitTransform?: string | undefined;
445
+ webkitTransformOrigin?: string | undefined;
446
+ webkitTransformStyle?: string | undefined;
447
+ webkitTransition?: string | undefined;
448
+ webkitTransitionDelay?: string | undefined;
449
+ webkitTransitionDuration?: string | undefined;
450
+ webkitTransitionProperty?: string | undefined;
451
+ webkitTransitionTimingFunction?: string | undefined;
452
+ webkitUserSelect?: string | undefined;
453
+ whiteSpace?: string | undefined;
454
+ widows?: string | undefined;
455
+ width?: string | undefined;
456
+ willChange?: string | undefined;
457
+ wordBreak?: string | undefined;
458
+ wordSpacing?: string | undefined;
459
+ wordWrap?: string | undefined;
460
+ writingMode?: string | undefined;
461
+ zIndex?: string | undefined;
462
+ getPropertyPriority?: ((property: string) => string) | undefined;
463
+ getPropertyValue?: ((property: string) => string) | undefined;
464
+ item?: ((index: number) => string) | undefined;
465
+ removeProperty?: ((property: string) => string) | undefined;
466
+ setProperty?: ((property: string, value: string | null, priority?: string | undefined) => void) | undefined;
467
+ [Symbol.iterator]?: (() => IterableIterator<string>) | undefined;
468
+ };
@@ -1,6 +1,6 @@
1
1
  declare type QueryObject = Record<string, string>;
2
2
  export declare const convertSearchParamsToQueryObject: (searchParams: URLSearchParams) => QueryObject;
3
- export declare const getBuilderSearchParams: (options: QueryObject) => QueryObject;
3
+ export declare const getBuilderSearchParams: (_options: QueryObject | URLSearchParams | undefined) => QueryObject;
4
4
  export declare const getBuilderSearchParamsFromWindow: () => QueryObject;
5
5
  export declare const normalizeSearchParams: (searchParams: QueryObject | URLSearchParams) => QueryObject;
6
6
  export {};
@@ -1,3 +1,3 @@
1
1
  declare type MitosisTargets = import('@builder.io/mitosis').Target;
2
- export declare type Target = Extract<MitosisTargets, 'vue3' | 'vue2' | 'reactNative' | 'svelte'>;
2
+ export declare type Target = Extract<MitosisTargets, 'vue3' | 'vue2' | 'reactNative' | 'svelte' | 'qwik'>;
3
3
  export {};