nexus-shared 1.1.13 → 1.1.15
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/package.json +1 -1
- package/src/client.ts +13 -8
- package/src/index.ts +3 -2
- package/src/nexus.environments.tsx +3 -3
- package/src/sso-client.tsx +1 -0
- package/src/sso-server.tsx +1 -0
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -1,26 +1,31 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
|
|
3
3
|
// React hooks (useEffect / useState)
|
|
4
|
-
export * from "./components/
|
|
4
|
+
export * from "./components/documents/tab-button";
|
|
5
5
|
export * from "./components/layouts/global-dialogbox";
|
|
6
|
+
export * from "./components/layouts/layout-helpers";
|
|
6
7
|
export * from "./components/layouts/utility-menu";
|
|
7
|
-
export * from "./components/documents/tab-button";
|
|
8
8
|
export * from "./components/panels/theme-panel";
|
|
9
9
|
|
|
10
|
-
export * from "./components/inputs/input-form";
|
|
11
10
|
export * from "./components/inputs/checkbox-input";
|
|
11
|
+
export * from "./components/inputs/input-form";
|
|
12
12
|
export * from "./components/inputs/number-input";
|
|
13
13
|
export * from "./components/inputs/radiobox-input";
|
|
14
14
|
export * from "./components/inputs/textarea-input";
|
|
15
15
|
export * from "./components/inputs/textbox-input";
|
|
16
16
|
|
|
17
17
|
// document / window / localStorage
|
|
18
|
-
export * from "./helpers/browser-helpers";
|
|
19
|
-
export * from "./services/loader-service";
|
|
20
|
-
export * from "./services/theme-service";
|
|
21
|
-
export * from "./services/localstorage-service";
|
|
22
18
|
export * from "./components/documents/button";
|
|
23
19
|
export * from "./components/documents/icon-box";
|
|
20
|
+
export * from "./components/inputs/input";
|
|
24
21
|
export * from "./components/inputs/input-box";
|
|
25
22
|
export * from "./components/inputs/input-element";
|
|
26
|
-
export * from "./
|
|
23
|
+
export * from "./helpers/browser-helpers";
|
|
24
|
+
export * from "./services/loader-service";
|
|
25
|
+
export * from "./services/localstorage-service";
|
|
26
|
+
export * from "./services/theme-service";
|
|
27
|
+
|
|
28
|
+
// Core
|
|
29
|
+
export * from "./nexus-client";
|
|
30
|
+
export * from "./sso-client";
|
|
31
|
+
|
package/src/index.ts
CHANGED
|
@@ -21,8 +21,8 @@ export * from "./helpers/utility-helpers";
|
|
|
21
21
|
// Interfaces
|
|
22
22
|
export * from "./interfaces/browser-interfaces";
|
|
23
23
|
export * from "./interfaces/button-interfaces";
|
|
24
|
-
export * from "./interfaces/datatable-interfaces";
|
|
25
24
|
export * from "./interfaces/datasource-interfaces";
|
|
25
|
+
export * from "./interfaces/datatable-interfaces";
|
|
26
26
|
export * from "./interfaces/dialogbox-interfaces";
|
|
27
27
|
export * from "./interfaces/http-interfaces";
|
|
28
28
|
export * from "./interfaces/icon-interfaces";
|
|
@@ -36,5 +36,6 @@ export * from "./interfaces/theme-interfaces";
|
|
|
36
36
|
export * from "./interfaces/type-interfaces";
|
|
37
37
|
|
|
38
38
|
// Core
|
|
39
|
-
export * from "./nexus-client";
|
|
40
39
|
export * from "./nexus.environments";
|
|
40
|
+
export * from "./sso-server";
|
|
41
|
+
|
|
@@ -10,9 +10,9 @@ export const APIS = {
|
|
|
10
10
|
const FILE = (apiName: string, filePath: string, fileName: string) => `${APIS.DRIVE}/Resources/${apiName}/${encodeURIComponent(filePath)}/${encodeURIComponent(fileName)}`;
|
|
11
11
|
export const FILES = {
|
|
12
12
|
LOGO: {
|
|
13
|
-
ICON: FILE("Image", "logos", "icon-logo
|
|
14
|
-
FULL: FILE("Image", "logos", "full-logo
|
|
15
|
-
FULL_TEXT: FILE("Image", "logos", "full-text-logo
|
|
13
|
+
ICON: FILE("Image", "logos", "icon-logo"),
|
|
14
|
+
FULL: FILE("Image", "logos", "full-logo"),
|
|
15
|
+
FULL_TEXT: FILE("Image", "logos", "full-text-logo"),
|
|
16
16
|
},
|
|
17
17
|
SCRIPT: (fileName: string, isStyles: boolean = false) => FILE("Script", isStyles ? "css" : "js", fileName),
|
|
18
18
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|