@dcl/playground-assets 7.7.10-14035313559.commit-093b171 → 7.7.10-14036045753.commit-8d32240

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/alpha.d.ts CHANGED
@@ -318,6 +318,17 @@ export declare const enum BillboardMode {
318
318
  BM_ALL = 7
319
319
  }
320
320
 
321
+ /**
322
+ * Type used for defining the border radius of the element
323
+ * @public
324
+ */
325
+ export declare interface BorderRadius {
326
+ topLeft: PositionUnit;
327
+ topRight: PositionUnit;
328
+ bottomLeft: PositionUnit;
329
+ bottomRight: PositionUnit;
330
+ }
331
+
321
332
  /** Defines indents from respective edges */
322
333
  /**
323
334
  * @public
@@ -5536,6 +5547,35 @@ export declare interface PBUiTransform {
5536
5547
  paddingBottom: number;
5537
5548
  /** default: PointerFilterMode.PFM_NONE */
5538
5549
  pointerFilter?: PointerFilterMode | undefined;
5550
+ /** Border Width */
5551
+ borderLeftWidthUnit?: YGUnit | undefined;
5552
+ borderLeftWidth?: number | undefined;
5553
+ /** YGUnit.YGU_UNDEFINED */
5554
+ borderTopWidthUnit?: YGUnit | undefined;
5555
+ borderTopWidth?: number | undefined;
5556
+ /** YGUnit.YGU_UNDEFINED */
5557
+ borderRightWidthUnit?: YGUnit | undefined;
5558
+ borderRightWidth?: number | undefined;
5559
+ /** YGUnit.YGU_UNDEFINED */
5560
+ borderBottomWidthUnit?: YGUnit | undefined;
5561
+ borderBottomWidth?: number | undefined;
5562
+ /** Border Radius */
5563
+ borderTopLeftRadiusUnit?: YGUnit | undefined;
5564
+ borderTopLeftRadius?: number | undefined;
5565
+ /** YGUnit.YGU_UNDEFINED */
5566
+ borderTopRightRadiusUnit?: YGUnit | undefined;
5567
+ borderTopRightRadius?: number | undefined;
5568
+ /** YGUnit.YGU_UNDEFINED */
5569
+ borderBottomLeftRadiusUnit?: YGUnit | undefined;
5570
+ borderBottomLeftRadius?: number | undefined;
5571
+ /** YGUnit.YGU_UNDEFINED */
5572
+ borderBottomRightRadiusUnit?: YGUnit | undefined;
5573
+ borderBottomRightRadius?: number | undefined;
5574
+ /** Border Color */
5575
+ borderTopColor?: PBColor4 | undefined;
5576
+ borderBottomColor?: PBColor4 | undefined;
5577
+ borderLeftColor?: PBColor4 | undefined;
5578
+ borderRightColor?: PBColor4 | undefined;
5539
5579
  }
5540
5580
 
5541
5581
  /**
@@ -7506,6 +7546,9 @@ export declare interface UiTransformProps {
7506
7546
  overflow?: OverflowType;
7507
7547
  /** The pointer filter property determines if the ui element blocks the pointer or not (elements with pointer events always block the pointer regardless of this property) **/
7508
7548
  pointerFilter?: PointerFilterType;
7549
+ borderColor?: Record<keyof Partial<Position>, PBColor4> | PBColor4 | undefined;
7550
+ borderRadius?: Partial<BorderRadius> | PositionUnit;
7551
+ borderWidth?: Partial<Position> | PositionUnit;
7509
7552
  }
7510
7553
 
7511
7554
  /**
package/dist/beta.d.ts CHANGED
@@ -318,6 +318,17 @@ export declare const enum BillboardMode {
318
318
  BM_ALL = 7
319
319
  }
320
320
 
321
+ /**
322
+ * Type used for defining the border radius of the element
323
+ * @public
324
+ */
325
+ export declare interface BorderRadius {
326
+ topLeft: PositionUnit;
327
+ topRight: PositionUnit;
328
+ bottomLeft: PositionUnit;
329
+ bottomRight: PositionUnit;
330
+ }
331
+
321
332
  /** Defines indents from respective edges */
322
333
  /**
323
334
  * @public
@@ -5508,6 +5519,35 @@ export declare interface PBUiTransform {
5508
5519
  paddingBottom: number;
5509
5520
  /** default: PointerFilterMode.PFM_NONE */
5510
5521
  pointerFilter?: PointerFilterMode | undefined;
