namirasoft-account-react 1.5.21 → 1.5.22
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/.env.template +15 -15
- package/SKILL.md +514 -514
- package/config-overrides.js +72 -72
- package/dist/App.d.ts +1 -1
- package/dist/Router.d.ts +1 -1
- package/dist/UseParams.d.ts +1 -1
- package/dist/components/NSAAccessListDialog.d.ts +2 -2
- package/dist/components/NSAAccessListDialog.module.css +71 -71
- package/dist/components/NSABoxSecret.d.ts +1 -1
- package/dist/components/NSABoxSecret.module.css +23 -23
- package/dist/components/NSAMasterMenu.d.ts +1 -1
- package/dist/components/NSAMasterMenu.module.css +250 -250
- package/dist/components/NSAMasterMenuItem.d.ts +1 -1
- package/dist/components/NSAMessageListDialog.d.ts +1 -1
- package/dist/components/NSAMessageListDialog.module.css +99 -99
- package/dist/components/NSANavigationGuard.d.ts +1 -1
- package/dist/components/NSAProductListDialog.d.ts +1 -1
- package/dist/components/NSAProductListDialog.module.css +44 -44
- package/dist/components/NSATaskBar.d.ts +1 -1
- package/dist/components/NSATaskBar.module.css +57 -57
- package/dist/components/NSAUserDialog.d.ts +1 -1
- package/dist/components/NSAUserDialog.module.css +67 -67
- package/dist/components/NSAWorkspaceListDialog.d.ts +1 -1
- package/dist/components/NSAWorkspaceListDialog.module.css +41 -41
- package/dist/components/NSFBoxCategoryScope.d.ts +1 -1
- package/dist/components/NSFBoxField.d.ts +1 -1
- package/dist/components/NSFBoxSlot.d.ts +1 -1
- package/dist/components/NSFBoxWrapper.d.ts +1 -1
- package/dist/components/NSLabelSecret.d.ts +1 -1
- package/dist/components/quickfilter/NSAFilterBoxEnum.module.css +44 -44
- package/dist/components/quickfilter/NSAQuickFilterBar.d.ts +1 -1
- package/dist/components/quickfilter/NSAQuickFilterBar.module.css +19 -19
- package/dist/components/quickfilter/NSAQuickFilterDialog.d.ts +1 -1
- package/dist/components/quickfilter/NSAQuickFilterDialog.module.css +74 -74
- package/dist/layouts/NSALayout.d.ts +1 -1
- package/dist/layouts/NSASectionEdit.d.ts +1 -1
- package/dist/layouts/NSASectionEditTabPage.d.ts +1 -1
- package/dist/layouts/NSASectionEditTabPage.module.css +4 -4
- package/dist/layouts/NSASectionList.d.ts +1 -1
- package/dist/layouts/NSASectionList.module.css +31 -31
- package/dist/layouts/NSASectionView.d.ts +1 -1
- package/dist/layouts/NSASectionViewTabMore.d.ts +1 -1
- package/dist/layouts/NSASectionViewTabPage.d.ts +1 -1
- package/dist/layouts/NSASectionViewTabPage.js +1 -0
- package/dist/layouts/NSASectionViewTabPage.js.map +1 -1
- package/dist/layouts/NSASectionViewTabPage.module.css +47 -47
- package/dist/pages/NSAConsentPage.module.css +26 -26
- package/dist/pages/NSAEmailVerificationPage.d.ts +1 -1
- package/dist/pages/NSAHomePage.d.ts +1 -1
- package/dist/pages/NSAHomePage.module.css +41 -41
- package/dist/pages/NSALoginPage.d.ts +1 -1
- package/dist/pages/NSALoginPage.module.css +26 -26
- package/dist/pages/NSAPhoneVerificationPage.d.ts +1 -1
- package/dist/pages/NSAVerificationPage.d.ts +1 -1
- package/dist/pages/NSAVerificationPage.module.css +31 -31
- package/package.json +95 -95
- package/public/index.html +21 -21
- package/src/App.tsx +19 -19
- package/src/CTFRow.ts +7 -7
- package/src/FieldCacheService.tsx +84 -84
- package/src/IEntityInfo.ts +33 -33
- package/src/NSACacheService.ts +120 -120
- package/src/NSAFilterOperators.ts +92 -92
- package/src/NSARouterMaker.tsx +140 -140
- package/src/NSARouterMakerProps.ts +23 -23
- package/src/NSARouterMakerResult.ts +24 -24
- package/src/NSFRouterMaker.tsx +35 -35
- package/src/NSFRouterProps.ts +7 -7
- package/src/NSFRoutes.ts +30 -30
- package/src/Router.tsx +48 -48
- package/src/UseParams.tsx +17 -17
- package/src/components/NSAAccessListDialog.module.css +71 -71
- package/src/components/NSAAccessListDialog.tsx +178 -178
- package/src/components/NSABoxSecret.module.css +23 -23
- package/src/components/NSABoxSecret.tsx +264 -264
- package/src/components/NSAMasterMenu.module.css +250 -250
- package/src/components/NSAMasterMenu.tsx +169 -169
- package/src/components/NSAMasterMenuItem.tsx +250 -250
- package/src/components/NSAMessageListDialog.module.css +99 -99
- package/src/components/NSAMessageListDialog.tsx +142 -142
- package/src/components/NSANavigationGuard.tsx +79 -79
- package/src/components/NSAProductListDialog.module.css +44 -44
- package/src/components/NSAProductListDialog.tsx +88 -88
- package/src/components/NSATable.tsx +494 -494
- package/src/components/NSATaskBar.module.css +57 -57
- package/src/components/NSATaskBar.tsx +193 -193
- package/src/components/NSAUserDialog.module.css +67 -67
- package/src/components/NSAUserDialog.tsx +122 -122
- package/src/components/NSAWorkspaceListDialog.module.css +41 -41
- package/src/components/NSAWorkspaceListDialog.tsx +147 -147
- package/src/components/NSFBoxCategoryScope.tsx +52 -52
- package/src/components/NSFBoxField.tsx +37 -37
- package/src/components/NSFBoxSlot.tsx +71 -71
- package/src/components/NSFBoxWrapper.tsx +69 -69
- package/src/components/NSLabelSecret.tsx +37 -37
- package/src/components/quickfilter/NSAFilterBoxBase.tsx +89 -89
- package/src/components/quickfilter/NSAFilterBoxBoolean.tsx +66 -66
- package/src/components/quickfilter/NSAFilterBoxDate.tsx +110 -110
- package/src/components/quickfilter/NSAFilterBoxDateTime.tsx +110 -110
- package/src/components/quickfilter/NSAFilterBoxEnum.module.css +44 -44
- package/src/components/quickfilter/NSAFilterBoxEnum.tsx +79 -79
- package/src/components/quickfilter/NSAFilterBoxNumber.tsx +145 -145
- package/src/components/quickfilter/NSAFilterBoxString.tsx +83 -83
- package/src/components/quickfilter/NSAFilterBoxTime.tsx +106 -106
- package/src/components/quickfilter/NSAQuickFilterBar.module.css +19 -19
- package/src/components/quickfilter/NSAQuickFilterBar.tsx +142 -142
- package/src/components/quickfilter/NSAQuickFilterDialog.module.css +74 -74
- package/src/components/quickfilter/NSAQuickFilterDialog.tsx +260 -260
- package/src/css.d.ts +13 -13
- package/src/formatters/SecretFormatter.tsx +24 -24
- package/src/index.tsx +26 -26
- package/src/layouts/Actions.ts +146 -146
- package/src/layouts/CFTUtil.ts +18 -18
- package/src/layouts/NSALayout.tsx +744 -744
- package/src/layouts/NSALayout_Field.ts +125 -125
- package/src/layouts/NSASectionEdit.tsx +281 -281
- package/src/layouts/NSASectionEditTabPage.module.css +4 -4
- package/src/layouts/NSASectionEditTabPage.tsx +256 -256
- package/src/layouts/NSASectionList.module.css +31 -31
- package/src/layouts/NSASectionList.tsx +147 -147
- package/src/layouts/NSASectionView.tsx +98 -98
- package/src/layouts/NSASectionViewTabMore.tsx +78 -78
- package/src/layouts/NSASectionViewTabPage.module.css +47 -47
- package/src/layouts/NSASectionViewTabPage.tsx +400 -399
- package/src/main.ts +52 -52
- package/src/pages/NSAConsentPage.module.css +26 -26
- package/src/pages/NSAConsentPage.tsx +120 -120
- package/src/pages/NSAEmailVerificationPage.tsx +30 -30
- package/src/pages/NSAHomePage.module.css +41 -41
- package/src/pages/NSAHomePage.tsx +124 -124
- package/src/pages/NSALoginPage.module.css +26 -26
- package/src/pages/NSALoginPage.tsx +87 -87
- package/src/pages/NSAPhoneVerificationPage.tsx +94 -94
- package/src/pages/NSAVerificationPage.module.css +31 -31
- package/src/pages/NSAVerificationPage.tsx +185 -185
- package/src/pages/NSFCategoryEditPage.tsx +87 -87
- package/src/pages/NSFCategoryListPage.tsx +23 -23
- package/src/pages/NSFCategoryViewPage.tsx +23 -23
- package/src/pages/NSFEntities.ts +58 -58
- package/src/pages/PaymentRequired.tsx +80 -80
- package/tsconfig.json +43 -43
package/config-overrides.js
CHANGED
|
@@ -1,73 +1,73 @@
|
|
|
1
|
-
const getCacheIdentifier = require('react-dev-utils/getCacheIdentifier');
|
|
2
|
-
const webpack = require('webpack');
|
|
3
|
-
|
|
4
|
-
const shouldUseSourceMap = process.env.GENERATE_SOURCEMAP !== 'false';
|
|
5
|
-
|
|
6
|
-
module.exports = function config_overrides(config, webpackEnv)
|
|
7
|
-
{
|
|
8
|
-
console.log('overriding webpack config...');
|
|
9
|
-
const isEnvDevelopment = webpackEnv === 'development';
|
|
10
|
-
const isEnvProduction = webpackEnv === 'production';
|
|
11
|
-
const loaders = config.module.rules[1].oneOf;
|
|
12
|
-
|
|
13
|
-
loaders.splice(loaders.length - 1, 0, {
|
|
14
|
-
test: /\.(js|mjs|cjs)$/,
|
|
15
|
-
exclude: /@babel(?:\/|\\{1,2})runtime/,
|
|
16
|
-
loader: require.resolve('babel-loader'),
|
|
17
|
-
options: {
|
|
18
|
-
babelrc: false,
|
|
19
|
-
configFile: false,
|
|
20
|
-
compact: false,
|
|
21
|
-
presets: [
|
|
22
|
-
[
|
|
23
|
-
require.resolve('babel-preset-react-app/dependencies'),
|
|
24
|
-
{ helpers: true },
|
|
25
|
-
],
|
|
26
|
-
],
|
|
27
|
-
cacheDirectory: true,
|
|
28
|
-
// See #6846 for context on why cacheCompression is disabled
|
|
29
|
-
cacheCompression: false,
|
|
30
|
-
// @remove-on-eject-begin
|
|
31
|
-
cacheIdentifier: getCacheIdentifier(
|
|
32
|
-
isEnvProduction
|
|
33
|
-
? 'production'
|
|
34
|
-
: isEnvDevelopment && 'development',
|
|
35
|
-
[
|
|
36
|
-
'babel-plugin-named-asset-import',
|
|
37
|
-
'babel-preset-react-app',
|
|
38
|
-
'react-dev-utils',
|
|
39
|
-
'react-scripts',
|
|
40
|
-
]
|
|
41
|
-
),
|
|
42
|
-
// @remove-on-eject-end
|
|
43
|
-
// Babel sourcemaps are needed for debugging into node_modules
|
|
44
|
-
// code. Without the options below, debuggers like VSCode
|
|
45
|
-
// show incorrect code and set breakpoints on the wrong lines.
|
|
46
|
-
sourceMaps: shouldUseSourceMap,
|
|
47
|
-
inputSourceMap: shouldUseSourceMap,
|
|
48
|
-
},
|
|
49
|
-
});
|
|
50
|
-
|
|
51
|
-
config.resolve.fallback = {
|
|
52
|
-
"fs": false,
|
|
53
|
-
"tls": false,
|
|
54
|
-
"net": false,
|
|
55
|
-
"https": false,
|
|
56
|
-
// "http": require.resolve("stream-http"),
|
|
57
|
-
// "zlib": require.resolve("browserify-zlib"),
|
|
58
|
-
"path": require.resolve("path-browserify"),
|
|
59
|
-
// "stream": require.resolve("stream-browserify"),
|
|
60
|
-
// "util": require.resolve("util/"),
|
|
61
|
-
// "crypto": require.resolve("crypto-browserify")
|
|
62
|
-
"child_process": false,
|
|
63
|
-
"os": false,
|
|
64
|
-
"crypto": false
|
|
65
|
-
}
|
|
66
|
-
config.plugins = (config.plugins || []).concat([
|
|
67
|
-
new webpack.NormalModuleReplacementPlugin(/node:/, (resource) =>
|
|
68
|
-
{
|
|
69
|
-
resource.request = resource.request.replace(/^node:/, "");
|
|
70
|
-
})
|
|
71
|
-
]);
|
|
72
|
-
return config;
|
|
1
|
+
const getCacheIdentifier = require('react-dev-utils/getCacheIdentifier');
|
|
2
|
+
const webpack = require('webpack');
|
|
3
|
+
|
|
4
|
+
const shouldUseSourceMap = process.env.GENERATE_SOURCEMAP !== 'false';
|
|
5
|
+
|
|
6
|
+
module.exports = function config_overrides(config, webpackEnv)
|
|
7
|
+
{
|
|
8
|
+
console.log('overriding webpack config...');
|
|
9
|
+
const isEnvDevelopment = webpackEnv === 'development';
|
|
10
|
+
const isEnvProduction = webpackEnv === 'production';
|
|
11
|
+
const loaders = config.module.rules[1].oneOf;
|
|
12
|
+
|
|
13
|
+
loaders.splice(loaders.length - 1, 0, {
|
|
14
|
+
test: /\.(js|mjs|cjs)$/,
|
|
15
|
+
exclude: /@babel(?:\/|\\{1,2})runtime/,
|
|
16
|
+
loader: require.resolve('babel-loader'),
|
|
17
|
+
options: {
|
|
18
|
+
babelrc: false,
|
|
19
|
+
configFile: false,
|
|
20
|
+
compact: false,
|
|
21
|
+
presets: [
|
|
22
|
+
[
|
|
23
|
+
require.resolve('babel-preset-react-app/dependencies'),
|
|
24
|
+
{ helpers: true },
|
|
25
|
+
],
|
|
26
|
+
],
|
|
27
|
+
cacheDirectory: true,
|
|
28
|
+
// See #6846 for context on why cacheCompression is disabled
|
|
29
|
+
cacheCompression: false,
|
|
30
|
+
// @remove-on-eject-begin
|
|
31
|
+
cacheIdentifier: getCacheIdentifier(
|
|
32
|
+
isEnvProduction
|
|
33
|
+
? 'production'
|
|
34
|
+
: isEnvDevelopment && 'development',
|
|
35
|
+
[
|
|
36
|
+
'babel-plugin-named-asset-import',
|
|
37
|
+
'babel-preset-react-app',
|
|
38
|
+
'react-dev-utils',
|
|
39
|
+
'react-scripts',
|
|
40
|
+
]
|
|
41
|
+
),
|
|
42
|
+
// @remove-on-eject-end
|
|
43
|
+
// Babel sourcemaps are needed for debugging into node_modules
|
|
44
|
+
// code. Without the options below, debuggers like VSCode
|
|
45
|
+
// show incorrect code and set breakpoints on the wrong lines.
|
|
46
|
+
sourceMaps: shouldUseSourceMap,
|
|
47
|
+
inputSourceMap: shouldUseSourceMap,
|
|
48
|
+
},
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
config.resolve.fallback = {
|
|
52
|
+
"fs": false,
|
|
53
|
+
"tls": false,
|
|
54
|
+
"net": false,
|
|
55
|
+
"https": false,
|
|
56
|
+
// "http": require.resolve("stream-http"),
|
|
57
|
+
// "zlib": require.resolve("browserify-zlib"),
|
|
58
|
+
"path": require.resolve("path-browserify"),
|
|
59
|
+
// "stream": require.resolve("stream-browserify"),
|
|
60
|
+
// "util": require.resolve("util/"),
|
|
61
|
+
// "crypto": require.resolve("crypto-browserify")
|
|
62
|
+
"child_process": false,
|
|
63
|
+
"os": false,
|
|
64
|
+
"crypto": false
|
|
65
|
+
}
|
|
66
|
+
config.plugins = (config.plugins || []).concat([
|
|
67
|
+
new webpack.NormalModuleReplacementPlugin(/node:/, (resource) =>
|
|
68
|
+
{
|
|
69
|
+
resource.request = resource.request.replace(/^node:/, "");
|
|
70
|
+
})
|
|
71
|
+
]);
|
|
72
|
+
return config;
|
|
73
73
|
};
|
package/dist/App.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { NSARouterMakerResult } from "./NSARouterMakerResult";
|
|
2
2
|
export interface AppProps extends NSARouterMakerResult {
|
|
3
3
|
}
|
|
4
|
-
export declare function App(props: AppProps): import("react
|
|
4
|
+
export declare function App(props: AppProps): import("react").JSX.Element;
|
package/dist/Router.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function Router(): import("react
|
|
1
|
+
export default function Router(): import("react").JSX.Element;
|
package/dist/UseParams.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PermissionRow } from 'namirasoft-access';
|
|
2
2
|
import { NSDialogProps } from 'namirasoft-site-react';
|
|
3
|
-
import { Component } from 'react';
|
|
3
|
+
import React, { Component } from 'react';
|
|
4
4
|
import { NSARouterMakerResult } from '../NSARouterMakerResult';
|
|
5
5
|
export interface NSAAccessListDialogProps extends NSARouterMakerResult, NSDialogProps {
|
|
6
6
|
onClose: () => void;
|
|
@@ -15,5 +15,5 @@ export declare class NSAAccessListDialog extends Component<NSAAccessListDialogPr
|
|
|
15
15
|
componentDidMount(): void;
|
|
16
16
|
componentWillUnmount(): void;
|
|
17
17
|
private handleClickOutside;
|
|
18
|
-
render():
|
|
18
|
+
render(): React.JSX.Element;
|
|
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
|
}
|
|
@@ -35,6 +35,6 @@ export declare class NSABoxSecret extends React.Component<NSABoxSecretProps, NSA
|
|
|
35
35
|
setDisabled(disabled: boolean): void;
|
|
36
36
|
onChanged(box: NSBoxSensitive | NSBoxString): void;
|
|
37
37
|
getCurrentBox(): NSBoxString | NSBoxSensitive | null;
|
|
38
|
-
render():
|
|
38
|
+
render(): React.JSX.Element;
|
|
39
39
|
}
|
|
40
40
|
export {};
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
.ns_checkbox {
|
|
2
|
-
width: auto;
|
|
3
|
-
max-width: fit-content;
|
|
4
|
-
padding: 0;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.ns_checkbox.disabled {
|
|
8
|
-
opacity: 0.5;
|
|
9
|
-
pointer-events: none;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.ns_checkbox label {
|
|
13
|
-
height: auto;
|
|
14
|
-
border: none !important;
|
|
15
|
-
padding: 0;
|
|
16
|
-
background-color: transparent;
|
|
17
|
-
font-size: 0.875rem;
|
|
18
|
-
line-height: 1rem;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.ns_checkbox label input {
|
|
22
|
-
width: 1rem;
|
|
23
|
-
height: 1rem;
|
|
1
|
+
.ns_checkbox {
|
|
2
|
+
width: auto;
|
|
3
|
+
max-width: fit-content;
|
|
4
|
+
padding: 0;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.ns_checkbox.disabled {
|
|
8
|
+
opacity: 0.5;
|
|
9
|
+
pointer-events: none;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.ns_checkbox label {
|
|
13
|
+
height: auto;
|
|
14
|
+
border: none !important;
|
|
15
|
+
padding: 0;
|
|
16
|
+
background-color: transparent;
|
|
17
|
+
font-size: 0.875rem;
|
|
18
|
+
line-height: 1rem;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.ns_checkbox label input {
|
|
22
|
+
width: 1rem;
|
|
23
|
+
height: 1rem;
|
|
24
24
|
}
|
|
@@ -24,6 +24,6 @@ declare class NSAMasterMenu extends Component<NSAMasterMenuProps, NSAMasterMenuS
|
|
|
24
24
|
componentDidUpdate(_: Readonly<NSAMasterMenuProps>, prev_state: Readonly<NSAMasterMenuState>): void;
|
|
25
25
|
load(): Promise<void>;
|
|
26
26
|
setSearch(search: string): void;
|
|
27
|
-
render(): import("react
|
|
27
|
+
render(): import("react").JSX.Element;
|
|
28
28
|
}
|
|
29
29
|
export default NSAMasterMenu;
|