@salesforcedevs/dx-components 1.3.159 → 1.3.160
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforcedevs/dx-components",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.160",
|
|
4
4
|
"description": "DX Lightning web components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"eventsourcemock": "^2.0.0",
|
|
42
42
|
"luxon": "^3.1.0"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "cba7e68142d03e2a299dfb8354a50732b20ad77c"
|
|
45
45
|
}
|
|
@@ -3,6 +3,7 @@ import cx from "classnames";
|
|
|
3
3
|
import {
|
|
4
4
|
ButtonTextColor,
|
|
5
5
|
ButtonVariant,
|
|
6
|
+
ButtonSize,
|
|
6
7
|
IconSprite,
|
|
7
8
|
IconSize,
|
|
8
9
|
IconSymbol,
|
|
@@ -17,7 +18,7 @@ export default class Button extends LightningElement {
|
|
|
17
18
|
@api iconSymbol?: IconSymbol;
|
|
18
19
|
@api iconPosition?: "right" | "left" = "right";
|
|
19
20
|
@api loading: boolean = false;
|
|
20
|
-
@api size:
|
|
21
|
+
@api size: ButtonSize = "small";
|
|
21
22
|
@api variant: ButtonVariant = "primary";
|
|
22
23
|
@api inlineTextColor: ButtonTextColor = "dark";
|
|
23
24
|
@api font: "display" | "sans" = "display";
|