namirasoft-account-react 1.4.429 → 1.4.430

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 (126) hide show
  1. package/.env.template +15 -15
  2. package/SKILLS.md +514 -514
  3. package/config-overrides.js +72 -72
  4. package/dist/App.d.ts +1 -1
  5. package/dist/UseParams.d.ts +1 -1
  6. package/dist/components/NSAAccessListDialog.d.ts +2 -2
  7. package/dist/components/NSAAccessListDialog.module.css +71 -71
  8. package/dist/components/NSAMasterMenu.d.ts +1 -1
  9. package/dist/components/NSAMasterMenu.module.css +248 -248
  10. package/dist/components/NSAMasterMenuItem.d.ts +1 -1
  11. package/dist/components/NSAMessageListDialog.d.ts +1 -1
  12. package/dist/components/NSAMessageListDialog.module.css +99 -99
  13. package/dist/components/NSAProductListDialog.d.ts +1 -1
  14. package/dist/components/NSAProductListDialog.module.css +44 -44
  15. package/dist/components/NSAReorderDialog.d.ts +1 -1
  16. package/dist/components/NSAReorderDialog.module.css +49 -49
  17. package/dist/components/NSASortDialog.d.ts +1 -1
  18. package/dist/components/NSAUserDialog.d.ts +1 -1
  19. package/dist/components/NSAUserDialog.module.css +67 -67
  20. package/dist/components/NSAWorkspaceListDialog.d.ts +1 -1
  21. package/dist/components/NSAWorkspaceListDialog.module.css +41 -41
  22. package/dist/components/NSBoxSecret.d.ts +1 -1
  23. package/dist/components/NSBoxSecret.module.css +23 -23
  24. package/dist/components/NSLabelSecret.d.ts +1 -1
  25. package/dist/components/quickfilter/NSAQuickFilterBar.d.ts +1 -1
  26. package/dist/components/quickfilter/NSAQuickFilterDialog.d.ts +1 -1
  27. package/dist/layouts/NSALayout.d.ts +1 -1
  28. package/dist/layouts/NSASectionEdit.d.ts +3 -1
  29. package/dist/layouts/NSASectionEdit.js +5 -3
  30. package/dist/layouts/NSASectionEdit.js.map +1 -1
  31. package/dist/layouts/NSASectionEditTabPage.d.ts +1 -1
  32. package/dist/layouts/NSASectionEditTabPage.module.css +4 -4
  33. package/dist/layouts/NSASectionList.d.ts +1 -1
  34. package/dist/layouts/NSASectionList.module.css +31 -31
  35. package/dist/layouts/NSASectionView.d.ts +1 -1
  36. package/dist/layouts/NSASectionViewTabMore.d.ts +1 -1
  37. package/dist/layouts/NSASectionViewTabPage.d.ts +1 -1
  38. package/dist/layouts/NSASectionViewTabPage.module.css +47 -47
  39. package/dist/pages/NSAConsentPage.module.css +26 -26
  40. package/dist/pages/NSAEmailVerificationPage.d.ts +1 -1
  41. package/dist/pages/NSAHomePage.d.ts +1 -1
  42. package/dist/pages/NSAHomePage.module.css +41 -41
  43. package/dist/pages/NSALoginPage.d.ts +1 -1
  44. package/dist/pages/NSALoginPage.module.css +26 -26
  45. package/dist/pages/NSAPhoneVerificationPage.d.ts +1 -1
  46. package/dist/pages/NSAVerificationPage.d.ts +1 -1
  47. package/dist/pages/NSAVerificationPage.module.css +31 -31
  48. package/package.json +94 -94
  49. package/public/index.html +21 -21
  50. package/src/App.css +31 -31
  51. package/src/App.tsx +19 -19
  52. package/src/CTFRow.ts +7 -7
  53. package/src/IEntityInfo.ts +33 -33
  54. package/src/NSACacheService.ts +120 -120
  55. package/src/NSAFilterOperators.ts +92 -92
  56. package/src/NSARouterMaker.tsx +139 -139
  57. package/src/NSARouterMakerConfig.ts +15 -15
  58. package/src/NSARouterMakerProps.ts +22 -22
  59. package/src/Router.tsx +45 -45
  60. package/src/UseParams.tsx +18 -18
  61. package/src/components/NSAAccessListDialog.module.css +71 -71
  62. package/src/components/NSAAccessListDialog.tsx +178 -178
  63. package/src/components/NSAMasterMenu.module.css +248 -248
  64. package/src/components/NSAMasterMenu.tsx +169 -169
  65. package/src/components/NSAMasterMenuItem.tsx +250 -250
  66. package/src/components/NSAMessageListDialog.module.css +99 -99
  67. package/src/components/NSAMessageListDialog.tsx +141 -141
  68. package/src/components/NSAProductListDialog.module.css +44 -44
  69. package/src/components/NSAProductListDialog.tsx +88 -88
  70. package/src/components/NSAReorderDialog.module.css +49 -49
  71. package/src/components/NSAReorderDialog.tsx +149 -149
  72. package/src/components/NSASortDialog.tsx +117 -117
  73. package/src/components/NSATable.tsx +489 -489
  74. package/src/components/NSAUserDialog.module.css +67 -67
  75. package/src/components/NSAUserDialog.tsx +122 -122
  76. package/src/components/NSAWorkspaceListDialog.module.css +41 -41
  77. package/src/components/NSAWorkspaceListDialog.tsx +147 -147
  78. package/src/components/NSBoxSecret.module.css +23 -23
  79. package/src/components/NSBoxSecret.tsx +258 -258
  80. package/src/components/NSLabelSecret.tsx +37 -37
  81. package/src/components/quickfilter/NSAFilterBoxBase.tsx +55 -55
  82. package/src/components/quickfilter/NSAFilterBoxBoolean.tsx +54 -54
  83. package/src/components/quickfilter/NSAFilterBoxDate.tsx +104 -104
  84. package/src/components/quickfilter/NSAFilterBoxDateTime.tsx +105 -105
  85. package/src/components/quickfilter/NSAFilterBoxEnum.module.css +44 -44
  86. package/src/components/quickfilter/NSAFilterBoxEnum.tsx +79 -79
  87. package/src/components/quickfilter/NSAFilterBoxNumber.tsx +136 -136
  88. package/src/components/quickfilter/NSAFilterBoxString.tsx +81 -81
  89. package/src/components/quickfilter/NSAFilterBoxTime.tsx +101 -101
  90. package/src/components/quickfilter/NSAQuickFilterBar.module.css +19 -19
  91. package/src/components/quickfilter/NSAQuickFilterBar.tsx +114 -114
  92. package/src/components/quickfilter/NSAQuickFilterDialog.module.css +74 -74
  93. package/src/components/quickfilter/NSAQuickFilterDialog.tsx +260 -260
  94. package/src/css.d.ts +13 -13
  95. package/src/formatters/SecretFormatter.tsx +24 -24
  96. package/src/index.tsx +24 -24
  97. package/src/layouts/Actions.ts +145 -145
  98. package/src/layouts/CFTUtil.ts +18 -18
  99. package/src/layouts/NSALayout.tsx +841 -841
  100. package/src/layouts/NSASectionEdit.tsx +260 -250
  101. package/src/layouts/NSASectionEditTabPage.module.css +4 -4
  102. package/src/layouts/NSASectionEditTabPage.tsx +250 -250
  103. package/src/layouts/NSASectionList.module.css +31 -31
  104. package/src/layouts/NSASectionList.tsx +149 -149
  105. package/src/layouts/NSASectionView.tsx +100 -100
  106. package/src/layouts/NSASectionViewTabMore.tsx +77 -77
  107. package/src/layouts/NSASectionViewTabPage.module.css +47 -47
  108. package/src/layouts/NSASectionViewTabPage.tsx +419 -419
  109. package/src/main.ts +46 -46
  110. package/src/pages/NSAConsentPage.module.css +26 -26
  111. package/src/pages/NSAConsentPage.tsx +120 -120
  112. package/src/pages/NSAEmailVerificationPage.tsx +30 -30
  113. package/src/pages/NSAHomePage.module.css +41 -41
  114. package/src/pages/NSAHomePage.tsx +102 -102
  115. package/src/pages/NSALoginPage.module.css +26 -26
  116. package/src/pages/NSALoginPage.tsx +87 -87
  117. package/src/pages/NSAPhoneVerificationPage.tsx +94 -94
  118. package/src/pages/NSAVerificationPage.module.css +31 -31
  119. package/src/pages/NSAVerificationPage.tsx +186 -186
  120. package/src/pages/PaymentRequired.tsx +74 -74
  121. package/tsconfig.json +43 -43
  122. package/dist/App.css +0 -32
  123. package/dist/components/quickfilter/NSAFilterBoxEnum.module.css +0 -45
  124. package/dist/components/quickfilter/NSAQuickFilterBar.module.css +0 -20
  125. package/dist/components/quickfilter/NSAQuickFilterDialog.module.css +0 -75
  126. package/dist/index.css +0 -0
