@hcore/core-ui-test 1.0.3 → 1.0.5

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,8 +1,9 @@
1
1
  {
2
2
  "name": "@hcore/core-ui-test",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "@core-ui 테스트",
5
5
  "main": "src/index.js",
6
+ "types": "index.d.ts",
6
7
  "scripts": {
7
8
  "test": "echo \"Error: no test specified\" && exit 1"
8
9
  },
@@ -14,7 +14,16 @@ type ITextUi = {
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
29
  type ISelectUi = {
@@ -24,7 +33,17 @@ type ISelectUi = {
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