bc-stubs 131.0.0-Beta.2 → 131.0.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.
|
@@ -222,6 +222,17 @@ declare namespace ElementButton {
|
|
|
222
222
|
/** The {@link HTMLButtonElement.ariaHasPopup} of the button */
|
|
223
223
|
ariaHasPopup?: boolean | "true" | "false" | "menu" | "listbox" | "tree" | "grid" | "dialog";
|
|
224
224
|
}
|
|
225
|
+
|
|
226
|
+
interface AssetOptions extends Options {
|
|
227
|
+
/**
|
|
228
|
+
* Whether the crafted item is currently worn.
|
|
229
|
+
*
|
|
230
|
+
* Used for determining whether the presence of a lock will be inferred from `Item.Property` ("worn") or `Item.Craft` ("not worn").
|
|
231
|
+
* @default true
|
|
232
|
+
* @deprecated To-be removed for R132
|
|
233
|
+
*/
|
|
234
|
+
_craftIsWorn?: boolean;
|
|
235
|
+
}
|
|
225
236
|
}
|
|
226
237
|
|
|
227
238
|
declare namespace ElementCheckbox {
|
|
@@ -3521,10 +3532,16 @@ interface ItemPropertiesCustom {
|
|
|
3521
3532
|
/** PortalLink: Used to link a remote to its target asset. */
|
|
3522
3533
|
PortalLinkCode?: string;
|
|
3523
3534
|
|
|
3524
|
-
/**
|
|
3535
|
+
/**
|
|
3536
|
+
* Override the top-position of a layer. A value of {@link AssetOverride} will be override the _relative_ position of each and every layer individually.
|
|
3537
|
+
* @deprecated Superseded by {@link ItemProperties.TranslationY} and {@link ItemProperties.LayerTranslationY}
|
|
3538
|
+
*/
|
|
3525
3539
|
DrawingTop?: TopLeft.ItemData;
|
|
3526
3540
|
|
|
3527
|
-
/**
|
|
3541
|
+
/**
|
|
3542
|
+
* Override the left-position of a layer. A value of {@link AssetOverride} will be override the _relative_ position of each and every layer individually.
|
|
3543
|
+
* @deprecated Superseded by {@link ItemProperties.TranslationX} and {@link ItemProperties.LayerTranslationX}
|
|
3544
|
+
*/
|
|
3528
3545
|
DrawingLeft?: TopLeft.ItemData;
|
|
3529
3546
|
|
|
3530
3547
|
// #region Techno Chastity Cage settings */
|