@hcore/core-ui-test 1.1.3 → 1.1.4

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": "@hcore/core-ui-test",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "@core-ui 테스트",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -1,21 +1,13 @@
1
- const HInput=()=>{
2
1
 
3
- const HInputText=(param)=>{
2
+ export const HInputText=(param)=>{
4
3
  return {
5
4
  type: param.type,
6
5
  name: param.name
7
6
  };
8
7
  }
9
- const HInputSelect=(param)=>{
10
- return {
11
- type: param.type,
12
- name: param.name
13
- };
14
- }
8
+ export const HInputSelect=(param)=>{
15
9
  return {
16
- HInputText,
17
- HInputSelect
18
- }
10
+ type: param.type,
11
+ name: param.name
12
+ };
19
13
  }
20
-
21
- export { HInput };
package/src/index.js CHANGED
@@ -1,3 +1,3 @@
1
- import { HInputText, HInputSelect } from 'components/HInput';
1
+ import { HInputText, HInput } from 'components/HInput';
2
2
 
3
3
  export { HInputText, HInputSelect };