namirasoft-site-react 1.3.451 → 1.3.452

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,5 +1,5 @@
1
1
  import React from 'react';
2
- import { IBaseComponentProps } from '../main';
2
+ import { IBaseComponentProps } from '../props/IBaseComponentProps';
3
3
  interface NSAccordionProps extends IBaseComponentProps {
4
4
  getHeader: () => React.ReactNode;
5
5
  children: React.ReactNode;
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "framework": "npm",
9
9
  "application": "package",
10
10
  "private": false,
11
- "version": "1.3.451",
11
+ "version": "1.3.452",
12
12
  "author": "Amir Abolhasani, Alireza Esmaeeli, Sepideh Mazloumi, Hooman Shashaeh, Mehrab Bahramian",
13
13
  "license": "MIT",
14
14
  "main": "./dist/main.js",
@@ -1,5 +1,5 @@
1
1
  import React, { useState, useRef, useEffect } from 'react';
2
- import { IBaseComponentProps } from '../main';
2
+ import { IBaseComponentProps } from '../props/IBaseComponentProps';
3
3
  import Styles from "./NSAccordion.module.css"
4
4
 
5
5
  interface NSAccordionProps extends IBaseComponentProps