elcrm 0.8.96 → 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.
@@ -0,0 +1,7 @@
1
+ export type TCounter = {
2
+ before?: string;
3
+ from: number;
4
+ to: number;
5
+ };
6
+ declare const Counter: ({ before, from, to }: TCounter) => import("react/jsx-runtime").JSX.Element;
7
+ export default Counter;
@@ -0,0 +1,4 @@
1
+ declare const _default: {
2
+ Counter: ({ before, from, to }: import('./Counter').TCounter) => import("react/jsx-runtime").JSX.Element;
3
+ };
4
+ export default _default;
@@ -6,7 +6,7 @@ interface Button {
6
6
  className?: string;
7
7
  size?: "m" | "s" | "l";
8
8
  mode?: "primary" | "secondary" | "tertiary" | "outline" | "link";
9
- view?: "confirm" | "cancel" | "disabled";
9
+ view?: "confirm" | "cancel" | "disabled" | "none";
10
10
  }
11
11
  export default function ({ onClick, onSend, size, view, mode, className, label, onRef, }: Button): import("react/jsx-runtime").JSX.Element;
12
12
  export {};
@@ -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;
@@ -1 +1,2 @@
1
1
  export { type onActive as TonActive } from '../Switch/Switch';
2
+ export { type TCounter as TCounter } from '../Animation/Counter';
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export { default as Api } from './Api';
2
+ export { default as Animation } from './Animation';
2
3
  export { default as Init } from './Init/Init';
3
4
  export { default as Browser } from './Browser/Browser';
4
5
  export { default as Button } from './Button/Button';
@@ -35,6 +36,7 @@ export { default as Pagination } from './Pagination';
35
36
  export { default as List } from './List';
36
37
  export { default as Company } from './Company';
37
38
  export { default as WebRTC } from './WebRTC/WebRTC';
39
+ export { default as Test } from './Test/Test';
38
40
  export { default as Phone } from './Phone';
39
41
  export { default as Switch } from './Switch';
40
42
  export * from './Type';