elcrm 0.9.99 → 0.9.100

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.
@@ -8,6 +8,7 @@ type TPageSections = {
8
8
  page: string;
9
9
  loading?: any;
10
10
  className?: string;
11
+ onDynamicURL?: any;
11
12
  };
12
13
  /**
13
14
  * PageSection
@@ -23,5 +24,5 @@ type TPageSections = {
23
24
  * @param {any} loading - Spinner
24
25
  * @returns {JSX.Element}
25
26
  */
26
- declare const PageSection: ({ title, affter, children, button, page, tabs, className, modules, loading, }: TPageSections) => import("react/jsx-runtime").JSX.Element;
27
+ declare const PageSection: ({ title, affter, onDynamicURL, children, button, page, tabs, className, modules, loading, }: TPageSections) => import("react/jsx-runtime").JSX.Element;
27
28
  export default PageSection;
@@ -1,5 +1,5 @@
1
1
  declare const _default: {
2
- Lite: ({ title, affter, children, button, page, tabs, className, modules, loading, }: {
2
+ Lite: ({ title, affter, onDynamicURL, children, button, page, tabs, className, modules, loading, }: {
3
3
  title?: any;
4
4
  affter?: any;
5
5
  children?: any;
@@ -9,6 +9,7 @@ declare const _default: {
9
9
  page: string;
10
10
  loading?: any;
11
11
  className?: string | undefined;
12
+ onDynamicURL?: any;
12
13
  }) => import("react/jsx-runtime").JSX.Element;
13
14
  };
14
15
  export default _default;
@@ -4,5 +4,6 @@ export declare function Api(v?: any): any;
4
4
  export declare function Client(v?: any): any;
5
5
  export declare function Host(v?: any): any;
6
6
  export declare function Import(v?: any): any;
7
+ export declare function DynamicURL(v?: boolean): any;
7
8
  export declare function ImportFn(p: any): any;
8
9
  export declare function Crypto(p: TCrypto): void;
@@ -1,5 +1,5 @@
1
1
  import { setDefaultModules as defaultModule } from '../Store/Store';
2
- import { Api, Server, Client, Host, Import, Crypto } from './Version';
2
+ import { Api, Server, Client, Host, Import, Crypto, DynamicURL } from './Version';
3
3
  import { setSSID as SSID } from '../Api/Api';
4
4
  import { IconAssets } from '../Icon/Assets';
5
5
  declare const _default: {
@@ -14,5 +14,6 @@ declare const _default: {
14
14
  Crypto: typeof Crypto;
15
15
  defaultModule: typeof defaultModule;
16
16
  IconAssets: typeof IconAssets;
17
+ DynamicURL: typeof DynamicURL;
17
18
  };
18
19
  export default _default;
@@ -1,5 +1,6 @@
1
1
  import { default as React } from 'react';
2
2
  export declare function setDefaultModules(t: string): void;
3
+ export declare function setDynamicURL(v: boolean): void;
3
4
  export declare function getDefaultModules(): string;
4
5
  export declare function Init(render: React.ReactNode): React.ReactNode;
5
6
  export declare function Logaut(): void;