@@ -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
  }
@@ -10,5 +10,5 @@ export interface NSLabelSecretState {
10
10
  loading: boolean;
11
11
  decrypted_value: string | null;
12
12
  }
13
- export declare function NSLabelSecret(props: NSLabelSecretProps): import("react/jsx-runtime").JSX.Element;
13
+ export declare function NSLabelSecret(props: NSLabelSecretProps): import("react").JSX.Element;
14
14
  export default NSLabelSecret;
@@ -23,6 +23,6 @@ export declare class NSAQuickFilterBar extends Component<NSAQuickFilterBarProps,
23
23
  private handleFilterChange;
24
24
  private renderFilterBox;
25
25
  private renderCard;
26
- render(): import("react/jsx-runtime").JSX.Element | null;
26
+ render(): import("react").JSX.Element | null;
27
27
  }
28
28
  export {};
@@ -38,6 +38,6 @@ export declare class NSAQuickFilterDialog extends Component<NSAQuickFilterDialog
38
38
  private deleteConfig;
39
39
  private hasChanges;
40
40
  private saveForm;
41
- render(): import("react/jsx-runtime").JSX.Element;
41
+ render(): import("react").JSX.Element;
42
42
  }
43
43
  export {};
@@ -116,6 +116,6 @@ export declare class NSALayout<RowType extends {
116
116
  componentDidMount(): void;
117
117
  componentDidUpdate(): void;
118
118
  componentWillUnmount(): void;
119
- render(): import("react/jsx-runtime").JSX.Element;
119
+ render(): import("react").JSX.Element;
120
120
  }
