@hcore/core-ui-test 1.1.0 → 1.1.2

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/README.md CHANGED
@@ -25,3 +25,4 @@ src/
25
25
  - declare : 값을 할당하는 것이 아닌 변수 정의
26
26
 
27
27
 
28
+ #### http://localhost:3000/ui?pcd=uitest
package/index.d.ts CHANGED
@@ -1,12 +1,12 @@
1
- import { HInputText, HInputSelect } from './src/components/HInput';
2
- import { HGrid } from './src/components/HGrid';
1
+ import { HInputText, HInputSelect } from 'components/HInput';
2
+ // import { HGrid } from 'components/HGrid';
3
3
 
4
4
  declare const hcore: {
5
5
  HInput: {
6
6
  HInputText: typeof HInputText;
7
7
  HInputSelect: typeof HInputSelect;
8
8
  };
9
- HGrid: typeof HGrid;
9
+ // HGrid: typeof HGrid;
10
10
  };
11
11
 
12
12
  export default hcore;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hcore/core-ui-test",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "@core-ui 테스트",
5
5
  "main": "src/index.js",
6
6
  "types": "index.d.ts",
@@ -1,4 +1,3 @@
1
- // TEST
2
1
  export type IGrid = {
3
2
  type?: string;
4
3
  name: string;
@@ -1,4 +1,3 @@
1
- // TEST
2
1
  const HGrid=(props)=>{
3
2
  return {
4
3
  rows: props.rows,
@@ -3,13 +3,13 @@ const HInput=()=>{
3
3
  const HInputText=(param)=>{
4
4
  return {
5
5
  type: param.type,
6
- name: props.name
6
+ name: param.name
7
7
  };
8
8
  }
9
9
  const HInputSelect=(param)=>{
10
10
  return {
11
11
  type: param.type,
12
- name: props.name
12
+ name: param.name
13
13
  };
14
14
  }
15
15
  return {
package/src/index.js CHANGED
@@ -1,13 +1,12 @@
1
- // index.js
2
1
  import { HInputText, HInputSelect } from './components/HInput';
3
- import { HGrid } from './components/HGrid';
2
+ // import { HGrid } from './components/HGrid';
4
3
 
5
4
  const hcore = {
6
5
  HInput: {
7
6
  HInputText,
8
7
  HInputSelect,
9
8
  },
10
- HGrid,
9
+ // HGrid,
11
10
  };
12
11
 
13
- export default hcore;
12
+ export default hcore;