5522
+ /** Border Width */
5523
+ borderLeftWidthUnit?: YGUnit | undefined;
5524
+ borderLeftWidth?: number | undefined;
5525
+ /** YGUnit.YGU_UNDEFINED */
5526
+ borderTopWidthUnit?: YGUnit | undefined;
5527
+ borderTopWidth?: number | undefined;
5528
+ /** YGUnit.YGU_UNDEFINED */
5529
+ borderRightWidthUnit?: YGUnit | undefined;
5530
+ borderRightWidth?: number | undefined;
5531
+ /** YGUnit.YGU_UNDEFINED */
5532
+ borderBottomWidthUnit?: YGUnit | undefined;
5533
+ borderBottomWidth?: number | undefined;
5534
+ /** Border Radius */
5535
+ borderTopLeftRadiusUnit?: YGUnit | undefined;
5536
+ borderTopLeftRadius?: number | undefined;
5537
+ /** YGUnit.YGU_UNDEFINED */
5538
+ borderTopRightRadiusUnit?: YGUnit | undefined;
5539
+ borderTopRightRadius?: number | undefined;
5540
+ /** YGUnit.YGU_UNDEFINED */
5541
+ borderBottomLeftRadiusUnit?: YGUnit | undefined;
5542
+ borderBottomLeftRadius?: number | undefined;
5543
+ /** YGUnit.YGU_UNDEFINED */
5544
+ borderBottomRightRadiusUnit?: YGUnit | undefined;
5545
+ borderBottomRightRadius?: number | undefined;
5546
+ /** Border Color */
5547
+ borderTopColor?: PBColor4 | undefined;
5548
+ borderBottomColor?: PBColor4 | undefined;
5549
+ borderLeftColor?: PBColor4 | undefined;
5550
+ borderRightColor?: PBColor4 | undefined;
5511
5551
  }
5512
5552
 
5513
5553
  /**
@@ -7473,6 +7513,9 @@ export declare interface UiTransformProps {
7473
7513
  overflow?: OverflowType;
7474
7514
  /** The pointer filter property determines if the ui element blocks the pointer or not (elements with pointer events always block the pointer regardless of this property) **/
7475
7515
  pointerFilter?: PointerFilterType;
7516
+ borderColor?: Record<keyof Partial<Position>, PBColor4> | PBColor4 | undefined;
7517
+ borderRadius?: Partial<BorderRadius> | PositionUnit;
7518
+ borderWidth?: Partial<Position> | PositionUnit;
7476
7519
  }
7477
7520
 
7478
7521
  /**
@@ -318,6 +318,17 @@ export declare const enum BillboardMode {
318
318
  BM_ALL = 7
319
319
  }
320
320
 
321
+ /**
322
+ * Type used for defining the border radius of the element
323
+ * @public
324
+ */
325
+ export declare interface BorderRadius {
326
+ topLeft: PositionUnit;
327
+ topRight: PositionUnit;
328
+ bottomLeft: PositionUnit;
329
+ bottomRight: PositionUnit;
330
+ }
331
+
321
332
  /** Defines indents from respective edges */
322
333
  /**
323
334
  * @public
@@ -5508,6 +5519,35 @@ export declare interface PBUiTransform {
5508
5519
  paddingBottom: number;
5509
5520
  /** default: PointerFilterMode.PFM_NONE */
5510
5521
  pointerFilter?: PointerFilterMode | undefined;
5522
+ /** Border Width */
5523
+ borderLeftWidthUnit?: YGUnit | undefined;
5524
+ borderLeftWidth?: number | undefined;
5525
+ /** YGUnit.YGU_UNDEFINED */
5526
+ borderTopWidthUnit?: YGUnit | undefined;
5527
+ borderTopWidth?: number | undefined;
5528
+ /** YGUnit.YGU_UNDEFINED */
5529
+ borderRightWidthUnit?: YGUnit | undefined;
5530
+ borderRightWidth?: number | undefined;
5531
+ /** YGUnit.YGU_UNDEFINED */
5532
+ borderBottomWidthUnit?: YGUnit | undefined;
5533
+ borderBottomWidth?: number | undefined;
5534
+ /** Border Radius */
5535
+ borderTopLeftRadiusUnit?: YGUnit | undefined;
5536
+ borderTopLeftRadius?: number | undefined;
5537
+ /** YGUnit.YGU_UNDEFINED */
5538
+ borderTopRightRadiusUnit?: YGUnit | undefined;
5539
+ borderTopRightRadius?: number | undefined;
5540
+ /** YGUnit.YGU_UNDEFINED */
5541
+ borderBottomLeftRadiusUnit?: YGUnit | undefined;
5542
+ borderBottomLeftRadius?: number | undefined;
5543
+ /** YGUnit.YGU_UNDEFINED */
5544
+ borderBottomRightRadiusUnit?: YGUnit | undefined;
5545
+ borderBottomRightRadius?: number | undefined;
5546
+ /** Border Color */
5547
+ borderTopColor?: PBColor4 | undefined;
5548
+ borderBottomColor?: PBColor4 | undefined;
5549
+ borderLeftColor?: PBColor4 | undefined;
5550
+ borderRightColor?: PBColor4 | undefined;
5511
5551
  }
5512
5552
 
5513
5553
  /**
@@ -7473,6 +7513,9 @@ export declare interface UiTransformProps {
7473
7513
  overflow?: OverflowType;
7474
7514
  /** The pointer filter property determines if the ui element blocks the pointer or not (elements with pointer events always block the pointer regardless of this property) **/
7475
7515
  pointerFilter?: PointerFilterType;
7516
+ borderColor?: Record<keyof Partial<Position>, PBColor4> | PBColor4 | undefined;
7517
+ borderRadius?: Partial<BorderRadius> | PositionUnit;
7518
+ borderWidth?: Partial<Position> | PositionUnit;
7476
7519
  }
7477
7520
 
7478
7521
  /**