@uxf/ui 1.0.0-beta.13 → 1.0.0-beta.16

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.
Files changed (2) hide show
  1. package/input/index.d.ts +1 -0
  2. package/package.json +5 -5
package/input/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import RootInput from "./input";
2
3
  import LeftElement from "./input-left-element";
3
4
  import RightElement from "./input-right-element";
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "@uxf/ui",
3
- "version": "1.0.0-beta.13",
3
+ "version": "1.0.0-beta.16",
4
4
  "description": "",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
8
8
  "scripts": {
9
- "build": "npm run-script clean && npm run-script compile",
10
- "clean": "rm -rf ./dist",
9
+ "build": "yarn compile",
11
10
  "compile": "tsc -P tsconfig.json",
12
11
  "typecheck": "tsc --noEmit --skipLibCheck",
13
- "prepublish": "yarn run build"
12
+ "prepublish": "yarn build"
14
13
  },
15
14
  "author": "",
16
15
  "license": "MIT",
17
16
  "dependencies": {
18
17
  "@uxf/core": "latest"
19
- }
18
+ },
19
+ "stableVersion": "1.0.0-beta.15"
20
20
  }