@hcore/core-ui-test 1.1.2 → 1.1.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/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@hcore/core-ui-test",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "@core-ui 테스트",
5
5
  "main": "src/index.js",
6
- "types": "index.d.ts",
6
+ "types": "src/index.d.ts",
7
7
  "scripts": {
8
8
  "test": "echo \"Error: no test specified\" && exit 1"
9
9
  },
package/src/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export { HInputText, HInputSelect } from 'components/HInput';
package/src/index.js CHANGED
@@ -1,12 +1,3 @@
1
- import { HInputText, HInputSelect } from './components/HInput';
2
- // import { HGrid } from './components/HGrid';
1
+ import { HInputText, HInputSelect } from 'components/HInput';
3
2
 
4
- const hcore = {
5
- HInput: {
6
- HInputText,
7
- HInputSelect,
8
- },
9
- // HGrid,
10
- };
11
-
12
- export default hcore;
3
+ export { HInputText, HInputSelect };
package/index.d.ts DELETED
@@ -1,12 +0,0 @@
1
- import { HInputText, HInputSelect } from 'components/HInput';
2
- // import { HGrid } from 'components/HGrid';
3
-
4
- declare const hcore: {
5
- HInput: {
6
- HInputText: typeof HInputText;
7
- HInputSelect: typeof HInputSelect;
8
- };
9
- // HGrid: typeof HGrid;
10
- };
11
-
12
- export default hcore;