namirasoft-account-react 1.4.353 → 1.4.355

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.
Files changed (66) hide show
  1. package/.env.template +15 -15
  2. package/config-overrides.js +72 -72
  3. package/dist/components/NSAAccessListDialog.module.css +71 -71
  4. package/dist/components/NSAMessageListDialog.module.css +99 -99
  5. package/dist/components/NSAProductListDialog.module.css +44 -44
  6. package/dist/components/NSAUserDialog.js +2 -2
  7. package/dist/components/NSAUserDialog.js.map +1 -1
  8. package/dist/components/NSAUserDialog.module.css +66 -61
  9. package/dist/components/NSAWorkspaceListDialog.module.css +41 -41
  10. package/dist/layouts/NSASectionEditTabPage.module.css +4 -4
  11. package/dist/layouts/NSASectionList.module.css +21 -21
  12. package/dist/layouts/NSASectionViewTabPage.module.css +47 -47
  13. package/dist/pages/NSAConsentPage.module.css +26 -26
  14. package/dist/pages/NSAHomePage.module.css +23 -23
  15. package/dist/pages/NSALoginPage.module.css +26 -26
  16. package/dist/pages/NSAVerificationPage.module.css +31 -31
  17. package/package.json +78 -78
  18. package/public/index.html +21 -21
  19. package/src/App.css +31 -31
  20. package/src/App.tsx +93 -93
  21. package/src/CTFRow.ts +7 -7
  22. package/src/ConsentCacheService.ts +25 -25
  23. package/src/IEntityInfo.ts +31 -31
  24. package/src/NSARouterMaker.tsx +129 -129
  25. package/src/NSARouterMakerComponent.ts +9 -9
  26. package/src/NSARouterMakerProps.ts +22 -22
  27. package/src/Router.tsx +39 -39
  28. package/src/UseParams.tsx +18 -18
  29. package/src/components/NSAAccessListDialog.module.css +71 -71
  30. package/src/components/NSAAccessListDialog.tsx +178 -178
  31. package/src/components/NSAMessageListDialog.module.css +99 -99
  32. package/src/components/NSAMessageListDialog.tsx +141 -141
  33. package/src/components/NSAProductListDialog.module.css +44 -44
  34. package/src/components/NSAProductListDialog.tsx +106 -106
  35. package/src/components/NSAUserDialog.module.css +66 -61
  36. package/src/components/NSAUserDialog.tsx +110 -99
  37. package/src/components/NSAWorkspaceListDialog.module.css +41 -41
  38. package/src/components/NSAWorkspaceListDialog.tsx +148 -148
  39. package/src/components/NSBoxSecret.tsx +106 -106
  40. package/src/index.tsx +24 -24
  41. package/src/layouts/Actions.ts +145 -145
  42. package/src/layouts/CFTUtil.ts +18 -18
  43. package/src/layouts/NSALayout.tsx +710 -710
  44. package/src/layouts/NSASectionEdit.tsx +218 -218
  45. package/src/layouts/NSASectionEditTabPage.module.css +4 -4
  46. package/src/layouts/NSASectionEditTabPage.tsx +250 -250
  47. package/src/layouts/NSASectionList.module.css +21 -21
  48. package/src/layouts/NSASectionList.tsx +500 -500
  49. package/src/layouts/NSASectionView.tsx +94 -94
  50. package/src/layouts/NSASectionViewTabMore.tsx +77 -77
  51. package/src/layouts/NSASectionViewTabPage.module.css +47 -47
  52. package/src/layouts/NSASectionViewTabPage.tsx +344 -344
  53. package/src/main.ts +19 -19
  54. package/src/pages/NSAConsentPage.module.css +26 -26
  55. package/src/pages/NSAConsentPage.tsx +120 -120
  56. package/src/pages/NSAEmailVerificationPage.tsx +30 -30
  57. package/src/pages/NSAHomePage.module.css +23 -23
  58. package/src/pages/NSAHomePage.tsx +76 -76
  59. package/src/pages/NSALoginPage.module.css +26 -26
  60. package/src/pages/NSALoginPage.tsx +87 -87
  61. package/src/pages/NSAVerificationPage.module.css +31 -31
  62. package/src/pages/NSAVerificationPage.tsx +172 -172
  63. package/src/pages/PaymentRequired.tsx +74 -74
  64. package/tsconfig.json +43 -43
  65. package/dist/App.css +0 -32
  66. package/dist/index.css +0 -0
