@win2win/shared 1.0.61 → 1.0.62
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/interfaces/index.d.ts +1 -0
- package/dist/interfaces/index.js +1 -0
- package/dist/interfaces/{screem_home/config-home-interface.d.ts → screen_home/config-home.d.ts} +5 -5
- package/dist/interfaces/{screem_home/footer-config-interface.d.ts → screen_home/footer-config.d.ts} +1 -1
- package/dist/interfaces/screen_home/index.d.ts +13 -0
- package/dist/interfaces/screen_home/index.js +29 -0
- package/dist/interfaces/{screem_home/layouts-config-interface.d.ts → screen_home/layouts-config.d.ts} +4 -4
- package/dist/interfaces/{screem_home/sca-config-interface.d.ts → screen_home/sca-config.d.ts} +1 -1
- package/dist/interfaces/{screem_home/toolbar-config-interface.d.ts → screen_home/toolbar-config.d.ts} +2 -2
- package/package.json +1 -1
- package/dist/interfaces/config/ScreenHome.d.ts +0 -2
- package/dist/interfaces/config/ScreenHome.js +0 -2
- /package/dist/interfaces/{screem_home/aws-config-interface.d.ts → screen_home/aws-config.d.ts} +0 -0
- /package/dist/interfaces/{screem_home/aws-config-interface.js → screen_home/aws-config.js} +0 -0
- /package/dist/interfaces/{screem_home/config-home-interface.js → screen_home/config-home.js} +0 -0
- /package/dist/interfaces/{screem_home/datasource-option-interface.d.ts → screen_home/datasource-option.d.ts} +0 -0
- /package/dist/interfaces/{screem_home/datasource-option-interface.js → screen_home/datasource-option.js} +0 -0
- /package/dist/interfaces/{screem_home/footer-config-interface.js → screen_home/footer-config.js} +0 -0
- /package/dist/interfaces/{screem_home/footer-variant-config-interface.d.ts → screen_home/footer-variant-config.d.ts} +0 -0
- /package/dist/interfaces/{screem_home/footer-variant-config-interface.js → screen_home/footer-variant-config.js} +0 -0
- /package/dist/interfaces/{screem_home/google-config-interface.d.ts → screen_home/google-config.d.ts} +0 -0
- /package/dist/interfaces/{screem_home/google-config-interface.js → screen_home/google-config.js} +0 -0
- /package/dist/interfaces/{screem_home/layout-home-config-interface.d.ts → screen_home/layout-home-config.d.ts} +0 -0
- /package/dist/interfaces/{screem_home/layout-home-config-interface.js → screen_home/layout-home-config.js} +0 -0
- /package/dist/interfaces/{screem_home/layouts-config-interface.js → screen_home/layouts-config.js} +0 -0
- /package/dist/interfaces/{screem_home/logo-config-interface.d.ts → screen_home/logo-config.d.ts} +0 -0
- /package/dist/interfaces/{screem_home/logo-config-interface.js → screen_home/logo-config.js} +0 -0
- /package/dist/interfaces/{screem_home/mobile-config-interface.d.ts → screen_home/mobile-config.d.ts} +0 -0
- /package/dist/interfaces/{screem_home/mobile-config-interface.js → screen_home/mobile-config.js} +0 -0
- /package/dist/interfaces/{screem_home/role-config-interface.d.ts → screen_home/role-config.d.ts} +0 -0
- /package/dist/interfaces/{screem_home/role-config-interface.js → screen_home/role-config.js} +0 -0
- /package/dist/interfaces/{screem_home/sca-config-interface.js → screen_home/sca-config.js} +0 -0
- /package/dist/interfaces/{screem_home/toolbar-config-interface.js → screen_home/toolbar-config.js} +0 -0
package/dist/interfaces/index.js
CHANGED
|
@@ -18,4 +18,5 @@ __exportStar(require("./importaciones"), exports);
|
|
|
18
18
|
__exportStar(require("./layout_documentos"), exports);
|
|
19
19
|
__exportStar(require("./liquidaciones"), exports);
|
|
20
20
|
__exportStar(require("./props"), exports);
|
|
21
|
+
__exportStar(require("./screen_home"), exports);
|
|
21
22
|
__exportStar(require("./shared"), exports);
|
package/dist/interfaces/{screem_home/config-home-interface.d.ts → screen_home/config-home.d.ts}
RENAMED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { AwsConfig } from "./aws-config
|
|
2
|
-
import { DataSourceOptions } from "./datasource-option
|
|
3
|
-
import { GoogleConfig } from "./google-config
|
|
4
|
-
import { ScaConfig } from "./sca-config
|
|
1
|
+
import { AwsConfig } from "./aws-config";
|
|
2
|
+
import { DataSourceOptions } from "./datasource-option";
|
|
3
|
+
import { GoogleConfig } from "./google-config";
|
|
4
|
+
import { ScaConfig } from "./sca-config";
|
|
5
5
|
export declare class ConfigHome {
|
|
6
6
|
PUBLIC_PATH?: string;
|
|
7
7
|
URL_PUBLIC_ADMINERP?: string;
|
|
8
8
|
URL_PUBLIC_LANDING?: string;
|
|
9
|
+
FREE_CURRENCY_API_KEY?: string;
|
|
9
10
|
dataSourceOptions?: DataSourceOptions;
|
|
10
11
|
aws?: AwsConfig;
|
|
11
12
|
google?: GoogleConfig;
|
|
12
|
-
FREE_CURRENCY_API_KEY?: string;
|
|
13
13
|
idioma?: Record<string, any>;
|
|
14
14
|
sca?: ScaConfig;
|
|
15
15
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export * from './aws-config';
|
|
2
|
+
export * from './config-home';
|
|
3
|
+
export * from './datasource-option';
|
|
4
|
+
export * from './footer-config';
|
|
5
|
+
export * from './footer-variant-config';
|
|
6
|
+
export * from './google-config';
|
|
7
|
+
export * from './layout-home-config';
|
|
8
|
+
export * from './layouts-config';
|
|
9
|
+
export * from './logo-config';
|
|
10
|
+
export * from './mobile-config';
|
|
11
|
+
export * from './role-config';
|
|
12
|
+
export * from './sca-config';
|
|
13
|
+
export * from './toolbar-config';
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./aws-config"), exports);
|
|
18
|
+
__exportStar(require("./config-home"), exports);
|
|
19
|
+
__exportStar(require("./datasource-option"), exports);
|
|
20
|
+
__exportStar(require("./footer-config"), exports);
|
|
21
|
+
__exportStar(require("./footer-variant-config"), exports);
|
|
22
|
+
__exportStar(require("./google-config"), exports);
|
|
23
|
+
__exportStar(require("./layout-home-config"), exports);
|
|
24
|
+
__exportStar(require("./layouts-config"), exports);
|
|
25
|
+
__exportStar(require("./logo-config"), exports);
|
|
26
|
+
__exportStar(require("./mobile-config"), exports);
|
|
27
|
+
__exportStar(require("./role-config"), exports);
|
|
28
|
+
__exportStar(require("./sca-config"), exports);
|
|
29
|
+
__exportStar(require("./toolbar-config"), exports);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { FooterConfig } from "./footer-config
|
|
2
|
-
import { LayoutHomeConfig } from "./layout-home-config
|
|
3
|
-
import { RoleConfig } from "./role-config
|
|
4
|
-
import { ToolbarConfig } from "./toolbar-config
|
|
1
|
+
import { FooterConfig } from "./footer-config";
|
|
2
|
+
import { LayoutHomeConfig } from "./layout-home-config";
|
|
3
|
+
import { RoleConfig } from "./role-config";
|
|
4
|
+
import { ToolbarConfig } from "./toolbar-config";
|
|
5
5
|
export declare class LayoutsConfig {
|
|
6
6
|
home?: Record<string, LayoutHomeConfig>;
|
|
7
7
|
menu?: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { LogoConfig } from "./logo-config
|
|
2
|
-
import { MobileConfig } from "./mobile-config
|
|
1
|
+
import { LogoConfig } from "./logo-config";
|
|
2
|
+
import { MobileConfig } from "./mobile-config";
|
|
3
3
|
export declare class ToolbarConfig {
|
|
4
4
|
elevated?: boolean;
|
|
5
5
|
color?: string;
|
package/package.json
CHANGED
/package/dist/interfaces/{screem_home/aws-config-interface.d.ts → screen_home/aws-config.d.ts}
RENAMED
|
File without changes
|
|
File without changes
|
/package/dist/interfaces/{screem_home/config-home-interface.js → screen_home/config-home.js}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/interfaces/{screem_home/footer-config-interface.js → screen_home/footer-config.js}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/interfaces/{screem_home/google-config-interface.d.ts → screen_home/google-config.d.ts}
RENAMED
|
File without changes
|
/package/dist/interfaces/{screem_home/google-config-interface.js → screen_home/google-config.js}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/interfaces/{screem_home/layouts-config-interface.js → screen_home/layouts-config.js}
RENAMED
|
File without changes
|
/package/dist/interfaces/{screem_home/logo-config-interface.d.ts → screen_home/logo-config.d.ts}
RENAMED
|
File without changes
|
/package/dist/interfaces/{screem_home/logo-config-interface.js → screen_home/logo-config.js}
RENAMED
|
File without changes
|
/package/dist/interfaces/{screem_home/mobile-config-interface.d.ts → screen_home/mobile-config.d.ts}
RENAMED
|
File without changes
|
/package/dist/interfaces/{screem_home/mobile-config-interface.js → screen_home/mobile-config.js}
RENAMED
|
File without changes
|
/package/dist/interfaces/{screem_home/role-config-interface.d.ts → screen_home/role-config.d.ts}
RENAMED
|
File without changes
|
/package/dist/interfaces/{screem_home/role-config-interface.js → screen_home/role-config.js}
RENAMED
|
File without changes
|
|
File without changes
|
/package/dist/interfaces/{screem_home/toolbar-config-interface.js → screen_home/toolbar-config.js}
RENAMED
|
File without changes
|