lightning-base-components 1.16.2-alpha → 1.16.3-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
|
@@ -3389,6 +3389,20 @@
|
|
|
3389
3389
|
}
|
|
3390
3390
|
]
|
|
3391
3391
|
},
|
|
3392
|
+
"toast": {
|
|
3393
|
+
"slotNames": [
|
|
3394
|
+
"",
|
|
3395
|
+
"message"
|
|
3396
|
+
],
|
|
3397
|
+
"properties": [
|
|
3398
|
+
{
|
|
3399
|
+
"name": "mode"
|
|
3400
|
+
},
|
|
3401
|
+
{
|
|
3402
|
+
"name": "variant"
|
|
3403
|
+
}
|
|
3404
|
+
]
|
|
3405
|
+
},
|
|
3392
3406
|
"tree": {
|
|
3393
3407
|
"minVersion": "41.0",
|
|
3394
3408
|
"slotNames": [],
|
package/package.json
CHANGED
|
@@ -1,2 +1,11 @@
|
|
|
1
1
|
@import 'lightning/sldsCommon';
|
|
2
2
|
@import './color-picker-panel.slds.css';
|
|
3
|
+
|
|
4
|
+
/* Fix for footer button centering issue, for details see: W-11543875
|
|
5
|
+
*
|
|
6
|
+
* :host:not([data-render-mode]) - specifies that this style will only be applied in synthetic shadow mode
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
:host:not([data-render-mode]) .fix-slds-color-picker__selector-footer > lightning-button {
|
|
10
|
+
flex: 1;
|
|
11
|
+
}
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
</div> -->
|
|
31
31
|
</div>
|
|
32
32
|
<footer class="slds-popover__footer">
|
|
33
|
-
<div class="slds-color-picker__selector-footer">
|
|
33
|
+
<div class="slds-color-picker__selector-footer fix-slds-color-picker__selector-footer">
|
|
34
34
|
<lightning-button label={i18n.cancelButton} name="cancel" stretch onclick={handleCancelClick}></lightning-button>
|
|
35
|
-
<lightning-button variant="brand" label={i18n.doneButton} name="done" stretch onclick={handleDoneClick}></lightning-button>
|
|
35
|
+
<lightning-button class="slds-m-left_x-small" variant="brand" label={i18n.doneButton} name="done" stretch onclick={handleDoneClick}></lightning-button>
|
|
36
36
|
</div>
|
|
37
37
|
</footer>
|
|
38
38
|
</section>
|
|
@@ -1448,7 +1448,7 @@ export default class LightningInput extends LightningElement {
|
|
|
1448
1448
|
// This will not affect the value dispatched by input via the change event, as it only dispatches a valid decimal number.
|
|
1449
1449
|
// Due to the above, in integrations like input-field, the user's initial input of a symbol
|
|
1450
1450
|
// like a minus sign will not be overwritten by an empty string value.
|
|
1451
|
-
// See description in PR for more details: https://github.com/salesforce/lightning-components/pull/3843
|
|
1451
|
+
// See description in PR for more details: https://github.com/salesforce-experience-platform/lightning-components/pull/3843
|
|
1452
1452
|
if (
|
|
1453
1453
|
this._inputElement.value.length === 1 &&
|
|
1454
1454
|
hasValidNumberSymbol(this._inputElement.value)
|