namirasoft-site-react 1.3.277 → 1.3.278

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.
@@ -1,6 +1,6 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Styles from './NSNoData.module.css';
3
3
  export function NSNoData(props) {
4
- return (_jsxs("div", { className: Styles.ns_table_no_data, children: [_jsx("img", { src: 'https://static.namirasoft.com/image/concept/no_data/white.png', alt: 'No Data' }), props.lable ? _jsx("h4", { id: 'lable', children: props.lable }) : _jsx("h4", { id: 'lable', children: "No Data" })] }));
4
+ return (_jsxs("div", { className: Styles.ns_table_no_data, children: [_jsx("img", { src: 'https://static.namirasoft.com/image/concept/no_data/white.svg', alt: 'No Data', width: 96, height: 96 }), props.lable ? _jsx("h4", { id: 'lable', children: props.lable }) : _jsx("h4", { id: 'lable', children: "No Data" })] }));
5
5
  }
6
6
  //# sourceMappingURL=NSNoData.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"NSNoData.js","sourceRoot":"","sources":["../../src/components/NSNoData.tsx"],"names":[],"mappings":";AAAA,OAAO,MAAM,MAAM,uBAAuB,CAAC;AAM3C,MAAM,UAAU,QAAQ,CAAC,KAAqB;IAE7C,OAAO,CACN,eAAK,SAAS,EAAE,MAAM,CAAC,gBAAgB,aACtC,cAAK,GAAG,EAAC,+DAA+D,EAAC,GAAG,EAAC,SAAS,GAAG,EACxF,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,aAAI,EAAE,EAAC,OAAO,YAAE,KAAK,CAAC,KAAK,GAAM,CAAC,CAAC,CAAC,aAAI,EAAE,EAAC,OAAO,wBAAa,IACzE,CACN,CAAC;AACH,CAAC"}
1
+ {"version":3,"file":"NSNoData.js","sourceRoot":"","sources":["../../src/components/NSNoData.tsx"],"names":[],"mappings":";AAAA,OAAO,MAAM,MAAM,uBAAuB,CAAC;AAM3C,MAAM,UAAU,QAAQ,CAAC,KAAqB;IAE7C,OAAO,CACN,eAAK,SAAS,EAAE,MAAM,CAAC,gBAAgB,aACtC,cACC,GAAG,EAAC,+DAA+D,EACnE,GAAG,EAAC,SAAS,EACb,KAAK,EAAE,EAAE,EACT,MAAM,EAAE,EAAE,GAAI,EACd,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,aAAI,EAAE,EAAC,OAAO,YAAE,KAAK,CAAC,KAAK,GAAM,CAAC,CAAC,CAAC,aAAI,EAAE,EAAC,OAAO,wBAAa,IACzE,CACN,CAAC;AACH,CAAC"}
@@ -5,5 +5,5 @@
5
5
  }
6
6
 
7
7
  .ns_table_no_data h4 {
8
- font-size: 32px;
8
+ font-size: 24px;
9
9
  }
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "framework": "npm",
9
9
  "application": "package",
10
10
  "private": false,
11
- "version": "1.3.277",
11
+ "version": "1.3.278",
12
12
  "author": "Amir Abolhasani, Alireza Esmaeeli, Sepideh Mazloumi, Hooman Shashaeh",
13
13
  "license": "MIT",
14
14
  "main": "./dist/main.js",
@@ -5,5 +5,5 @@
5
5
  }
6
6
 
7
7
  .ns_table_no_data h4 {
8
- font-size: 32px;
8
+ font-size: 24px;
9
9
  }
@@ -8,7 +8,11 @@ export function NSNoData(props: INSNoDataProps)
8
8
  {
9
9
  return (
10
10
  <div className={Styles.ns_table_no_data}>
11
- <img src='https://static.namirasoft.com/image/concept/no_data/white.png' alt='No Data' />
11
+ <img
12
+ src='https://static.namirasoft.com/image/concept/no_data/white.svg'
13
+ alt='No Data'
14
+ width={96}
15
+ height={96} />
12
16
  {props.lable ? <h4 id='lable'>{props.lable}</h4> : <h4 id='lable'>No Data</h4>}
13
17
  </div>
14
18
  );