@builder.io/sdk-qwik 0.10.0 → 0.11.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/lib/browser/index.qwik.cjs +3 -5
- package/lib/browser/index.qwik.mjs +3 -5
- package/lib/edge/index.qwik.cjs +3 -5
- package/lib/edge/index.qwik.mjs +3 -5
- package/lib/node/index.qwik.cjs +3 -5
- package/lib/node/index.qwik.mjs +3 -5
- package/package.json +1 -1
- package/types/src/constants/sdk-version.d.ts +1 -1
- package/types/src/types/targets.d.ts +1 -1
|
@@ -490,8 +490,7 @@ function getBlockActions(options) {
|
|
|
490
490
|
let eventHandlerName = getEventHandlerName(key);
|
|
491
491
|
if (options.stripPrefix)
|
|
492
492
|
switch (TARGET) {
|
|
493
|
-
case "
|
|
494
|
-
case "vue3":
|
|
493
|
+
case "vue":
|
|
495
494
|
eventHandlerName = eventHandlerName.replace("v-on:", "");
|
|
496
495
|
break;
|
|
497
496
|
case "svelte":
|
|
@@ -533,8 +532,7 @@ function getBlockProperties({ block, context }) {
|
|
|
533
532
|
function getStyleAttribute(style) {
|
|
534
533
|
switch (TARGET) {
|
|
535
534
|
case "svelte":
|
|
536
|
-
case "
|
|
537
|
-
case "vue3":
|
|
535
|
+
case "vue":
|
|
538
536
|
case "solid":
|
|
539
537
|
return convertStyleMapToCSSArray(style).join(" ");
|
|
540
538
|
case "qwik":
|
|
@@ -3206,7 +3204,7 @@ const getInteractionPropertiesForEvent = (event) => {
|
|
|
3206
3204
|
}
|
|
3207
3205
|
};
|
|
3208
3206
|
};
|
|
3209
|
-
const SDK_VERSION = "0.
|
|
3207
|
+
const SDK_VERSION = "0.11.0";
|
|
3210
3208
|
const registry = {};
|
|
3211
3209
|
function register(type, info) {
|
|
3212
3210
|
let typeList = registry[type];
|
|
@@ -488,8 +488,7 @@ function getBlockActions(options) {
|
|
|
488
488
|
let eventHandlerName = getEventHandlerName(key);
|
|
489
489
|
if (options.stripPrefix)
|
|
490
490
|
switch (TARGET) {
|
|
491
|
-
case "
|
|
492
|
-
case "vue3":
|
|
491
|
+
case "vue":
|
|
493
492
|
eventHandlerName = eventHandlerName.replace("v-on:", "");
|
|
494
493
|
break;
|
|
495
494
|
case "svelte":
|
|
@@ -531,8 +530,7 @@ function getBlockProperties({ block, context }) {
|
|
|
531
530
|
function getStyleAttribute(style) {
|
|
532
531
|
switch (TARGET) {
|
|
533
532
|
case "svelte":
|
|
534
|
-
case "
|
|
535
|
-
case "vue3":
|
|
533
|
+
case "vue":
|
|
536
534
|
case "solid":
|
|
537
535
|
return convertStyleMapToCSSArray(style).join(" ");
|
|
538
536
|
case "qwik":
|
|
@@ -3204,7 +3202,7 @@ const getInteractionPropertiesForEvent = (event) => {
|
|
|
3204
3202
|
}
|
|
3205
3203
|
};
|
|
3206
3204
|
};
|
|
3207
|
-
const SDK_VERSION = "0.
|
|
3205
|
+
const SDK_VERSION = "0.11.0";
|
|
3208
3206
|
const registry = {};
|
|
3209
3207
|
function register(type, info) {
|
|
3210
3208
|
let typeList = registry[type];
|
package/lib/edge/index.qwik.cjs
CHANGED
|
@@ -3721,8 +3721,7 @@ function getBlockActions(options) {
|
|
|
3721
3721
|
let eventHandlerName = getEventHandlerName(key);
|
|
3722
3722
|
if (options.stripPrefix)
|
|
3723
3723
|
switch (TARGET) {
|
|
3724
|
-
case "
|
|
3725
|
-
case "vue3":
|
|
3724
|
+
case "vue":
|
|
3726
3725
|
eventHandlerName = eventHandlerName.replace("v-on:", "");
|
|
3727
3726
|
break;
|
|
3728
3727
|
case "svelte":
|
|
@@ -3764,8 +3763,7 @@ function getBlockProperties({ block, context }) {
|
|
|
3764
3763
|
function getStyleAttribute(style) {
|
|
3765
3764
|
switch (TARGET) {
|
|
3766
3765
|
case "svelte":
|
|
3767
|
-
case "
|
|
3768
|
-
case "vue3":
|
|
3766
|
+
case "vue":
|
|
3769
3767
|
case "solid":
|
|
3770
3768
|
return convertStyleMapToCSSArray(style).join(" ");
|
|
3771
3769
|
case "qwik":
|
|
@@ -6437,7 +6435,7 @@ const getInteractionPropertiesForEvent = (event) => {
|
|
|
6437
6435
|
}
|
|
6438
6436
|
};
|
|
6439
6437
|
};
|
|
6440
|
-
const SDK_VERSION = "0.
|
|
6438
|
+
const SDK_VERSION = "0.11.0";
|
|
6441
6439
|
const registry = {};
|
|
6442
6440
|
function register(type, info) {
|
|
6443
6441
|
let typeList = registry[type];
|
package/lib/edge/index.qwik.mjs
CHANGED
|
@@ -3719,8 +3719,7 @@ function getBlockActions(options) {
|
|
|
3719
3719
|
let eventHandlerName = getEventHandlerName(key);
|
|
3720
3720
|
if (options.stripPrefix)
|
|
3721
3721
|
switch (TARGET) {
|
|
3722
|
-
case "
|
|
3723
|
-
case "vue3":
|
|
3722
|
+
case "vue":
|
|
3724
3723
|
eventHandlerName = eventHandlerName.replace("v-on:", "");
|
|
3725
3724
|
break;
|
|
3726
3725
|
case "svelte":
|
|
@@ -3762,8 +3761,7 @@ function getBlockProperties({ block, context }) {
|
|
|
3762
3761
|
function getStyleAttribute(style) {
|
|
3763
3762
|
switch (TARGET) {
|
|
3764
3763
|
case "svelte":
|
|
3765
|
-
case "
|
|
3766
|
-
case "vue3":
|
|
3764
|
+
case "vue":
|
|
3767
3765
|
case "solid":
|
|
3768
3766
|
return convertStyleMapToCSSArray(style).join(" ");
|
|
3769
3767
|
case "qwik":
|
|
@@ -6435,7 +6433,7 @@ const getInteractionPropertiesForEvent = (event) => {
|
|
|
6435
6433
|
}
|
|
6436
6434
|
};
|
|
6437
6435
|
};
|
|
6438
|
-
const SDK_VERSION = "0.
|
|
6436
|
+
const SDK_VERSION = "0.11.0";
|
|
6439
6437
|
const registry = {};
|
|
6440
6438
|
function register(type, info) {
|
|
6441
6439
|
let typeList = registry[type];
|
package/lib/node/index.qwik.cjs
CHANGED
|
@@ -591,8 +591,7 @@ function getBlockActions(options) {
|
|
|
591
591
|
let eventHandlerName = getEventHandlerName(key);
|
|
592
592
|
if (options.stripPrefix)
|
|
593
593
|
switch (TARGET) {
|
|
594
|
-
case "
|
|
595
|
-
case "vue3":
|
|
594
|
+
case "vue":
|
|
596
595
|
eventHandlerName = eventHandlerName.replace("v-on:", "");
|
|
597
596
|
break;
|
|
598
597
|
case "svelte":
|
|
@@ -634,8 +633,7 @@ function getBlockProperties({ block, context }) {
|
|
|
634
633
|
function getStyleAttribute(style) {
|
|
635
634
|
switch (TARGET) {
|
|
636
635
|
case "svelte":
|
|
637
|
-
case "
|
|
638
|
-
case "vue3":
|
|
636
|
+
case "vue":
|
|
639
637
|
case "solid":
|
|
640
638
|
return convertStyleMapToCSSArray(style).join(" ");
|
|
641
639
|
case "qwik":
|
|
@@ -3307,7 +3305,7 @@ const getInteractionPropertiesForEvent = (event) => {
|
|
|
3307
3305
|
}
|
|
3308
3306
|
};
|
|
3309
3307
|
};
|
|
3310
|
-
const SDK_VERSION = "0.
|
|
3308
|
+
const SDK_VERSION = "0.11.0";
|
|
3311
3309
|
const registry = {};
|
|
3312
3310
|
function register(type, info) {
|
|
3313
3311
|
let typeList = registry[type];
|
package/lib/node/index.qwik.mjs
CHANGED
|
@@ -589,8 +589,7 @@ function getBlockActions(options) {
|
|
|
589
589
|
let eventHandlerName = getEventHandlerName(key);
|
|
590
590
|
if (options.stripPrefix)
|
|
591
591
|
switch (TARGET) {
|
|
592
|
-
case "
|
|
593
|
-
case "vue3":
|
|
592
|
+
case "vue":
|
|
594
593
|
eventHandlerName = eventHandlerName.replace("v-on:", "");
|
|
595
594
|
break;
|
|
596
595
|
case "svelte":
|
|
@@ -632,8 +631,7 @@ function getBlockProperties({ block, context }) {
|
|
|
632
631
|
function getStyleAttribute(style) {
|
|
633
632
|
switch (TARGET) {
|
|
634
633
|
case "svelte":
|
|
635
|
-
case "
|
|
636
|
-
case "vue3":
|
|
634
|
+
case "vue":
|
|
637
635
|
case "solid":
|
|
638
636
|
return convertStyleMapToCSSArray(style).join(" ");
|
|
639
637
|
case "qwik":
|
|
@@ -3305,7 +3303,7 @@ const getInteractionPropertiesForEvent = (event) => {
|
|
|
3305
3303
|
}
|
|
3306
3304
|
};
|
|
3307
3305
|
};
|
|
3308
|
-
const SDK_VERSION = "0.
|
|
3306
|
+
const SDK_VERSION = "0.11.0";
|
|
3309
3307
|
const registry = {};
|
|
3310
3308
|
function register(type, info) {
|
|
3311
3309
|
let typeList = registry[type];
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "0.
|
|
1
|
+
export declare const SDK_VERSION = "0.11.0";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type Target = '
|
|
1
|
+
export type Target = 'vue' | 'reactNative' | 'svelte' | 'qwik' | 'react' | 'solid' | 'rsc';
|