namirasoft-site-react 1.3.476 → 1.3.477

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 { NSDialogProps } from "./NSDialog";
2
2
  export interface NSInfoDialogProps extends NSDialogProps {
3
3
  title?: string;
4
- description?: string;
4
+ description?: string | React.ReactNode;
5
5
  }
6
6
  export declare function NSInfoDialog(props: NSInfoDialogProps): import("react/jsx-runtime").JSX.Element;
@@ -194,7 +194,6 @@
194
194
  }
195
195
 
196
196
  .ns_table th {
197
- word-break: break-all;
198
197
  height: 100%;
199
198
  }
200
199
 
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "framework": "npm",
9
9
  "application": "package",
10
10
  "private": false,
11
- "version": "1.3.476",
11
+ "version": "1.3.477",
12
12
  "author": "Amir Abolhasani, Alireza Esmaeeli, Sepideh Mazloumi, Hooman Shashaeh, Mehrab Bahramian",
13
13
  "license": "MIT",
14
14
  "main": "./dist/main.js",
@@ -33,7 +33,7 @@
33
33
  "link-react": "^3.0.0",
34
34
  "namirasoft-api-link": "^1.4.3",
35
35
  "namirasoft-api-product": "^1.4.3",
36
- "namirasoft-core": "^1.4.6",
36
+ "namirasoft-core": "^1.4.7",
37
37
  "path-browserify": "^1.0.1",
38
38
  "react": "^18.3.1",
39
39
  "react-app-rewired": "^2.2.1",
@@ -42,7 +42,7 @@
42
42
  "react-dom": "^18.3.1",
43
43
  "react-phone-input-2": "^2.15.1",
44
44
  "react-phone-number-input": "^3.4.5",
45
- "react-router-dom": "^6.26.1",
45
+ "react-router-dom": "^6.26.2",
46
46
  "react-scripts": "5.0.1",
47
47
  "styled-components": "^6.1.13",
48
48
  "xlsx": "^0.18.5"
@@ -5,7 +5,7 @@ import { NSTitle } from "./NSTitle";
5
5
  export interface NSInfoDialogProps extends NSDialogProps
6
6
  {
7
7
  title?: string;
8
- description?: string;
8
+ description?: string | React.ReactNode;
9
9
  }
10
10
 
11
11
  export function NSInfoDialog(props: NSInfoDialogProps)
@@ -194,7 +194,6 @@
194
194
  }
195
195
 
196
196
  .ns_table th {
197
- word-break: break-all;
198
197
  height: 100%;
199
198
  }
200
199