namirasoft-account-react 1.4.431 → 1.4.433
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/SKILLS.md +514 -514
- package/config-overrides.js +72 -72
- package/dist/App.d.ts +1 -1
- package/dist/NSARouterMaker.js +1 -0
- package/dist/NSARouterMaker.js.map +1 -1
- package/dist/NSARouterMakerProps.d.ts +2 -0
- package/dist/NSATaskService.d.ts +35 -0
- package/dist/NSATaskService.js +80 -0
- package/dist/NSATaskService.js.map +1 -0
- 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/NSAMasterMenu.d.ts +1 -1
- package/dist/components/NSAMasterMenu.module.css +248 -248
- package/dist/components/NSAMasterMenuItem.d.ts +1 -1
- package/dist/components/NSAMessageListDialog.d.ts +1 -1
- package/dist/components/NSAMessageListDialog.js +4 -3
- package/dist/components/NSAMessageListDialog.js.map +1 -1
- package/dist/components/NSAMessageListDialog.module.css +99 -99
- package/dist/components/NSANavigationGuard.d.ts +6 -0
- package/dist/components/NSANavigationGuard.js +37 -0
- package/dist/components/NSANavigationGuard.js.map +1 -0
- package/dist/components/NSAProductListDialog.d.ts +1 -1
- package/dist/components/NSAProductListDialog.module.css +44 -44
- package/dist/components/NSAReorderDialog.d.ts +1 -1
- package/dist/components/NSAReorderDialog.module.css +49 -49
- package/dist/components/NSASortDialog.d.ts +1 -1
- package/dist/components/NSATable.js +7 -0
- package/dist/components/NSATable.js.map +1 -1
- package/dist/components/NSATaskBar.d.ts +13 -0
- package/dist/components/NSATaskBar.js +53 -0
- package/dist/components/NSATaskBar.js.map +1 -0
- package/dist/components/NSATaskBar.module.css +58 -0
- 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/NSBoxSecret.d.ts +1 -1
- package/dist/components/NSBoxSecret.module.css +23 -23
- package/dist/components/NSLabelSecret.d.ts +1 -1
- package/dist/components/quickfilter/NSAQuickFilterBar.d.ts +1 -1
- package/dist/components/quickfilter/NSAQuickFilterDialog.d.ts +1 -1
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/layouts/Actions.d.ts +1 -1
- package/dist/layouts/Actions.js +8 -6
- package/dist/layouts/Actions.js.map +1 -1
- package/dist/layouts/NSALayout.d.ts +1 -6
- package/dist/layouts/NSALayout.js +36 -61
- package/dist/layouts/NSALayout.js.map +1 -1
- package/dist/layouts/NSASectionEdit.d.ts +3 -1
- package/dist/layouts/NSASectionEdit.js +28 -19
- package/dist/layouts/NSASectionEdit.js.map +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/NSASectionViewTabMore.js +3 -3
- package/dist/layouts/NSASectionViewTabMore.js.map +1 -1
- package/dist/layouts/NSASectionViewTabPage.d.ts +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/dist/pages/PaymentRequired.js +4 -2
- package/dist/pages/PaymentRequired.js.map +1 -1
- package/package.json +94 -94
- package/public/index.html +21 -21
- package/src/App.css +31 -31
- package/src/App.tsx +19 -19
- package/src/CTFRow.ts +7 -7
- package/src/IEntityInfo.ts +33 -33
- package/src/NSACacheService.ts +120 -120
- package/src/NSAFilterOperators.ts +92 -92
- package/src/NSARouterMaker.tsx +140 -139
- package/src/NSARouterMakerConfig.ts +15 -15
- package/src/NSARouterMakerProps.ts +24 -22
- package/src/NSATaskService.ts +123 -0
- package/src/Router.tsx +45 -45
- package/src/UseParams.tsx +18 -18
- package/src/components/NSAAccessListDialog.module.css +71 -71
- package/src/components/NSAAccessListDialog.tsx +178 -178
- package/src/components/NSAMasterMenu.module.css +248 -248
- 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 -141
- package/src/components/NSANavigationGuard.tsx +65 -0
- package/src/components/NSAProductListDialog.module.css +44 -44
- package/src/components/NSAProductListDialog.tsx +88 -88
- package/src/components/NSAReorderDialog.module.css +49 -49
- package/src/components/NSAReorderDialog.tsx +149 -149
- package/src/components/NSASortDialog.tsx +117 -117
- package/src/components/NSATable.tsx +498 -489
- package/src/components/NSATaskBar.module.css +58 -0
- package/src/components/NSATaskBar.tsx +102 -0
- 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/NSBoxSecret.module.css +23 -23
- package/src/components/NSBoxSecret.tsx +258 -258
- package/src/components/NSLabelSecret.tsx +37 -37
- package/src/components/quickfilter/NSAFilterBoxBase.tsx +55 -55
- package/src/components/quickfilter/NSAFilterBoxBoolean.tsx +54 -54
- package/src/components/quickfilter/NSAFilterBoxDate.tsx +104 -104
- package/src/components/quickfilter/NSAFilterBoxDateTime.tsx +105 -105
- package/src/components/quickfilter/NSAFilterBoxEnum.module.css +44 -44
- package/src/components/quickfilter/NSAFilterBoxEnum.tsx +79 -79
- package/src/components/quickfilter/NSAFilterBoxNumber.tsx +136 -136
- package/src/components/quickfilter/NSAFilterBoxString.tsx +81 -81
- package/src/components/quickfilter/NSAFilterBoxTime.tsx +101 -101
- package/src/components/quickfilter/NSAQuickFilterBar.module.css +19 -19
- package/src/components/quickfilter/NSAQuickFilterBar.tsx +114 -114
- 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 -24
- package/src/layouts/Actions.ts +146 -145
- package/src/layouts/CFTUtil.ts +18 -18
- package/src/layouts/NSALayout.tsx +790 -841
- package/src/layouts/NSASectionEdit.tsx +279 -260
- package/src/layouts/NSASectionEditTabPage.module.css +4 -4
- package/src/layouts/NSASectionEditTabPage.tsx +250 -250
- package/src/layouts/NSASectionList.module.css +31 -31
- package/src/layouts/NSASectionList.tsx +149 -149
- package/src/layouts/NSASectionView.tsx +100 -100
- package/src/layouts/NSASectionViewTabMore.tsx +77 -77
- package/src/layouts/NSASectionViewTabPage.module.css +47 -47
- package/src/layouts/NSASectionViewTabPage.tsx +419 -419
- package/src/main.ts +46 -46
- 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 +102 -102
- 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 +186 -186
- package/src/pages/PaymentRequired.tsx +76 -74
- package/tsconfig.json +43 -43
- package/dist/App.css +0 -32
- package/dist/components/quickfilter/NSAFilterBoxEnum.module.css +0 -45
- package/dist/components/quickfilter/NSAQuickFilterBar.module.css +0 -20
- package/dist/components/quickfilter/NSAQuickFilterDialog.module.css +0 -75
- package/dist/index.css +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NSASectionViewTabMore.js","sourceRoot":"","sources":["../../src/layouts/NSASectionViewTabMore.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"NSASectionViewTabMore.js","sourceRoot":"","sources":["../../src/layouts/NSASectionViewTabMore.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,QAAQ,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AACvG,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAUlC,MAAM,OAAO,qBAAsB,SAAQ,SAAiE;IAElG,MAAM;QAEd,OAAO,CACN,MAAC,QAAQ,eAER,KAAC,OAAO,IACP,KAAK,EAAC,0BAA0B,EAChC,WAAW,EAAC,uEAAuE,GACzE,EACX,KAAC,KAAK,cACL,KAAC,aAAa,IACb,KAAK,EAAC,gBAAgB,EACtB,OAAO,EAAE;4BACR,MAAM,EAAE,GAAG,EAAE;gCAEZ,IAAI,gCAAgC,GAAG,IAAI,UAAU,CAAC,kCAAkC,EAAE,IAAI,CAAC,CAAC,SAAS,EAAE,CAAC;gCACpF,aAAa,CAAC,IAAI,CAAC,gCAAgC,GAAG,aAAa,CAAC,CAAC;4BAC9F,CAAC;4BACD,WAAW,EAAE,KAAK;yBAClB,GACe,GACV,EACR,KAAC,MAAM,KAAG,EACV,KAAC,OAAO,IACP,KAAK,EAAC,6BAA6B,EACnC,WAAW,EAAC,2EAA2E,GAE9E,EACV,KAAC,KAAK,cACL,KAAC,aAAa,IACb,KAAK,EAAC,mBAAmB,EACzB,OAAO,EAAE;4BACR,MAAM,EAAE,GAAG,EAAE;gCAEZ,IAAI,gCAAgC,GAAG,IAAI,UAAU,CAAC,kCAAkC,EAAE,IAAI,CAAC,CAAC,SAAS,EAAE,CAAC;gCACpF,aAAa,CAAC,IAAI,CAAC,gCAAgC,GAAG,gBAAgB,CAAC,CAAC;4BACjG,CAAC;4BACD,WAAW,EAAE,KAAK;yBAClB,GACe,GACV,EACR,KAAC,MAAM,KAAG,EACV,KAAC,OAAO,IACP,KAAK,EAAC,kBAAkB,EACxB,WAAW,EAAC,qKAAqK,GAExK,EACV,KAAC,KAAK,cACL,KAAC,aAAa,IACb,KAAK,EAAC,aAAa,EACnB,OAAO,EAAE;4BACR,MAAM,EAAE,GAAG,EAAE;;gCAEZ,MAAA,MAAA,IAAI,CAAC,KAAK,EAAC,gBAAgB,kDAAI,CAAC;gCAChC,QAAQ,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC;4BAC5B,CAAC;4BACD,WAAW,EAAE,KAAK;yBAClB,GACe,GACV,IACE,CACX,CAAC;IACH,CAAC;CACD"}
|
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
5
|
+
export declare function NSAPhoneVerificationPage(props: NSAPhoneVerificationPageProps): import("react").JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
.nsa_verification_container {
|
|
2
|
-
background-color: #FFF;
|
|
3
|
-
border: 1px solid #A1A4B0;
|
|
4
|
-
backdrop-filter: blur(5px);
|
|
5
|
-
border-radius: 8px;
|
|
6
|
-
width: 100%;
|
|
7
|
-
max-width: 594px;
|
|
8
|
-
padding: 16px;
|
|
9
|
-
color: #141B5C !important;
|
|
10
|
-
display: flex;
|
|
11
|
-
flex-direction: column;
|
|
12
|
-
gap: 16px;
|
|
13
|
-
align-items: center;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.nsa_verification_container p {
|
|
17
|
-
text-align: center;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.nsa_verification_vector {
|
|
21
|
-
width: 224px;
|
|
22
|
-
height: 224px;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.nsa_resend_button {
|
|
26
|
-
border: 0;
|
|
27
|
-
outline: 0;
|
|
28
|
-
background: none;
|
|
29
|
-
color: #141B5C;
|
|
30
|
-
font-size: 16px;
|
|
31
|
-
font-weight: 500;
|
|
1
|
+
.nsa_verification_container {
|
|
2
|
+
background-color: #FFF;
|
|
3
|
+
border: 1px solid #A1A4B0;
|
|
4
|
+
backdrop-filter: blur(5px);
|
|
5
|
+
border-radius: 8px;
|
|
6
|
+
width: 100%;
|
|
7
|
+
max-width: 594px;
|
|
8
|
+
padding: 16px;
|
|
9
|
+
color: #141B5C !important;
|
|
10
|
+
display: flex;
|
|
11
|
+
flex-direction: column;
|
|
12
|
+
gap: 16px;
|
|
13
|
+
align-items: center;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.nsa_verification_container p {
|
|
17
|
+
text-align: center;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.nsa_verification_vector {
|
|
21
|
+
width: 224px;
|
|
22
|
+
height: 224px;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.nsa_resend_button {
|
|
26
|
+
border: 0;
|
|
27
|
+
outline: 0;
|
|
28
|
+
background: none;
|
|
29
|
+
color: #141B5C;
|
|
30
|
+
font-size: 16px;
|
|
31
|
+
font-weight: 500;
|
|
32
32
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { Component, cloneElement } from "react";
|
|
3
|
-
import { NSBox, NSButtonGreen, NSLabel, NSLoading, NSPanel, NSRow, NSSection } from "namirasoft-site-react";
|
|
3
|
+
import { LinkOperation, NSBox, NSButtonGreen, NSLabel, NSLoading, NSPanel, NSRow, NSSection } from "namirasoft-site-react";
|
|
4
4
|
import { EncodingOperation } from "namirasoft-core";
|
|
5
5
|
export class PaymentRequired extends Component {
|
|
6
6
|
constructor(props) {
|
|
@@ -22,7 +22,9 @@ export class PaymentRequired extends Component {
|
|
|
22
22
|
width: NSBox.width.double
|
|
23
23
|
}, children: [_jsx(NSLabel, { title: this.props.tilte, description: this.props.description }), _jsx(NSButtonGreen, { title: this.props.action, onClick: {
|
|
24
24
|
action: () => {
|
|
25
|
-
|
|
25
|
+
let callback = EncodingOperation.Base64Encode(window.location.href);
|
|
26
|
+
let link = this.props.payment_offer_url + "?callback=" + callback;
|
|
27
|
+
LinkOperation.open(link);
|
|
26
28
|
},
|
|
27
29
|
showLoading: false
|
|
28
30
|
} })] }) }) });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PaymentRequired.js","sourceRoot":"","sources":["../../src/pages/PaymentRequired.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAChD,OAAO,EAAuB,KAAK,EAAE,aAAa,EAAE,OAAO,EAAE,SAAS,EAAE,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"PaymentRequired.js","sourceRoot":"","sources":["../../src/pages/PaymentRequired.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAChD,OAAO,EAAuB,aAAa,EAAE,KAAK,EAAE,aAAa,EAAE,OAAO,EAAE,SAAS,EAAE,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAC;AAChJ,OAAO,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AAmBpD,MAAM,OAAO,eAAgB,SAAQ,SAAqD;IAEzF,YAAY,KAA2B;QAEtC,KAAK,CAAC,KAAK,CAAC,CAAC;QACb,IAAI,CAAC,KAAK,GAAG,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC;IACnC,CAAC;IACQ,iBAAiB;QAEzB,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE;YAElC,IAAI,CAAC,QAAQ,CAAC,EAAE,UAAU,EAAE,GAAG,CAAC,UAAU,EAAE,CAAC,CAAC;QAC/C,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC;IACrB,CAAC;IACQ,MAAM;QAEd,IAAI,IAAI,CAAC,KAAK,CAAC,UAAU,IAAI,IAAI,EACjC,CAAC;YACA,IAAI,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,iBAAiB,CAAC,IAAI,CAAC,KAAK,EAAE,KAAC,SAAS,KAAG,CAAC,CAAA;YAC7E,OAAO,YAAY,CAAC,MAAM,EAAE,EAAE,GAAG,EAAE,SAAS,EAAE,CAAC,CAAC;QACjD,CAAC;QACD,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,EAC1B,CAAC;YACA,IAAI,OAAO,GAAG,KAAC,SAAS,cACvB,KAAC,OAAO,cACP,MAAC,KAAK,IACL,KAAK,EAAE;4BACN,KAAK,EAAE,KAAK,CAAC,KAAK,CAAC,MAAM;yBACzB,aAED,KAAC,OAAO,IACP,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,KAAK,EACvB,WAAW,EAAE,IAAI,CAAC,KAAK,CAAC,WAAW,GAE1B,EACV,KAAC,aAAa,IACb,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,MAAM,EACxB,OAAO,EAAE;oCACR,MAAM,EAAE,GAAG,EAAE;wCAEe,IAAI,QAAQ,GAAG,iBAAiB,CAAC,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;wCACpE,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,iBAAiB,GAAG,YAAY,GAAG,QAAQ,CAAC;wCAClE,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;oCACrD,CAAC;oCACD,WAAW,EAAE,KAAK;iCAClB,GACe,IACV,GACC,GACC,CAAC;YACb,IAAI,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,iBAAiB,CAAC,IAAI,CAAC,KAAK,EAAE,OAAO,CAAC,CAAA;YACvE,OAAO,YAAY,CAAC,MAAM,EAAE,EAAE,GAAG,EAAE,kBAAkB,EAAE,CAAC,CAAC;QAC1D,CAAC;QACD,OAAO,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC;IAC5B,CAAC;CACD"}
|
package/package.json
CHANGED
|
@@ -1,95 +1,95 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "namirasoft-account-react",
|
|
3
|
-
"title": "Namirasoft Account React NPM Package",
|
|
4
|
-
"description": "Namira Software Corporation Account React NPM Package",
|
|
5
|
-
"icon": "logo.png",
|
|
6
|
-
"logo": "https://static.namirasoft.com/image/namirasoft/account/logo/base.png",
|
|
7
|
-
"language": "ts",
|
|
8
|
-
"framework": "npm",
|
|
9
|
-
"application": "package",
|
|
10
|
-
"private": false,
|
|
11
|
-
"version": "1.4.
|
|
12
|
-
"author": "Amir Abolhasani",
|
|
13
|
-
"license": "MIT",
|
|
14
|
-
"main": "./dist/main.js",
|
|
15
|
-
"types": "./dist/main.d.ts",
|
|
16
|
-
"scripts": {
|
|
17
|
-
"start": "react-app-rewired start",
|
|
18
|
-
"build": "npm run copy",
|
|
19
|
-
"test": "react-app-rewired test",
|
|
20
|
-
"eject": "react-app-rewired eject",
|
|
21
|
-
"copy": "copyfiles -u 1 src/**/*.html src/**/*.css src/**/*.svg src/**/*.png src/**/*.jpg dist/"
|
|
22
|
-
},
|
|
23
|
-
"dependencies": {
|
|
24
|
-
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
|
|
25
|
-
"@babel/plugin-transform-private-property-in-object": "^7.29.7",
|
|
26
|
-
"@types/react": "^18.3.13",
|
|
27
|
-
"@types/react-helmet": "^6.1.11",
|
|
28
|
-
"bootstrap": "^5.3.8",
|
|
29
|
-
"namirasoft-access": "^1.4.75",
|
|
30
|
-
"namirasoft-account": "^1.4.108",
|
|
31
|
-
"namirasoft-account-client": "^1.4.9",
|
|
32
|
-
"namirasoft-api-link": "^1.4.22",
|
|
33
|
-
"namirasoft-api-product": "^1.4.54",
|
|
34
|
-
"namirasoft-core": "^1.4.
|
|
35
|
-
"namirasoft-field": "^1.4.29",
|
|
36
|
-
"namirasoft-history": "^1.4.18",
|
|
37
|
-
"namirasoft-message": "^1.4.25",
|
|
38
|
-
"namirasoft-payment": "^1.4.137",
|
|
39
|
-
"namirasoft-schema": "^1.4.29",
|
|
40
|
-
"namirasoft-secret": "^1.4.46",
|
|
41
|
-
"namirasoft-site-map": "^1.4.49",
|
|
42
|
-
"namirasoft-site-react": "^1.4.
|
|
43
|
-
"namirasoft-workspace": "^1.4.28",
|
|
44
|
-
"os-browserify": "^0.3.0",
|
|
45
|
-
"path-browserify": "^1.0.1",
|
|
46
|
-
"query-string": "^9.4.0",
|
|
47
|
-
"react": "^18.3.1",
|
|
48
|
-
"react-app-rewired": "^2.2.1",
|
|
49
|
-
"react-dev-utils": "^12.0.1",
|
|
50
|
-
"react-dom": "^18.3.1",
|
|
51
|
-
"react-helmet": "^6.1.0",
|
|
52
|
-
"react-router-dom": "7.9.1",
|
|
53
|
-
"react-scripts": "5.0.1",
|
|
54
|
-
"webpack": "^5.107.2"
|
|
55
|
-
},
|
|
56
|
-
"eslintConfig": {
|
|
57
|
-
"extends": [
|
|
58
|
-
"react-app",
|
|
59
|
-
"react-app/jest"
|
|
60
|
-
]
|
|
61
|
-
},
|
|
62
|
-
"browserslist": {
|
|
63
|
-
"production": [
|
|
64
|
-
">0.2%",
|
|
65
|
-
"not dead",
|
|
66
|
-
"not op_mini all"
|
|
67
|
-
],
|
|
68
|
-
"development": [
|
|
69
|
-
"last 1 chrome version",
|
|
70
|
-
"last 1 firefox version",
|
|
71
|
-
"last 1 safari version"
|
|
72
|
-
]
|
|
73
|
-
},
|
|
74
|
-
"ns-psc": {
|
|
75
|
-
"skip": {
|
|
76
|
-
"files": [
|
|
77
|
-
"/tsconfig.json"
|
|
78
|
-
],
|
|
79
|
-
"content": {
|
|
80
|
-
"dependencies": {
|
|
81
|
-
"unused": {
|
|
82
|
-
"list": [
|
|
83
|
-
"@babel/plugin-proposal-private-property-in-object",
|
|
84
|
-
"@babel/plugin-transform-private-property-in-object",
|
|
85
|
-
"os-browserify",
|
|
86
|
-
"path-browserify",
|
|
87
|
-
"react-app-rewired",
|
|
88
|
-
"react-scripts"
|
|
89
|
-
]
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "namirasoft-account-react",
|
|
3
|
+
"title": "Namirasoft Account React NPM Package",
|
|
4
|
+
"description": "Namira Software Corporation Account React NPM Package",
|
|
5
|
+
"icon": "logo.png",
|
|
6
|
+
"logo": "https://static.namirasoft.com/image/namirasoft/account/logo/base.png",
|
|
7
|
+
"language": "ts",
|
|
8
|
+
"framework": "npm",
|
|
9
|
+
"application": "package",
|
|
10
|
+
"private": false,
|
|
11
|
+
"version": "1.4.433",
|
|
12
|
+
"author": "Amir Abolhasani",
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"main": "./dist/main.js",
|
|
15
|
+
"types": "./dist/main.d.ts",
|
|
16
|
+
"scripts": {
|
|
17
|
+
"start": "react-app-rewired start",
|
|
18
|
+
"build": "npm run copy",
|
|
19
|
+
"test": "react-app-rewired test",
|
|
20
|
+
"eject": "react-app-rewired eject",
|
|
21
|
+
"copy": "copyfiles -u 1 src/**/*.html src/**/*.css src/**/*.svg src/**/*.png src/**/*.jpg dist/"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
|
|
25
|
+
"@babel/plugin-transform-private-property-in-object": "^7.29.7",
|
|
26
|
+
"@types/react": "^18.3.13",
|
|
27
|
+
"@types/react-helmet": "^6.1.11",
|
|
28
|
+
"bootstrap": "^5.3.8",
|
|
29
|
+
"namirasoft-access": "^1.4.75",
|
|
30
|
+
"namirasoft-account": "^1.4.108",
|
|
31
|
+
"namirasoft-account-client": "^1.4.9",
|
|
32
|
+
"namirasoft-api-link": "^1.4.22",
|
|
33
|
+
"namirasoft-api-product": "^1.4.54",
|
|
34
|
+
"namirasoft-core": "^1.4.119",
|
|
35
|
+
"namirasoft-field": "^1.4.29",
|
|
36
|
+
"namirasoft-history": "^1.4.18",
|
|
37
|
+
"namirasoft-message": "^1.4.25",
|
|
38
|
+
"namirasoft-payment": "^1.4.137",
|
|
39
|
+
"namirasoft-schema": "^1.4.29",
|
|
40
|
+
"namirasoft-secret": "^1.4.46",
|
|
41
|
+
"namirasoft-site-map": "^1.4.49",
|
|
42
|
+
"namirasoft-site-react": "^1.4.569",
|
|
43
|
+
"namirasoft-workspace": "^1.4.28",
|
|
44
|
+
"os-browserify": "^0.3.0",
|
|
45
|
+
"path-browserify": "^1.0.1",
|
|
46
|
+
"query-string": "^9.4.0",
|
|
47
|
+
"react": "^18.3.1",
|
|
48
|
+
"react-app-rewired": "^2.2.1",
|
|
49
|
+
"react-dev-utils": "^12.0.1",
|
|
50
|
+
"react-dom": "^18.3.1",
|
|
51
|
+
"react-helmet": "^6.1.0",
|
|
52
|
+
"react-router-dom": "7.9.1",
|
|
53
|
+
"react-scripts": "5.0.1",
|
|
54
|
+
"webpack": "^5.107.2"
|
|
55
|
+
},
|
|
56
|
+
"eslintConfig": {
|
|
57
|
+
"extends": [
|
|
58
|
+
"react-app",
|
|
59
|
+
"react-app/jest"
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
"browserslist": {
|
|
63
|
+
"production": [
|
|
64
|
+
">0.2%",
|
|
65
|
+
"not dead",
|
|
66
|
+
"not op_mini all"
|
|
67
|
+
],
|
|
68
|
+
"development": [
|
|
69
|
+
"last 1 chrome version",
|
|
70
|
+
"last 1 firefox version",
|
|
71
|
+
"last 1 safari version"
|
|
72
|
+
]
|
|
73
|
+
},
|
|
74
|
+
"ns-psc": {
|
|
75
|
+
"skip": {
|
|
76
|
+
"files": [
|
|
77
|
+
"/tsconfig.json"
|
|
78
|
+
],
|
|
79
|
+
"content": {
|
|
80
|
+
"dependencies": {
|
|
81
|
+
"unused": {
|
|
82
|
+
"list": [
|
|
83
|
+
"@babel/plugin-proposal-private-property-in-object",
|
|
84
|
+
"@babel/plugin-transform-private-property-in-object",
|
|
85
|
+
"os-browserify",
|
|
86
|
+
"path-browserify",
|
|
87
|
+
"react-app-rewired",
|
|
88
|
+
"react-scripts"
|
|
89
|
+
]
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
95
|
}
|