121
121
  export {};
@@ -16,6 +16,8 @@ export interface NSASectionEditCustomProps<RowType extends {
16
16
  editor: NSASectionEditTabPageEditorProps<RowType, RowTypeInput>;
17
17
  };
18
18
  tab_page_view?: NSASectionViewTabPageUIProps<RowType>;
19
+ getChildrenBefore?: (id: string, row: RowType | null) => ReactNode;
20
+ getChildrenAfter?: (id: string, row: RowType | null) => ReactNode;
19
21
  };
20
22
  onLoaded?: () => void;
21
23
  onRowLoaded?: (item: RowType) => void;
@@ -51,6 +53,6 @@ export declare class NSASectionEdit<RowType extends {
51
53
  getRow(): RowType | null;
52
54
  onApply(onFinshied: () => void): Promise<void>;
53
55
  componentDidMount(): void;
54
- render(): import("react/jsx-runtime").JSX.Element;
56
+ render(): import("react").JSX.Element;
55
57
  }
56
58
  export {};
@@ -125,7 +125,7 @@ export class NSASectionEdit extends Component {
125
125
  this.setState(() => ({ loading: false }), () => { var _a, _b; return (_b = (_a = this.props).onLoaded) === null || _b === void 0 ? void 0 : _b.call(_a); });
126
126
  }
