namirasoft-site-react 1.3.2 → 1.3.4
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/assets/images/arrow.svg +3 -0
- package/dist/assets/images/danger.svg +3 -0
- package/dist/assets/images/exit.svg +3 -0
- package/dist/assets/images/icon-input-date.svg +9 -0
- package/dist/assets/images/icon-input-duration.svg +9 -0
- package/dist/assets/images/icon-input-email.svg +9 -0
- package/dist/assets/images/icon-input-float.svg +9 -0
- package/dist/assets/images/icon-input-id.svg +9 -0
- package/dist/assets/images/icon-input-integer.svg +9 -0
- package/dist/assets/images/icon-input-phone.svg +9 -0
- package/dist/assets/images/icon-input-price.svg +9 -0
- package/dist/assets/images/icon-input-search.svg +4 -0
- package/dist/assets/images/icon-input-string.svg +9 -0
- package/dist/assets/images/icon-input-text.svg +9 -0
- package/dist/assets/images/icon-input-time.svg +9 -0
- package/dist/assets/images/logo.svg +9 -0
- package/dist/assets/images/map_location.png +0 -0
- package/dist/assets/images/menu.svg +3 -0
- package/dist/assets/images/namira.svg +9 -0
- package/dist/assets/images/rectangle.svg +3 -0
- package/dist/components/NSButtonGreen.module.css +12 -0
- package/dist/components/NSButtonRed.module.css +12 -0
- package/dist/components/NSCard.d.ts +2 -2
- package/dist/components/NSCard.js +6 -3
- package/dist/components/NSCard.js.map +1 -1
- package/dist/components/NSCard.module.css +113 -0
- package/dist/components/NSEntityBar.module.css +54 -0
- package/dist/components/NSEntityCardBackground.d.ts +19 -0
- package/dist/components/NSEntityCardBackground.js +27 -0
- package/dist/components/NSEntityCardBackground.js.map +1 -0
- package/dist/components/NSEntityCardBackground.module.css +40 -0
- package/dist/components/NSFooter.js.map +1 -1
- package/dist/components/NSFooter.module.css +102 -0
- package/dist/components/NSHeader.d.ts +1 -0
- package/dist/components/NSHeader.js +2 -1
- package/dist/components/NSHeader.js.map +1 -1
- package/dist/components/NSHeader.module.css +181 -0
- package/dist/components/NSInputDate.module.css +36 -0
- package/dist/components/NSInputDuration.module.css +26 -0
- package/dist/components/NSInputEmail.js.map +1 -1
- package/dist/components/NSInputEmail.module.css +38 -0
- package/dist/components/NSInputFloat.module.css +26 -0
- package/dist/components/NSInputIP.module.css +26 -0
- package/dist/components/NSInputInteger.module.css +26 -0
- package/dist/components/NSInputPhone.module.css +33 -0
- package/dist/components/NSInputPrice.module.css +27 -0
- package/dist/components/NSInputSearch.js.map +1 -1
- package/dist/components/NSInputSearch.module.css +26 -0
- package/dist/components/NSInputString.module.css +27 -0
- package/dist/components/NSInputText.module.css +28 -0
- package/dist/components/NSInputTime.module.css +27 -0
- package/dist/components/NSLayout.module.css +17 -0
- package/dist/components/NSLayoutHeroBanner.module.css +43 -0
- package/dist/components/NSLinkBlue.module.css +24 -0
- package/dist/components/NSLinkGreen.module.css +16 -0
- package/dist/components/NSLinkRed.module.css +16 -0
- package/dist/components/NSPagination.module.css +25 -0
- package/dist/components/NSSection.module.css +10 -0
- package/dist/components/NSSectionBars.module.css +11 -0
- package/dist/components/NSSectionCards.module.css +38 -0
- package/dist/components/NSSectionTitle.module.css +0 -0
- package/dist/components/NSSelectBox.module.css +29 -0
- package/dist/components/NSTable.modules.css +77 -0
- package/dist/components/NSTitle.module.css +10 -0
- package/dist/main.d.ts +1 -0
- package/dist/main.js +1 -0
- package/dist/main.js.map +1 -1
- package/dist/pages/NSLoginPage.modules.css +0 -0
- package/package.json +4 -4
- package/src/components/NSCard.module.css +17 -1
- package/src/components/NSCard.tsx +11 -5
- package/src/components/NSEntityCardBackground.module.css +40 -0
- package/src/components/NSEntityCardBackground.tsx +68 -0
- package/src/components/NSHeader.tsx +23 -18
- package/src/main.ts +1 -0
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
.thead th {
|
|
2
|
+
background-color: rgb(0, 0, 0, 0.3);
|
|
3
|
+
color: rgba(255, 255, 255, 1);
|
|
4
|
+
border: none;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.tbody th {
|
|
8
|
+
background-color: rgb(0, 0, 0, 0.3);
|
|
9
|
+
color: rgba(255, 255, 255, 1);
|
|
10
|
+
border: none;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.tbody td {
|
|
14
|
+
background-color: rgb(0, 0, 0, 0.3);
|
|
15
|
+
color: rgba(255, 255, 255, 1);
|
|
16
|
+
border: none;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.project_list_container {
|
|
20
|
+
border: none;
|
|
21
|
+
text-align: left;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@media only screen and (max-width:600px) {
|
|
25
|
+
.project_list_container {
|
|
26
|
+
overflow: scroll;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/* table-satus */
|
|
31
|
+
.inqueue_status {
|
|
32
|
+
color: white;
|
|
33
|
+
background-color: rgba(255, 148, 50, 1);
|
|
34
|
+
font-size: 12px;
|
|
35
|
+
width: 96px;
|
|
36
|
+
height: 24px;
|
|
37
|
+
border-radius: 24px;
|
|
38
|
+
border: none;
|
|
39
|
+
text-align: center;
|
|
40
|
+
padding-top: 2px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.reserving_status {
|
|
44
|
+
color: white;
|
|
45
|
+
background-color: rgba(255, 79, 79, 1);
|
|
46
|
+
font-size: 12px;
|
|
47
|
+
width: 96px;
|
|
48
|
+
height: 24px;
|
|
49
|
+
border-radius: 24px;
|
|
50
|
+
border: none;
|
|
51
|
+
text-align: center;
|
|
52
|
+
padding-top: 2px;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.done-status {
|
|
56
|
+
color: white;
|
|
57
|
+
background-color: rgba(6, 209, 130, 1);
|
|
58
|
+
font-size: 12px;
|
|
59
|
+
width: 96px;
|
|
60
|
+
height: 24px;
|
|
61
|
+
border-radius: 24px;
|
|
62
|
+
border: none;
|
|
63
|
+
text-align: center;
|
|
64
|
+
padding-top: 2px;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.inprogress_status {
|
|
68
|
+
color: white;
|
|
69
|
+
background-color: rgba(230, 208, 19, 1);
|
|
70
|
+
font-size: 12px;
|
|
71
|
+
width: 96px;
|
|
72
|
+
height: 24px;
|
|
73
|
+
border-radius: 24px;
|
|
74
|
+
border: none;
|
|
75
|
+
text-align: center;
|
|
76
|
+
padding-top: 2px;
|
|
77
|
+
}
|
package/dist/main.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./components/NSButtonGreen";
|
|
2
2
|
export * from "./components/NSButtonRed";
|
|
3
3
|
export * from "./components/NSCard";
|
|
4
|
+
export * from "./components/NSEntityCardBackground";
|
|
4
5
|
export * from "./components/NSEntityBar";
|
|
5
6
|
export * from "./components/NSFooter";
|
|
6
7
|
export * from "./components/NSHeader";
|
package/dist/main.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./components/NSButtonGreen";
|
|
2
2
|
export * from "./components/NSButtonRed";
|
|
3
3
|
export * from "./components/NSCard";
|
|
4
|
+
export * from "./components/NSEntityCardBackground";
|
|
4
5
|
export * from "./components/NSEntityBar";
|
|
5
6
|
export * from "./components/NSFooter";
|
|
6
7
|
export * from "./components/NSHeader";
|
package/dist/main.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.js","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,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,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,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"}
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "namirasoft-site-react",
|
|
3
|
-
"title": "
|
|
3
|
+
"title": "Namirasoft Site React",
|
|
4
4
|
"description": "Namira Software Corporation Site React NPM Package",
|
|
5
5
|
"icon": "logo.png",
|
|
6
6
|
"logo": "https://static.namirasoft.com/logo/namirasoft/name.png",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"framework": "npm",
|
|
9
9
|
"application": "package",
|
|
10
10
|
"private": false,
|
|
11
|
-
"version": "1.3.
|
|
11
|
+
"version": "1.3.4",
|
|
12
12
|
"main": "./dist/main.js",
|
|
13
13
|
"types": "./dist/main.d.ts",
|
|
14
14
|
"author": "Amir Abolhasani",
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@types/node": "^20.11.30",
|
|
25
|
-
"@types/react": "^18.2.
|
|
25
|
+
"@types/react": "^18.2.71",
|
|
26
26
|
"@types/react-dom": "^18.2.22",
|
|
27
|
-
"antd": "^5.15.
|
|
27
|
+
"antd": "^5.15.4",
|
|
28
28
|
"bootstrap": "^5.3.3",
|
|
29
29
|
"link-react": "^3.0.0",
|
|
30
30
|
"namirasoft-api-link": "^1.3.0",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
border-radius: 24px;
|
|
12
12
|
width: 100%;
|
|
13
13
|
max-width: 358px;
|
|
14
|
+
position: relative;
|
|
14
15
|
}
|
|
15
16
|
|
|
16
17
|
.ns_card_detail_container {
|
|
@@ -78,6 +79,18 @@
|
|
|
78
79
|
width: 100%;
|
|
79
80
|
}
|
|
80
81
|
|
|
82
|
+
.ns_link_absolute {
|
|
83
|
+
position: absolute;
|
|
84
|
+
width: 100%;
|
|
85
|
+
height: 100%;
|
|
86
|
+
left: 0;
|
|
87
|
+
right: 0;
|
|
88
|
+
top:0;
|
|
89
|
+
bottom: 0;
|
|
90
|
+
cursor: pointer;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
|
|
81
94
|
@media only screen and (min-width: 576px) {
|
|
82
95
|
.ns_card {
|
|
83
96
|
width: 65%;
|
|
@@ -94,4 +107,7 @@
|
|
|
94
107
|
.ns_card {
|
|
95
108
|
width: 31%;
|
|
96
109
|
}
|
|
97
|
-
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
@@ -7,7 +7,7 @@ import Styles from './NSCard.module.css'
|
|
|
7
7
|
export interface NSCardProps
|
|
8
8
|
{
|
|
9
9
|
id?: string | number;
|
|
10
|
-
title
|
|
10
|
+
title?: string;
|
|
11
11
|
description?: string;
|
|
12
12
|
image: {
|
|
13
13
|
src: string;
|
|
@@ -15,7 +15,7 @@ export interface NSCardProps
|
|
|
15
15
|
};
|
|
16
16
|
link?:
|
|
17
17
|
{
|
|
18
|
-
text
|
|
18
|
+
text?: string;
|
|
19
19
|
href: string;
|
|
20
20
|
target?: string;
|
|
21
21
|
}
|
|
@@ -31,7 +31,7 @@ export class NSCard extends Component<NSCardProps> {
|
|
|
31
31
|
<div className={Styles.ns_card_title_img} style={{ alignItems: this.props.description ? "flex-start" : "center" }}>
|
|
32
32
|
<img className={Styles.ns_card_img} src={this.props.image.src} alt={this.props.image.alt} />
|
|
33
33
|
<h3 className={Styles.ns_card_title}>
|
|
34
|
-
{this.props.title}
|
|
34
|
+
{this.props.title && this.props.title }
|
|
35
35
|
</h3>
|
|
36
36
|
</div>
|
|
37
37
|
|
|
@@ -43,9 +43,15 @@ export class NSCard extends Component<NSCardProps> {
|
|
|
43
43
|
|
|
44
44
|
</div>
|
|
45
45
|
{this.props.link &&
|
|
46
|
+
this.props.link.text ?
|
|
46
47
|
<div className={Styles.ns_card_link_container}>
|
|
47
|
-
<a className={Styles.ns_card_link} href={this.props.link
|
|
48
|
-
{this.props.link
|
|
48
|
+
<a className={Styles.ns_card_link} href={this.props.link?.href} target={this.props.link?.target ?? "_self"} >
|
|
49
|
+
{this.props.link?.text}
|
|
50
|
+
</a>
|
|
51
|
+
</div>
|
|
52
|
+
:
|
|
53
|
+
<div className={Styles.ns_card_link_container}>
|
|
54
|
+
<a className={Styles.ns_link_absolute} href={this.props.link?.href} target={this.props.link?.target ?? "_self"} >
|
|
49
55
|
</a>
|
|
50
56
|
</div>
|
|
51
57
|
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
.card_background {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
align-items: flex-end;
|
|
5
|
+
justify-content: flex-end;
|
|
6
|
+
gap: 24px 0;
|
|
7
|
+
box-shadow: 0 2px 10px 4px #00000040;
|
|
8
|
+
padding: 24px;
|
|
9
|
+
border-radius: 24px;
|
|
10
|
+
width: 100%;
|
|
11
|
+
max-width: 358px;
|
|
12
|
+
position: relative;
|
|
13
|
+
color: #fff;
|
|
14
|
+
background-repeat: no-repeat;
|
|
15
|
+
background-size: cover;
|
|
16
|
+
background-position: center;
|
|
17
|
+
min-height: 320px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.card_background_text {
|
|
21
|
+
font-size: 16px;
|
|
22
|
+
font-weight: 400;
|
|
23
|
+
line-height: inherit;
|
|
24
|
+
font-family: inherit;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.ns_card_link_container {
|
|
28
|
+
width: 100%;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.ns_link_absolute {
|
|
32
|
+
position: absolute;
|
|
33
|
+
width: 100%;
|
|
34
|
+
height: 100%;
|
|
35
|
+
left: 0;
|
|
36
|
+
right: 0;
|
|
37
|
+
top: 0;
|
|
38
|
+
bottom: 0;
|
|
39
|
+
cursor: pointer;
|
|
40
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { Component } from 'react';
|
|
4
|
+
|
|
5
|
+
import Styles from './NSEntityCardBackground.module.css'
|
|
6
|
+
import { Background } from '../types/Background';
|
|
7
|
+
|
|
8
|
+
export interface IProps
|
|
9
|
+
{
|
|
10
|
+
id?: string | number;
|
|
11
|
+
title: string;
|
|
12
|
+
link?:
|
|
13
|
+
{
|
|
14
|
+
href: string;
|
|
15
|
+
target?: string;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
background?: Background;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
interface IState
|
|
22
|
+
{
|
|
23
|
+
background?: Background;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export class NSEntityCardBackground extends Component<IProps, IState> {
|
|
27
|
+
|
|
28
|
+
constructor(props: IProps)
|
|
29
|
+
{
|
|
30
|
+
super(props);
|
|
31
|
+
this.state = {
|
|
32
|
+
background: {
|
|
33
|
+
image: `url(${props.background?.image})`,
|
|
34
|
+
color: props.background?.color,
|
|
35
|
+
position: props.background?.position
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
override render()
|
|
41
|
+
{
|
|
42
|
+
return (
|
|
43
|
+
<>
|
|
44
|
+
<article className={Styles.card_background}
|
|
45
|
+
style=
|
|
46
|
+
{{
|
|
47
|
+
backgroundImage: this.state.background?.image,
|
|
48
|
+
backgroundColor: this.state.background?.color,
|
|
49
|
+
backgroundPosition: this.state.background?.position
|
|
50
|
+
}}
|
|
51
|
+
>
|
|
52
|
+
|
|
53
|
+
<p className={Styles.card_background_text}>
|
|
54
|
+
{this.props.title}
|
|
55
|
+
</p>
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
{this.props.link &&
|
|
59
|
+
<div className={Styles.ns_card_link_container}>
|
|
60
|
+
<a className={Styles.ns_link_absolute} href={this.props.link?.href} target={this.props.link?.target ?? "_self"} >
|
|
61
|
+
</a>
|
|
62
|
+
</div>
|
|
63
|
+
}
|
|
64
|
+
</article >
|
|
65
|
+
</>
|
|
66
|
+
);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
@@ -10,7 +10,8 @@ interface IProps
|
|
|
10
10
|
{
|
|
11
11
|
scope: string;
|
|
12
12
|
name: string;
|
|
13
|
-
|
|
13
|
+
logo: string;
|
|
14
|
+
account?: boolean;
|
|
14
15
|
}
|
|
15
16
|
|
|
16
17
|
interface IState
|
|
@@ -70,23 +71,27 @@ export class NSHeader extends React.Component<IProps, IState> {
|
|
|
70
71
|
<div className={`${Styles.ns_navbar_content} `} >
|
|
71
72
|
<div className={`${Styles.ns_navbar_elements} ${this.state.showNavbar && Styles.ns_navbar_active}`}>
|
|
72
73
|
{this.render_menu(0, null)}
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
74
|
+
</div>
|
|
75
|
+
{this.props.account &&
|
|
76
|
+
<>
|
|
77
|
+
<div className={`${Styles.ns_navbar_login_status}`}>
|
|
78
|
+
<span className={`${Styles.ns_navbar_usersname}`}>name</span>
|
|
79
|
+
<img src='../assets/images/exit.svg'
|
|
80
|
+
alt="Exit"
|
|
81
|
+
width={20}
|
|
82
|
+
height={20}
|
|
83
|
+
/>
|
|
84
|
+
</div>
|
|
85
|
+
<div className={Styles.ns_navbar_menu_icon} onClick={this.handleShowNavbar}>
|
|
86
|
+
<img
|
|
87
|
+
src='../assets/images/menu.svg'
|
|
88
|
+
alt="Menu"
|
|
89
|
+
width={19}
|
|
90
|
+
height={17}
|
|
91
|
+
/>
|
|
92
|
+
</div>
|
|
93
|
+
</>
|
|
94
|
+
}
|
|
90
95
|
</div>
|
|
91
96
|
</div>
|
|
92
97
|
</nav>
|
package/src/main.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./components/NSButtonGreen";
|
|
2
2
|
export * from "./components/NSButtonRed";
|
|
3
3
|
export * from "./components/NSCard";
|
|
4
|
+
export * from "./components/NSEntityCardBackground";
|
|
4
5
|
export * from "./components/NSEntityBar";
|
|
5
6
|
export * from "./components/NSFooter";
|
|
6
7
|
export * from "./components/NSHeader";
|