namirasoft-site-react 1.3.175 → 1.3.176
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
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
|
|
2
2
|
import './App.css';
|
|
3
3
|
import 'bootstrap/dist/css/bootstrap.min.css';
|
|
4
4
|
import { NSLayoutAction } from './main';
|
|
5
|
+
import NSElectronicCard from './components/NSElectronicCard';
|
|
5
6
|
export function App() {
|
|
6
7
|
const onClicked = () => {
|
|
7
8
|
console.log("clicked");
|
|
@@ -18,6 +19,6 @@ export function App() {
|
|
|
18
19
|
return (_jsx(_Fragment, { children: _jsx(NSLayoutAction, { scope: '', actions: [], notifications: [], header: {
|
|
19
20
|
icons: icons,
|
|
20
21
|
title: "any"
|
|
21
|
-
}, title: '', logo: '', children: _jsx(_Fragment, {}) }) }));
|
|
22
|
+
}, title: '', logo: '', children: _jsx(_Fragment, { children: _jsx(NSElectronicCard, { cardNumber: '123456789123456', title: "visa", src: '' }) }) }) }));
|
|
22
23
|
}
|
|
23
24
|
//# sourceMappingURL=App.js.map
|
package/dist/App.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"App.js","sourceRoot":"","sources":["../src/App.tsx"],"names":[],"mappings":";AAAA,OAAO,WAAW,CAAC;AACnB,OAAO,sCAAsC,CAAC;AAC9C,OAAO,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"App.js","sourceRoot":"","sources":["../src/App.tsx"],"names":[],"mappings":";AAAA,OAAO,WAAW,CAAC;AACnB,OAAO,sCAAsC,CAAC;AAC9C,OAAO,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AACxC,OAAO,gBAAgB,MAAM,+BAA+B,CAAC;AAE7D,MAAM,UAAU,GAAG;IAGlB,MAAM,SAAS,GAAG,GAAG,EAAE;QAEtB,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,CAAA;IACvB,CAAC,CAAA;IAED,IAAI,KAAK,GAAG;QACX,EAAE,GAAG,EAAE,8DAA8D,EAAE,GAAG,EAAE,EAAE,EAAE,SAAS,EAAE,KAAK,EAAE,CAAC,EAAE;QACrG,EAAE,GAAG,EAAE,8DAA8D,EAAE,GAAG,EAAE,EAAE,EAAE,SAAS,EAAE;QAC3F,EAAE,GAAG,EAAE,8DAA8D,EAAE,GAAG,EAAE,EAAE,EAAE,SAAS,EAAE;QAC3F,EAAE,GAAG,EAAE,8DAA8D,EAAE,GAAG,EAAE,EAAE,EAAE,SAAS,EAAE;QAC3F,EAAE,GAAG,EAAE,8DAA8D,EAAE,GAAG,EAAE,EAAE,EAAE,SAAS,EAAE;QAC3F,EAAE,GAAG,EAAE,8DAA8D,EAAE,GAAG,EAAE,EAAE,EAAE,SAAS,EAAE;QAC3F,EAAE,GAAG,EAAE,8DAA8D,EAAE,GAAG,EAAE,EAAE,EAAE,SAAS,EAAE;KAC3F,CAAC;IAEF,OAAO,CACN,4BACC,KAAC,cAAc,IACd,KAAK,EAAC,EAAE,EACR,OAAO,EAAE,EAAE,EACX,aAAa,EAAE,EAAE,EACjB,MAAM,EACL;gBACC,KAAK,EAAE,KAAK;gBACZ,KAAK,EAAE,KAAK;aACZ,EAEF,KAAK,EAAC,EAAE,EACR,IAAI,EAAC,EAAE,YAEP,4BACC,KAAC,gBAAgB,IAAC,UAAU,EAAC,iBAAiB,EAAC,KAAK,EAAC,MAAM,EAAC,GAAG,EAAC,EAAE,GAAG,GACnE,GACa,GACf,CACH,CAAC;AACH,CAAC"}
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
.ns_navbar_content {
|
|
16
16
|
display: flex;
|
|
17
17
|
justify-content: space-between;
|
|
18
|
+
width: 100%;
|
|
18
19
|
gap: 8px;
|
|
19
20
|
}
|
|
20
21
|
|
|
@@ -68,11 +69,11 @@
|
|
|
68
69
|
background-color: #574c4c;
|
|
69
70
|
}
|
|
70
71
|
|
|
71
|
-
.ns_header_icon{
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
72
|
+
.ns_header_icon {
|
|
73
|
+
outline: none;
|
|
74
|
+
border: none;
|
|
75
|
+
background: none;
|
|
76
|
+
padding: 0;
|
|
76
77
|
position: relative;
|
|
77
78
|
}
|
|
78
79
|
|
|
@@ -103,9 +104,11 @@
|
|
|
103
104
|
border: 0;
|
|
104
105
|
transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
|
|
105
106
|
}
|
|
107
|
+
|
|
106
108
|
.ns_navbar_first_level_item {
|
|
107
109
|
color: #fff;
|
|
108
110
|
}
|
|
111
|
+
|
|
109
112
|
@media (max-width: 768px) {
|
|
110
113
|
.ns_navbar_elements ul li:not(:last-child) {
|
|
111
114
|
margin-right: 30px;
|
|
@@ -176,7 +179,6 @@
|
|
|
176
179
|
.ns_navbar_parent_content {
|
|
177
180
|
display: flex;
|
|
178
181
|
align-items: center;
|
|
179
|
-
justify-content: space-between;
|
|
180
182
|
padding-left: 1rem;
|
|
181
183
|
padding-right: 1rem;
|
|
182
184
|
margin-left: auto;
|
package/package.json
CHANGED
package/src/App.tsx
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import './App.css';
|
|
2
2
|
import 'bootstrap/dist/css/bootstrap.min.css';
|
|
3
3
|
import { NSLayoutAction } from './main';
|
|
4
|
+
import NSElectronicCard from './components/NSElectronicCard';
|
|
4
5
|
|
|
5
6
|
export function App()
|
|
6
7
|
{
|
|
@@ -36,6 +37,7 @@ export function App()
|
|
|
36
37
|
logo=''
|
|
37
38
|
>
|
|
38
39
|
<>
|
|
40
|
+
<NSElectronicCard cardNumber='123456789123456' title="visa" src='' />
|
|
39
41
|
</>
|
|
40
42
|
</NSLayoutAction>
|
|
41
43
|
</>
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
.ns_navbar_content {
|
|
16
16
|
display: flex;
|
|
17
17
|
justify-content: space-between;
|
|
18
|
+
width: 100%;
|
|
18
19
|
gap: 8px;
|
|
19
20
|
}
|
|
20
21
|
|
|
@@ -68,11 +69,11 @@
|
|
|
68
69
|
background-color: #574c4c;
|
|
69
70
|
}
|
|
70
71
|
|
|
71
|
-
.ns_header_icon{
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
72
|
+
.ns_header_icon {
|
|
73
|
+
outline: none;
|
|
74
|
+
border: none;
|
|
75
|
+
background: none;
|
|
76
|
+
padding: 0;
|
|
76
77
|
position: relative;
|
|
77
78
|
}
|
|
78
79
|
|
|
@@ -103,9 +104,11 @@
|
|
|
103
104
|
border: 0;
|
|
104
105
|
transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
|
|
105
106
|
}
|
|
107
|
+
|
|
106
108
|
.ns_navbar_first_level_item {
|
|
107
109
|
color: #fff;
|
|
108
110
|
}
|
|
111
|
+
|
|
109
112
|
@media (max-width: 768px) {
|
|
110
113
|
.ns_navbar_elements ul li:not(:last-child) {
|
|
111
114
|
margin-right: 30px;
|
|
@@ -176,7 +179,6 @@
|
|
|
176
179
|
.ns_navbar_parent_content {
|
|
177
180
|
display: flex;
|
|
178
181
|
align-items: center;
|
|
179
|
-
justify-content: space-between;
|
|
180
182
|
padding-left: 1rem;
|
|
181
183
|
padding-right: 1rem;
|
|
182
184
|
margin-left: auto;
|