127
127
  render() {
128
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
128
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
129
129
  return (_jsxs(_Fragment, { children: [_jsxs(NSSection, { id: this.props.id, classList: [`${(_b = (_a = this.props.classList) === null || _a === void 0 ? void 0 : _a.join(" ")) !== null && _b !== void 0 ? _b : ""}`], style: Object.assign({}, this.props.style), children: [!this.state.loading
130
130
  ?
131
131
  _jsx(NSPanel, { id: (_c = this.props.ui.panel) === null || _c === void 0 ? void 0 : _c.id, classList: [`${(_f = (_e = (_d = this.props.ui.panel) === null || _d === void 0 ? void 0 : _d.classList) === null || _e === void 0 ? void 0 : _e.join(" ")) !== null && _f !== void 0 ? _f : ""}`], style: Object.assign({}, (_g = this.props.ui.panel) === null || _g === void 0 ? void 0 : _g.style), children: _jsx(NSASectionEditTabPage, Object.assign({ ref: this.NSASectionEditTabPage_Ref }, this.props, { model: {
@@ -138,10 +138,12 @@ export class NSASectionEdit extends Component {
138
138
  this.onApply(onFinished);
139
139
  }
140
140
  } })] }), this.props.isEdit && ((_j = (_h = this.props.ui.tab_page_view) === null || _h === void 0 ? void 0 : _h.enabled) !== null && _j !== void 0 ? _j : true) && !this.state.loading &&
141
- _jsxs(_Fragment, { children: [_jsx(NSSpace, { size: NSSpaceSizeType.SMALL }), _jsx(NSLine, {}), _jsx(NSSpace, { size: NSSpaceSizeType.SMALL }), _jsx(NSASectionViewTabPage, Object.assign({ ref: this.NSASectionViewTabPage_Ref }, this.props, { model: {
141
+ _jsxs(_Fragment, { children: [_jsx(NSSpace, { size: NSSpaceSizeType.SMALL }), _jsx(NSLine, {}), _jsx(NSSpace, { size: NSSpaceSizeType.SMALL }), this.props.ui.getChildrenBefore &&
142
+ this.props.ui.getChildrenBefore((_k = this.props.model.id) !== null && _k !== void 0 ? _k : "", this.state.row), _jsx(NSASectionViewTabPage, Object.assign({ ref: this.NSASectionViewTabPage_Ref }, this.props, { model: {
142
143
  id: this.props.model.id,
143
144
  row: this.state.row
144
- }, ui: this.props.ui.tab_page_view }))] })] }));
145
+ }, ui: this.props.ui.tab_page_view })), this.props.ui.getChildrenAfter &&
146
+ this.props.ui.getChildrenAfter((_l = this.props.model.id) !== null && _l !== void 0 ? _l : "", this.state.row)] })] }));
145
147
  }
146
148
  }
147
149
  //# sourceMappingURL=NSASectionEdit.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"NSASectionEdit.js","sourceRoot":"","sources":["../../src/layouts/NSASectionEdit.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"NSASectionEdit.js","sourceRoot":"","sources":["../../src/layouts/NSASectionEdit.tsx"],"names":[],"mappings":"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"}
@@ -56,6 +56,6 @@ export declare class NSASectionEditTabPage<RowType extends {
56
56
  private getFields;
57
57
  private setFields;
58
58
  componentDidMount(): void;
59
- render(): import("react/jsx-runtime").JSX.Element;
59
+ render(): import("react").JSX.Element;
60
60
  }
61
61
  export {};
