elcrm 0.8.16 → 0.8.18
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/dist/Input/index.d.ts +2 -0
- package/dist/index.es.js +497 -488
- package/dist/index.umd.js +8 -8
- package/package.json +1 -1
package/dist/Input/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ import { default as Time } from '../Form/Time';
|
|
|
21
21
|
import { default as Users } from '../Form/Users';
|
|
22
22
|
import { default as Check } from '../Form/Check';
|
|
23
23
|
import { default as Toogle } from '../Form/Toogle';
|
|
24
|
+
import { default as Group } from '../Form/Group';
|
|
24
25
|
|
|
25
26
|
declare const _default: {
|
|
26
27
|
Color: typeof Color;
|
|
@@ -48,5 +49,6 @@ declare const _default: {
|
|
|
48
49
|
Users: typeof Users;
|
|
49
50
|
String: typeof Input;
|
|
50
51
|
Toogle: ({ onValue, value, name, item }: Toogle) => import("react/jsx-runtime").JSX.Element;
|
|
52
|
+
Group: typeof Group;
|
|
51
53
|
};
|
|
52
54
|
export default _default;
|