@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 +1 -0
- package/index.d.ts +3 -3
- package/package.json +1 -1
- package/src/components/HGrid/index.d.ts +0 -1
- package/src/components/HGrid/index.js +0 -1
- package/src/components/HInput/index.js +2 -2
- package/src/index.js +3 -4
package/README.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { HInputText, HInputSelect } from '
|
|
2
|
-
import { HGrid } from '
|
|
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
|
@@ -3,13 +3,13 @@ const HInput=()=>{
|
|
|
3
3
|
const HInputText=(param)=>{
|
|
4
4
|
return {
|
|
5
5
|
type: param.type,
|
|
6
|
-
name:
|
|
6
|
+
name: param.name
|
|
7
7
|
};
|
|
8
8
|
}
|
|
9
9
|
const HInputSelect=(param)=>{
|
|
10
10
|
return {
|
|
11
11
|
type: param.type,
|
|
12
|
-
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
|
-
|
|
9
|
+
// HGrid,
|
|
11
10
|
};
|
|
12
11
|
|
|
13
|
-
export default hcore;
|
|
12
|
+
export default hcore;
|