@antimatter-audio/antimatter-ui 1.0.8 → 1.0.9
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 +21 -0
- package/package.json +2 -2
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
declare enum SPACING {
|
|
2
|
+
X_SMALL = "xsmall",
|
|
3
|
+
SMALL = "small",
|
|
4
|
+
MEDIUM_SMALL = "mediumsmall",
|
|
5
|
+
MEDIUM = "medium",
|
|
6
|
+
MEDIUM_LARGE = "mediumlarge",
|
|
7
|
+
LARGE = "large",
|
|
8
|
+
X_LARGE = "xlarge"
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
type Types_SPACING = SPACING;
|
|
12
|
+
declare const Types_SPACING: typeof SPACING;
|
|
13
|
+
declare namespace Types {
|
|
14
|
+
export { Types_SPACING as SPACING };
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
declare global {
|
|
18
|
+
namespace Named.Core {
|
|
19
|
+
export { Types }
|
|
20
|
+
}
|
|
21
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@antimatter-audio/antimatter-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "React UI component library for Antimatter Audio.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"main": "./dist/index.js",
|
|
10
10
|
"type": "module",
|
|
11
|
-
"types": "./dist",
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "rollup -c",
|
|
14
14
|
"start": "rollup -c -w"
|