@dcl/playground-assets 7.3.26-6646745289.commit-df58413 → 7.3.26-6711239716.commit-d90c0f5

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.
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@dcl/sdk",
3
3
  "description": "",
4
- "version": "7.3.26-6646745289.commit-df58413",
4
+ "version": "7.3.26-6711239716.commit-d90c0f5",
5
5
  "author": "Decentraland",
6
6
  "dependencies": {
7
7
  "@dcl/ecs": "file:../ecs",
8
8
  "@dcl/ecs-math": "2.0.2",
9
- "@dcl/explorer": "1.0.153369-20231025014019.commit-25e900f",
9
+ "@dcl/explorer": "1.0.154619-20231031152541.commit-0e8dfe1",
10
10
  "@dcl/js-runtime": "file:../js-runtime",
11
11
  "@dcl/react-ecs": "file:../react-ecs",
12
12
  "@dcl/sdk-commands": "file:../sdk-commands",
@@ -35,5 +35,5 @@
35
35
  },
36
36
  "types": "./index.d.ts",
37
37
  "typings": "./index.d.ts",
38
- "commit": "df58413df5c66b3dbd056d6acf1d6bb7b95143f1"
38
+ "commit": "d90c0f5a871ce097be9efecd6a72387a0894e4a8"
39
39
  }
@@ -6664,10 +6664,10 @@ export declare interface UiTransformProps {
6664
6664
  padding?: Partial<Position> | PositionShorthand;
6665
6665
  /** The margin shorthand property sets the margin area on all four sides of an element. */
6666
6666
  margin?: Partial<Position> | PositionShorthand;
6667
- /** The width property specifies the width of an element. */
6668
- width?: PositionUnit;
6669
- /** The height property specifies the height of an element. */
6670
- height?: PositionUnit;
6667
+ /** The width property specifies the width of an element. Using 'auto' as value makes it adapt to its content. */
6668
+ width?: PositionUnit | 'auto';
6669
+ /** The height property specifies the height of an element. Using 'auto' as value makes it adapt to its content. */
6670
+ height?: PositionUnit | 'auto';
6671
6671
  /** The min-width property sets the minimum width of an element. */
6672
6672
  minWidth?: PositionUnit;
6673
6673
  /** The max-width property sets the maximum width of an element. */
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.38.0"
8
+ "packageVersion": "7.38.1"
9
9
  }
10
10
  ]
11
11
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "metadata": {
3
3
  "toolPackage": "@microsoft/api-extractor",
4
- "toolVersion": "7.38.0",
4
+ "toolVersion": "7.38.1",
5
5
  "schemaVersion": 1011,
6
6
  "oldestForwardsCompatibleVersion": 1001,
7
7
  "tsdocConfig": {
@@ -64822,7 +64822,7 @@
64822
64822
  {
64823
64823
  "kind": "PropertySignature",
64824
64824
  "canonicalReference": "@dcl/playground-assets!UiTransformProps#height:member",
64825
- "docComment": "/**\n * The height property specifies the height of an element.\n */\n",
64825
+ "docComment": "/**\n * The height property specifies the height of an element. Using 'auto' as value makes it adapt to its content.\n */\n",
64826
64826
  "excerptTokens": [
64827
64827
  {
64828
64828
  "kind": "Content",
@@ -64833,6 +64833,10 @@
64833
64833
  "text": "PositionUnit",
64834
64834
  "canonicalReference": "@dcl/playground-assets!PositionUnit:type"
64835
64835
  },
64836
+ {
64837
+ "kind": "Content",
64838
+ "text": " | 'auto'"
64839
+ },
64836
64840
  {
64837
64841
  "kind": "Content",
64838
64842
  "text": ";"
@@ -64844,7 +64848,7 @@
64844
64848
  "name": "height",
64845
64849
  "propertyTypeTokenRange": {
64846
64850
  "startIndex": 1,
64847
- "endIndex": 2
64851
+ "endIndex": 3
64848
64852
  }
64849
64853
  },
64850
64854
  {
@@ -65212,7 +65216,7 @@
65212
65216
  {
65213
65217
  "kind": "PropertySignature",
65214
65218
  "canonicalReference": "@dcl/playground-assets!UiTransformProps#width:member",
65215
- "docComment": "/**\n * The width property specifies the width of an element.\n */\n",
65219
+ "docComment": "/**\n * The width property specifies the width of an element. Using 'auto' as value makes it adapt to its content.\n */\n",
65216
65220
  "excerptTokens": [
65217
65221
  {
65218
65222
  "kind": "Content",
@@ -65223,6 +65227,10 @@
65223
65227
  "text": "PositionUnit",
65224
65228
  "canonicalReference": "@dcl/playground-assets!PositionUnit:type"
65225
65229
  },
65230
+ {
65231
+ "kind": "Content",
65232
+ "text": " | 'auto'"
65233
+ },
65226
65234
  {
65227
65235
  "kind": "Content",
65228
65236
  "text": ";"
@@ -65234,7 +65242,7 @@
65234
65242
  "name": "width",
65235
65243
  "propertyTypeTokenRange": {
65236
65244
  "startIndex": 1,
65237
- "endIndex": 2
65245
+ "endIndex": 3
65238
65246
  }
65239
65247
  }
65240
65248
  ],
@@ -3944,7 +3944,7 @@ export interface UiTransformProps {
3944
3944
  flexGrow?: number;
3945
3945
  flexShrink?: number;
3946
3946
  flexWrap?: FlexWrapType;
3947
- height?: PositionUnit;
3947
+ height?: PositionUnit | 'auto';
3948
3948
  justifyContent?: JustifyType;
3949
3949
  margin?: Partial<Position> | PositionShorthand;
3950
3950
  maxHeight?: PositionUnit;
@@ -3956,7 +3956,7 @@ export interface UiTransformProps {
3956
3956
  pointerFilter?: PointerFilterType;
3957
3957
  position?: Partial<Position> | PositionShorthand;
3958
3958
  positionType?: PositionType;
3959
- width?: PositionUnit;
3959
+ width?: PositionUnit | 'auto';
3960
3960
  }
3961
3961
 
3962
3962
  // @public (undocumented)
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@dcl/playground-assets",
3
3
  "description": "",
4
- "version": "7.3.26-6646745289.commit-df58413",
4
+ "version": "7.3.26-6711239716.commit-d90c0f5",
5
5
  "author": "Decentraland",
6
6
  "dependencies": {
7
- "@dcl/js-runtime": "7.3.26-6646745289.commit-df58413",
8
- "@dcl/sdk": "7.3.26-6646745289.commit-df58413"
7
+ "@dcl/js-runtime": "7.3.26-6711239716.commit-d90c0f5",
8
+ "@dcl/sdk": "7.3.26-6711239716.commit-d90c0f5"
9
9
  },
10
10
  "devDependencies": {
11
11
  "@microsoft/api-extractor": "^7.33.8"
@@ -32,5 +32,5 @@
32
32
  },
33
33
  "types": "./dist/index.d.ts",
34
34
  "typings": "./dist/index.d.ts",
35
- "commit": "df58413df5c66b3dbd056d6acf1d6bb7b95143f1"
35
+ "commit": "d90c0f5a871ce097be9efecd6a72387a0894e4a8"
36
36
  }