@@ -1,130 +1,130 @@
1
- import queryString, { ParsedQuery } from 'query-string';
2
- import rrd from 'react-router-dom';
3
- import { EncodingOperation, EnvService, IStorage, IStorageCookie, ObjectService, ParsedNameValue, URLOperation } from "namirasoft-core";
4
- import { NamirasoftAccountServer, TokenManager } from "namirasoft-account";
5
- import { NSRouterMaker, NSRouterMakerProps } from 'namirasoft-site-react';
6
- import { NSARouterMakerComponent } from "./NSARouterMakerComponent";
7
- import { NSARouterMakerProps } from "./NSARouterMakerProps";
8
- import { NSAConsentPage } from './pages/NSAConsentPage';
9
- import { NSAEmailVerificationPage } from './pages/NSAEmailVerificationPage';
10
-
11
- export class NSARouterMaker
12
- {
13
- private product_id: string;
14
- private storage: IStorage;
15
- private setState: () => void;
16
- private component: NSARouterMakerComponent;
17
- private navigate: rrd.NavigateFunction;
18
- constructor(product_id: string, storage: IStorage, setState: () => void, component: NSARouterMakerComponent, navigate: rrd.NavigateFunction)
19
- {
20
- this.product_id = product_id;
21
- this.storage = storage;
22
- this.setState = setState;
23
- this.component = component;
24
- this.navigate = navigate;
25
- this.getProps = this.getProps.bind(this);
26
- this.getQueryStrings = this.getQueryStrings.bind(this);
27
- this.getQuery = this.getQuery.bind(this);
28
- this.getLink = this.getLink.bind(this);
29
- this.redirect = this.redirect.bind(this);
30
- this.onRender = this.onRender.bind(this);
31
- }
32
- private getProps(ns_router_maker_props: NSRouterMakerProps): NSARouterMakerProps
33
- {
34
- let Cookies = process.env.REACT_APP_ACCOUNT_TOKEN;
35
- let storage = new IStorageCookie({ domain: ".namirasoft.com", path: "/" }, Cookies);
36
- let token_manager = new TokenManager(storage, () => { });
37
-
38
- let REACT_APP_BASE_URL_ACCOUNT = new EnvService("REACT_APP_BASE_URL_ACCOUNT", true).getString();
39
- let server = new NamirasoftAccountServer(REACT_APP_BASE_URL_ACCOUNT, token_manager, ns_router_maker_props.notifier.onError);
40
-
41
- return {
42
- product_id: this.product_id,
43
- account: {
44
- token_manager,
45
- server,
46
- },
47
- url: {
48
- getLink: this.getLink,
49
- redirect: this.redirect,
50
- getQueryStrings: this.getQueryStrings,
51
- getQuery: this.getQuery,
52
- },
53
- renderer: {
54
- renderOnNSALayout: this.component.renderOnNSALayout
55
- },
56
- ...ns_router_maker_props
57
- };
58
- }
59
- getQueryStrings(): ParsedQuery
60
- {
61
- return queryString.parse(window.location.search);
62
- }
63
- getQuery(name: string, base64: boolean = false, remove: boolean = false): string
64
- {
65
- let query = this.getQueryStrings();
66
- let item = query[name];
67
- let ans = new ObjectService(item).getString();
68
- if (base64)
69
- try
70
- {
71
- ans = EncodingOperation.Base64Decode(ans);
72
- } catch (error)
73
- {
74
- ans = "";
75
- }
76
- if (remove)
77
- {
78
- const url = new URL(window.location.href);
79
- url.searchParams.delete(name);
80
- window.history.replaceState({}, '', url);
81
- }
82
-
83
- return ans;
84
- }
85
- getLink(sub: string, customQuery: { [name: string]: ParsedNameValue })
86
- {
87
- if (!customQuery)
88
- customQuery = {};
89
- return URLOperation.getLink("", sub, customQuery);
90
- }
91
- redirect(sub: string, customQuery: { [name: string]: ParsedNameValue }): void
92
- {
93
- let ans = this.getLink(sub, customQuery);
94
- this.navigate(ans);
95
- }
96
- onRender(): React.JSX.Element
97
- {
98
- let maker = new NSRouterMaker(this.storage, this.setState, {
99
- onRender: (ns_router_maker_props: NSRouterMakerProps) =>
100
- {
101
- let props = this.getProps(ns_router_maker_props);
102
- let banned = false;
103
- if (props.account.token_manager.exists())
104
- {
105
- banned = props.account.token_manager.getUserData(user => user.banned, false);
106
- if (!banned)
107
- {
108
- let result = this.component.getCustomRender?.(props);
109
- if (result)
110
- return result;
111
- return <NSAConsentPage
112
- {...props}
113
- product_id={this.product_id}
114
- onAccepted={() =>
115
- {
116
- let e_verified = props.account.token_manager.getUserData(u => u.e_verified, false);
117
- if (!e_verified)
118
- return this.component.renderOnNSALayout(props, <NSAEmailVerificationPage {...props} callback='' />);
119
- return this.component.onRenderOnLogin(props);
120
- }}
121
- />;
122
- }
123
- }
124
- return this.component.onRenderOnLogout(props, banned);
125
- }
126
- });
127
-
128
- return maker.onRender();
129
- }
1
+ import queryString, { ParsedQuery } from 'query-string';
2
+ import rrd from 'react-router-dom';
3
+ import { EncodingOperation, EnvService, IStorage, IStorageCookie, ObjectService, ParsedNameValue, URLOperation } from "namirasoft-core";
4
+ import { NamirasoftAccountServer, TokenManager } from "namirasoft-account";
5
+ import { NSRouterMaker, NSRouterMakerProps } from 'namirasoft-site-react';
6
+ import { NSARouterMakerComponent } from "./NSARouterMakerComponent";
7
+ import { NSARouterMakerProps } from "./NSARouterMakerProps";
8
+ import { NSAConsentPage } from './pages/NSAConsentPage';
9
+ import { NSAEmailVerificationPage } from './pages/NSAEmailVerificationPage';
10
+
11
+ export class NSARouterMaker
12
+ {
13
+ private product_id: string;
14
+ private storage: IStorage;
15
+ private setState: () => void;
16
+ private component: NSARouterMakerComponent;
17
+ private navigate: rrd.NavigateFunction;
18
+ constructor(product_id: string, storage: IStorage, setState: () => void, component: NSARouterMakerComponent, navigate: rrd.NavigateFunction)
19
+ {
20
+ this.product_id = product_id;
21
+ this.storage = storage;
22
+ this.setState = setState;
23
+ this.component = component;
24
+ this.navigate = navigate;
25
+ this.getProps = this.getProps.bind(this);
26
+ this.getQueryStrings = this.getQueryStrings.bind(this);
27
+ this.getQuery = this.getQuery.bind(this);
28
+ this.getLink = this.getLink.bind(this);
29
+ this.redirect = this.redirect.bind(this);
30
+ this.onRender = this.onRender.bind(this);
31
+ }
32
+ private getProps(ns_router_maker_props: NSRouterMakerProps): NSARouterMakerProps
33
+ {
34
+ let Cookies = process.env.REACT_APP_ACCOUNT_TOKEN;
35
+ let storage = new IStorageCookie({ domain: ".namirasoft.com", path: "/" }, Cookies);
36
+ let token_manager = new TokenManager(storage, () => { });
37
+
38
+ let REACT_APP_BASE_URL_ACCOUNT = new EnvService("REACT_APP_BASE_URL_ACCOUNT", true).getString();
39
+ let server = new NamirasoftAccountServer(REACT_APP_BASE_URL_ACCOUNT, token_manager, ns_router_maker_props.notifier.onError);
40
+
41
+ return {
42
+ product_id: this.product_id,
43
+ account: {
44
+ token_manager,
45
+ server,
46
+ },
47
+ url: {
48
+ getLink: this.getLink,
49
+ redirect: this.redirect,
50
+ getQueryStrings: this.getQueryStrings,
51
+ getQuery: this.getQuery,
52
+ },
53
+ renderer: {
54
+ renderOnNSALayout: this.component.renderOnNSALayout
55
+ },
56
+ ...ns_router_maker_props
57
+ };
58
+ }
59
+ getQueryStrings(): ParsedQuery
60
+ {
61
+ return queryString.parse(window.location.search);
62
+ }
63
+ getQuery(name: string, base64: boolean = false, remove: boolean = false): string
64
+ {
65
+ let query = this.getQueryStrings();
66
+ let item = query[name];
67
+ let ans = new ObjectService(item).getString();
68
+ if (base64)
69
+ try
70
+ {
71
+ ans = EncodingOperation.Base64Decode(ans);
72
+ } catch (error)
73
+ {
74
+ ans = "";
75
+ }
76
+ if (remove)
77
+ {
78
+ const url = new URL(window.location.href);
79
+ url.searchParams.delete(name);
80
+ window.history.replaceState({}, '', url);
81
+ }
82
+
83
+ return ans;
84
+ }
85
+ getLink(sub: string, customQuery: { [name: string]: ParsedNameValue })
86
+ {
87
+ if (!customQuery)
88
+ customQuery = {};
89
+ return URLOperation.getLink("", sub, customQuery);
90
+ }
91
+ redirect(sub: string, customQuery: { [name: string]: ParsedNameValue }): void
92
+ {
93
+ let ans = this.getLink(sub, customQuery);
94
+ this.navigate(ans);
95
+ }
96
+ onRender(): React.JSX.Element
97
+ {
98
+ let maker = new NSRouterMaker(this.storage, this.setState, {
99
+ onRender: (ns_router_maker_props: NSRouterMakerProps) =>
100
+ {
101
+ let props = this.getProps(ns_router_maker_props);
102
+ let banned = false;
103
+ if (props.account.token_manager.exists())
104
+ {
105
+ banned = props.account.token_manager.getUserData(user => user.banned, false);
106
+ if (!banned)
107
+ {
108
+ let result = this.component.getCustomRender?.(props);
109
+ if (result)
110
+ return result;
111
+ return <NSAConsentPage
112
+ {...props}
113
+ product_id={this.product_id}
114
+ onAccepted={() =>
115
+ {
116
+ let e_verified = props.account.token_manager.getUserData(u => u.e_verified, false);
117
+ if (!e_verified)
118
+ return this.component.renderOnNSALayout(props, <NSAEmailVerificationPage {...props} callback='' />);
119
+ return this.component.onRenderOnLogin(props);
120
+ }}
121
+ />;
122
+ }
123
+ }
124
+ return this.component.onRenderOnLogout(props, banned);
125
+ }
126
+ });
127
+
128
+ return maker.onRender();
129
+ }
130
130
  };
@@ -1,10 +1,10 @@
1
- import React from "react";
2
- import { NSARouterMakerProps } from "./NSARouterMakerProps";
3
-
4
- export interface NSARouterMakerComponent
5
- {
6
- onRenderOnLogin(props: NSARouterMakerProps): React.JSX.Element;
7
- onRenderOnLogout(props: NSARouterMakerProps, banned: boolean): React.JSX.Element;
8
- renderOnNSALayout(props: NSARouterMakerProps, children: React.JSX.Element): React.JSX.Element;
9
- getCustomRender?: (props: NSARouterMakerProps) => React.JSX.Element | null;
1
+ import React from "react";
2
+ import { NSARouterMakerProps } from "./NSARouterMakerProps";
3
+
4
+ export interface NSARouterMakerComponent
5
+ {
6
+ onRenderOnLogin(props: NSARouterMakerProps): React.JSX.Element;
7
+ onRenderOnLogout(props: NSARouterMakerProps, banned: boolean): React.JSX.Element;
8
+ renderOnNSALayout(props: NSARouterMakerProps, children: React.JSX.Element): React.JSX.Element;
9
+ getCustomRender?: (props: NSARouterMakerProps) => React.JSX.Element | null;
10
10
  }
@@ -1,23 +1,23 @@
1
- import { NamirasoftAccountServer, TokenManager } from "namirasoft-account";
2
- import { ParsedNameValue } from "namirasoft-core";
3
- import { NSRouterMakerProps } from "namirasoft-site-react";
4
- import { ParsedQuery } from "query-string";
5
-
6
- export interface NSARouterMakerProps extends NSRouterMakerProps
7
- {
8
- product_id: string;
9
- account: {
10
- token_manager: TokenManager
11
- server: NamirasoftAccountServer;
12
- },
13
- url: {
14
- getQueryStrings(): ParsedQuery;
15
- getQuery(name: string, base64?: boolean, remove?: boolean): string;
16
- getLink(sub: string, customQuery: { [name: string]: ParsedNameValue }): string;
17
- redirect(sub: string, customQuery: { [name: string]: ParsedNameValue }): void;
18
- },
19
- renderer:
20
- {
21
- renderOnNSALayout(props: NSARouterMakerProps, children: React.JSX.Element): React.JSX.Element;
22
- }
1
+ import { NamirasoftAccountServer, TokenManager } from "namirasoft-account";
2
+ import { ParsedNameValue } from "namirasoft-core";
3
+ import { NSRouterMakerProps } from "namirasoft-site-react";
4
+ import { ParsedQuery } from "query-string";
5
+
6
+ export interface NSARouterMakerProps extends NSRouterMakerProps
7
+ {
8
+ product_id: string;
9
+ account: {
10
+ token_manager: TokenManager
11
+ server: NamirasoftAccountServer;
12
+ },
13
+ url: {
14
+ getQueryStrings(): ParsedQuery;
15
+ getQuery(name: string, base64?: boolean, remove?: boolean): string;
16
+ getLink(sub: string, customQuery: { [name: string]: ParsedNameValue }): string;
17
+ redirect(sub: string, customQuery: { [name: string]: ParsedNameValue }): void;
18
+ },
19
+ renderer:
20
+ {
21
+ renderOnNSALayout(props: NSARouterMakerProps, children: React.JSX.Element): React.JSX.Element;
22
+ }
23
23
  }
package/src/Router.tsx CHANGED
@@ -1,40 +1,40 @@
1
- import { NSARouterMaker } from './NSARouterMaker';
2
- import { NSARouterMakerProps } from './NSARouterMakerProps';
3
- import { Routes, Route, useNavigate } from 'react-router-dom';
4
- import { NSNotFoundPage } from 'namirasoft-site-react';
5
- import { App } from './App';
6
- import { IStorageSession } from 'namirasoft-core';
7
- import { useState } from 'react';
8
- import { ProductUUID } from 'namirasoft-api-product';
9
-
10
- export default function Router()
11
- {
12
- let [state, setState] = useState<number>(Math.random());
13
-
14
- let navigate = useNavigate();
15
-
16
- let maker = new NSARouterMaker(ProductUUID.NAMIRASOFT_ACCESS, new IStorageSession(), () => { setState(state + Math.random()); }, {
17
- onRenderOnLogin: (props: NSARouterMakerProps) =>
18
- {
19
- return (
20
- <Routes>
21
- <Route path="/:id" element={<App {...props}></App>} />
22
- <Route path="*" element={<App {...props}></App>} />
23
- </Routes>
24
- );
25
- },
26
- onRenderOnLogout: (_: NSARouterMakerProps, __: boolean) =>
27
- {
28
- return (
29
- <Routes>
30
- <Route path="*" element={<NSNotFoundPage></NSNotFoundPage>} />
31
- </Routes>
32
- );
33
- },
34
- renderOnNSALayout: (_, children) =>
35
- {
36
- return children;
37
- }
38
- }, navigate);
39
- return maker.onRender();
1
+ import { NSARouterMaker } from './NSARouterMaker';
2
+ import { NSARouterMakerProps } from './NSARouterMakerProps';
3
+ import { Routes, Route, useNavigate } from 'react-router-dom';
4
+ import { NSNotFoundPage } from 'namirasoft-site-react';
5
+ import { App } from './App';
6
+ import { IStorageSession } from 'namirasoft-core';
7
+ import { useState } from 'react';
8
+ import { ProductUUID } from 'namirasoft-api-product';
9
+
10
+ export default function Router()
11
+ {
12
+ let [state, setState] = useState<number>(Math.random());
13
+
14
+ let navigate = useNavigate();
15
+
16
+ let maker = new NSARouterMaker(ProductUUID.NAMIRASOFT_ACCESS, new IStorageSession(), () => { setState(state + Math.random()); }, {
17
+ onRenderOnLogin: (props: NSARouterMakerProps) =>
18
+ {
19
+ return (
20
+ <Routes>
21
+ <Route path="/:id" element={<App {...props}></App>} />
22
+ <Route path="*" element={<App {...props}></App>} />
23
+ </Routes>
24
+ );
25
+ },
26
+ onRenderOnLogout: (_: NSARouterMakerProps, __: boolean) =>
27
+ {
28
+ return (
29
+ <Routes>
30
+ <Route path="*" element={<NSNotFoundPage></NSNotFoundPage>} />
31
+ </Routes>
32
+ );
33
+ },
34
+ renderOnNSALayout: (_, children) =>
35
+ {
36
+ return children;
37
+ }
38
+ }, navigate);
39
+ return maker.onRender();
40
40
  }
package/src/UseParams.tsx CHANGED
@@ -1,19 +1,19 @@
1
- import { useEffect } from 'react';
2
- import { useParams } from 'react-router-dom';
3
-
4
- export interface UseParamsProps
5
- {
6
- onLoaded: (p: any) => void
7
- }
8
-
9
- export function UseParams(props: UseParamsProps)
10
- {
11
- let p = useParams();
12
-
13
- useEffect(() =>
14
- {
15
- props.onLoaded(p);
16
- // eslint-disable-next-line
17
- }, [p]);
18
- return <></>;
1
+ import { useEffect } from 'react';
2
+ import { useParams } from 'react-router-dom';
3
+
4
+ export interface UseParamsProps
5
+ {
6
+ onLoaded: (p: any) => void
7
+ }
8
+
9
+ export function UseParams(props: UseParamsProps)
10
+ {
11
+ let p = useParams();
12
+
13
+ useEffect(() =>
14
+ {
15
+ props.onLoaded(p);
16
+ // eslint-disable-next-line
17
+ }, [p]);
18
+ return <></>;
19
19
  }
@@ -1,72 +1,72 @@
1
- .nsa_access_list_dialog_container {
2
- width: 302px;
3
- }
4
-
5
- .nsa_access_list_dialog_container p {
6
- padding: 0;
7
- margin: 0;
8
- }
9
-
10
- .nsa_access_list_dialog_item_id {
11
- color: rgba(3, 119, 255, 1);
12
- text-align: right;
13
- font-weight: 600;
14
- font-size: 16px;
15
- cursor: pointer;
16
- margin: 0;
17
- }
18
-
19
- .nsa_access_list_dialog_item_name {
20
- color: rgba(20, 27, 92, 1);
21
- font-weight: 600;
22
- font-size: 16px;
23
- text-align: left;
24
- cursor: pointer;
25
- margin: 0px;
26
- }
27
-
28
- .nsa_access_list_dialog_item_email {
29
- color: rgba(20, 27, 92, 1);
30
- }
31
-
32
- .nsa_access_list_dialog_main_name {
33
- color: rgba(20, 27, 92, 1);
34
- font-weight: 600;
35
- font-size: 24px;
36
- text-align: center;
37
- cursor: pointer;
38
- margin: 0px;
39
- }
40
-
41
- .nsa_access_list_dialog_main_email {
42
- color: rgba(20, 27, 92, 1);
43
- }
44
-
45
- .nsa_access_list_dialog_main_id {
46
- color: rgba(3, 119, 255, 1);
47
- text-align: center;
48
- font-weight: 600;
49
- font-size: 16px;
50
- cursor: pointer;
51
- margin: 0;
52
- }
53
-
54
- .nsa_access_list_dialog_users_container {
55
- padding: 0px 16px 0px 16px;
56
- display: flex;
57
- cursor: pointer;
58
- border: none;
59
- background-color: rgba(224, 226, 235, 1);
60
- border-radius: 8px;
61
- align-items: center;
62
- max-width: 100%;
63
- }
64
-
65
- .nsa_access_list_dialog_users_container:hover {
66
- background-color: rgba(178, 187, 217, 1);
67
- transition: all 0.3s ease-in-out;
68
- }
69
-
70
- .nsa_access_list_dialog_users_container img {
71
- cursor: pointer;
1
+ .nsa_access_list_dialog_container {
2
+ width: 302px;
3
+ }
4
+
5
+ .nsa_access_list_dialog_container p {
6
+ padding: 0;
7
+ margin: 0;
8
+ }
9
+
10
+ .nsa_access_list_dialog_item_id {
11
+ color: rgba(3, 119, 255, 1);
12
+ text-align: right;
13
+ font-weight: 600;
14
+ font-size: 16px;
15
+ cursor: pointer;
16
+ margin: 0;
17
+ }
18
+
19
+ .nsa_access_list_dialog_item_name {
20
+ color: rgba(20, 27, 92, 1);
21
+ font-weight: 600;
22
+ font-size: 16px;
23
+ text-align: left;
24
+ cursor: pointer;
25
+ margin: 0px;
26
+ }
27
+
28
+ .nsa_access_list_dialog_item_email {
29
+ color: rgba(20, 27, 92, 1);
30
+ }
31
+
32
+ .nsa_access_list_dialog_main_name {
33
+ color: rgba(20, 27, 92, 1);
34
+ font-weight: 600;
35
+ font-size: 24px;
36
+ text-align: center;
37
+ cursor: pointer;
38
+ margin: 0px;
39
+ }
40
+
41
+ .nsa_access_list_dialog_main_email {
42
+ color: rgba(20, 27, 92, 1);
43
+ }
44
+
45
+ .nsa_access_list_dialog_main_id {
46
+ color: rgba(3, 119, 255, 1);
47
+ text-align: center;
48
+ font-weight: 600;
49
+ font-size: 16px;
50
+ cursor: pointer;
51
+ margin: 0;
52
+ }
53
+
54
+ .nsa_access_list_dialog_users_container {
55
+ padding: 0px 16px 0px 16px;
56
+ display: flex;
57
+ cursor: pointer;
58
+ border: none;
59
+ background-color: rgba(224, 226, 235, 1);
60
+ border-radius: 8px;
61
+ align-items: center;
62
+ max-width: 100%;
63
+ }
64
+
65
+ .nsa_access_list_dialog_users_container:hover {
66
+ background-color: rgba(178, 187, 217, 1);
67
+ transition: all 0.3s ease-in-out;
68
+ }
69
+
70
+ .nsa_access_list_dialog_users_container img {
71
+ cursor: pointer;
72
72
  }