@@ -1,5 +1,5 @@
1
- @media screen and (min-width: 768px) {
2
- .nsa_section_edit_tab_page {
3
- min-width: 560px;
4
- }
1
+ @media screen and (min-width: 768px) {
2
+ .nsa_section_edit_tab_page {
3
+ min-width: 560px;
4
+ }
5
5
  }
@@ -46,5 +46,5 @@ export declare class NSASectionList<RowType extends {
46
46
  constructor(props: NSASectionListProps<RowType, RowTypeInput>);
47
47
  getSelectedIDs(): string[];
48
48
  getSelectedRows(): RowType[];
49
- render(): import("react/jsx-runtime").JSX.Element;
49
+ render(): import("react").JSX.Element;
50
50
  }
@@ -1,32 +1,32 @@
1
- .nsa_section_list_btn {
2
- width: 48px;
3
- border: 1px solid #a0a0a0;
4
- }
5
-
6
- .nsa_section_list_btn img {
7
- width: 24px;
8
- height: 24px;
9
- }
10
-
11
- .nsa_section_list_actions {
12
- display: flex;
13
- flex-direction: row;
14
- flex-wrap: nowrap;
15
- justify-content: flex-end;
16
- align-items: center;
17
- gap: 8px;
18
- flex-shrink: 0;
19
- }
20
-
21
- @media screen and (min-width: 992px) {
22
- .nsa_table {
23
- display: flex;
24
- flex-direction: column;
25
- }
26
-
27
- .nsa_table table {
28
- flex: 1 1 auto;
29
- min-height: 0;
30
- max-height: none;
31
- }
1
+ .nsa_section_list_btn {
2
+ width: 48px;
3
+ border: 1px solid #a0a0a0;
4
+ }
5
+
6
+ .nsa_section_list_btn img {
7
+ width: 24px;
8
+ height: 24px;
9
+ }
10
+
11
+ .nsa_section_list_actions {
12
+ display: flex;
13
+ flex-direction: row;
14
+ flex-wrap: nowrap;
15
+ justify-content: flex-end;
16
+ align-items: center;
17
+ gap: 8px;
18
+ flex-shrink: 0;
19
+ }
20
+
21
+ @media screen and (min-width: 992px) {
22
+ .nsa_table {
23
+ display: flex;
24
+ flex-direction: column;
25
+ }
26
+
27
+ .nsa_table table {
28
+ flex: 1 1 auto;
29
+ min-height: 0;
30
+ max-height: none;
31
+ }
32
32
  }
@@ -39,6 +39,6 @@ export declare class NSASectionView<RowType extends {
39
39
  reload(): void;
40
40
  getRow(): RowType | null;
41
41
  componentDidMount(): void;
42
- render(): import("react/jsx-runtime").JSX.Element;
42
+ render(): import("react").JSX.Element;
43
43
  }
44
44
  export {};
@@ -5,5 +5,5 @@ export interface NSASectionViewTabMoreProps {
5
5
  export interface NSASectionViewTabMoreState {
6
6
  }
7
7
  export declare class NSASectionViewTabMore extends Component<NSASectionViewTabMoreProps, NSASectionViewTabMoreState> {
8
- render(): import("react/jsx-runtime").JSX.Element;
8
+ render(): import("react").JSX.Element;
9
9
  }
@@ -78,6 +78,6 @@ export declare class NSASectionViewTabPage<RowType extends {
78
78
  reload(): void;
79
79
  getRow(): RowType | null;
80
80
  componentDidMount(): void;
81
- render(): import("react/jsx-runtime").JSX.Element;
81
+ render(): import("react").JSX.Element;
82
82
  }
83
83
  export {};
@@ -1,48 +1,48 @@
1
- .nsa_section_tab_page_parent {
2
- display: flex;
3
- flex-wrap: wrap;
4
- flex-direction: column;
5
- gap: 0px 32px;
6
- }
7
-
8
- .nsa_section_tab_page_item {
9
- color: black;
10
- display: flex;
11
- flex-direction: column;
12
- }
13
-
14
- .nsa_section_tab_page_item>span {
15
- margin: 0px;
16
- }
17
-
18
- .nsa_section_tab_page_item>div {
19
- margin: 0px;
20
- }
21
-
22
- @media only screen and (min-width: 480px) {
23
- .nsa_section_tab_page_item {
24
- display: flex;
25
- flex-direction: row;
26
- }
27
-
28
- .nsa_section_tab_page_item>span {
29
- min-width: 200px;
30
- }
31
- }
32
-
33
- @media only screen and (min-width: 768px) {
34
- .nsa_section_tab_page_parent {
35
- gap: 16px 32px;
36
- }
37
- }
38
-
39
- @media only screen and (min-width: 1024px) {
40
- .nsa_section_tab_page_parent {
41
- flex-direction: row;
42
- gap: 16px 32px;
43
- }
44
-
45
- .nsa_section_tab_page_item {
46
- flex-direction: column;
47
- }
1
+ .nsa_section_tab_page_parent {
2
+ display: flex;
3
+ flex-wrap: wrap;
4
+ flex-direction: column;
5
+ gap: 0px 32px;
6
+ }
7
+
8
+ .nsa_section_tab_page_item {
9
+ color: black;
10
+ display: flex;
11
+ flex-direction: column;
12
+ }
13
+
14
+ .nsa_section_tab_page_item>span {
15
+ margin: 0px;
16
+ }
17
+
18
+ .nsa_section_tab_page_item>div {
19
+ margin: 0px;
20
+ }
21
+
22
+ @media only screen and (min-width: 480px) {
23
+ .nsa_section_tab_page_item {
24
+ display: flex;
25
+ flex-direction: row;
26
+ }
27
+
28
+ .nsa_section_tab_page_item>span {
29
+ min-width: 200px;
30
+ }
31
+ }
32
+
33
+ @media only screen and (min-width: 768px) {
34
+ .nsa_section_tab_page_parent {
35
+ gap: 16px 32px;
36
+ }
37
+ }
38
+
39
+ @media only screen and (min-width: 1024px) {
40
+ .nsa_section_tab_page_parent {
41
+ flex-direction: row;
42
+ gap: 16px 32px;
43
+ }
44
+
45
+ .nsa_section_tab_page_item {
46
+ flex-direction: column;
47
+ }
48
48
  }
@@ -1,27 +1,27 @@
1
- .nsa_consent_page_container {
2
- display: flex;
3
- flex-direction: column;
4
- align-items: center;
5
- justify-content: center;
6
- min-height: 100vh;
7
- }
8
-
9
- .nsa_consent_page_logo {
10
- text-align: center;
11
- }
12
-
13
- .nsa_consent_page_title {
14
- font-size: 32px;
15
- font-weight: 700;
16
- text-align: center;
17
- }
18
-
19
- .nsa_consent_page_button {
20
- text-align: center;
21
- }
22
-
23
- .nsa_consent_page_version {
24
- position: fixed;
25
- left: 16px;
26
- bottom: 16px;
1
+ .nsa_consent_page_container {
2
+ display: flex;
3
+ flex-direction: column;
4
+ align-items: center;
5
+ justify-content: center;
6
+ min-height: 100vh;
7
+ }
8
+
9
+ .nsa_consent_page_logo {
10
+ text-align: center;
11
+ }
12
+
13
+ .nsa_consent_page_title {
14
+ font-size: 32px;
15
+ font-weight: 700;
16
+ text-align: center;
17
+ }
18
+
19
+ .nsa_consent_page_button {
20
+ text-align: center;
21
+ }
22
+
23
+ .nsa_consent_page_version {
24
+ position: fixed;
25
+ left: 16px;
26
+ bottom: 16px;
27
27
  }
@@ -2,5 +2,5 @@ import { NSARouterMakerProps } from "../NSARouterMakerProps";
2
2
  interface NSAEmailVerificationPageProps extends NSARouterMakerProps {
3
3
  callback: string;
4
4
  }
5
- export declare function NSAEmailVerificationPage(props: NSAEmailVerificationPageProps): import("react/jsx-runtime").JSX.Element;
5
+ export declare function NSAEmailVerificationPage(props: NSAEmailVerificationPageProps): import("react").JSX.Element;
6
6
  export {};
@@ -22,4 +22,4 @@ export interface NSAHomePageState {
22
22
  product: ProductFullRow | null;
23
23
  search_text?: string;
24
24
  }
25
- export declare function NSAHomePage(props: NSAHomePageProps): import("react/jsx-runtime").JSX.Element;
25
+ export declare function NSAHomePage(props: NSAHomePageProps): import("react").JSX.Element;
@@ -1,42 +1,42 @@
1
- .nsa_home_container {
2
- display: flex;
3
- flex-direction: column;
4
- width: 100%;
5
- justify-content: center;
6
- align-items: center;
7
- text-align: center;
8
- color: #141B5C;
9
- }
10
-
11
- .nsa_home_container h2 {
12
- color: #141B5C;
13
- font-size: 48px;
14
- font-weight: 600;
15
- text-align: center;
16
- }
17
-
18
- .nsa_home_container p {
19
- color: #141B5C;
20
- font-size: 16px;
21
- max-width: 960px;
22
- text-align: center;
23
- margin-bottom: 0;
24
- }
25
-
26
- .nsa_home_search_wrapper {
27
- height: 3.5rem;
28
- }
29
-
30
- .nsa_home_search_box {
31
- min-height: 100%;
32
- border: none !important;
33
- border-radius: 2rem;
34
- padding: 0.5rem 1rem 0.5rem 3rem;
35
- background: url("https://static.namirasoft.com/image/concept/search/blue.svg") left 16px center / 24px no-repeat scroll white !important;
36
- box-shadow: 0 0 0 4px rgba(64, 150, 255, 0.08);
37
- }
38
-
39
- .nsa_home_search_box:focus-visible {
40
- outline: none !important;
41
- box-shadow: 0 0 0 4px rgb(64, 150, 255, 0.24);
1
+ .nsa_home_container {
2
+ display: flex;
3
+ flex-direction: column;
4
+ width: 100%;
5
+ justify-content: center;
6
+ align-items: center;
7
+ text-align: center;
8
+ color: #141B5C;
9
+ }
10
+
11
+ .nsa_home_container h2 {
12
+ color: #141B5C;
13
+ font-size: 48px;
14
+ font-weight: 600;
15
+ text-align: center;
16
+ }
17
+
18
+ .nsa_home_container p {
19
+ color: #141B5C;
20
+ font-size: 16px;
21
+ max-width: 960px;
22
+ text-align: center;
23
+ margin-bottom: 0;
24
+ }
25
+
26
+ .nsa_home_search_wrapper {
27
+ height: 3.5rem;
28
+ }
29
+
30
+ .nsa_home_search_box {
31
+ min-height: 100%;
32
+ border: none !important;
33
+ border-radius: 2rem;
34
+ padding: 0.5rem 1rem 0.5rem 3rem;
35
+ background: url("https://static.namirasoft.com/image/concept/search/blue.svg") left 16px center / 24px no-repeat scroll white !important;
36
+ box-shadow: 0 0 0 4px rgba(64, 150, 255, 0.08);
37
+ }
38
+
39
+ .nsa_home_search_box:focus-visible {
40
+ outline: none !important;
41
+ box-shadow: 0 0 0 4px rgb(64, 150, 255, 0.24);
42
42
  }
@@ -12,4 +12,4 @@ export interface NSALoginPageProps {
12
12
  export interface NSALoginPageState {
13
13
  product: ProductFullRow | null;
14
14
  }
15
- export declare function NSALoginPage(props: NSALoginPageProps): import("react/jsx-runtime").JSX.Element;
15
+ export declare function NSALoginPage(props: NSALoginPageProps): import("react").JSX.Element;
@@ -1,27 +1,27 @@
1
- .nsa_login_page_container {
2
- display: flex;
3
- flex-direction: column;
4
- align-items: center;
5
- justify-content: center;
6
- min-height: 100vh;
7
- }
8
-
9
- .nsa_login_page_logo {
10
- text-align: center;
11
- }
12
-
13
- .nsa_login_page_title {
14
- font-size: 32px;
15
- font-weight: 700;
16
- text-align: center;
17
- }
18
-
19
- .nsa_login_page_button {
20
- text-align: center;
21
- }
22
-
23
- .nsa_login_page_version {
24
- position: fixed;
25
- left: 16px;
26
- bottom: 16px;
1
+ .nsa_login_page_container {
2
+ display: flex;
3
+ flex-direction: column;
4
+ align-items: center;
5
+ justify-content: center;
6
+ min-height: 100vh;
7
+ }
8
+
9
+ .nsa_login_page_logo {
10
+ text-align: center;
11
+ }
12
+
13
+ .nsa_login_page_title {
14
+ font-size: 32px;
15
+ font-weight: 700;
16
+ text-align: center;
17
+ }
18
+
19
+ .nsa_login_page_button {
20
+ text-align: center;
21
+ }
22
+
23
+ .nsa_login_page_version {
24
+ position: fixed;
25
+ left: 16px;
26
+ bottom: 16px;
27
27
  }
@@ -2,5 +2,5 @@ import { NSARouterMakerProps } from "../NSARouterMakerProps";
2
2
  interface NSAPhoneVerificationPageProps extends NSARouterMakerProps {
3
3
  callback: string;
4
4
  }
5
- export declare function NSAPhoneVerificationPage(props: NSAPhoneVerificationPageProps): import("react/jsx-runtime").JSX.Element;
5
+ export declare function NSAPhoneVerificationPage(props: NSAPhoneVerificationPageProps): import("react").JSX.Element;
6
6
  export {};
@@ -21,5 +21,5 @@ export declare class NSAVerificationPage extends React.Component<NSAVerification
21
21
  private onRequest;
22
22
  private onVerify;
23
23
  componentDidMount(): void;
24
- render(): import("react/jsx-runtime").JSX.Element;
24
+ render(): React.JSX.Element;
25
25
  }