@hcore/core-ui-test 1.0.5 → 1.0.7

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,8 +1,8 @@
1
1
  {
2
2
  "name": "@hcore/core-ui-test",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "@core-ui 테스트",
5
- "main": "src/index.js",
5
+ "main": "index.js",
6
6
  "types": "index.d.ts",
7
7
  "scripts": {
8
8
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -8,7 +8,7 @@ export const HInputSelect: (props: ISelectUi) => {
8
8
  name: string;
9
9
  }
10
10
 
11
- type ITextUi = {
11
+ export type ITextUi = {
12
12
  type?: string;
13
13
  name: string;
14
14
  value?: string;
@@ -26,7 +26,7 @@ type ITextUi = {
26
26
  style?: string;
27
27
  };
28
28
 
29
- type ISelectUi = {
29
+ export type ISelectUi = {
30
30
  type?: string
31
31
  name?: string
32
32
  value?: string