elcrm 0.8.97 → 0.8.98

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.
@@ -14,7 +14,8 @@ interface Input {
14
14
  after?: string;
15
15
  show?: Boolean;
16
16
  view?: string;
17
+ id?: string;
17
18
  className?: string;
18
19
  }
19
- export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, onBlur, onSave, className, }: Input): "" | import("react/jsx-runtime").JSX.Element;
20
+ export default function ({ id, value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, onBlur, onSave, className, }: Input): "" | import("react/jsx-runtime").JSX.Element;
20
21
  export {};
@@ -0,0 +1,10 @@
1
+ type TPageSections = {
2
+ title?: string;
3
+ children?: any;
4
+ button?: any;
5
+ page: string;
6
+ tabs?: any;
7
+ modules: string;
8
+ };
9
+ declare const PageSection: ({ title, children, button, page, tabs, modules, }: TPageSections) => import("react/jsx-runtime").JSX.Element;
10
+ export default PageSection;
package/dist/index.d.ts CHANGED
@@ -36,6 +36,7 @@ export { default as Pagination } from './Pagination';
36
36
  export { default as List } from './List';
37
37
  export { default as Company } from './Company';
38
38
  export { default as WebRTC } from './WebRTC/WebRTC';
39
+ export { default as Test } from './Test/Test';
39
40
  export { default as Phone } from './Phone';
40
41
  export { default as Switch } from './Switch';
41
42
  export * from './Type';