namirasoft-account-react 1.4.433 → 1.4.434
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.css +32 -0
- package/dist/components/quickfilter/NSAFilterBoxEnum.module.css +45 -0
- package/dist/components/quickfilter/NSAQuickFilterBar.module.css +20 -0
- package/dist/components/quickfilter/NSAQuickFilterDialog.module.css +75 -0
- package/dist/index.css +0 -0
- package/package.json +2 -2
package/dist/App.css
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: inter;
|
|
3
|
+
src: url("../src/assets/fonts/Inter-Regular.ttf");
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
body {
|
|
7
|
+
margin: 0;
|
|
8
|
+
font-family: inter;
|
|
9
|
+
-webkit-font-smoothing: antialiased;
|
|
10
|
+
-moz-osx-font-smoothing: grayscale;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
.btn-close {
|
|
15
|
+
background: url(https://static.namirasoft.com/image/concept/close/blue.svg) center/1em auto no-repeat !important;
|
|
16
|
+
opacity: 1 !important;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.nsa_font_16_bold {
|
|
20
|
+
font-size: 16px;
|
|
21
|
+
font-weight: 600;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.nsa_font_13_normal {
|
|
25
|
+
font-size: 13px;
|
|
26
|
+
font-weight: 300;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.nsa_font_12_normal {
|
|
30
|
+
font-size: 12px;
|
|
31
|
+
font-weight: 300;
|
|
32
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
.title {
|
|
2
|
+
font-size: 13px;
|
|
3
|
+
font-weight: 400;
|
|
4
|
+
color: #6b6b6b;
|
|
5
|
+
display: flex;
|
|
6
|
+
align-items: center;
|
|
7
|
+
white-space: nowrap;
|
|
8
|
+
flex-shrink: 0;
|
|
9
|
+
margin-right: 2px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.container {
|
|
13
|
+
display: flex;
|
|
14
|
+
flex-wrap: nowrap;
|
|
15
|
+
align-items: center;
|
|
16
|
+
gap: 6px;
|
|
17
|
+
height: 48px;
|
|
18
|
+
width: 100%;
|
|
19
|
+
box-sizing: border-box;
|
|
20
|
+
padding: 0 10px;
|
|
21
|
+
border: 1px solid #a0a0a0;
|
|
22
|
+
border-radius: 8px;
|
|
23
|
+
background-color: #fff;
|
|
24
|
+
overflow-x: auto;
|
|
25
|
+
overflow-y: hidden;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.option {
|
|
29
|
+
padding: 4px 12px;
|
|
30
|
+
border-radius: 16px;
|
|
31
|
+
border: 1px solid #a0a0a0;
|
|
32
|
+
background-color: #fff;
|
|
33
|
+
color: #333;
|
|
34
|
+
cursor: pointer;
|
|
35
|
+
font-size: 13px;
|
|
36
|
+
font-family: inherit;
|
|
37
|
+
flex-shrink: 0;
|
|
38
|
+
white-space: nowrap;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.option_active {
|
|
42
|
+
border-color: #1976d2;
|
|
43
|
+
background-color: #1976d2;
|
|
44
|
+
color: #fff;
|
|
45
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
.qf_bar {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-wrap: wrap;
|
|
4
|
+
flex-direction: column;
|
|
5
|
+
align-items: center;
|
|
6
|
+
gap: 8px;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.qf_card {
|
|
10
|
+
display: flex;
|
|
11
|
+
flex-direction: column;
|
|
12
|
+
min-width: 288px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@media screen and (min-width: 480px) {
|
|
16
|
+
.qf_bar {
|
|
17
|
+
flex-direction: row;
|
|
18
|
+
align-items: normal;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
.qf_item {
|
|
2
|
+
width: 100%;
|
|
3
|
+
display: flex;
|
|
4
|
+
align-items: center;
|
|
5
|
+
gap: 8px;
|
|
6
|
+
padding: 4px 8px;
|
|
7
|
+
border-radius: 6px;
|
|
8
|
+
background: rgba(20, 27, 92, 0.04);
|
|
9
|
+
box-sizing: border-box;
|
|
10
|
+
min-height: 40px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.qf_item:hover {
|
|
14
|
+
background: rgba(20, 27, 92, 0.08);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.qf_item_info {
|
|
18
|
+
flex: 1;
|
|
19
|
+
display: flex;
|
|
20
|
+
align-items: baseline;
|
|
21
|
+
gap: 8px;
|
|
22
|
+
overflow: hidden;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.qf_item_label {
|
|
26
|
+
font-size: 14px;
|
|
27
|
+
font-weight: 500;
|
|
28
|
+
white-space: nowrap;
|
|
29
|
+
overflow: hidden;
|
|
30
|
+
text-overflow: ellipsis;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.qf_item_op {
|
|
34
|
+
font-size: 12px;
|
|
35
|
+
color: #aaa;
|
|
36
|
+
flex-shrink: 0;
|
|
37
|
+
white-space: nowrap;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.qf_item_actions {
|
|
41
|
+
display: flex;
|
|
42
|
+
gap: 4px;
|
|
43
|
+
flex-shrink: 0;
|
|
44
|
+
margin-left: auto;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.qf_item_btn {
|
|
48
|
+
width: 28px;
|
|
49
|
+
height: 28px;
|
|
50
|
+
min-width: 28px;
|
|
51
|
+
padding: 0;
|
|
52
|
+
border: 1px solid #d0d0d0;
|
|
53
|
+
border-radius: 4px;
|
|
54
|
+
background: #fff;
|
|
55
|
+
display: flex;
|
|
56
|
+
align-items: center;
|
|
57
|
+
justify-content: center;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.qf_item_btn img {
|
|
61
|
+
width: 16px;
|
|
62
|
+
height: 16px;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.qf_back_btn {
|
|
66
|
+
position: absolute;
|
|
67
|
+
top: 4px;
|
|
68
|
+
left: 4px;
|
|
69
|
+
width: 40px;
|
|
70
|
+
height: 40px;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.qf_back_btn:hover {
|
|
74
|
+
box-shadow: none;
|
|
75
|
+
}
|
package/dist/index.css
ADDED
|
File without changes
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"framework": "npm",
|
|
9
9
|
"application": "package",
|
|
10
10
|
"private": false,
|
|
11
|
-
"version": "1.4.
|
|
11
|
+
"version": "1.4.434",
|
|
12
12
|
"author": "Amir Abolhasani",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"main": "./dist/main.js",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"build": "npm run copy",
|
|
19
19
|
"test": "react-app-rewired test",
|
|
20
20
|
"eject": "react-app-rewired eject",
|
|
21
|
-
"copy": "copyfiles -u 1 src/**/*.html src/**/*.css src/**/*.svg src/**/*.png src/**/*.jpg dist/"
|
|
21
|
+
"copy": "copyfiles -u 1 \"src/**/*.html\" \"src/**/*.css\" \"src/**/*.svg\" \"src/**/*.png\" \"src/**/*.jpg\" dist/"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
|