@dcl/playground-assets 7.5.1-9235895775.commit-075ab65 → 7.5.1-9257780246.commit-0bf8464

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
@@ -5377,6 +5377,8 @@ export declare interface PBUiText {
5377
5377
  outlineWidth?: number | undefined;
5378
5378
  /** RGBA color of the outline (default: opaque black) */
5379
5379
  outlineColor?: PBColor4 | undefined;
5380
+ /** wrap text when the border is reached (default false) */
5381
+ textWrapping?: boolean | undefined;
5380
5382
  }
5381
5383
 
5382
5384
  /**
@@ -7263,6 +7265,12 @@ export declare interface UiLabelProps {
7263
7265
  textAlign?: TextAlignType | undefined;
7264
7266
  /** Label font type. @defaultValue 'sans-serif' */
7265
7267
  font?: UiFontType | undefined;
7268
+ /** Outline width of the text. @defaultValue 0 */
7269
+ outlineWidth?: number | undefined;
7270
+ /** Outline color of the text. @defaultValue `{ r: 0, g: 0, b: 0, a: 1 }` */
7271
+ outlineColor?: PBColor4 | undefined;
7272
+ /** Text wrapping. @defaultValue false */
7273
+ textWrapping?: boolean | undefined;
7266
7274
  }
7267
7275
 
7268
7276
  /**
@@ -7337,6 +7345,8 @@ export declare interface UiTransformProps {
7337
7345
  overflow?: OverflowType;
7338
7346
  /** 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) **/
7339
7347
  pointerFilter?: PointerFilterType;
7348
+ /** The opacity property sets the opacity level for an element, it's accumulated across children @defaultValue 1 */
7349
+ opacity?: number;
7340
7350
  }
7341
7351
 
7342
7352
  /**
package/dist/beta.d.ts CHANGED
@@ -5349,6 +5349,8 @@ export declare interface PBUiText {
5349
5349
  outlineWidth?: number | undefined;
5350
5350
  /** RGBA color of the outline (default: opaque black) */
5351
5351
  outlineColor?: PBColor4 | undefined;
5352
+ /** wrap text when the border is reached (default false) */
5353
+ textWrapping?: boolean | undefined;
5352
5354
  }
5353
5355
 
5354
5356
  /**
@@ -7230,6 +7232,12 @@ export declare interface UiLabelProps {
7230
7232
  textAlign?: TextAlignType | undefined;
7231
7233
  /** Label font type. @defaultValue 'sans-serif' */
7232
7234
  font?: UiFontType | undefined;
7235
+ /** Outline width of the text. @defaultValue 0 */
7236
+ outlineWidth?: number | undefined;
7237
+ /** Outline color of the text. @defaultValue `{ r: 0, g: 0, b: 0, a: 1 }` */
7238
+ outlineColor?: PBColor4 | undefined;
7239
+ /** Text wrapping. @defaultValue false */
7240
+ textWrapping?: boolean | undefined;
7233
7241
  }
7234
7242
 
7235
7243
  /**
@@ -7304,6 +7312,8 @@ export declare interface UiTransformProps {
7304
7312
  overflow?: OverflowType;
7305
7313
  /** 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) **/
7306
7314
  pointerFilter?: PointerFilterType;
7315
+ /** The opacity property sets the opacity level for an element, it's accumulated across children @defaultValue 1 */
7316
+ opacity?: number;
7307
7317
  }
7308
7318
 
7309
7319
  /**
@@ -5349,6 +5349,8 @@ export declare interface PBUiText {
5349
5349
  outlineWidth?: number | undefined;
5350
5350
  /** RGBA color of the outline (default: opaque black) */
5351
5351
  outlineColor?: PBColor4 | undefined;
5352
+ /** wrap text when the border is reached (default false) */
5353
+ textWrapping?: boolean | undefined;
5352
5354
  }
5353
5355
 
5354
5356
  /**
@@ -7230,6 +7232,12 @@ export declare interface UiLabelProps {
7230
7232
  textAlign?: TextAlignType | undefined;
7231
7233
  /** Label font type. @defaultValue 'sans-serif' */
7232
7234
  font?: UiFontType | undefined;
7235
+ /** Outline width of the text. @defaultValue 0 */
7236
+ outlineWidth?: number | undefined;
7237
+ /** Outline color of the text. @defaultValue `{ r: 0, g: 0, b: 0, a: 1 }` */
7238
+ outlineColor?: PBColor4 | undefined;
7239
+ /** Text wrapping. @defaultValue false */
7240
+ textWrapping?: boolean | undefined;
7233
7241
  }
7234
7242
 
7235
7243
  /**
@@ -7304,6 +7312,8 @@ export declare interface UiTransformProps {
7304
7312
  overflow?: OverflowType;
7305
7313
  /** 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) **/
7306
7314
  pointerFilter?: PointerFilterType;
7315
+ /** The opacity property sets the opacity level for an element, it's accumulated across children @defaultValue 1 */
7316
+ opacity?: number;
7307
7317
  }
7308
7318
 
7309
7319
  /**