@antimatter-audio/antimatter-ui 1.3.2 → 1.3.3
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/index.d.ts +8 -0
- package/dist/index.js +8 -8
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -29,13 +29,21 @@ interface TextButtonProps {
|
|
|
29
29
|
declare const Button: React.FC<React.PropsWithChildren<TextButtonProps>>;
|
|
30
30
|
|
|
31
31
|
declare enum SPACING {
|
|
32
|
+
/** 0px */
|
|
32
33
|
NONE = "",
|
|
34
|
+
/** 2px */
|
|
33
35
|
X_SMALL = "xsmall",
|
|
36
|
+
/** 4px */
|
|
34
37
|
SMALL = "small",
|
|
38
|
+
/** 8px */
|
|
35
39
|
MEDIUM_SMALL = "mediumsmall",
|
|
40
|
+
/** 12px */
|
|
36
41
|
MEDIUM = "medium",
|
|
42
|
+
/** 16px */
|
|
37
43
|
MEDIUM_LARGE = "mediumlarge",
|
|
44
|
+
/** 20px */
|
|
38
45
|
LARGE = "large",
|
|
46
|
+
/** 24px */
|
|
39
47
|
X_LARGE = "xlarge"
|
|
40
48
|
}
|
|
41
49
|
declare enum POSITION {
|
package/dist/index.js
CHANGED
|
@@ -41,14 +41,14 @@ styleInject(css_248z$8);
|
|
|
41
41
|
|
|
42
42
|
var SPACING;
|
|
43
43
|
(function(SPACING) {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
44
|
+
/** 0px */ SPACING["NONE"] = "";
|
|
45
|
+
/** 2px */ SPACING["X_SMALL"] = "xsmall";
|
|
46
|
+
/** 4px */ SPACING["SMALL"] = "small";
|
|
47
|
+
/** 8px */ SPACING["MEDIUM_SMALL"] = "mediumsmall";
|
|
48
|
+
/** 12px */ SPACING["MEDIUM"] = "medium";
|
|
49
|
+
/** 16px */ SPACING["MEDIUM_LARGE"] = "mediumlarge";
|
|
50
|
+
/** 20px */ SPACING["LARGE"] = "large";
|
|
51
|
+
/** 24px */ SPACING["X_LARGE"] = "xlarge";
|
|
52
52
|
})(SPACING || (SPACING = {}));
|
|
53
53
|
var POSITION;
|
|
54
54
|
(function(POSITION) {
|