namirasoft-site-react 1.3.24 → 1.3.26
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/dist/App.js +3 -3
- package/dist/App.js.map +1 -1
- package/dist/assets/images/404 image.svg +9 -0
- package/dist/assets/images/404 image_mobile.svg +9 -0
- package/dist/components/NSCard.d.ts +6 -2
- package/dist/components/NSCard.js +4 -1
- package/dist/components/NSCard.js.map +1 -1
- package/dist/components/NSCard.module.css +13 -3
- package/dist/components/NSEntityCardBackground.d.ts +5 -5
- package/dist/components/NSEntityCardBackground.js.map +1 -1
- package/dist/components/NSHeader.d.ts +2 -2
- package/dist/components/NSLinkBlue.d.ts +3 -8
- package/dist/components/NSLinkBlue.js.map +1 -1
- package/dist/components/NSLoading.d.ts +2 -2
- package/dist/components/NSSection.d.ts +3 -3
- package/dist/components/NSSectionBars.d.ts +2 -2
- package/dist/components/NSSectionCards.d.ts +2 -2
- package/dist/components/NSSectionCards.js.map +1 -1
- package/dist/components/NSSectionTitle.d.ts +2 -2
- package/dist/components/NSTable.js +1 -1
- package/dist/components/NSTable.js.map +1 -1
- package/dist/components/NSTable.module.css +13 -13
- package/dist/main.d.ts +2 -0
- package/dist/main.js +2 -0
- package/dist/main.js.map +1 -1
- package/dist/pages/NSNotFoundPage.d.ts +5 -0
- package/dist/pages/NSNotFoundPage.js +11 -0
- package/dist/pages/NSNotFoundPage.js.map +1 -0
- package/dist/pages/NSNotFoundPage.module.css +19 -0
- package/dist/types/Background.d.ts +1 -1
- package/dist/types/Link.d.ts +5 -0
- package/dist/types/Link.js +2 -0
- package/dist/types/Link.js.map +1 -0
- package/package.json +1 -1
- package/src/App.tsx +4 -5
- package/src/assets/images/404 image.svg +9 -0
- package/src/assets/images/404 image_mobile.svg +9 -0
- package/src/components/NSCard.module.css +13 -3
- package/src/components/NSCard.tsx +14 -4
- package/src/components/NSEntityCardBackground.tsx +7 -5
- package/src/components/NSHeader.tsx +2 -2
- package/src/components/NSLinkBlue.tsx +6 -10
- package/src/components/NSLoading.tsx +2 -2
- package/src/components/NSSection.tsx +3 -3
- package/src/components/NSSectionBars.tsx +2 -2
- package/src/components/NSSectionCards.tsx +4 -3
- package/src/components/NSSectionTitle.tsx +2 -2
- package/src/components/NSTable.module.css +13 -13
- package/src/components/NSTable.tsx +7 -7
- package/src/main.ts +2 -0
- package/src/pages/NSNotFoundPage.module.css +19 -0
- package/src/pages/NSNotFoundPage.tsx +18 -0
- package/src/types/Background.ts +1 -1
- package/src/types/Link.ts +6 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NSLinkBlue.js","sourceRoot":"","sources":["../../src/components/NSLinkBlue.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;;
|
|
1
|
+
{"version":3,"file":"NSLinkBlue.js","sourceRoot":"","sources":["../../src/components/NSLinkBlue.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;;AAGb,OAAO,MAAM,MAAM,yBAAyB,CAAC;AAC7C,OAAO,KAAK,MAAM,OAAO,CAAC;AAY1B,MAAM,OAAO,UAAW,SAAQ,KAAK,CAAC,SAA2C;IAEhF,YAAY,KAAsB;QAEjC,KAAK,CAAC,KAAK,CAAC,CAAC;QACb,IAAI,CAAC,KAAK,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,KAAK,EAAE,IAAI,EAAE,KAAK,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,MAAM,EAAE,CAAC;IAC7E,CAAC;IACD,QAAQ,CAAC,KAAa;QAErB,IAAI,CAAC,QAAQ,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC;IAC1B,CAAC;IACD,OAAO,CAAC,IAAY;QAEnB,IAAI,CAAC,QAAQ,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC;IACzB,CAAC;IACQ,MAAM;;QAEd,OAAO,CAEN,cAAK,SAAS,EAAE,MAAM,CAAC,cAAc,EAAE,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,KAAK,YAC7D,YAAG,SAAS,EAAE,mCAAmC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,gBAAgB,EAAE,EAAE,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI,EAAE,MAAM,EAAE,MAAA,MAAA,IAAI,CAAC,KAAK,0CAAE,MAAM,mCAAI,OAAO,YAC1K,IAAI,CAAC,KAAK,CAAC,KAAK,GACd,GACC,CACN,CAAA;IACF,CAAC;CACD"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Component } from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { BackgroundType } from '../types/Background';
|
|
3
3
|
interface NSLoadingProps {
|
|
4
|
-
background?:
|
|
4
|
+
background?: BackgroundType;
|
|
5
5
|
padding_bottom?: string;
|
|
6
6
|
}
|
|
7
7
|
export declare class NSLoading extends Component<NSLoadingProps> {
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { Component, ReactNode } from "react";
|
|
2
|
-
import {
|
|
2
|
+
import { BackgroundType } from "../types/Background";
|
|
3
3
|
export interface NSSectionProps {
|
|
4
4
|
children: ReactNode;
|
|
5
|
-
background?:
|
|
5
|
+
background?: BackgroundType;
|
|
6
6
|
padding_bottom?: string;
|
|
7
7
|
}
|
|
8
8
|
export interface NSSectionState {
|
|
9
|
-
background?:
|
|
9
|
+
background?: BackgroundType;
|
|
10
10
|
}
|
|
11
11
|
export declare class NSSection extends Component<NSSectionProps, NSSectionState> {
|
|
12
12
|
constructor(props: NSSectionProps);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Component } from 'react';
|
|
2
2
|
import { NSEntityBarProps } from './NSEntityBar';
|
|
3
|
-
import {
|
|
3
|
+
import { BackgroundType } from '../types/Background';
|
|
4
4
|
export interface NSSectionBarsProps {
|
|
5
|
-
background?:
|
|
5
|
+
background?: BackgroundType;
|
|
6
6
|
bars: NSEntityBarProps[];
|
|
7
7
|
}
|
|
8
8
|
export declare class NSSectionBars extends Component<NSSectionBarsProps> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Component } from 'react';
|
|
2
2
|
import { NSCardProps } from './NSCard';
|
|
3
|
-
import {
|
|
3
|
+
import { BackgroundType } from '../types/Background';
|
|
4
4
|
export interface NSSectionCardsProps {
|
|
5
5
|
title?: {
|
|
6
6
|
text: string;
|
|
@@ -10,7 +10,7 @@ export interface NSSectionCardsProps {
|
|
|
10
10
|
text: string;
|
|
11
11
|
color?: string;
|
|
12
12
|
};
|
|
13
|
-
background?:
|
|
13
|
+
background?: BackgroundType;
|
|
14
14
|
button?: {
|
|
15
15
|
href: string;
|
|
16
16
|
title: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NSSectionCards.js","sourceRoot":"","sources":["../../src/components/NSSectionCards.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;;AAEb,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAClC,OAAO,MAAM,MAAM,6BAA6B,CAAC;AACjD,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,MAAM,EAAe,MAAM,UAAU,CAAC;AAC/C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAsB1C,MAAM,OAAO,cAAe,SAAQ,SAA8B;
|
|
1
|
+
{"version":3,"file":"NSSectionCards.js","sourceRoot":"","sources":["../../src/components/NSSectionCards.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;;AAEb,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAClC,OAAO,MAAM,MAAM,6BAA6B,CAAC;AACjD,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,MAAM,EAAe,MAAM,UAAU,CAAC;AAC/C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAsB1C,MAAM,OAAO,cAAe,SAAQ,SAA8B;IAExD,MAAM;;QAEd,OAAO,CACN,4BACC,KAAC,SAAS,IAAC,UAAU,EAAE,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,cAAc,EAAE,IAAI,CAAC,KAAK,CAAC,cAAc,YACtF,eAAK,SAAS,EAAE,mCAAmC,MAAM,CAAC,uBAAuB,EAAE,aAGjF,IAAI,CAAC,KAAK,CAAC,KAAK;4BAChB,eAAK,SAAS,EAAE,MAAM,CAAC,gCAAgC,aACtD,KAAC,OAAO,IAAC,KAAK,EAAE,MAAA,IAAI,CAAC,KAAK,CAAC,KAAK,0CAAE,KAAK,EAAE,KAAK,EAAE,MAAA,IAAI,CAAC,KAAK,CAAC,KAAK,0CAAE,IAAI,GAAI,EAGzE,IAAI,CAAC,KAAK,CAAC,WAAW;wCACtB,aAAG,KAAK,EAAE,EAAE,KAAK,EAAE,MAAA,IAAI,CAAC,KAAK,CAAC,WAAW,0CAAE,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,CAAC,WAAW,kBAAI,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,SAAM,IAGlH,EAGP,cAAK,SAAS,EAAE,IAAI,MAAM,CAAC,iBAAiB,EAAE,YAE5C,MAAA,IAAI,CAAC,KAAK,CAAC,KAAK,0CAAE,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,KAAC,MAAM,oBAAmB,IAAI,GAAjB,IAAI,CAAC,EAAE,CAAc,CAAC,GAE/D,EAEL,IAAI,CAAC,KAAK,CAAC,MAAM;4BACjB,cAAK,SAAS,EAAE,6BAA6B,MAAM,CAAC,+BAA+B,EAAE,YACpF,KAAC,UAAU,IAAC,IAAI,EAAE,MAAA,IAAI,CAAC,KAAK,CAAC,MAAM,0CAAE,IAAI,EAAE,KAAK,EAAE,MAAA,IAAI,CAAC,KAAK,CAAC,MAAM,0CAAE,KAAK,GAAI,GACzE,IAEF,GACK,GACV,CACH,CAAC;IACH,CAAC;CACD"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Component, ReactNode } from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { BackgroundType } from '../types/Background';
|
|
3
3
|
export interface NSSectionTitleProps {
|
|
4
4
|
title: {
|
|
5
5
|
text: string;
|
|
6
6
|
color?: string;
|
|
7
7
|
};
|
|
8
|
-
background?:
|
|
8
|
+
background?: BackgroundType;
|
|
9
9
|
padding_bottom?: string;
|
|
10
10
|
children: ReactNode;
|
|
11
11
|
}
|
|
@@ -15,7 +15,7 @@ export class NSTable extends Component {
|
|
|
15
15
|
}
|
|
16
16
|
render() {
|
|
17
17
|
let column_keys = Object.keys(this.state.columns);
|
|
18
|
-
return (_jsxs("div", { className: Styles.
|
|
18
|
+
return (_jsxs("div", { className: Styles.ns_project_list_container, children: [_jsxs("table", { className: Styles.ns_table, children: [_jsx("thead", { className: Styles.ns_thead, children: _jsx("tr", { children: column_keys.map(column_key => _jsx("th", { scope: "col", children: this.state.columns[column_key] }, column_key)) }) }), _jsx("tbody", { className: Styles.ns_tbody, children: this.state.rows.map((row, rowIndex) => _jsx("tr", { children: column_keys.map((column, columnIndex) => (_jsx("td", Object.assign({}, this.props.getColumnAttributes(column, columnIndex), { children: this.props.getCell(row, column, rowIndex, columnIndex) })))) }, this.props.getRowKey(row, rowIndex))) })] }), _jsxs("div", { className: Styles.ns_button_group_desktop, children: [_jsxs("button", { onClick: () => window.print(), className: Styles.ns_export_button, children: [_jsx("img", { src: "/assets/images/export-vector.png", alt: "Export Table Data", width: 13, height: 16 }), "Export"] }), _jsxs("button", { onClick: () => window.location.reload(), className: Styles.ns_refresh_button, children: [_jsx("img", { src: "/assets/images/refresh-vector.png", alt: "Refresh Table Contnet", width: 15, height: 16 }), "Refresh"] })] })] }));
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
//# sourceMappingURL=NSTable.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NSTable.js","sourceRoot":"","sources":["../../src/components/NSTable.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;;AAEb,OAAO,MAAM,MAAM,sBAAsB,CAAC;AAC1C,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAiBlC,MAAM,OAAO,OAAiB,SAAQ,SAAuD;IAEzF,YAAY,KAA4B;QAEpC,KAAK,CAAC,KAAK,CAAC,CAAC;QACb,IAAI,CAAC,KAAK,GAAG,EAAE,OAAO,EAAE,KAAK,CAAC,OAAO,EAAE,IAAI,EAAE,KAAK,CAAC,IAAI,EAAE,CAAC;IAC9D,CAAC;IACD,UAAU,CAAC,OAAkC;QAEzC,IAAI,CAAC,QAAQ,CAAC,EAAE,OAAO,EAAE,CAAC,CAAC;IAC/B,CAAC;IACD,OAAO,CAAC,IAAe;QAEnB,IAAI,CAAC,QAAQ,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC;IAC5B,CAAC;IACQ,MAAM;QAEX,IAAI,WAAW,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;QAClD,OAAO,CACH,eAAK,SAAS,EAAE,MAAM,CAAC,
|
|
1
|
+
{"version":3,"file":"NSTable.js","sourceRoot":"","sources":["../../src/components/NSTable.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;;AAEb,OAAO,MAAM,MAAM,sBAAsB,CAAC;AAC1C,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAiBlC,MAAM,OAAO,OAAiB,SAAQ,SAAuD;IAEzF,YAAY,KAA4B;QAEpC,KAAK,CAAC,KAAK,CAAC,CAAC;QACb,IAAI,CAAC,KAAK,GAAG,EAAE,OAAO,EAAE,KAAK,CAAC,OAAO,EAAE,IAAI,EAAE,KAAK,CAAC,IAAI,EAAE,CAAC;IAC9D,CAAC;IACD,UAAU,CAAC,OAAkC;QAEzC,IAAI,CAAC,QAAQ,CAAC,EAAE,OAAO,EAAE,CAAC,CAAC;IAC/B,CAAC;IACD,OAAO,CAAC,IAAe;QAEnB,IAAI,CAAC,QAAQ,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC;IAC5B,CAAC;IACQ,MAAM;QAEX,IAAI,WAAW,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;QAClD,OAAO,CACH,eAAK,SAAS,EAAE,MAAM,CAAC,yBAAyB,aAC5C,iBAAO,SAAS,EAAE,MAAM,CAAC,QAAQ,aAC7B,gBAAO,SAAS,EAAE,MAAM,CAAC,QAAQ,YAC7B,uBACK,WAAW,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,CAAC,aAAqB,KAAK,EAAC,KAAK,YAAE,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,UAAU,CAAC,IAAvD,UAAU,CAAmD,CAAC,GACrG,GACD,EACR,gBAAO,SAAS,EAAE,MAAM,CAAC,QAAQ,YAEzB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,QAAQ,EAAE,EAAE,CAClC,uBAEQ,WAAW,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,WAAW,EAAE,EAAE,CAAC,CACrC,6BAAQ,IAAI,CAAC,KAAK,CAAC,mBAAmB,CAAC,MAAM,EAAE,WAAW,CAAC,cACtD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,WAAW,CAAC,IACtD,CACR,CAAC,IAND,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,GAAG,EAAE,QAAQ,CAAC,CAQvC,CAAC,GAET,IACL,EACR,eAAK,SAAS,EAAE,MAAM,CAAC,uBAAuB,aAC1C,kBAAQ,OAAO,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,CAAC,gBAAgB,aAAE,cAAK,GAAG,EAAC,kCAAkC,EAAC,GAAG,EAAC,mBAAmB,EAAC,KAAK,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,GAAI,cAAe,EACvL,kBAAQ,OAAO,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,EAAE,SAAS,EAAE,MAAM,CAAC,iBAAiB,aAAE,cAAK,GAAG,EAAC,mCAAmC,EAAC,GAAG,EAAC,uBAAuB,EAAC,KAAK,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,GAAI,eAAgB,IACtM,IACH,CACV,CAAA;IACL,CAAC;CACJ"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.
|
|
1
|
+
.ns_thead th {
|
|
2
2
|
background-color: rgba(20, 27, 92, 1);
|
|
3
3
|
font-size: 16px;
|
|
4
4
|
font-weight: 300;
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
font-size: 16px;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
-
.
|
|
10
|
+
.ns_tbody td {
|
|
11
11
|
background-color: rgb(173, 178, 206);
|
|
12
12
|
color: rgba(20, 27, 92, 1);
|
|
13
13
|
padding: 8px 16px;
|
|
@@ -17,17 +17,17 @@
|
|
|
17
17
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
.ns_table {
|
|
21
21
|
width: 100%;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
-
.
|
|
24
|
+
.ns_project_list_container {
|
|
25
25
|
text-align: left;
|
|
26
26
|
border-top-left-radius: 8px;
|
|
27
27
|
border-top-right-radius: 8px;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
-
.
|
|
30
|
+
.ns_button_group_desktop {
|
|
31
31
|
display: flex;
|
|
32
32
|
flex-direction: row;
|
|
33
33
|
justify-content: end;
|
|
@@ -35,7 +35,7 @@ table {
|
|
|
35
35
|
padding: 24px 0;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
.
|
|
38
|
+
.ns_button_group_desktop button {
|
|
39
39
|
display: flex;
|
|
40
40
|
align-items: center;
|
|
41
41
|
justify-content: center;
|
|
@@ -49,22 +49,22 @@ table {
|
|
|
49
49
|
background-color: transparent;
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
-
.
|
|
52
|
+
.ns_export_button {
|
|
53
53
|
border: 1px solid rgba(255, 148, 50, 1);
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
-
.
|
|
56
|
+
.ns_refresh_button {
|
|
57
57
|
border: 1px solid rgba(3, 119, 255, 1);
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
@media only screen and (max-width:600px) {
|
|
61
|
-
.
|
|
61
|
+
.ns_project_list_container {
|
|
62
62
|
overflow: auto;
|
|
63
63
|
}
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
/* table-satus */
|
|
67
|
-
.
|
|
67
|
+
.ns_inqueue_status {
|
|
68
68
|
color: white;
|
|
69
69
|
background-color: rgba(255, 148, 50, 1);
|
|
70
70
|
font-size: 12px;
|
|
@@ -76,7 +76,7 @@ table {
|
|
|
76
76
|
padding-top: 2px;
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
-
.
|
|
79
|
+
.ns_reserving_status {
|
|
80
80
|
color: white;
|
|
81
81
|
background-color: rgba(255, 79, 79, 1);
|
|
82
82
|
font-size: 12px;
|
|
@@ -88,7 +88,7 @@ table {
|
|
|
88
88
|
padding-top: 2px;
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
-
.
|
|
91
|
+
.ns_done-status {
|
|
92
92
|
color: white;
|
|
93
93
|
background-color: rgba(6, 209, 130, 1);
|
|
94
94
|
font-size: 12px;
|
|
@@ -100,7 +100,7 @@ table {
|
|
|
100
100
|
padding-top: 2px;
|
|
101
101
|
}
|
|
102
102
|
|
|
103
|
-
.
|
|
103
|
+
.ns_inprogress_status {
|
|
104
104
|
color: white;
|
|
105
105
|
background-color: rgba(230, 208, 19, 1);
|
|
106
106
|
font-size: 12px;
|
package/dist/main.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export * from "./components/NSInputTime";
|
|
|
23
23
|
export * from "./components/NSLayout";
|
|
24
24
|
export * from "./components/NSLayoutHeroBanner";
|
|
25
25
|
export * from "./components/NSLayoutTitle";
|
|
26
|
+
export * from "./components/NSLoading";
|
|
26
27
|
export * from "./components/NSSelectBox";
|
|
27
28
|
export * from "./components/NSSection";
|
|
28
29
|
export * from "./components/NSSectionBars";
|
|
@@ -35,3 +36,4 @@ export * from "./components/NSPagination";
|
|
|
35
36
|
export * from "./components/NSTable";
|
|
36
37
|
export * from "./components/NSTitle";
|
|
37
38
|
export * from "./pages/NSLoginPage";
|
|
39
|
+
export * from "./pages/NSNotFoundPage";
|
package/dist/main.js
CHANGED
|
@@ -23,6 +23,7 @@ export * from "./components/NSInputTime";
|
|
|
23
23
|
export * from "./components/NSLayout";
|
|
24
24
|
export * from "./components/NSLayoutHeroBanner";
|
|
25
25
|
export * from "./components/NSLayoutTitle";
|
|
26
|
+
export * from "./components/NSLoading";
|
|
26
27
|
export * from "./components/NSSelectBox";
|
|
27
28
|
export * from "./components/NSSection";
|
|
28
29
|
export * from "./components/NSSectionBars";
|
|
@@ -35,4 +36,5 @@ export * from "./components/NSPagination";
|
|
|
35
36
|
export * from "./components/NSTable";
|
|
36
37
|
export * from "./components/NSTitle";
|
|
37
38
|
export * from "./pages/NSLoginPage";
|
|
39
|
+
export * from "./pages/NSNotFoundPage";
|
|
38
40
|
//# sourceMappingURL=main.js.map
|
package/dist/main.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.js","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iCAAiC,CAAC;AAChD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qCAAqC,CAAC;AACpD,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,iCAAiC,CAAC;AAChD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,yBAAyB,CAAC;AACxC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC"}
|
|
1
|
+
{"version":3,"file":"main.js","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iCAAiC,CAAC;AAChD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qCAAqC,CAAC;AACpD,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,iCAAiC,CAAC;AAChD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,yBAAyB,CAAC;AACxC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { Component } from 'react';
|
|
3
|
+
import Styles from './NSNotFoundPage.module.css';
|
|
4
|
+
import { NSLinkBlue } from '../main';
|
|
5
|
+
class NSNotFoundPage extends Component {
|
|
6
|
+
render() {
|
|
7
|
+
return (_jsxs(_Fragment, { children: [_jsx("div", { className: Styles.ns_not_found_page }), _jsx(NSLinkBlue, { href: '/', target: '_self', title: 'Back To Home' }), "``"] }));
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
export default NSNotFoundPage;
|
|
11
|
+
//# sourceMappingURL=NSNotFoundPage.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NSNotFoundPage.js","sourceRoot":"","sources":["../../src/pages/NSNotFoundPage.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAClC,OAAO,MAAM,MAAM,6BAA6B,CAAA;AAChD,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAErC,MAAM,cAAe,SAAQ,SAAS;IAE5B,MAAM;QAEd,OAAO,CACN,8BACC,cAAK,SAAS,EAAE,MAAM,CAAC,iBAAiB,GAAQ,EAChD,KAAC,UAAU,IAAC,IAAI,EAAC,GAAG,EAAC,MAAM,EAAC,OAAO,EAAC,KAAK,EAAC,cAAc,GAAE,UACxD,CACH,CAAC;IACH,CAAC;CACD;AAED,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
.ns_not_found_page {
|
|
2
|
+
display: flex;
|
|
3
|
+
justify-content: center;
|
|
4
|
+
align-items: center;
|
|
5
|
+
background-image: url('../assets/images/404\ image_mobile.svg');
|
|
6
|
+
background-repeat: no-repeat;
|
|
7
|
+
background-size: cover;
|
|
8
|
+
background-position: center;
|
|
9
|
+
background-color: #fff;
|
|
10
|
+
width: 100%;
|
|
11
|
+
height: 100vh;
|
|
12
|
+
margin-bottom: 48px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@media only screen and (min-width: 1024px) {
|
|
16
|
+
.ns_not_found_page {
|
|
17
|
+
background-image: url('../assets/images/404\ image.svg');
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Link.js","sourceRoot":"","sources":["../../src/types/Link.ts"],"names":[],"mappings":""}
|
package/package.json
CHANGED
package/src/App.tsx
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
import './App.css';
|
|
2
2
|
import 'bootstrap/dist/css/bootstrap.min.css';
|
|
3
|
-
import {
|
|
3
|
+
import { NSLayoutTitle } from './main';
|
|
4
4
|
|
|
5
5
|
export function App()
|
|
6
6
|
{
|
|
7
7
|
return (
|
|
8
8
|
<div className="App">
|
|
9
9
|
<NSLayoutTitle scope='Namirasoft Account Console' logo='' title="Namirasoft" description=''>
|
|
10
|
-
<
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
<NSInputCopy title="Your Token" />
|
|
10
|
+
<div>
|
|
11
|
+
|
|
12
|
+
</div>
|
|
14
13
|
</NSLayoutTitle>
|
|
15
14
|
</div>
|
|
16
15
|
);
|