lightning-base-components 1.19.9-alpha → 1.19.10-alpha
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/metadata/raptor.json
CHANGED
|
@@ -920,6 +920,7 @@
|
|
|
920
920
|
}
|
|
921
921
|
]
|
|
922
922
|
},
|
|
923
|
+
"einsteinAiGatewayApi": {},
|
|
923
924
|
"einsteinllmApi": {},
|
|
924
925
|
"empApi": {
|
|
925
926
|
"minVersion": "44.0"
|
|
@@ -1647,6 +1648,9 @@
|
|
|
1647
1648
|
"industriesDocgenApi": {},
|
|
1648
1649
|
"industriesDocumentmatrixApi": {},
|
|
1649
1650
|
"industriesEducationApi": {},
|
|
1651
|
+
"industriesEducationPublicApi": {
|
|
1652
|
+
"minVersion": "60.0"
|
|
1653
|
+
},
|
|
1650
1654
|
"industriesEinsteinAIAcceleratorApi": {},
|
|
1651
1655
|
"industriesEnergyUtilitiesApi": {},
|
|
1652
1656
|
"industriesEpcApi": {},
|
|
@@ -2575,6 +2579,7 @@
|
|
|
2575
2579
|
}
|
|
2576
2580
|
]
|
|
2577
2581
|
},
|
|
2582
|
+
"marketingAi4mApi": {},
|
|
2578
2583
|
"marketingAssetcreationApi": {},
|
|
2579
2584
|
"marketingCdpApi": {},
|
|
2580
2585
|
"mediaUtils": {
|
|
@@ -4196,6 +4201,9 @@
|
|
|
4196
4201
|
"minVersion": "59.0",
|
|
4197
4202
|
"slotNames": [],
|
|
4198
4203
|
"properties": [
|
|
4204
|
+
{
|
|
4205
|
+
"name": "disabled"
|
|
4206
|
+
},
|
|
4199
4207
|
{
|
|
4200
4208
|
"name": "displayInfo"
|
|
4201
4209
|
},
|
|
@@ -4958,6 +4966,7 @@
|
|
|
4958
4966
|
"unstable_platformAdminSuccessGuidanceApi": {},
|
|
4959
4967
|
"unstable_platformInteractionOrchestratorApi": {},
|
|
4960
4968
|
"unstable_platformScaleCenterApi": {},
|
|
4969
|
+
"unstable_serviceNetworkDataCategoryApi": {},
|
|
4961
4970
|
"unstable_uiActionsApi": {},
|
|
4962
4971
|
"unstable_uiAppsApi": {},
|
|
4963
4972
|
"unstable_uiDuplicatesApi": {},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lightning-base-components",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.10-alpha",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"files": [
|
|
6
6
|
"external",
|
|
@@ -1018,6 +1018,10 @@
|
|
|
1018
1018
|
"name": "@salesforce/label/LightningTabs.errorStateAlternativeText",
|
|
1019
1019
|
"path": "scopedImports/@salesforce-label-LightningTabs.errorStateAlternativeText.js"
|
|
1020
1020
|
},
|
|
1021
|
+
{
|
|
1022
|
+
"name": "@salesforce/label/LightningTabs.defaultTabBarAriaLabel",
|
|
1023
|
+
"path": "scopedImports/@salesforce-label-LightningTabs.defaultTabBarAriaLabel.js"
|
|
1024
|
+
},
|
|
1021
1025
|
{
|
|
1022
1026
|
"name": "@salesforce/label/Duration.secondsLater",
|
|
1023
1027
|
"path": "scopedImports/@salesforce-label-Duration.secondsLater.js"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default 'Tabs';
|
|
@@ -279,11 +279,13 @@ export class AutoWidthStrategy {
|
|
|
279
279
|
.getDataCellWidths()
|
|
280
280
|
.map((width, index) => {
|
|
281
281
|
const columnDefinition = columnDefs[index];
|
|
282
|
-
if (columnDefinition
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
282
|
+
if (columnDefinition) {
|
|
283
|
+
if (columnDefinition.wrapText) {
|
|
284
|
+
return width / widthsMetadata.wrapTextMaxLines;
|
|
285
|
+
}
|
|
286
|
+
if (columnDefinition.fixedWidth) {
|
|
287
|
+
return columnDefinition.fixedWidth;
|
|
288
|
+
}
|
|
287
289
|
}
|
|
288
290
|
return width;
|
|
289
291
|
});
|