namirasoft-site-react 1.4.402 → 1.4.403
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.js +7 -1
- package/dist/App.js.map +1 -1
- 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 +54 -54
- package/dist/components/NSBoxBaseCombo.module.css +6 -6
- package/dist/components/NSBoxBoolean.module.css +73 -73
- 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 +27 -27
- package/dist/components/NSFilterBoxItems.module.css +15 -15
- package/dist/components/NSFilterItem.module.css +24 -24
- package/dist/components/NSFooter.module.css +134 -134
- package/dist/components/NSHeader.d.ts +7 -1
- package/dist/components/NSHeader.js +29 -6
- package/dist/components/NSHeader.js.map +1 -1
- package/dist/components/NSHeader.module.css +291 -291
- package/dist/components/NSHeaderScreenshot.module.css +35 -35
- 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/NSListProduct.js.map +1 -1
- package/dist/components/NSLoading.module.css +38 -38
- 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/NSProductSearch.d.ts +16 -0
- package/dist/components/NSProductSearch.js +56 -0
- package/dist/components/NSProductSearch.js.map +1 -0
- package/dist/components/NSProductSearch.module.css +69 -0
- 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/pages/NSNotFoundPage.module.css +18 -18
- package/dist/pages/NSUpdating.module.css +35 -35
- package/package.json +82 -82
- package/public/index.html +38 -38
- package/src/App.css +33 -33
- package/src/App.tsx +216 -210
- package/src/Color.tsx +10 -10
- package/src/CopyToClipboard.ts +6 -6
- package/src/NSBoxBuilder.tsx +912 -912
- package/src/ProductCacheService.ts +15 -15
- package/src/Validator.ts +166 -166
- 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 +91 -91
- 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 +86 -86
- package/src/components/NSBarTitle.module.css +9 -9
- package/src/components/NSBarTitle.tsx +23 -23
- package/src/components/NSBox.module.css +54 -54
- package/src/components/NSBox.tsx +19 -19
- package/src/components/NSBoxBaseCombo.module.css +6 -6
- package/src/components/NSBoxBaseCombo.tsx +428 -428
- package/src/components/NSBoxBaseLayout.tsx +88 -88
- package/src/components/NSBoxBaseLayoutRecursive.tsx +54 -54
- package/src/components/NSBoxBoolean.module.css +73 -73
- package/src/components/NSBoxBoolean.tsx +128 -128
- package/src/components/NSBoxBooleans.tsx +178 -178
- 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 +103 -103
- 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 +174 -174
- 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 +108 -108
- 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 +247 -247
- package/src/components/NSBoxSearch.tsx +97 -97
- package/src/components/NSBoxString.tsx +93 -93
- 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 +75 -75
- package/src/components/NSButtonBlue.module.css +4 -4
- package/src/components/NSButtonBlue.tsx +29 -29
- package/src/components/NSButtonGreen.module.css +4 -4
- package/src/components/NSButtonGreen.tsx +29 -29
- package/src/components/NSButtonRed.module.css +4 -4
- package/src/components/NSButtonRed.tsx +29 -29
- 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 +27 -27
- package/src/components/NSDialogInfo.tsx +49 -49
- package/src/components/NSDialogPageSelection.module.css +103 -103
- package/src/components/NSDialogPageSelection.tsx +234 -234
- 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 +69 -69
- 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 +27 -27
- package/src/components/NSFilterBox.tsx +477 -477
- package/src/components/NSFilterBoxItems.module.css +15 -15
- package/src/components/NSFilterBoxItems.tsx +52 -52
- 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 +309 -260
- package/src/components/NSHeaderScreenshot.module.css +35 -35
- package/src/components/NSHeaderScreenshot.tsx +39 -39
- package/src/components/NSID.tsx +158 -158
- package/src/components/NSLabel.module.css +25 -25
- package/src/components/NSLabel.tsx +47 -47
- 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 +134 -134
- 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 -43
- package/src/components/NSLoading.module.css +38 -38
- package/src/components/NSLoading.tsx +37 -37
- package/src/components/NSMenuAction.module.css +88 -88
- package/src/components/NSMenuAction.tsx +106 -106
- 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/NSProductSearch.module.css +69 -0
- package/src/components/NSProductSearch.tsx +156 -0
- package/src/components/NSRange.module.css +66 -66
- package/src/components/NSRange.tsx +83 -83
- package/src/components/NSRepeater.tsx +254 -254
- package/src/components/NSRepeaterNSBoxSchemaVariable.tsx +90 -90
- package/src/components/NSRepeaterNSTag.tsx +82 -82
- 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 +636 -636
- 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 +35 -35
- 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 +225 -225
- 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/IBackgroundProps.ts +5 -5
- package/src/props/IBaseComponentProps.ts +8 -8
- package/src/props/IHeaderIconProps.ts +10 -10
- package/src/props/IHeaderLeftProps.ts +6 -6
- package/src/props/IHeaderRightProps.ts +6 -6
- 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
- package/dist/App.css +0 -34
- package/dist/index.css +0 -6
|
@@ -1,135 +1,135 @@
|
|
|
1
|
-
.ns_footer {
|
|
2
|
-
width: 100%;
|
|
3
|
-
background-color: rgba(20, 27, 92, 1);
|
|
4
|
-
padding: 16px 0 8px 0;
|
|
5
|
-
display: flex;
|
|
6
|
-
justify-content: center;
|
|
7
|
-
margin-top: auto;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.ns_footer>.ns_package_footer {
|
|
11
|
-
padding-right: 1rem !important;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.ns_footer_parent_items {
|
|
15
|
-
display: flex;
|
|
16
|
-
justify-content: space-between;
|
|
17
|
-
gap: 64px;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.ns_footer_parent_items img {
|
|
21
|
-
transition: all 0.1s ease-in-out;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.ns_footer_parent_items img:hover {
|
|
25
|
-
scale: 1.2;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
.ns_footer_project_logo_tablet {
|
|
30
|
-
display: none;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.ns_footer_menu_container {
|
|
34
|
-
display: flex;
|
|
35
|
-
flex-wrap: wrap;
|
|
36
|
-
width: 100%;
|
|
37
|
-
gap: 48px;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.ns_footer_namira_logo_tablet {
|
|
41
|
-
display: none;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.ns_footer_logos_mobile {
|
|
45
|
-
display: flex;
|
|
46
|
-
justify-content: center;
|
|
47
|
-
gap: 24px;
|
|
48
|
-
margin-bottom: 16px;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.ns_footer_menu_container ul {
|
|
52
|
-
list-style: none;
|
|
53
|
-
color: #fff;
|
|
54
|
-
padding: 0;
|
|
55
|
-
font-size: 16px;
|
|
56
|
-
font-weight: 600;
|
|
57
|
-
line-height: normal;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.ns_footer_list_title {
|
|
61
|
-
border-bottom: solid 2px #fff;
|
|
62
|
-
margin-bottom: 8px;
|
|
63
|
-
display: block;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.ns_footer_menu_container li {
|
|
67
|
-
font-size: 12px !important;
|
|
68
|
-
font-weight: 300 !important;
|
|
69
|
-
margin-bottom: 8px;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.ns_footer_menu_container li a {
|
|
73
|
-
text-decoration: none;
|
|
74
|
-
color: #fff;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.ns_footer_copyright {
|
|
78
|
-
color: #fff !important;
|
|
79
|
-
text-align: center;
|
|
80
|
-
width: 100%;
|
|
81
|
-
display: flex;
|
|
82
|
-
flex-wrap: wrap;
|
|
83
|
-
align-items: center;
|
|
84
|
-
justify-content: center;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
.ns_footer_copyright span,
|
|
88
|
-
.ns_footer_copyright a {
|
|
89
|
-
color: #fff !important;
|
|
90
|
-
text-align: center;
|
|
91
|
-
font-size: 12px;
|
|
92
|
-
font-family: inherit;
|
|
93
|
-
font-weight: 300;
|
|
94
|
-
text-decoration: none;
|
|
95
|
-
margin-left: 4px;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.ns_footer_version {
|
|
99
|
-
color: #fff !important;
|
|
100
|
-
font-size: 12px;
|
|
101
|
-
text-align: center;
|
|
102
|
-
width: 100%;
|
|
103
|
-
display: flex;
|
|
104
|
-
flex-wrap: wrap;
|
|
105
|
-
align-items: center;
|
|
106
|
-
justify-content: center;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
@media only screen and (min-width: 768px) {
|
|
110
|
-
.ns_footer_project_logo_tablet {
|
|
111
|
-
display: block;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
.ns_footer_namira_logo_tablet {
|
|
115
|
-
display: flex;
|
|
116
|
-
flex-direction: column;
|
|
117
|
-
justify-content: center;
|
|
118
|
-
height: 100%;
|
|
119
|
-
gap: 16px;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.ns_footer_logos_mobile {
|
|
123
|
-
display: none;
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
/* Is these two exist ? */
|
|
128
|
-
.ns_footer h5 {
|
|
129
|
-
font-size: 16px !important;
|
|
130
|
-
font-weight: 600 !important;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
.footns_footer li {
|
|
134
|
-
color: #fff;
|
|
1
|
+
.ns_footer {
|
|
2
|
+
width: 100%;
|
|
3
|
+
background-color: rgba(20, 27, 92, 1);
|
|
4
|
+
padding: 16px 0 8px 0;
|
|
5
|
+
display: flex;
|
|
6
|
+
justify-content: center;
|
|
7
|
+
margin-top: auto;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.ns_footer>.ns_package_footer {
|
|
11
|
+
padding-right: 1rem !important;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.ns_footer_parent_items {
|
|
15
|
+
display: flex;
|
|
16
|
+
justify-content: space-between;
|
|
17
|
+
gap: 64px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.ns_footer_parent_items img {
|
|
21
|
+
transition: all 0.1s ease-in-out;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.ns_footer_parent_items img:hover {
|
|
25
|
+
scale: 1.2;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
.ns_footer_project_logo_tablet {
|
|
30
|
+
display: none;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.ns_footer_menu_container {
|
|
34
|
+
display: flex;
|
|
35
|
+
flex-wrap: wrap;
|
|
36
|
+
width: 100%;
|
|
37
|
+
gap: 48px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.ns_footer_namira_logo_tablet {
|
|
41
|
+
display: none;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.ns_footer_logos_mobile {
|
|
45
|
+
display: flex;
|
|
46
|
+
justify-content: center;
|
|
47
|
+
gap: 24px;
|
|
48
|
+
margin-bottom: 16px;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.ns_footer_menu_container ul {
|
|
52
|
+
list-style: none;
|
|
53
|
+
color: #fff;
|
|
54
|
+
padding: 0;
|
|
55
|
+
font-size: 16px;
|
|
56
|
+
font-weight: 600;
|
|
57
|
+
line-height: normal;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.ns_footer_list_title {
|
|
61
|
+
border-bottom: solid 2px #fff;
|
|
62
|
+
margin-bottom: 8px;
|
|
63
|
+
display: block;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.ns_footer_menu_container li {
|
|
67
|
+
font-size: 12px !important;
|
|
68
|
+
font-weight: 300 !important;
|
|
69
|
+
margin-bottom: 8px;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.ns_footer_menu_container li a {
|
|
73
|
+
text-decoration: none;
|
|
74
|
+
color: #fff;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.ns_footer_copyright {
|
|
78
|
+
color: #fff !important;
|
|
79
|
+
text-align: center;
|
|
80
|
+
width: 100%;
|
|
81
|
+
display: flex;
|
|
82
|
+
flex-wrap: wrap;
|
|
83
|
+
align-items: center;
|
|
84
|
+
justify-content: center;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.ns_footer_copyright span,
|
|
88
|
+
.ns_footer_copyright a {
|
|
89
|
+
color: #fff !important;
|
|
90
|
+
text-align: center;
|
|
91
|
+
font-size: 12px;
|
|
92
|
+
font-family: inherit;
|
|
93
|
+
font-weight: 300;
|
|
94
|
+
text-decoration: none;
|
|
95
|
+
margin-left: 4px;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.ns_footer_version {
|
|
99
|
+
color: #fff !important;
|
|
100
|
+
font-size: 12px;
|
|
101
|
+
text-align: center;
|
|
102
|
+
width: 100%;
|
|
103
|
+
display: flex;
|
|
104
|
+
flex-wrap: wrap;
|
|
105
|
+
align-items: center;
|
|
106
|
+
justify-content: center;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
@media only screen and (min-width: 768px) {
|
|
110
|
+
.ns_footer_project_logo_tablet {
|
|
111
|
+
display: block;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.ns_footer_namira_logo_tablet {
|
|
115
|
+
display: flex;
|
|
116
|
+
flex-direction: column;
|
|
117
|
+
justify-content: center;
|
|
118
|
+
height: 100%;
|
|
119
|
+
gap: 16px;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.ns_footer_logos_mobile {
|
|
123
|
+
display: none;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
/* Is these two exist ? */
|
|
128
|
+
.ns_footer h5 {
|
|
129
|
+
font-size: 16px !important;
|
|
130
|
+
font-weight: 600 !important;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.footns_footer li {
|
|
134
|
+
color: #fff;
|
|
135
135
|
}
|
|
@@ -4,6 +4,8 @@ import { IBaseComponentProps } from "../props/IBaseComponentProps";
|
|
|
4
4
|
import { IHeaderRightProps } from "../props/IHeaderRightProps";
|
|
5
5
|
import { IHeaderLeftProps } from "../props/IHeaderLeftProps";
|
|
6
6
|
import { NSRouterMakerProps } from "../routing/NSRouterMakerProps";
|
|
7
|
+
import { NSBoxSearch } from "./NSBoxSearch";
|
|
8
|
+
import { NSProductSearch } from "./NSProductSearch";
|
|
7
9
|
export interface NSHeaderProps extends IBaseComponentProps, NSRouterMakerProps {
|
|
8
10
|
nav?: IBaseComponentProps;
|
|
9
11
|
right: IHeaderRightProps;
|
|
@@ -14,10 +16,14 @@ export interface NSHeaderProps extends IBaseComponentProps, NSRouterMakerProps {
|
|
|
14
16
|
export interface NSHeaderState {
|
|
15
17
|
filters: FilterLinkFullRow[];
|
|
16
18
|
selected: FilterLinkFullRow | null;
|
|
17
|
-
|
|
19
|
+
show_navbar: boolean;
|
|
20
|
+
search: string;
|
|
18
21
|
}
|
|
19
22
|
export declare class NSHeader extends React.Component<NSHeaderProps, NSHeaderState> {
|
|
20
23
|
private cache;
|
|
24
|
+
private service;
|
|
25
|
+
NSBoxSearch_Ref: React.RefObject<NSBoxSearch>;
|
|
26
|
+
NSProductSearch_Ref: React.RefObject<NSProductSearch>;
|
|
21
27
|
constructor(props: NSHeaderProps);
|
|
22
28
|
componentDidMount(): void;
|
|
23
29
|
private onMenuItemToggled;
|
|
@@ -9,19 +9,26 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
9
9
|
});
|
|
10
10
|
};
|
|
11
11
|
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
12
|
-
import React from "react";
|
|
12
|
+
import React, { createRef } from "react";
|
|
13
13
|
import Styles from "./NSHeader.module.css";
|
|
14
14
|
import NavDropdown from 'react-bootstrap/NavDropdown';
|
|
15
15
|
import { NamirasoftAPILinkServer } from 'namirasoft-api-link';
|
|
16
|
-
import { IStorageLocal, CacheService } from "namirasoft-core";
|
|
16
|
+
import { IStorageLocal, CacheService, SetTimeouService } from "namirasoft-core";
|
|
17
17
|
import { EnvService } from 'namirasoft-core';
|
|
18
|
+
import { NSBoxSearch } from "./NSBoxSearch";
|
|
19
|
+
import { NSDialog } from "./NSDialog";
|
|
20
|
+
import { NSProductSearch } from "./NSProductSearch";
|
|
18
21
|
export class NSHeader extends React.Component {
|
|
19
22
|
constructor(props) {
|
|
20
23
|
super(props);
|
|
24
|
+
this.service = new SetTimeouService();
|
|
25
|
+
this.NSBoxSearch_Ref = createRef();
|
|
26
|
+
this.NSProductSearch_Ref = createRef();
|
|
21
27
|
this.state = {
|
|
22
28
|
filters: [],
|
|
23
29
|
selected: null,
|
|
24
|
-
|
|
30
|
+
show_navbar: false,
|
|
31
|
+
search: ""
|
|
25
32
|
};
|
|
26
33
|
this.hasChild = this.hasChild.bind(this);
|
|
27
34
|
this.onMenuItemToggled = this.onMenuItemToggled.bind(this);
|
|
@@ -33,6 +40,7 @@ export class NSHeader extends React.Component {
|
|
|
33
40
|
let server = new NamirasoftAPILinkServer(REACT_APP_BASE_URL_API_LINK, props.notifier.onError);
|
|
34
41
|
return server.filter.ListFilterLinks(this.props.left.scope, this.props.left.name, null, null, null, []);
|
|
35
42
|
}));
|
|
43
|
+
this.service = new SetTimeouService();
|
|
36
44
|
}
|
|
37
45
|
componentDidMount() {
|
|
38
46
|
this.cache.get().then(filters => {
|
|
@@ -73,7 +81,7 @@ export class NSHeader extends React.Component {
|
|
|
73
81
|
return this.getFilters().filter(f => f.parent_id === id).length > 0;
|
|
74
82
|
}
|
|
75
83
|
handleShowNavbar() {
|
|
76
|
-
this.setState({
|
|
84
|
+
this.setState({ show_navbar: !this.state.show_navbar });
|
|
77
85
|
}
|
|
78
86
|
render() {
|
|
79
87
|
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
@@ -85,10 +93,25 @@ export class NSHeader extends React.Component {
|
|
|
85
93
|
if (!((_a = nav.style) === null || _a === void 0 ? void 0 : _a.backgroundColor))
|
|
86
94
|
nav.style.backgroundColor = "rgba(20, 27, 92, 1)";
|
|
87
95
|
return (_jsxs("header", { id: this.props.id, className: `${Styles.ns_header} ${(_c = (_b = this.props.classList) === null || _b === void 0 ? void 0 : _b.join(" ")) !== null && _c !== void 0 ? _c : ""}`, style: this.props.style, children: [_jsx("nav", { id: (_d = this.props.nav) === null || _d === void 0 ? void 0 : _d.id, className: `${Styles.ns_navbar} ${(_g = (_f = (_e = this.props.nav) === null || _e === void 0 ? void 0 : _e.classList) === null || _f === void 0 ? void 0 : _f.join(" ")) !== null && _g !== void 0 ? _g : ""}`, style: nav === null || nav === void 0 ? void 0 : nav.style, children: _jsxs("div", { className: `${Styles.ns_navbar_parent_content} container`, children: [_jsx("a", { className: "me-2", href: "/", children: _jsx("img", { src: this.props.left.logo, alt: "Logo", width: 48, height: 48 }) }), this.props.left.title &&
|
|
88
|
-
_jsx("h2", { className: `${Styles.ns_navbar_title} mb-0 flex-shrink-0`, children: this.props.left.title }), _jsxs("div", { className: `${Styles.ns_navbar_content} `, children: [_jsx("div", { className: `${Styles.ns_navbar_elements} ${this.state.
|
|
96
|
+
_jsx("h2", { className: `${Styles.ns_navbar_title} mb-0 flex-shrink-0`, children: this.props.left.title }), _jsxs("div", { className: `${Styles.ns_navbar_content} `, children: [_jsx("div", { className: `${Styles.ns_navbar_elements} ${this.state.show_navbar && Styles.ns_navbar_active}`, children: this.render_menu(0, null) }), _jsx(NSBoxSearch, { ref: this.NSBoxSearch_Ref, required: false, title: "", hideHeader: true, placeholder: "Search", style: {
|
|
97
|
+
flex: 0.8
|
|
98
|
+
}, input: {
|
|
99
|
+
style: { zIndex: 1000 }
|
|
100
|
+
}, onChanged: (e) => {
|
|
101
|
+
this.service.setTimeoutIfNotCalledAgain(() => {
|
|
102
|
+
var _a, _b;
|
|
103
|
+
let search = (_a = e.getValue(false)) !== null && _a !== void 0 ? _a : "";
|
|
104
|
+
this.setState({ search });
|
|
105
|
+
(_b = this.NSProductSearch_Ref.current) === null || _b === void 0 ? void 0 : _b.reload(search);
|
|
106
|
+
}, 700);
|
|
107
|
+
} }), this.state.search.length >= 3 &&
|
|
108
|
+
_jsx(NSDialog, { onClose: () => {
|
|
109
|
+
var _a;
|
|
110
|
+
(_a = this.NSBoxSearch_Ref.current) === null || _a === void 0 ? void 0 : _a.setValue("");
|
|
111
|
+
}, center_dialog: true, children: _jsx(NSProductSearch, { ref: this.NSProductSearch_Ref, search: this.state.search }) }), this.props.right &&
|
|
89
112
|
_jsxs("div", { className: "d-flex gap-3 align-items-center", children: [_jsx("span", { className: Styles.ns_navbar_title, children: (_h = this.props.right) === null || _h === void 0 ? void 0 : _h.title }), this.props.right.icons.map((icon, index) => _jsxs("div", { title: icon.tooltip, className: Styles.ns_header_icon, children: [_jsx("img", { src: icon.src, alt: icon.alt, width: 20, height: 20, onClick: () => icon.onClicked(icon) }), icon.count !== 0 && icon.count &&
|
|
90
113
|
_jsx("div", { className: Styles.ns_navbar_notification_count, onClick: () => icon.onClicked(icon), children: icon.count < 100 ? icon.count : "+99" }), icon.children] }, `NSHeader_div_icon_key${index}`))] }), this.getFilters().length > 0 ?
|
|
91
|
-
_jsx("div", { className: Styles.ns_navbar_menu_icon, onClick: this.handleShowNavbar, children: _jsx("img", { src: this.state.
|
|
114
|
+
_jsx("div", { className: Styles.ns_navbar_menu_icon, onClick: this.handleShowNavbar, children: _jsx("img", { src: this.state.show_navbar ?
|
|
92
115
|
"https://static.namirasoft.com/image/concept/close/white.svg"
|
|
93
116
|
: "https://static.namirasoft.com/image/concept/menu/burger-white.svg", alt: "Menu Icon", width: 24, height: 24 }) })
|
|
94
117
|
: _jsx(_Fragment, {})] })] }) }), this.props.children] }));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NSHeader.js","sourceRoot":"","sources":["../../src/components/NSHeader.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;;;;;;;;;;;AAEb,OAAO,
|
|
1
|
+
{"version":3,"file":"NSHeader.js","sourceRoot":"","sources":["../../src/components/NSHeader.tsx"],"names":[],"mappings":"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"}
|