namirasoft-site-react 1.4.339 → 1.4.340
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/.dockerignore +86 -86
- package/.env.template +10 -10
- package/Dockerfile +18 -18
- package/config-overrides.js +72 -72
- package/dist/App.css +34 -0
- package/dist/components/NSBanner.module.css +47 -47
- package/dist/components/NSBarAction.module.css +84 -84
- package/dist/components/NSBarAlert.module.css +79 -79
- package/dist/components/NSBarNotification.module.css +34 -34
- package/dist/components/NSBarTitle.module.css +9 -9
- package/dist/components/NSBox.module.css +50 -50
- package/dist/components/NSBoxBaseCombo.module.css +6 -6
- package/dist/components/NSBoxBoolean.module.css +67 -67
- package/dist/components/NSBoxDate.module.css +4 -4
- package/dist/components/NSBoxDateTime.module.css +4 -4
- package/dist/components/NSBoxDuration.module.css +4 -4
- package/dist/components/NSBoxFile.module.css +10 -10
- package/dist/components/NSBoxPhone.module.css +35 -35
- package/dist/components/NSBoxRadio.module.css +33 -33
- package/dist/components/NSBoxSchemaBase.module.css +17 -17
- package/dist/components/NSBoxSchemaVariable.module.css +16 -16
- package/dist/components/NSBoxTextArea.module.css +12 -12
- package/dist/components/NSBoxTime.module.css +4 -4
- package/dist/components/NSButton.module.css +57 -57
- package/dist/components/NSButtonBlue.module.css +4 -4
- package/dist/components/NSButtonGreen.module.css +4 -4
- package/dist/components/NSButtonRed.module.css +4 -4
- package/dist/components/NSCard.module.css +114 -114
- package/dist/components/NSCardScreenshot.module.css +41 -41
- package/dist/components/NSChartColumn.module.css +7 -7
- package/dist/components/NSChartTable.module.css +21 -21
- package/dist/components/NSColumn.module.css +16 -16
- package/dist/components/NSCopyBox.module.css +39 -39
- package/dist/components/NSDialog.module.css +112 -112
- package/dist/components/NSDialogPageSelection.module.css +103 -103
- package/dist/components/NSDownTimer.module.css +55 -55
- package/dist/components/NSDownload.module.css +46 -46
- package/dist/components/NSElectronicCard.module.css +60 -60
- package/dist/components/NSEntityCardBackground.module.css +27 -27
- package/dist/components/NSFilterBox.module.css +56 -56
- package/dist/components/NSFilterItem.module.css +24 -24
- package/dist/components/NSFooter.module.css +134 -134
- package/dist/components/NSHeader.module.css +291 -291
- package/dist/components/NSHeaderScreenshot.module.css +35 -35
- package/dist/components/NSID.js +2 -0
- package/dist/components/NSID.js.map +1 -1
- package/dist/components/NSLabel.module.css +25 -25
- package/dist/components/NSLabelErrorNotifier.module.css +2 -2
- package/dist/components/NSLayout.module.css +14 -14
- package/dist/components/NSLine.module.css +15 -15
- package/dist/components/NSLink.module.css +36 -36
- package/dist/components/NSListGrouped.module.css +69 -69
- package/dist/components/NSLoading.module.css +30 -30
- package/dist/components/NSMenuAction.js +2 -2
- package/dist/components/NSMenuAction.module.css +88 -88
- package/dist/components/NSMenuButton.module.css +44 -44
- package/dist/components/NSNoData.module.css +9 -9
- package/dist/components/NSPagination.module.css +85 -85
- package/dist/components/NSPanel.module.css +19 -19
- package/dist/components/NSPanelAccordion.module.css +4 -4
- package/dist/components/NSRange.module.css +66 -66
- package/dist/components/NSRow.module.css +17 -17
- package/dist/components/NSSection.module.css +4 -4
- package/dist/components/NSSectionCards.module.css +38 -38
- package/dist/components/NSSectionTiles.module.css +10 -10
- package/dist/components/NSTabPage.module.css +59 -59
- package/dist/components/NSTable.module.css +263 -263
- package/dist/components/NSTile.module.css +76 -76
- package/dist/components/NSTimelineMonthly.module.css +71 -71
- package/dist/components/NSTitle.module.css +15 -15
- package/dist/index.css +6 -0
- package/dist/pages/NSNotFoundPage.module.css +18 -18
- package/dist/pages/NSUpdating.module.css +35 -35
- package/package.json +80 -80
- package/public/index.html +38 -38
- package/src/App.css +33 -33
- package/src/App.tsx +131 -131
- package/src/Color.tsx +10 -10
- package/src/CopyToClipboard.ts +6 -6
- package/src/NSBoxBuilder.tsx +914 -914
- package/src/Validator.ts +163 -163
- package/src/components/INSBox.tsx +6 -6
- package/src/components/NSBanner.module.css +47 -47
- package/src/components/NSBanner.tsx +80 -80
- package/src/components/NSBarAction.module.css +84 -84
- package/src/components/NSBarAction.tsx +90 -90
- package/src/components/NSBarAlert.module.css +79 -79
- package/src/components/NSBarAlert.tsx +35 -35
- package/src/components/NSBarNotification.module.css +34 -34
- package/src/components/NSBarNotification.tsx +85 -85
- package/src/components/NSBarTitle.module.css +9 -9
- package/src/components/NSBarTitle.tsx +23 -23
- package/src/components/NSBox.module.css +50 -50
- package/src/components/NSBox.tsx +19 -19
- package/src/components/NSBoxBaseCombo.module.css +6 -6
- package/src/components/NSBoxBaseCombo.tsx +314 -314
- package/src/components/NSBoxBaseLayout.tsx +88 -88
- package/src/components/NSBoxBaseLayoutRecursive.tsx +54 -54
- package/src/components/NSBoxBoolean.module.css +67 -67
- package/src/components/NSBoxBoolean.tsx +119 -119
- package/src/components/NSBoxBooleans.tsx +161 -161
- package/src/components/NSBoxColor.tsx +95 -95
- package/src/components/NSBoxCombo.tsx +91 -91
- package/src/components/NSBoxDate.module.css +4 -4
- package/src/components/NSBoxDate.tsx +90 -90
- package/src/components/NSBoxDateTime.module.css +4 -4
- package/src/components/NSBoxDateTime.tsx +105 -105
- package/src/components/NSBoxDouble.tsx +94 -94
- package/src/components/NSBoxDuration.module.css +4 -4
- package/src/components/NSBoxDuration.tsx +95 -95
- package/src/components/NSBoxDynamic.tsx +67 -67
- package/src/components/NSBoxDynamics.tsx +68 -68
- package/src/components/NSBoxEmail.tsx +98 -98
- package/src/components/NSBoxEntity.tsx +101 -101
- package/src/components/NSBoxEnum.tsx +108 -108
- package/src/components/NSBoxFile.module.css +10 -10
- package/src/components/NSBoxFile.tsx +101 -101
- package/src/components/NSBoxFilePath.tsx +95 -95
- package/src/components/NSBoxFont.tsx +95 -95
- package/src/components/NSBoxIPV4.tsx +95 -95
- package/src/components/NSBoxIPV4Range.tsx +95 -95
- package/src/components/NSBoxIPV6.tsx +92 -92
- package/src/components/NSBoxIPV6Range.tsx +95 -95
- package/src/components/NSBoxInteger.tsx +91 -91
- package/src/components/NSBoxMoney.tsx +95 -95
- package/src/components/NSBoxPassword.tsx +106 -106
- package/src/components/NSBoxPhone.module.css +35 -35
- package/src/components/NSBoxPhone.tsx +107 -107
- package/src/components/NSBoxRadio.module.css +33 -33
- package/src/components/NSBoxRadio.tsx +91 -91
- package/src/components/NSBoxSchemaBase.module.css +17 -17
- package/src/components/NSBoxSchemaBase.tsx +540 -540
- package/src/components/NSBoxSchemaVariable.module.css +16 -16
- package/src/components/NSBoxSchemaVariable.tsx +250 -250
- package/src/components/NSBoxSearch.tsx +97 -97
- package/src/components/NSBoxString.tsx +91 -91
- package/src/components/NSBoxTextArea.module.css +12 -12
- package/src/components/NSBoxTextArea.tsx +98 -98
- package/src/components/NSBoxTime.module.css +4 -4
- package/src/components/NSBoxTime.tsx +93 -93
- package/src/components/NSBoxTimeZone.tsx +95 -95
- package/src/components/NSBoxURL.tsx +104 -104
- package/src/components/NSBoxVersion.tsx +95 -95
- package/src/components/NSButton.module.css +57 -57
- package/src/components/NSButton.tsx +25 -25
- package/src/components/NSButtonBlue.module.css +4 -4
- package/src/components/NSButtonBlue.tsx +19 -19
- package/src/components/NSButtonGreen.module.css +4 -4
- package/src/components/NSButtonGreen.tsx +19 -19
- package/src/components/NSButtonRed.module.css +4 -4
- package/src/components/NSButtonRed.tsx +19 -19
- package/src/components/NSCard.module.css +114 -114
- package/src/components/NSCard.tsx +63 -63
- package/src/components/NSCardScreenshot.module.css +41 -41
- package/src/components/NSCardScreenshot.tsx +31 -31
- package/src/components/NSChartColumn.module.css +7 -7
- package/src/components/NSChartColumn.tsx +106 -106
- package/src/components/NSChartDoughnut.tsx +112 -112
- package/src/components/NSChartPie.tsx +105 -105
- package/src/components/NSChartRange.tsx +14 -14
- package/src/components/NSChartTable.module.css +21 -21
- package/src/components/NSChartTable.tsx +94 -94
- package/src/components/NSColumn.module.css +16 -16
- package/src/components/NSColumn.tsx +24 -24
- package/src/components/NSCopy.tsx +58 -58
- package/src/components/NSCopyBox.module.css +39 -39
- package/src/components/NSCopyBox.tsx +53 -53
- package/src/components/NSDialog.module.css +112 -112
- package/src/components/NSDialog.tsx +61 -61
- package/src/components/NSDialogDelete.tsx +26 -26
- package/src/components/NSDialogInfo.tsx +32 -32
- package/src/components/NSDialogPageSelection.module.css +103 -103
- package/src/components/NSDialogPageSelection.tsx +227 -227
- package/src/components/NSDownTimer.module.css +55 -55
- package/src/components/NSDownTimer.tsx +91 -91
- package/src/components/NSDownload.module.css +46 -46
- package/src/components/NSDownload.tsx +66 -66
- package/src/components/NSElectronicCard.module.css +60 -60
- package/src/components/NSElectronicCard.tsx +46 -46
- package/src/components/NSEntityCardBackground.module.css +27 -27
- package/src/components/NSEntityCardBackground.tsx +36 -36
- package/src/components/NSFilterBox.module.css +56 -56
- package/src/components/NSFilterBox.tsx +506 -506
- package/src/components/NSFilterItem.module.css +24 -24
- package/src/components/NSFilterItem.tsx +27 -27
- package/src/components/NSFooter.module.css +134 -134
- package/src/components/NSFooter.tsx +321 -321
- package/src/components/NSHeader.module.css +291 -291
- package/src/components/NSHeader.tsx +261 -261
- package/src/components/NSHeaderScreenshot.module.css +35 -35
- package/src/components/NSHeaderScreenshot.tsx +39 -39
- package/src/components/NSID.tsx +133 -131
- package/src/components/NSLabel.module.css +25 -25
- package/src/components/NSLabel.tsx +46 -46
- package/src/components/NSLabelErrorNotifier.module.css +2 -2
- package/src/components/NSLabelErrorNotifier.tsx +35 -35
- package/src/components/NSLayout.module.css +14 -14
- package/src/components/NSLayout.tsx +126 -126
- package/src/components/NSLine.module.css +15 -15
- package/src/components/NSLine.tsx +13 -13
- package/src/components/NSLink.module.css +36 -36
- package/src/components/NSLink.tsx +25 -25
- package/src/components/NSLinkBlue.tsx +21 -21
- package/src/components/NSLinkGreen.tsx +12 -12
- package/src/components/NSLinkRed.tsx +12 -12
- package/src/components/NSListGrouped.module.css +69 -69
- package/src/components/NSListGrouped.tsx +106 -106
- package/src/components/NSListProduct.tsx +44 -44
- package/src/components/NSLoading.module.css +30 -30
- package/src/components/NSLoading.tsx +21 -21
- package/src/components/NSMenuAction.module.css +88 -88
- package/src/components/NSMenuAction.tsx +90 -90
- package/src/components/NSMenuButton.module.css +44 -44
- package/src/components/NSMenuButton.tsx +206 -206
- package/src/components/NSNoData.module.css +9 -9
- package/src/components/NSNoData.tsx +24 -24
- package/src/components/NSPagination.module.css +85 -85
- package/src/components/NSPagination.tsx +182 -182
- package/src/components/NSPanel.module.css +19 -19
- package/src/components/NSPanel.tsx +24 -24
- package/src/components/NSPanelAccordion.module.css +4 -4
- package/src/components/NSPanelAccordion.tsx +51 -51
- package/src/components/NSRange.module.css +66 -66
- package/src/components/NSRange.tsx +83 -83
- package/src/components/NSRepeater.tsx +256 -256
- package/src/components/NSRepeaterNSBoxSchemaVariable.tsx +90 -90
- package/src/components/NSRepeaterNSTag.tsx +81 -81
- package/src/components/NSRow.module.css +17 -17
- package/src/components/NSRow.tsx +24 -24
- package/src/components/NSSection.module.css +4 -4
- package/src/components/NSSection.tsx +26 -26
- package/src/components/NSSectionCards.module.css +38 -38
- package/src/components/NSSectionCards.tsx +51 -51
- package/src/components/NSSectionTiles.module.css +10 -10
- package/src/components/NSSectionTiles.tsx +25 -25
- package/src/components/NSSectionTitle.tsx +21 -21
- package/src/components/NSSpace.tsx +28 -28
- package/src/components/NSTabPage.module.css +59 -59
- package/src/components/NSTabPage.tsx +91 -91
- package/src/components/NSTable.module.css +263 -263
- package/src/components/NSTable.tsx +482 -482
- package/src/components/NSTag.tsx +74 -74
- package/src/components/NSTile.module.css +76 -76
- package/src/components/NSTile.tsx +27 -27
- package/src/components/NSTimelineMonthly.module.css +71 -71
- package/src/components/NSTimelineMonthly.tsx +44 -44
- package/src/components/NSTitle.module.css +15 -15
- package/src/components/NSTitle.tsx +19 -19
- package/src/formatter/BackColorFormatter.tsx +23 -23
- package/src/formatter/BaseColumnFormatter.ts +16 -16
- package/src/formatter/BaseURLImageFormatter.tsx +33 -33
- package/src/formatter/BooleanFormatter.ts +22 -22
- package/src/formatter/DateFormatter.ts +21 -21
- package/src/formatter/DateTimeFormatter.ts +21 -21
- package/src/formatter/DurationFormatter.ts +13 -13
- package/src/formatter/EmailFormatter.tsx +21 -21
- package/src/formatter/EnumFormatter.ts +13 -13
- package/src/formatter/FloatFormatter.ts +23 -23
- package/src/formatter/ForeColorFormatter.tsx +24 -24
- package/src/formatter/IDFormatter.tsx +30 -30
- package/src/formatter/IPFormatter.ts +13 -13
- package/src/formatter/IntegerFormatter.ts +23 -23
- package/src/formatter/JsonFormatter.ts +21 -21
- package/src/formatter/MoneyFormatter.ts +30 -30
- package/src/formatter/PhoneFormatter.tsx +21 -21
- package/src/formatter/StringFormatter.tsx +43 -43
- package/src/formatter/TimeFormatter.ts +21 -21
- package/src/formatter/URLFormatter.tsx +21 -21
- package/src/formatter/UnknowFormatter.ts +18 -18
- package/src/index.tsx +7 -7
- package/src/main.ts +222 -222
- package/src/pages/NSNotFoundPage.module.css +18 -18
- package/src/pages/NSNotFoundPage.tsx +11 -11
- package/src/pages/NSUpdating.module.css +35 -35
- package/src/pages/NSUpdating.tsx +32 -32
- package/src/props/IBackgroundPropps.ts +5 -5
- package/src/props/IBaseComponentProps.ts +8 -8
- package/src/props/IHeaderIconProps.ts +10 -10
- package/src/props/IHeaderProps.ts +7 -7
- package/src/props/IImageProps.ts +4 -4
- package/src/props/ILinkProps.ts +5 -5
- package/src/props/IValidationNumberProps.ts +4 -4
- package/src/props/IValidationPrecisionProps.ts +3 -3
- package/src/props/IValidationProps.ts +9 -9
- package/src/props/IValidationRegexProps.ts +4 -4
- package/src/props/IValidationStringProps.ts +4 -4
- package/src/routing/NSNotifier.ts +114 -114
- package/src/routing/NSRouterMaker.tsx +20 -20
- package/src/routing/NSRouterMakerComponent.ts +5 -5
- package/src/routing/NSRouterMakerProps.ts +5 -5
|
@@ -1,292 +1,292 @@
|
|
|
1
|
-
.ns_header {
|
|
2
|
-
width: 100%;
|
|
3
|
-
position: sticky;
|
|
4
|
-
top: 0;
|
|
5
|
-
z-index: 110;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.ns_navbar {
|
|
9
|
-
min-height: 64px;
|
|
10
|
-
/* background-color: #0000004d !important; */
|
|
11
|
-
position: relative;
|
|
12
|
-
z-index: 10;
|
|
13
|
-
display: flex;
|
|
14
|
-
align-items: center;
|
|
15
|
-
justify-content: center;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.ns_navbar_content {
|
|
19
|
-
display: flex;
|
|
20
|
-
justify-content: flex-end;
|
|
21
|
-
align-items: center;
|
|
22
|
-
width: 100%;
|
|
23
|
-
gap: 8px;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.ns_navbar_login_status {
|
|
27
|
-
display: flex;
|
|
28
|
-
justify-content: center;
|
|
29
|
-
align-items: center;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.ns_navbar_usersname {
|
|
33
|
-
color: #fff !important;
|
|
34
|
-
font-size: 16px;
|
|
35
|
-
font-weight: 400;
|
|
36
|
-
margin-right: 8px;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.ns_navbar_menu_icon {
|
|
40
|
-
display: none;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.ns_navbar_elements ul {
|
|
44
|
-
display: flex;
|
|
45
|
-
justify-content: space-between;
|
|
46
|
-
list-style-type: none;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.ns_navbar_elements ul li:not(:last-child) {
|
|
50
|
-
margin-right: 60px;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.ns_navbar_elements ul a {
|
|
54
|
-
font-size: 16px;
|
|
55
|
-
font-weight: 400;
|
|
56
|
-
color: #2f234f;
|
|
57
|
-
text-decoration: none;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.ns_navbar_elements ul a.ns_navbar_active {
|
|
61
|
-
color: #574c4c;
|
|
62
|
-
font-weight: 500;
|
|
63
|
-
position: relative;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.ns_navbar_elements ul a.ns_navbar_active::after {
|
|
67
|
-
content: "";
|
|
68
|
-
position: absolute;
|
|
69
|
-
bottom: -4px;
|
|
70
|
-
left: 0;
|
|
71
|
-
width: 100%;
|
|
72
|
-
height: 2px;
|
|
73
|
-
background-color: #574c4c;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.ns_header_icon {
|
|
77
|
-
outline: none;
|
|
78
|
-
border: none;
|
|
79
|
-
background: none;
|
|
80
|
-
padding: 0;
|
|
81
|
-
position: relative;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.ns_header_icon>img:hover {
|
|
85
|
-
scale: 1.2;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.ns_navbar_items_container {
|
|
89
|
-
margin-right: auto;
|
|
90
|
-
margin-inline-end: auto;
|
|
91
|
-
--bs-nav-link-padding-x: 1rem;
|
|
92
|
-
--bs-nav-link-padding-y: 0.5rem;
|
|
93
|
-
--bs-nav-link-font-weight: ;
|
|
94
|
-
--bs-nav-link-color: var(--bs-link-color);
|
|
95
|
-
--bs-nav-link-hover-color: var(--bs-link-hover-color);
|
|
96
|
-
--bs-nav-link-disabled-color: var(--bs-secondary-color);
|
|
97
|
-
display: flex;
|
|
98
|
-
flex-wrap: wrap;
|
|
99
|
-
padding-left: 0;
|
|
100
|
-
margin-bottom: 0;
|
|
101
|
-
list-style: none;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.ns_navbar_items_link {
|
|
105
|
-
display: block;
|
|
106
|
-
padding: 8px 16px;
|
|
107
|
-
font-size: var(--bs-nav-link-font-size);
|
|
108
|
-
font-weight: var(--bs-nav-link-font-weight);
|
|
109
|
-
color: var(--bs-nav-link-color);
|
|
110
|
-
text-decoration: none;
|
|
111
|
-
background: 0 0;
|
|
112
|
-
border: 0;
|
|
113
|
-
transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
.ns_navbar_first_level_item {
|
|
117
|
-
color: #fff;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.ns_navbar_first_level_item a:hover {
|
|
121
|
-
background-color: rgb(212 212 212);
|
|
122
|
-
border-radius: 2px;
|
|
123
|
-
color: #141b5c !important;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
.ns_navbar_first_level_item:hover {
|
|
127
|
-
background-color: rgb(212 212 212);
|
|
128
|
-
border-radius: 2px;
|
|
129
|
-
color: #141b5c;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
@media (max-width: 768px) {
|
|
133
|
-
.ns_navbar_elements ul li:not(:last-child) {
|
|
134
|
-
margin-right: 30px;
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
.ns_navbar_parent_content {
|
|
139
|
-
display: flex;
|
|
140
|
-
align-items: center;
|
|
141
|
-
padding-left: 1rem;
|
|
142
|
-
padding-right: 1rem;
|
|
143
|
-
margin-left: auto;
|
|
144
|
-
margin-right: auto;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
@media only screen and (min-width: 1025px) {
|
|
148
|
-
.ns_navbar_content {
|
|
149
|
-
justify-content: space-between;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.ns_navbar_parent_content {
|
|
153
|
-
padding-right: 1rem;
|
|
154
|
-
padding-left: 1rem;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.ns_navbar_parent_content img {
|
|
158
|
-
cursor: pointer;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
.ns_navbar_parent_content img:hover {
|
|
162
|
-
opacity: 0.5;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
.ns_nav_second_item .dropdown-menu {
|
|
166
|
-
margin-top: -20% !important;
|
|
167
|
-
margin-left: 100%;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
.ns_navbar_second_level_item a {
|
|
171
|
-
color: #000 !important;
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
.ns_navbar_first_level_item a {
|
|
176
|
-
color: #fff;
|
|
177
|
-
width: 100%;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
.ns_navbar_second_level_item a:hover {
|
|
183
|
-
background-color: rgba(178, 187, 217, 1);
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
.ns_navbar_second_level_item {
|
|
187
|
-
color: #000 !important;
|
|
188
|
-
width: 100%;
|
|
189
|
-
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
.ns_navbar_title {
|
|
193
|
-
color: #fff;
|
|
194
|
-
font-size: 16px;
|
|
195
|
-
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
.ns_navbar_notification:hover {
|
|
199
|
-
opacity: 0.5;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
.ns_navbar_notification_count {
|
|
203
|
-
width: 20px;
|
|
204
|
-
height: 20px;
|
|
205
|
-
background-color: #ff0000;
|
|
206
|
-
color: rgba(255, 255, 255, 1);
|
|
207
|
-
border-radius: 50%;
|
|
208
|
-
cursor: pointer;
|
|
209
|
-
font-size: 10px;
|
|
210
|
-
font-weight: 600;
|
|
211
|
-
position: absolute;
|
|
212
|
-
text-align: center;
|
|
213
|
-
right: -8px;
|
|
214
|
-
top: -10px;
|
|
215
|
-
display: flex;
|
|
216
|
-
justify-content: center;
|
|
217
|
-
align-items: center;
|
|
218
|
-
align-self: center;
|
|
219
|
-
animation-name: scale;
|
|
220
|
-
animation-duration: 1s;
|
|
221
|
-
animation-iteration-count: infinite;
|
|
222
|
-
animation-timing-function: ease-out;
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
@keyframes scale {
|
|
226
|
-
from {
|
|
227
|
-
scale: 1;
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
to {
|
|
231
|
-
scale: 1.2;
|
|
232
|
-
}
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
@media (max-width: 1025px) {
|
|
236
|
-
.ns_navbar_first_level_item:hover {
|
|
237
|
-
background-color: #FFFFFF1A;
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
.ns_navbar_items_link {
|
|
241
|
-
width: 100%;
|
|
242
|
-
border-bottom: 0.5px solid transparent;
|
|
243
|
-
border-image: linear-gradient(90deg, #ffffff00 0%, rgb(0, 0, 0, 40%), #ffffff00 100%);
|
|
244
|
-
border-image-slice: 1;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
.ns_navbar_menu_icon {
|
|
248
|
-
display: block;
|
|
249
|
-
cursor: pointer;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
.ns_navbar_elements {
|
|
253
|
-
position: absolute;
|
|
254
|
-
right: 0;
|
|
255
|
-
top: 96px;
|
|
256
|
-
width: 0px;
|
|
257
|
-
height: calc(100vh - 60px);
|
|
258
|
-
transition: all 0.3s ease-in;
|
|
259
|
-
overflow: hidden;
|
|
260
|
-
/* background-color: rgb(0 15 53 / 98%) !important; */
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
.ns_navbar_elements.ns_navbar_active {
|
|
264
|
-
width: 100%;
|
|
265
|
-
text-align: center;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
.ns_navbar_elements ul {
|
|
269
|
-
display: flex;
|
|
270
|
-
flex-direction: column;
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
.ns_navbar_elements ul li {
|
|
274
|
-
margin-right: unset;
|
|
275
|
-
margin-top: 22px;
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
.ns_navbar_elements div {
|
|
279
|
-
flex-direction: column;
|
|
280
|
-
align-content: center;
|
|
281
|
-
background: #141B5CCC;
|
|
282
|
-
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
|
|
283
|
-
backdrop-filter: blur(42.150001525878906px);
|
|
284
|
-
width: 100%;
|
|
285
|
-
transform: translate3d(0px, 0, 0px) !important;
|
|
286
|
-
position: relative !important;
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
.ns_navbar_second_level_item {
|
|
290
|
-
color: #fff !important;
|
|
291
|
-
}
|
|
1
|
+
.ns_header {
|
|
2
|
+
width: 100%;
|
|
3
|
+
position: sticky;
|
|
4
|
+
top: 0;
|
|
5
|
+
z-index: 110;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.ns_navbar {
|
|
9
|
+
min-height: 64px;
|
|
10
|
+
/* background-color: #0000004d !important; */
|
|
11
|
+
position: relative;
|
|
12
|
+
z-index: 10;
|
|
13
|
+
display: flex;
|
|
14
|
+
align-items: center;
|
|
15
|
+
justify-content: center;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.ns_navbar_content {
|
|
19
|
+
display: flex;
|
|
20
|
+
justify-content: flex-end;
|
|
21
|
+
align-items: center;
|
|
22
|
+
width: 100%;
|
|
23
|
+
gap: 8px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.ns_navbar_login_status {
|
|
27
|
+
display: flex;
|
|
28
|
+
justify-content: center;
|
|
29
|
+
align-items: center;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.ns_navbar_usersname {
|
|
33
|
+
color: #fff !important;
|
|
34
|
+
font-size: 16px;
|
|
35
|
+
font-weight: 400;
|
|
36
|
+
margin-right: 8px;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.ns_navbar_menu_icon {
|
|
40
|
+
display: none;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.ns_navbar_elements ul {
|
|
44
|
+
display: flex;
|
|
45
|
+
justify-content: space-between;
|
|
46
|
+
list-style-type: none;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.ns_navbar_elements ul li:not(:last-child) {
|
|
50
|
+
margin-right: 60px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.ns_navbar_elements ul a {
|
|
54
|
+
font-size: 16px;
|
|
55
|
+
font-weight: 400;
|
|
56
|
+
color: #2f234f;
|
|
57
|
+
text-decoration: none;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.ns_navbar_elements ul a.ns_navbar_active {
|
|
61
|
+
color: #574c4c;
|
|
62
|
+
font-weight: 500;
|
|
63
|
+
position: relative;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.ns_navbar_elements ul a.ns_navbar_active::after {
|
|
67
|
+
content: "";
|
|
68
|
+
position: absolute;
|
|
69
|
+
bottom: -4px;
|
|
70
|
+
left: 0;
|
|
71
|
+
width: 100%;
|
|
72
|
+
height: 2px;
|
|
73
|
+
background-color: #574c4c;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.ns_header_icon {
|
|
77
|
+
outline: none;
|
|
78
|
+
border: none;
|
|
79
|
+
background: none;
|
|
80
|
+
padding: 0;
|
|
81
|
+
position: relative;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.ns_header_icon>img:hover {
|
|
85
|
+
scale: 1.2;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.ns_navbar_items_container {
|
|
89
|
+
margin-right: auto;
|
|
90
|
+
margin-inline-end: auto;
|
|
91
|
+
--bs-nav-link-padding-x: 1rem;
|
|
92
|
+
--bs-nav-link-padding-y: 0.5rem;
|
|
93
|
+
--bs-nav-link-font-weight: ;
|
|
94
|
+
--bs-nav-link-color: var(--bs-link-color);
|
|
95
|
+
--bs-nav-link-hover-color: var(--bs-link-hover-color);
|
|
96
|
+
--bs-nav-link-disabled-color: var(--bs-secondary-color);
|
|
97
|
+
display: flex;
|
|
98
|
+
flex-wrap: wrap;
|
|
99
|
+
padding-left: 0;
|
|
100
|
+
margin-bottom: 0;
|
|
101
|
+
list-style: none;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.ns_navbar_items_link {
|
|
105
|
+
display: block;
|
|
106
|
+
padding: 8px 16px;
|
|
107
|
+
font-size: var(--bs-nav-link-font-size);
|
|
108
|
+
font-weight: var(--bs-nav-link-font-weight);
|
|
109
|
+
color: var(--bs-nav-link-color);
|
|
110
|
+
text-decoration: none;
|
|
111
|
+
background: 0 0;
|
|
112
|
+
border: 0;
|
|
113
|
+
transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.ns_navbar_first_level_item {
|
|
117
|
+
color: #fff;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.ns_navbar_first_level_item a:hover {
|
|
121
|
+
background-color: rgb(212 212 212);
|
|
122
|
+
border-radius: 2px;
|
|
123
|
+
color: #141b5c !important;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.ns_navbar_first_level_item:hover {
|
|
127
|
+
background-color: rgb(212 212 212);
|
|
128
|
+
border-radius: 2px;
|
|
129
|
+
color: #141b5c;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
@media (max-width: 768px) {
|
|
133
|
+
.ns_navbar_elements ul li:not(:last-child) {
|
|
134
|
+
margin-right: 30px;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.ns_navbar_parent_content {
|
|
139
|
+
display: flex;
|
|
140
|
+
align-items: center;
|
|
141
|
+
padding-left: 1rem;
|
|
142
|
+
padding-right: 1rem;
|
|
143
|
+
margin-left: auto;
|
|
144
|
+
margin-right: auto;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
@media only screen and (min-width: 1025px) {
|
|
148
|
+
.ns_navbar_content {
|
|
149
|
+
justify-content: space-between;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.ns_navbar_parent_content {
|
|
153
|
+
padding-right: 1rem;
|
|
154
|
+
padding-left: 1rem;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.ns_navbar_parent_content img {
|
|
158
|
+
cursor: pointer;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.ns_navbar_parent_content img:hover {
|
|
162
|
+
opacity: 0.5;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.ns_nav_second_item .dropdown-menu {
|
|
166
|
+
margin-top: -20% !important;
|
|
167
|
+
margin-left: 100%;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.ns_navbar_second_level_item a {
|
|
171
|
+
color: #000 !important;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.ns_navbar_first_level_item a {
|
|
176
|
+
color: #fff;
|
|
177
|
+
width: 100%;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
.ns_navbar_second_level_item a:hover {
|
|
183
|
+
background-color: rgba(178, 187, 217, 1);
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.ns_navbar_second_level_item {
|
|
187
|
+
color: #000 !important;
|
|
188
|
+
width: 100%;
|
|
189
|
+
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.ns_navbar_title {
|
|
193
|
+
color: #fff;
|
|
194
|
+
font-size: 16px;
|
|
195
|
+
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.ns_navbar_notification:hover {
|
|
199
|
+
opacity: 0.5;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.ns_navbar_notification_count {
|
|
203
|
+
width: 20px;
|
|
204
|
+
height: 20px;
|
|
205
|
+
background-color: #ff0000;
|
|
206
|
+
color: rgba(255, 255, 255, 1);
|
|
207
|
+
border-radius: 50%;
|
|
208
|
+
cursor: pointer;
|
|
209
|
+
font-size: 10px;
|
|
210
|
+
font-weight: 600;
|
|
211
|
+
position: absolute;
|
|
212
|
+
text-align: center;
|
|
213
|
+
right: -8px;
|
|
214
|
+
top: -10px;
|
|
215
|
+
display: flex;
|
|
216
|
+
justify-content: center;
|
|
217
|
+
align-items: center;
|
|
218
|
+
align-self: center;
|
|
219
|
+
animation-name: scale;
|
|
220
|
+
animation-duration: 1s;
|
|
221
|
+
animation-iteration-count: infinite;
|
|
222
|
+
animation-timing-function: ease-out;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
@keyframes scale {
|
|
226
|
+
from {
|
|
227
|
+
scale: 1;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
to {
|
|
231
|
+
scale: 1.2;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
@media (max-width: 1025px) {
|
|
236
|
+
.ns_navbar_first_level_item:hover {
|
|
237
|
+
background-color: #FFFFFF1A;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.ns_navbar_items_link {
|
|
241
|
+
width: 100%;
|
|
242
|
+
border-bottom: 0.5px solid transparent;
|
|
243
|
+
border-image: linear-gradient(90deg, #ffffff00 0%, rgb(0, 0, 0, 40%), #ffffff00 100%);
|
|
244
|
+
border-image-slice: 1;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.ns_navbar_menu_icon {
|
|
248
|
+
display: block;
|
|
249
|
+
cursor: pointer;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.ns_navbar_elements {
|
|
253
|
+
position: absolute;
|
|
254
|
+
right: 0;
|
|
255
|
+
top: 96px;
|
|
256
|
+
width: 0px;
|
|
257
|
+
height: calc(100vh - 60px);
|
|
258
|
+
transition: all 0.3s ease-in;
|
|
259
|
+
overflow: hidden;
|
|
260
|
+
/* background-color: rgb(0 15 53 / 98%) !important; */
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.ns_navbar_elements.ns_navbar_active {
|
|
264
|
+
width: 100%;
|
|
265
|
+
text-align: center;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.ns_navbar_elements ul {
|
|
269
|
+
display: flex;
|
|
270
|
+
flex-direction: column;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.ns_navbar_elements ul li {
|
|
274
|
+
margin-right: unset;
|
|
275
|
+
margin-top: 22px;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.ns_navbar_elements div {
|
|
279
|
+
flex-direction: column;
|
|
280
|
+
align-content: center;
|
|
281
|
+
background: #141B5CCC;
|
|
282
|
+
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
|
|
283
|
+
backdrop-filter: blur(42.150001525878906px);
|
|
284
|
+
width: 100%;
|
|
285
|
+
transform: translate3d(0px, 0, 0px) !important;
|
|
286
|
+
position: relative !important;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.ns_navbar_second_level_item {
|
|
290
|
+
color: #fff !important;
|
|
291
|
+
}
|
|
292
292
|
}
|
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
.ns_header_screenshot {
|
|
2
|
-
background-color: hsla(91, 100%, 31%, 1);
|
|
3
|
-
width: 100%;
|
|
4
|
-
min-height: 48px;
|
|
5
|
-
border-radius: 8px;
|
|
6
|
-
padding: 14px 16px;
|
|
7
|
-
color: #fff;
|
|
8
|
-
font-size: 16px;
|
|
9
|
-
display: flex;
|
|
10
|
-
justify-content: flex-end;
|
|
11
|
-
flex-wrap: wrap;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.ns_header_screenshot_left {
|
|
15
|
-
display: flex;
|
|
16
|
-
gap: 32px;
|
|
17
|
-
flex-direction: row;
|
|
18
|
-
flex-wrap: wrap;
|
|
19
|
-
justify-content: space-between;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.ns_header_screenshot_item {
|
|
23
|
-
gap: 4px;
|
|
24
|
-
display: flex;
|
|
25
|
-
align-items: center;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
@media only screen and (min-width: 580px) {
|
|
29
|
-
.ns_header_screenshot {
|
|
30
|
-
justify-content: space-between;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.ns_header_screenshot_left {
|
|
34
|
-
justify-content: left
|
|
35
|
-
}
|
|
1
|
+
.ns_header_screenshot {
|
|
2
|
+
background-color: hsla(91, 100%, 31%, 1);
|
|
3
|
+
width: 100%;
|
|
4
|
+
min-height: 48px;
|
|
5
|
+
border-radius: 8px;
|
|
6
|
+
padding: 14px 16px;
|
|
7
|
+
color: #fff;
|
|
8
|
+
font-size: 16px;
|
|
9
|
+
display: flex;
|
|
10
|
+
justify-content: flex-end;
|
|
11
|
+
flex-wrap: wrap;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.ns_header_screenshot_left {
|
|
15
|
+
display: flex;
|
|
16
|
+
gap: 32px;
|
|
17
|
+
flex-direction: row;
|
|
18
|
+
flex-wrap: wrap;
|
|
19
|
+
justify-content: space-between;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.ns_header_screenshot_item {
|
|
23
|
+
gap: 4px;
|
|
24
|
+
display: flex;
|
|
25
|
+
align-items: center;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
@media only screen and (min-width: 580px) {
|
|
29
|
+
.ns_header_screenshot {
|
|
30
|
+
justify-content: space-between;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.ns_header_screenshot_left {
|
|
34
|
+
justify-content: left
|
|
35
|
+
}
|
|
36
36
|
}
|
package/dist/components/NSID.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NSID.js","sourceRoot":"","sources":["../../src/components/NSID.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"NSID.js","sourceRoot":"","sources":["../../src/components/NSID.tsx"],"names":[],"mappings":"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"}
|