@hcore/core-ui-test 1.0.4 → 1.0.6

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.
@@ -1,5 +1,5 @@
1
- import { HInputText, HInputSelect } from './HInput';
2
- import { HGrid } from './HGrid';
1
+ import { HInputText, HInputSelect } from './src/components/HInput';
2
+ import { HGrid } from './src/components/HGrid';
3
3
 
4
4
  declare const hcore: {
5
5
  HInput: {
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@hcore/core-ui-test",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "@core-ui 테스트",
5
5
  "main": "src/index.js",
6
- "types": "src/component/index.d.ts",
6
+ "types": "index.d.ts",
7
7
  "scripts": {
8
8
  "test": "echo \"Error: no test specified\" && exit 1"
9
9
  },
@@ -8,23 +8,42 @@ 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;
15
15
  width?: string;
16
16
  label?: string;
17
-
17
+ labelWidth?: string;
18
+ required?: boolean;
19
+ readOnly?: boolean;
20
+ disabled?: boolean;
21
+ event?: {
22
+ change?: string;
23
+ };
24
+ placeholder?: string;
25
+ class?: string;
26
+ style?: string;
18
27
  };
19
28
 
20
- type ISelectUi = {
29
+ export type ISelectUi = {
21
30
  type?: string
22
31
  name?: string
23
32
  value?: string
24
33
  width?: string
25
34
  label?: string
26
35
  labelWidth?: string
27
-
36
+ required?: boolean
37
+ readOnly?: boolean
38
+ disabled?: boolean
39
+ event?: {
40
+ change?: string
41
+ }
42
+ textField?: string
43
+ valueField?: string
44
+ data?: Array<any>
45
+ // api?: htype.IHttpAPI
46
+ codeKey?: string
47
+ class?: string
48
+ style?: string
28
49
  }
29
-
30
-
File without changes