namirasoft-site-react 1.3.189 → 1.3.191
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/components/NSBoxBoolean.js +1 -1
- package/dist/components/NSBoxDate.js +1 -1
- package/dist/components/NSBoxDateTime.js +1 -1
- package/dist/components/NSBoxDouble.js +1 -1
- package/dist/components/NSBoxDuration.js +1 -1
- package/dist/components/NSBoxEmail.js +2 -2
- package/dist/components/NSBoxIPV4.js +2 -2
- package/dist/components/NSBoxIPV6.js +2 -2
- package/dist/components/NSBoxInteger.js +1 -1
- package/dist/components/NSBoxPassword.js +1 -1
- package/dist/components/NSBoxPhone.js +1 -1
- package/dist/components/NSBoxPrice.js +1 -1
- package/dist/components/NSBoxSearch.js +1 -1
- package/dist/components/NSBoxString.js +1 -1
- package/dist/components/NSBoxText.js +1 -1
- package/dist/components/NSBoxTextArea.js +1 -1
- package/dist/components/NSBoxTime.js +2 -2
- package/dist/components/NSFooter.js +1 -1
- package/dist/components/NSFooter.js.map +1 -1
- package/package.json +1 -1
- package/src/components/NSBoxBoolean.tsx +1 -1
- package/src/components/NSBoxDate.tsx +1 -1
- package/src/components/NSBoxDateTime.tsx +1 -1
- package/src/components/NSBoxDouble.tsx +1 -1
- package/src/components/NSBoxDuration.tsx +1 -1
- package/src/components/NSBoxEmail.tsx +2 -2
- package/src/components/NSBoxIPV4.tsx +2 -2
- package/src/components/NSBoxIPV6.tsx +2 -2
- package/src/components/NSBoxInteger.tsx +1 -1
- package/src/components/NSBoxPassword.tsx +1 -1
- package/src/components/NSBoxPhone.tsx +1 -1
- package/src/components/NSBoxPrice.tsx +1 -1
- package/src/components/NSBoxSearch.tsx +1 -1
- package/src/components/NSBoxString.tsx +1 -1
- package/src/components/NSBoxText.tsx +1 -1
- package/src/components/NSBoxTextArea.tsx +1 -1
- package/src/components/NSBoxTime.tsx +2 -2
- package/src/components/NSFooter.tsx +8 -8
|
@@ -14,7 +14,7 @@ export class NSBoxBoolean extends React.Component {
|
|
|
14
14
|
this.onChanged = this.onChanged.bind(this);
|
|
15
15
|
}
|
|
16
16
|
getError() {
|
|
17
|
-
return (Validator.getError(this.props.title, this.state.value, this.props)
|
|
17
|
+
return (Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
18
18
|
Validator.getErrorString(this.props.title, this.state.value, this.props));
|
|
19
19
|
}
|
|
20
20
|
getValue() {
|
|
@@ -14,7 +14,7 @@ export class NSBoxDate extends React.Component {
|
|
|
14
14
|
this.onChanged = this.onChanged.bind(this);
|
|
15
15
|
}
|
|
16
16
|
getError() {
|
|
17
|
-
return (Validator.getError(this.props.title, this.state.value, this.props)
|
|
17
|
+
return (Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
18
18
|
Validator.getErrorDate(this.props.title, this.state.value));
|
|
19
19
|
}
|
|
20
20
|
getValue() {
|
|
@@ -14,7 +14,7 @@ export class NSBoxDateTime extends React.Component {
|
|
|
14
14
|
this.onChanged = this.onChanged.bind(this);
|
|
15
15
|
}
|
|
16
16
|
getError() {
|
|
17
|
-
return (Validator.getError(this.props.title, this.state.value, this.props)
|
|
17
|
+
return (Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
18
18
|
Validator.getErrorDate(this.props.title, this.state.value));
|
|
19
19
|
}
|
|
20
20
|
getValue() {
|
|
@@ -14,7 +14,7 @@ export class NSBoxDouble extends React.Component {
|
|
|
14
14
|
this.onChanged = this.onChanged.bind(this);
|
|
15
15
|
}
|
|
16
16
|
getError() {
|
|
17
|
-
return (Validator.getError(this.props.title, this.state.value, this.props)
|
|
17
|
+
return (Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
18
18
|
Validator.getErrorNumber(this.props.title, this.state.value, this.props));
|
|
19
19
|
}
|
|
20
20
|
getValue() {
|
|
@@ -15,7 +15,7 @@ export class NSBoxDuration extends React.Component {
|
|
|
15
15
|
this.onChanged = this.onChanged.bind(this);
|
|
16
16
|
}
|
|
17
17
|
getError() {
|
|
18
|
-
return (Validator.getError(this.props.title, this.state.value, this.props)
|
|
18
|
+
return (Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
19
19
|
Validator.getErrorDuration(this.props.title, this.state.value));
|
|
20
20
|
}
|
|
21
21
|
getValue() {
|
|
@@ -16,8 +16,8 @@ export class NSBoxEmail extends React.Component {
|
|
|
16
16
|
this.copyToClipboard = this.copyToClipboard.bind(this);
|
|
17
17
|
}
|
|
18
18
|
getError() {
|
|
19
|
-
return (Validator.getError(this.props.title, this.state.value, this.props)
|
|
20
|
-
Validator.getErrorString(this.props.title, this.state.value, this.props)
|
|
19
|
+
return (Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
20
|
+
Validator.getErrorString(this.props.title, this.state.value, this.props) ||
|
|
21
21
|
Validator.getErrorEmail(this.props.title, this.state.value));
|
|
22
22
|
}
|
|
23
23
|
getValue() {
|
|
@@ -16,8 +16,8 @@ export class NSBoxIPV4 extends React.Component {
|
|
|
16
16
|
this.onChanged = this.onChanged.bind(this);
|
|
17
17
|
}
|
|
18
18
|
getError() {
|
|
19
|
-
return (Validator.getError(this.props.title, this.state.value, this.props)
|
|
20
|
-
Validator.getErrorString(this.props.title, this.state.value, this.props)
|
|
19
|
+
return (Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
20
|
+
Validator.getErrorString(this.props.title, this.state.value, this.props) ||
|
|
21
21
|
Validator.getErrorIP(this.props.title, this.state.value));
|
|
22
22
|
}
|
|
23
23
|
getValue() {
|
|
@@ -16,8 +16,8 @@ export class NSBoxIPV6 extends React.Component {
|
|
|
16
16
|
this.onChanged = this.onChanged.bind(this);
|
|
17
17
|
}
|
|
18
18
|
getError() {
|
|
19
|
-
return (Validator.getError(this.props.title, this.state.value, this.props)
|
|
20
|
-
Validator.getErrorString(this.props.title, this.state.value, this.props)
|
|
19
|
+
return (Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
20
|
+
Validator.getErrorString(this.props.title, this.state.value, this.props) ||
|
|
21
21
|
Validator.getErrorIP(this.props.title, this.state.value));
|
|
22
22
|
}
|
|
23
23
|
getValue() {
|
|
@@ -14,7 +14,7 @@ export class NSBoxInteger extends React.Component {
|
|
|
14
14
|
this.onChanged = this.onChanged.bind(this);
|
|
15
15
|
}
|
|
16
16
|
getError() {
|
|
17
|
-
return (Validator.getError(this.props.title, this.state.value, this.props)
|
|
17
|
+
return (Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
18
18
|
Validator.getErrorNumber(this.props.title, this.state.value, this.props));
|
|
19
19
|
}
|
|
20
20
|
getValue() {
|
|
@@ -15,7 +15,7 @@ export class NSBoxPassword extends React.Component {
|
|
|
15
15
|
this.onChanged = this.onChanged.bind(this);
|
|
16
16
|
}
|
|
17
17
|
getError() {
|
|
18
|
-
return (Validator.getError(this.props.title, this.state.value, this.props)
|
|
18
|
+
return (Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
19
19
|
Validator.getErrorString(this.props.title, this.state.value, this.props));
|
|
20
20
|
}
|
|
21
21
|
getValue() {
|
|
@@ -16,7 +16,7 @@ export class NSBoxPhone extends React.Component {
|
|
|
16
16
|
this.getValue = this.getValue.bind(this);
|
|
17
17
|
}
|
|
18
18
|
getError() {
|
|
19
|
-
return (Validator.getError(this.props.title, this.state.value, this.props)
|
|
19
|
+
return (Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
20
20
|
Validator.getErrorString(this.props.title, this.state.value, this.props));
|
|
21
21
|
}
|
|
22
22
|
getValue() {
|
|
@@ -14,7 +14,7 @@ export class NSBoxPrice extends React.Component {
|
|
|
14
14
|
this.onChanged = this.onChanged.bind(this);
|
|
15
15
|
}
|
|
16
16
|
getError() {
|
|
17
|
-
return (Validator.getError(this.props.title, this.state.value, this.props)
|
|
17
|
+
return (Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
18
18
|
Validator.getErrorNumber(this.props.title, this.state.value, this.props));
|
|
19
19
|
}
|
|
20
20
|
getValue() {
|
|
@@ -28,7 +28,7 @@ export class NSBoxSearch extends React.Component {
|
|
|
28
28
|
this.onChanged = this.onChanged.bind(this);
|
|
29
29
|
}
|
|
30
30
|
getError() {
|
|
31
|
-
return (Validator.getError(this.props.title, this.state.value, this.props)
|
|
31
|
+
return (Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
32
32
|
Validator.getErrorString(this.props.title, this.state.value, this.props));
|
|
33
33
|
}
|
|
34
34
|
getValue() {
|
|
@@ -15,7 +15,7 @@ export class NSBoxString extends React.Component {
|
|
|
15
15
|
this.onChanged = this.onChanged.bind(this);
|
|
16
16
|
}
|
|
17
17
|
getError() {
|
|
18
|
-
return (Validator.getError(this.props.title, this.state.value, this.props)
|
|
18
|
+
return (Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
19
19
|
Validator.getErrorString(this.props.title, this.state.value, this.props));
|
|
20
20
|
}
|
|
21
21
|
getValue() {
|
|
@@ -15,7 +15,7 @@ export class NSBoxText extends React.Component {
|
|
|
15
15
|
this.onChanged = this.onChanged.bind(this);
|
|
16
16
|
}
|
|
17
17
|
getError() {
|
|
18
|
-
return (Validator.getError(this.props.title, this.state.value, this.props)
|
|
18
|
+
return (Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
19
19
|
Validator.getErrorString(this.props.title, this.state.value, this.props));
|
|
20
20
|
}
|
|
21
21
|
getValue() {
|
|
@@ -29,7 +29,7 @@ export class NSBoxTextArea extends React.Component {
|
|
|
29
29
|
this.onChanged = this.onChanged.bind(this);
|
|
30
30
|
}
|
|
31
31
|
getError() {
|
|
32
|
-
return (Validator.getError(this.props.title, this.state.value, this.props)
|
|
32
|
+
return (Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
33
33
|
Validator.getErrorString(this.props.title, this.state.value, this.props));
|
|
34
34
|
}
|
|
35
35
|
getValue() {
|
|
@@ -15,8 +15,8 @@ export class NSBoxTime extends React.Component {
|
|
|
15
15
|
this.onChanged = this.onChanged.bind(this);
|
|
16
16
|
}
|
|
17
17
|
getError() {
|
|
18
|
-
return (Validator.getError(this.props.title, this.state.value, this.props)
|
|
19
|
-
Validator.getErrorString(this.props.title, this.state.value, this.props)
|
|
18
|
+
return (Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
19
|
+
Validator.getErrorString(this.props.title, this.state.value, this.props) ||
|
|
20
20
|
Validator.getErrorTime(this.props.title, this.state.value));
|
|
21
21
|
}
|
|
22
22
|
getValue() {
|
|
@@ -25,7 +25,7 @@ export class NSFooter extends React.Component {
|
|
|
25
25
|
}
|
|
26
26
|
render() {
|
|
27
27
|
var _a;
|
|
28
|
-
return (_jsx("footer", { id: this.props.id, className: `${Styles.ns_footer} ${(_a = this.props.classList) === null || _a === void 0 ? void 0 : _a.join(" ")}`, style: this.props.style, children: _jsxs("div", { className: `container ${Styles.ns_package_footer}`, children: [_jsxs("div", { className: `${Styles.ns_footer_parent_items}`, children: [_jsx("div", { className: `${Styles.ns_footer_project_logo_tablet}`, children: _jsx("a", { href: "/", children: _jsx("img", { src: this.props.logo, alt: 'Logo', width: 80, height: 80 }) }) }), _jsx("div", { className: `${Styles.ns_footer_menu_container}`, children: this.render_menu(0, null) }), _jsxs("div", { className: `${Styles.ns_footer_namira_logo_tablet}`, children: [_jsxs("div", { className: "d-flex flex-row gap-3", children: [_jsx("a", { href: "/", children: _jsx("img", { src: "https://static.namirasoft.com/image/namirasoft/site/logo/circle.png", alt: 'Namira Software Corporation Logo', width: 48, height: 48 }) }), _jsx("a", { href: "/", children: _jsx("img", { src: "https://static.namirasoft.com/image/namirasoft/account/logo/circle.png", alt: 'Namira Software Corporation Logo', width: 48, height: 48 }) })] }), _jsxs("div", { className: "d-flex flex-row gap-1 w-100 justify-content-center align-items-center", children: [_jsx("a", { children: _jsx("img", { src: "https://static.namirasoft.com/image/concept/social/linkedin/white.svg", alt: "", width: 24, height: 24 }) }), _jsx("a", { children: _jsx("img", { src: "https://static.namirasoft.com/image/concept/social/instagram/white.svg", alt: "", width: 24, height: 24 }) }), _jsx("a", { children: _jsx("img", { src: "https://static.namirasoft.com/image/concept/social/email/white.svg", alt: "", width: 24, height: 24 }) }), _jsx("a", { children: _jsx("img", { src: "https://static.namirasoft.com/image/concept/social/location/white.svg", alt: "", width: 24, height: 24 }) })] })] })] }), _jsx("div", { className: `${Styles.ns_footer_logos_mobile}`, children: _jsxs("div", { className: "d-flex flex-column gap-4", children: [_jsxs("div", { className: "d-flex flex-row gap-3", children: [_jsx("a", { href: "/", children: _jsx("img", { src: "https://static.namirasoft.com/image/namirasoft/site/logo/circle.png", alt: 'Namira Software Corporation Logo', width: 48, height: 48 }) }), _jsx("a", { href: "/", children: _jsx("img", { src: "https://static.namirasoft.com/image/namirasoft/account/logo/circle.png", alt: 'Namira Software Corporation Logo', width: 48, height: 48 }) })] }), _jsxs("div", { className: "d-flex flex-row gap-1 w-100 justify-content-center align-items-center", children: [_jsx("a", { children: _jsx("img", { src: "https://static.namirasoft.com/image/concept/social/linkedin/white.svg", alt: "
|
|
28
|
+
return (_jsx("footer", { id: this.props.id, className: `${Styles.ns_footer} ${(_a = this.props.classList) === null || _a === void 0 ? void 0 : _a.join(" ")}`, style: this.props.style, children: _jsxs("div", { className: `container ${Styles.ns_package_footer}`, children: [_jsxs("div", { className: `${Styles.ns_footer_parent_items}`, children: [_jsx("div", { className: `${Styles.ns_footer_project_logo_tablet}`, children: _jsx("a", { href: "/", children: _jsx("img", { src: this.props.logo, alt: 'Logo', width: 80, height: 80 }) }) }), _jsx("div", { className: `${Styles.ns_footer_menu_container}`, children: this.render_menu(0, null) }), _jsxs("div", { className: `${Styles.ns_footer_namira_logo_tablet}`, children: [_jsxs("div", { className: "d-flex flex-row gap-3", children: [_jsx("a", { href: "/", children: _jsx("img", { src: "https://static.namirasoft.com/image/namirasoft/site/logo/circle.png", alt: 'Namira Software Corporation Logo', width: 48, height: 48 }) }), _jsx("a", { href: "/", children: _jsx("img", { src: "https://static.namirasoft.com/image/namirasoft/account/logo/circle.png", alt: 'Namira Software Corporation Logo', width: 48, height: 48 }) })] }), _jsxs("div", { className: "d-flex flex-row gap-1 w-100 justify-content-center align-items-center", children: [_jsx("a", { style: { cursor: "pointer" }, href: "https://ca.linkedin.com/company/namira-software-corporation", children: _jsx("img", { src: "https://static.namirasoft.com/image/concept/social/linkedin/white.svg", alt: "Communicate with Namirasoft Via LinkedIn", width: 24, height: 24 }) }), _jsx("a", { href: "https://instagram.com/namira.software.corporation?igshid=MzRlODBiNWFlZA==", children: _jsx("img", { src: "https://static.namirasoft.com/image/concept/social/instagram/white.svg", alt: "Communicate with Namirasoft Via Instagram", width: 24, height: 24 }) }), _jsx("a", { href: "support@namirasoft.com", children: _jsx("img", { src: "https://static.namirasoft.com/image/concept/social/email/white.svg", alt: "Communicate with Namirasoft Via Email", width: 24, height: 24 }) }), _jsx("a", { href: "https://www.google.com/maps/place//@49.2781041,-123.1354814,14z/data=!4m2!3m1!1s0x0:0x18f70365c7a2f0fa?entry=s&sa=X", children: _jsx("img", { src: "https://static.namirasoft.com/image/concept/social/location/white.svg", alt: "Communicate with Namirasoft in Person", width: 24, height: 24 }) })] })] })] }), _jsx("div", { className: `${Styles.ns_footer_logos_mobile}`, children: _jsxs("div", { className: "d-flex flex-column gap-4", children: [_jsxs("div", { className: "d-flex flex-row gap-3", children: [_jsx("a", { href: "/", children: _jsx("img", { src: "https://static.namirasoft.com/image/namirasoft/site/logo/circle.png", alt: 'Namira Software Corporation Logo', width: 48, height: 48 }) }), _jsx("a", { href: "/", children: _jsx("img", { src: "https://static.namirasoft.com/image/namirasoft/account/logo/circle.png", alt: 'Namira Software Corporation Logo', width: 48, height: 48 }) })] }), _jsxs("div", { className: "d-flex flex-row gap-1 w-100 justify-content-center align-items-center", children: [_jsx("a", { href: "https://ca.linkedin.com/company/namira-software-corporation", children: _jsx("img", { src: "https://static.namirasoft.com/image/concept/social/linkedin/white.svg", alt: "Communicate with Namirasoft Via LinkedIn", width: 24, height: 24 }) }), _jsx("a", { href: "https://instagram.com/namira.software.corporation?igshid=MzRlODBiNWFlZA==", children: _jsx("img", { src: "https://static.namirasoft.com/image/concept/social/instagram/white.svg", alt: "Communicate with Namirasoft Via Instagram", width: 24, height: 24 }) }), _jsx("a", { href: "support@namirasoft.com", children: _jsx("img", { src: "https://static.namirasoft.com/image/concept/social/email/white.svg", alt: "Communicate with Namirasoft Via Email", width: 24, height: 24 }) }), _jsx("a", { href: "https://www.google.com/maps/place//@49.2781041,-123.1354814,14z/data=!4m2!3m1!1s0x0:0x18f70365c7a2f0fa?entry=s&sa=X", children: _jsx("img", { src: "https://static.namirasoft.com/image/concept/social/location/white.svg", alt: "Communicate with Namirasoft in Person", width: 24, height: 24 }) })] })] }) }), _jsxs("div", { className: `${Styles.ns_footer_copyright}`, children: [_jsxs("span", { children: [" \u00A9Copyright 2010 - ", new Date().getFullYear(), " "] }), " ", _jsx("a", { href: "https://namirasoft.com/", target: "_blank", rel: "noopener noreferrer", children: " Namira Software Corporation" }), ". ", " ", _jsx("span", { children: " All rights reserved. " })] })] }) }));
|
|
29
29
|
}
|
|
30
30
|
render_menu(level, parent_id) {
|
|
31
31
|
var _a;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NSFooter.js","sourceRoot":"","sources":["../../src/components/NSFooter.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;;AAEb,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,MAAM,MAAM,uBAAuB,CAAC;AAC3C,OAAO,EAAE,uBAAuB,EAAqB,MAAM,qBAAqB,CAAC;AAgBjF,MAAM,OAAO,QAAS,SAAQ,KAAK,CAAC,SAAwC;IAExE,YAAY,KAAqB;QAE7B,KAAK,CAAC,KAAK,CAAC,CAAC;QACb,IAAI,CAAC,KAAK,GAAG;YACT,OAAO,EAAE,EAAE;YACX,QAAQ,EAAE,IAAI;SACjB,CAAC;QACF,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACzC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC/C,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAC3D,CAAC;IACQ,iBAAiB;QAEtB,IAAI,MAAM,GAAG,IAAI,uBAAuB,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;QACxD,MAAM,CAAC,MAAM,CAAC,eAAe,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE;YAE9F,IAAI,CAAC,QAAQ,CAAC,EAAE,OAAO,EAAE,OAAO,CAAC,IAAI,EAAE,CAAC,CAAC;QAC7C,CAAC,CAAC,CAAC;IACP,CAAC;IACO,QAAQ,CAAC,EAAU;QAEvB,OAAO,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,KAAK,EAAE,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC;IACzE,CAAC;IACQ,MAAM;;QAEX,OAAO,CACH,iBAAQ,EAAE,EAAE,IAAI,CAAC,KAAK,CAAC,EAAE,EACrB,SAAS,EAAE,GAAG,MAAM,CAAC,SAAS,IAAI,MAAA,IAAI,CAAC,KAAK,CAAC,SAAS,0CAAE,IAAI,CAAC,GAAG,CAAC,EAAE,EACnE,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,KAAK,YAEvB,eAAK,SAAS,EAAE,aAAa,MAAM,CAAC,iBAAiB,EAAE,aACnD,eAAK,SAAS,EAAE,GAAG,MAAM,CAAC,sBAAsB,EAAE,aAC9C,cAAK,SAAS,EAAE,GAAG,MAAM,CAAC,6BAA6B,EAAE,YACrD,YAAG,IAAI,EAAC,GAAG,YACP,cAAK,GAAG,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI,EAAE,GAAG,EAAC,MAAM,EAAC,KAAK,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,GAAI,GAC/D,GACF,EACN,cAAK,SAAS,EAAE,GAAG,MAAM,CAAC,wBAAwB,EAAE,YAC/C,IAAI,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,GACxB,EACN,eAAK,SAAS,EAAE,GAAG,MAAM,CAAC,4BAA4B,EAAE,aACpD,eAAK,SAAS,EAAC,uBAAuB,aAClC,YAAG,IAAI,EAAC,GAAG,YAAC,cAAK,GAAG,EAAC,qEAAqE,EAAC,GAAG,EAAC,kCAAkC,EAAC,KAAK,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,GAAI,GAAI,EAC/J,YAAG,IAAI,EAAC,GAAG,YAAC,cAAK,GAAG,EAAC,wEAAwE,EAAC,GAAG,EAAC,kCAAkC,EAAC,KAAK,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,GAAI,GAAI,IAChK,EACN,eAAK,SAAS,EAAC,uEAAuE,aAClF,
|
|
1
|
+
{"version":3,"file":"NSFooter.js","sourceRoot":"","sources":["../../src/components/NSFooter.tsx"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -36,7 +36,7 @@ export class NSBoxBoolean extends React.Component<INSBoxBooleanProps, INSBoxBooe
|
|
|
36
36
|
getError(): string | null
|
|
37
37
|
{
|
|
38
38
|
return (
|
|
39
|
-
Validator.getError(this.props.title, this.state.value, this.props)
|
|
39
|
+
Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
40
40
|
Validator.getErrorString(this.props.title, this.state.value, this.props)
|
|
41
41
|
);
|
|
42
42
|
}
|
|
@@ -34,7 +34,7 @@ export class NSBoxDate extends React.Component<INSBoxDateProps, INSBoxDateState>
|
|
|
34
34
|
getError(): string | null
|
|
35
35
|
{
|
|
36
36
|
return (
|
|
37
|
-
Validator.getError(this.props.title, this.state.value, this.props)
|
|
37
|
+
Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
38
38
|
Validator.getErrorDate(this.props.title, this.state.value)
|
|
39
39
|
);
|
|
40
40
|
}
|
|
@@ -34,7 +34,7 @@ export class NSBoxDateTime extends React.Component<INSBoxDateTimeProps, INSBoxDa
|
|
|
34
34
|
getError(): string | null
|
|
35
35
|
{
|
|
36
36
|
return (
|
|
37
|
-
Validator.getError(this.props.title, this.state.value, this.props)
|
|
37
|
+
Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
38
38
|
Validator.getErrorDate(this.props.title, this.state.value)
|
|
39
39
|
);
|
|
40
40
|
}
|
|
@@ -36,7 +36,7 @@ export class NSBoxDouble extends React.Component<INSBoxDoubleProps, INSBoxDouble
|
|
|
36
36
|
getError(): string | null
|
|
37
37
|
{
|
|
38
38
|
return (
|
|
39
|
-
Validator.getError(this.props.title, this.state.value, this.props)
|
|
39
|
+
Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
40
40
|
Validator.getErrorNumber(this.props.title, this.state.value, this.props)
|
|
41
41
|
);
|
|
42
42
|
}
|
|
@@ -37,7 +37,7 @@ export class NSBoxDuration extends React.Component<INSBoxDurationProps, INSBoxDu
|
|
|
37
37
|
getError(): string | null
|
|
38
38
|
{
|
|
39
39
|
return (
|
|
40
|
-
Validator.getError(this.props.title, this.state.value, this.props)
|
|
40
|
+
Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
41
41
|
Validator.getErrorDuration(this.props.title, this.state.value)
|
|
42
42
|
);
|
|
43
43
|
}
|
|
@@ -37,8 +37,8 @@ export class NSBoxEmail extends React.Component<INSBoxEmailProps, INSBoxEmailSta
|
|
|
37
37
|
getError(): string | null
|
|
38
38
|
{
|
|
39
39
|
return (
|
|
40
|
-
Validator.getError(this.props.title, this.state.value, this.props)
|
|
41
|
-
Validator.getErrorString(this.props.title, this.state.value, this.props)
|
|
40
|
+
Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
41
|
+
Validator.getErrorString(this.props.title, this.state.value, this.props) ||
|
|
42
42
|
Validator.getErrorEmail(this.props.title, this.state.value)
|
|
43
43
|
);
|
|
44
44
|
}
|
|
@@ -38,8 +38,8 @@ export class NSBoxIPV4 extends React.Component<INSBoxIPV4Props, INSBoxIPV4State>
|
|
|
38
38
|
getError(): string | null
|
|
39
39
|
{
|
|
40
40
|
return (
|
|
41
|
-
Validator.getError(this.props.title, this.state.value, this.props)
|
|
42
|
-
Validator.getErrorString(this.props.title, this.state.value, this.props)
|
|
41
|
+
Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
42
|
+
Validator.getErrorString(this.props.title, this.state.value, this.props) ||
|
|
43
43
|
Validator.getErrorIP(this.props.title, this.state.value)
|
|
44
44
|
);
|
|
45
45
|
}
|
|
@@ -38,8 +38,8 @@ export class NSBoxIPV6 extends React.Component<INSBoxIPV6Props, INSBoxIPV6State>
|
|
|
38
38
|
getError(): string | null
|
|
39
39
|
{
|
|
40
40
|
return (
|
|
41
|
-
Validator.getError(this.props.title, this.state.value, this.props)
|
|
42
|
-
Validator.getErrorString(this.props.title, this.state.value, this.props)
|
|
41
|
+
Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
42
|
+
Validator.getErrorString(this.props.title, this.state.value, this.props) ||
|
|
43
43
|
Validator.getErrorIP(this.props.title, this.state.value)
|
|
44
44
|
);
|
|
45
45
|
}
|
|
@@ -36,7 +36,7 @@ export class NSBoxInteger extends React.Component<INSBoxIntegerProps, INSBoxInte
|
|
|
36
36
|
getError(): string | null
|
|
37
37
|
{
|
|
38
38
|
return (
|
|
39
|
-
Validator.getError(this.props.title, this.state.value, this.props)
|
|
39
|
+
Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
40
40
|
Validator.getErrorNumber(this.props.title, this.state.value, this.props)
|
|
41
41
|
);
|
|
42
42
|
}
|
|
@@ -36,7 +36,7 @@ export class NSBoxPassword extends React.Component<INSBoxPasswordProps, INSBoxPa
|
|
|
36
36
|
getError(): string | null
|
|
37
37
|
{
|
|
38
38
|
return (
|
|
39
|
-
Validator.getError(this.props.title, this.state.value, this.props)
|
|
39
|
+
Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
40
40
|
Validator.getErrorString(this.props.title, this.state.value, this.props)
|
|
41
41
|
);
|
|
42
42
|
}
|
|
@@ -37,7 +37,7 @@ export class NSBoxPhone extends React.Component<INSBoxPhoneProps, INSBoxPhoneSta
|
|
|
37
37
|
getError(): string | null
|
|
38
38
|
{
|
|
39
39
|
return (
|
|
40
|
-
Validator.getError(this.props.title, this.state.value, this.props)
|
|
40
|
+
Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
41
41
|
Validator.getErrorString(this.props.title, this.state.value, this.props)
|
|
42
42
|
);
|
|
43
43
|
}
|
|
@@ -36,7 +36,7 @@ export class NSBoxPrice extends React.Component<INSBoxPriceProps, INSBoxPriceSta
|
|
|
36
36
|
getError(): string | null
|
|
37
37
|
{
|
|
38
38
|
return (
|
|
39
|
-
Validator.getError(this.props.title, this.state.value, this.props)
|
|
39
|
+
Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
40
40
|
Validator.getErrorNumber(this.props.title, this.state.value, this.props)
|
|
41
41
|
);
|
|
42
42
|
}
|
|
@@ -35,7 +35,7 @@ export class NSBoxSearch extends React.Component<INSBoxSearchProps, INSBoxSearch
|
|
|
35
35
|
getError(): string | null
|
|
36
36
|
{
|
|
37
37
|
return (
|
|
38
|
-
Validator.getError(this.props.title, this.state.value, this.props)
|
|
38
|
+
Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
39
39
|
Validator.getErrorString(this.props.title, this.state.value, this.props)
|
|
40
40
|
);
|
|
41
41
|
}
|
|
@@ -36,7 +36,7 @@ export class NSBoxString extends React.Component<INSBoxStringProps, INSBoxString
|
|
|
36
36
|
getError(): string | null
|
|
37
37
|
{
|
|
38
38
|
return (
|
|
39
|
-
Validator.getError(this.props.title, this.state.value, this.props)
|
|
39
|
+
Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
40
40
|
Validator.getErrorString(this.props.title, this.state.value, this.props)
|
|
41
41
|
);
|
|
42
42
|
}
|
|
@@ -36,7 +36,7 @@ export class NSBoxText extends React.Component<INSBoxTextProps, INSBoxTextState>
|
|
|
36
36
|
getError(): string | null
|
|
37
37
|
{
|
|
38
38
|
return (
|
|
39
|
-
Validator.getError(this.props.title, this.state.value, this.props)
|
|
39
|
+
Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
40
40
|
Validator.getErrorString(this.props.title, this.state.value, this.props)
|
|
41
41
|
);
|
|
42
42
|
}
|
|
@@ -37,7 +37,7 @@ export class NSBoxTextArea extends React.Component<INSBoxTextAreaProps, INSBoxTe
|
|
|
37
37
|
getError(): string | null
|
|
38
38
|
{
|
|
39
39
|
return (
|
|
40
|
-
Validator.getError(this.props.title, this.state.value, this.props)
|
|
40
|
+
Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
41
41
|
Validator.getErrorString(this.props.title, this.state.value, this.props)
|
|
42
42
|
);
|
|
43
43
|
}
|
|
@@ -36,8 +36,8 @@ export class NSBoxTime extends React.Component<INSBoxTimeProps, INSBoxTimeState>
|
|
|
36
36
|
getError(): string | null
|
|
37
37
|
{
|
|
38
38
|
return (
|
|
39
|
-
Validator.getError(this.props.title, this.state.value, this.props)
|
|
40
|
-
Validator.getErrorString(this.props.title, this.state.value, this.props)
|
|
39
|
+
Validator.getError(this.props.title, this.state.value, this.props) ||
|
|
40
|
+
Validator.getErrorString(this.props.title, this.state.value, this.props) ||
|
|
41
41
|
Validator.getErrorTime(this.props.title, this.state.value)
|
|
42
42
|
);
|
|
43
43
|
}
|
|
@@ -66,10 +66,10 @@ export class NSFooter extends React.Component<INSFooterProps, NSFooterState>
|
|
|
66
66
|
<a href="/"><img src="https://static.namirasoft.com/image/namirasoft/account/logo/circle.png" alt='Namira Software Corporation Logo' width={48} height={48} /></a>
|
|
67
67
|
</div>
|
|
68
68
|
<div className="d-flex flex-row gap-1 w-100 justify-content-center align-items-center">
|
|
69
|
-
<a><img src="https://static.namirasoft.com/image/concept/social/linkedin/white.svg" alt="" width={24} height={24} /></a>
|
|
70
|
-
<a><img src="https://static.namirasoft.com/image/concept/social/instagram/white.svg" alt="" width={24} height={24} /></a>
|
|
71
|
-
<a><img src="https://static.namirasoft.com/image/concept/social/email/white.svg" alt="" width={24} height={24} /></a>
|
|
72
|
-
<a><img src="https://static.namirasoft.com/image/concept/social/location/white.svg" alt="" width={24} height={24} /></a>
|
|
69
|
+
<a style={{ cursor: "pointer" }} href="https://ca.linkedin.com/company/namira-software-corporation"><img src="https://static.namirasoft.com/image/concept/social/linkedin/white.svg" alt="Communicate with Namirasoft Via LinkedIn" width={24} height={24} /></a>
|
|
70
|
+
<a href="https://instagram.com/namira.software.corporation?igshid=MzRlODBiNWFlZA=="><img src="https://static.namirasoft.com/image/concept/social/instagram/white.svg" alt="Communicate with Namirasoft Via Instagram" width={24} height={24} /></a>
|
|
71
|
+
<a href="support@namirasoft.com"><img src="https://static.namirasoft.com/image/concept/social/email/white.svg" alt="Communicate with Namirasoft Via Email" width={24} height={24} /></a>
|
|
72
|
+
<a href="https://www.google.com/maps/place//@49.2781041,-123.1354814,14z/data=!4m2!3m1!1s0x0:0x18f70365c7a2f0fa?entry=s&sa=X"><img src="https://static.namirasoft.com/image/concept/social/location/white.svg" alt="Communicate with Namirasoft in Person" width={24} height={24} /></a>
|
|
73
73
|
</div>
|
|
74
74
|
</div>
|
|
75
75
|
</div>
|
|
@@ -80,10 +80,10 @@ export class NSFooter extends React.Component<INSFooterProps, NSFooterState>
|
|
|
80
80
|
<a href="/"><img src="https://static.namirasoft.com/image/namirasoft/account/logo/circle.png" alt='Namira Software Corporation Logo' width={48} height={48} /></a>
|
|
81
81
|
</div>
|
|
82
82
|
<div className="d-flex flex-row gap-1 w-100 justify-content-center align-items-center">
|
|
83
|
-
<a><img src="https://static.namirasoft.com/image/concept/social/linkedin/white.svg" alt="
|
|
84
|
-
<a><img src="https://static.namirasoft.com/image/concept/social/instagram/white.svg" alt="
|
|
85
|
-
<a><img src="https://static.namirasoft.com/image/concept/social/email/white.svg" alt="
|
|
86
|
-
<a><img src="https://static.namirasoft.com/image/concept/social/location/white.svg" alt="
|
|
83
|
+
<a href="https://ca.linkedin.com/company/namira-software-corporation"><img src="https://static.namirasoft.com/image/concept/social/linkedin/white.svg" alt="Communicate with Namirasoft Via LinkedIn" width={24} height={24} /></a>
|
|
84
|
+
<a href="https://instagram.com/namira.software.corporation?igshid=MzRlODBiNWFlZA=="><img src="https://static.namirasoft.com/image/concept/social/instagram/white.svg" alt="Communicate with Namirasoft Via Instagram" width={24} height={24} /></a>
|
|
85
|
+
<a href="support@namirasoft.com"><img src="https://static.namirasoft.com/image/concept/social/email/white.svg" alt="Communicate with Namirasoft Via Email" width={24} height={24} /></a>
|
|
86
|
+
<a href="https://www.google.com/maps/place//@49.2781041,-123.1354814,14z/data=!4m2!3m1!1s0x0:0x18f70365c7a2f0fa?entry=s&sa=X"><img src="https://static.namirasoft.com/image/concept/social/location/white.svg" alt="Communicate with Namirasoft in Person" width={24} height={24} /></a>
|
|
87
87
|
</div>
|
|
88
88
|
</div>
|
|
89
89
|
</div>
|