@rtsdk/topia 0.12.4 → 0.12.5
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.cjs +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -42450,7 +42450,7 @@ class DroppedAssetFactory extends SDKController {
|
|
|
42450
42450
|
});
|
|
42451
42451
|
* ```
|
|
42452
42452
|
*/
|
|
42453
|
-
drop(asset, { assetScale = 1, clickType, clickableDisplayTextDescription, clickableDisplayTextHeadline, clickableLink, clickableLinkTitle, flipped, interactivePublicKey, isInteractive, isForceLinkInIframe, isOpenLinkInDrawer, layer0 = "", layer1 = "", position: { x, y }, sceneDropId, text, textColor, textSize, textWeight, textWidth, uniqueName, urlSlug, yOrderAdjust, }) {
|
|
42453
|
+
drop(asset, { assetScale = 1, clickType, clickableDisplayTextDescription, clickableDisplayTextHeadline, clickableLink, clickableLinkTitle, flipped, interactivePublicKey, isInteractive, isForceLinkInIframe, isOpenLinkInDrawer, isTextTopLayer = false, layer0 = "", layer1 = "", position: { x, y }, sceneDropId, text, textColor, textSize, textWeight, textWidth, uniqueName, urlSlug, yOrderAdjust, }) {
|
|
42454
42454
|
return __awaiter(this, void 0, void 0, function* () {
|
|
42455
42455
|
let specialType = null;
|
|
42456
42456
|
if (layer0 || layer1)
|
|
@@ -42469,6 +42469,7 @@ class DroppedAssetFactory extends SDKController {
|
|
|
42469
42469
|
isInteractive,
|
|
42470
42470
|
isForceLinkInIframe,
|
|
42471
42471
|
isOpenLinkInDrawer,
|
|
42472
|
+
isTextTopLayer,
|
|
42472
42473
|
layer0,
|
|
42473
42474
|
layer1,
|
|
42474
42475
|
sceneDropId,
|
package/dist/index.d.ts
CHANGED
|
@@ -2163,7 +2163,7 @@ declare class DroppedAssetFactory extends SDKController {
|
|
|
2163
2163
|
});
|
|
2164
2164
|
* ```
|
|
2165
2165
|
*/
|
|
2166
|
-
drop(asset: Asset, { assetScale, clickType, clickableDisplayTextDescription, clickableDisplayTextHeadline, clickableLink, clickableLinkTitle, flipped, interactivePublicKey, isInteractive, isForceLinkInIframe, isOpenLinkInDrawer, layer0, layer1, position: { x, y }, sceneDropId, text, textColor, textSize, textWeight, textWidth, uniqueName, urlSlug, yOrderAdjust, }: {
|
|
2166
|
+
drop(asset: Asset, { assetScale, clickType, clickableDisplayTextDescription, clickableDisplayTextHeadline, clickableLink, clickableLinkTitle, flipped, interactivePublicKey, isInteractive, isForceLinkInIframe, isOpenLinkInDrawer, isTextTopLayer, layer0, layer1, position: { x, y }, sceneDropId, text, textColor, textSize, textWeight, textWidth, uniqueName, urlSlug, yOrderAdjust, }: {
|
|
2167
2167
|
assetScale?: number;
|
|
2168
2168
|
flipped?: boolean;
|
|
2169
2169
|
clickType?: string;
|
|
@@ -2175,6 +2175,7 @@ declare class DroppedAssetFactory extends SDKController {
|
|
|
2175
2175
|
isInteractive?: boolean;
|
|
2176
2176
|
isForceLinkInIframe?: boolean;
|
|
2177
2177
|
isOpenLinkInDrawer?: boolean;
|
|
2178
|
+
isTextTopLayer?: boolean;
|
|
2178
2179
|
layer0?: string;
|
|
2179
2180
|
layer1?: string;
|
|
2180
2181
|
position: {
|
package/dist/index.js
CHANGED
|
@@ -42448,7 +42448,7 @@ class DroppedAssetFactory extends SDKController {
|
|
|
42448
42448
|
});
|
|
42449
42449
|
* ```
|
|
42450
42450
|
*/
|
|
42451
|
-
drop(asset, { assetScale = 1, clickType, clickableDisplayTextDescription, clickableDisplayTextHeadline, clickableLink, clickableLinkTitle, flipped, interactivePublicKey, isInteractive, isForceLinkInIframe, isOpenLinkInDrawer, layer0 = "", layer1 = "", position: { x, y }, sceneDropId, text, textColor, textSize, textWeight, textWidth, uniqueName, urlSlug, yOrderAdjust, }) {
|
|
42451
|
+
drop(asset, { assetScale = 1, clickType, clickableDisplayTextDescription, clickableDisplayTextHeadline, clickableLink, clickableLinkTitle, flipped, interactivePublicKey, isInteractive, isForceLinkInIframe, isOpenLinkInDrawer, isTextTopLayer = false, layer0 = "", layer1 = "", position: { x, y }, sceneDropId, text, textColor, textSize, textWeight, textWidth, uniqueName, urlSlug, yOrderAdjust, }) {
|
|
42452
42452
|
return __awaiter(this, void 0, void 0, function* () {
|
|
42453
42453
|
let specialType = null;
|
|
42454
42454
|
if (layer0 || layer1)
|
|
@@ -42467,6 +42467,7 @@ class DroppedAssetFactory extends SDKController {
|
|
|
42467
42467
|
isInteractive,
|
|
42468
42468
|
isForceLinkInIframe,
|
|
42469
42469
|
isOpenLinkInDrawer,
|
|
42470
|
+
isTextTopLayer,
|
|
42470
42471
|
layer0,
|
|
42471
42472
|
layer1,
|
|
42472
42473
|
sceneDropId,
|
package/package.json
CHANGED