sccoreui 1.1.5 → 1.1.6

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/README.md CHANGED
@@ -1,60 +1,20 @@
1
- # my-react-typescript-package
2
-
3
- [![NPM version][npm-image]][npm-url]
4
- [![Build][github-build]][github-build-url]
5
- ![npm-typescript]
6
- [![License][github-license]][github-license-url]
7
-
8
- This repo is the example of the article ["How to create and publish React Typescript npm package with demo and automated build"](https://medium.com/@igaponov/how-to-create-and-publish-react-typescript-npm-package-with-demo-and-automated-build-80c40ec28aca).
9
-
10
- You can clone it and step by step create your own NPM package and publish it.
11
-
12
- It is simple React counter.
13
-
14
- [**Live Demo**](https://gapon2401.github.io/my-react-typescript-package/)
15
-
16
- ## Installation:
17
-
18
- ```bash
19
- npm install my-react-typescript-package --save-dev
20
- ```
21
-
22
- or
23
-
24
- ```bash
25
- yarn add -D my-react-typescript-package
26
- ```
27
-
28
- ## Usage :
29
-
30
- Add `MyCounter` to your component:
31
-
32
- ```js
33
- import React from 'react'
34
- import ReactDOM from 'react-dom/client'
35
- import { MyCounter } from 'my-react-typescript-package'
36
-
37
- const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement)
38
- root.render(
39
- <React.StrictMode>
40
- <div>
41
- <h2>Default counter</h2>
42
- <MyCounter />
43
- </div>
44
- <hr />
45
- <div>
46
- <h2>Counter with predefined value</h2>
47
- <MyCounter value={5} />
48
- </div>
49
- </React.StrictMode>,
50
- )
51
-
52
- ```
53
-
54
- [npm-url]: https://www.npmjs.com/package/my-react-typescript-package
55
- [npm-image]: https://img.shields.io/npm/v/my-react-typescript-package
56
- [github-license]: https://img.shields.io/github/license/gapon2401/my-react-typescript-package
57
- [github-license-url]: https://github.com/gapon2401/my-react-typescript-package/blob/master/LICENSE
58
- [github-build]: https://github.com/gapon2401/my-react-typescript-package/actions/workflows/publish.yml/badge.svg
59
- [github-build-url]: https://github.com/gapon2401/my-react-typescript-package/actions/workflows/publish.yml
60
- [npm-typescript]: https://img.shields.io/npm/types/my-react-typescript-package
1
+ # Introduction
2
+ TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.
3
+
4
+ # Getting Started
5
+ TODO: Guide users through getting your code up and running on their own system. In this section you can talk about:
6
+ 1. Installation process
7
+ 2. Software dependencies
8
+ 3. Latest releases
9
+ 4. API references
10
+
11
+ # Build and Test
12
+ TODO: Describe and show how to build your code and run the tests.
13
+
14
+ # Contribute
15
+ TODO: Explain how other users and developers can contribute to make your code better.
16
+
17
+ If you want to learn more about creating good readme files then refer the following [guidelines](https://docs.microsoft.com/en-us/azure/devops/repos/git/create-a-readme?view=azure-devops). You can also seek inspiration from the below readme files:
18
+ - [ASP.NET Core](https://github.com/aspnet/Home)
19
+ - [Visual Studio Code](https://github.com/Microsoft/vscode)
20
+ - [Chakra Core](https://github.com/Microsoft/ChakraCore)
package/dist/App.js CHANGED
@@ -1,11 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- const react_1 = tslib_1.__importDefault(require("react"));
3
+ const jsx_runtime_1 = require("react/jsx-runtime");
4
+ // import Home from './pages/home';
5
5
  require("./App.scss");
6
- // import Home from '../pages/home';
7
6
  const App = () => {
8
- return (react_1.default.createElement("div", null,
9
- react_1.default.createElement("div", null)));
7
+ return ((0, jsx_runtime_1.jsx)("div", { children: (0, jsx_runtime_1.jsx)("div", {}) }));
10
8
  };
11
9
  exports.default = App;
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.InfoLogo = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
4
5
  const InfoLogo = () => {
5
- return (React.createElement("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
6
- React.createElement("path", { d: "M6.05992 5.99998C6.21665 5.55442 6.52602 5.17872 6.93322 4.9394C7.34042 4.70009 7.81918 4.61261 8.2847 4.69245C8.75022 4.7723 9.17246 5.01433 9.47664 5.37567C9.78081 5.737 9.94729 6.19433 9.94659 6.66665C9.94659 7.99998 7.94659 8.66665 7.94659 8.66665M7.99992 11.3333H8.00659M14.6666 7.99998C14.6666 11.6819 11.6818 14.6666 7.99992 14.6666C4.31802 14.6666 1.33325 11.6819 1.33325 7.99998C1.33325 4.31808 4.31802 1.33331 7.99992 1.33331C11.6818 1.33331 14.6666 4.31808 14.6666 7.99998Z", stroke: "#98A2B3", "stroke-width": "1.33333", "stroke-linecap": "round", "stroke-linejoin": "round" })));
6
+ return ((0, jsx_runtime_1.jsx)("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: (0, jsx_runtime_1.jsx)("path", { d: "M6.05992 5.99998C6.21665 5.55442 6.52602 5.17872 6.93322 4.9394C7.34042 4.70009 7.81918 4.61261 8.2847 4.69245C8.75022 4.7723 9.17246 5.01433 9.47664 5.37567C9.78081 5.737 9.94729 6.19433 9.94659 6.66665C9.94659 7.99998 7.94659 8.66665 7.94659 8.66665M7.99992 11.3333H8.00659M14.6666 7.99998C14.6666 11.6819 11.6818 14.6666 7.99992 14.6666C4.31802 14.6666 1.33325 11.6819 1.33325 7.99998C1.33325 4.31808 4.31802 1.33331 7.99992 1.33331C11.6818 1.33331 14.6666 4.31808 14.6666 7.99998Z", stroke: "#98A2B3", "stroke-width": "1.33333", "stroke-linecap": "round", "stroke-linejoin": "round" }) }));
7
7
  };
8
8
  exports.InfoLogo = InfoLogo;
@@ -1,12 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.AccordionTab = exports.Accordion = exports.AccordionComponent = void 0;
4
- const tslib_1 = require("tslib");
5
- const react_1 = tslib_1.__importDefault(require("react"));
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
6
5
  const accordion_1 = require("primereact/accordion");
7
6
  Object.defineProperty(exports, "Accordion", { enumerable: true, get: function () { return accordion_1.Accordion; } });
8
7
  Object.defineProperty(exports, "AccordionTab", { enumerable: true, get: function () { return accordion_1.AccordionTab; } });
9
8
  const AccordionComponent = () => {
10
- return (react_1.default.createElement("div", null, "Accordion"));
9
+ return ((0, jsx_runtime_1.jsx)("div", { children: "Accordion" }));
11
10
  };
12
11
  exports.AccordionComponent = AccordionComponent;
@@ -1,11 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.AutoCompleteComponent = void 0;
4
- const tslib_1 = require("tslib");
5
- const react_1 = tslib_1.__importDefault(require("react"));
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
6
5
  const autocomplete_1 = require("primereact/autocomplete");
7
6
  const AutoCompleteComponent = () => {
8
- return (react_1.default.createElement("div", null, "auto-complete"));
7
+ return ((0, jsx_runtime_1.jsx)("div", { children: "auto-complete" }));
9
8
  };
10
9
  exports.AutoCompleteComponent = AutoCompleteComponent;
11
10
  exports.default = autocomplete_1.AutoComplete;
@@ -1,13 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ButtonComponent = void 0;
4
- const tslib_1 = require("tslib");
5
- const react_1 = tslib_1.__importDefault(require("react"));
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
6
5
  const button_1 = require("primereact/button");
7
6
  const ButtonComponent = () => {
8
- return (react_1.default.createElement("div", null,
9
- "ButtonComponent",
10
- react_1.default.createElement(button_1.Button, { label: "Click Me" })));
7
+ return ((0, jsx_runtime_1.jsxs)("div", { children: ["ButtonComponent", (0, jsx_runtime_1.jsx)(button_1.Button, { label: "Click Me" })] }));
11
8
  };
12
9
  exports.ButtonComponent = ButtonComponent;
13
10
  exports.default = button_1.Button;
@@ -1,11 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.CheckboxComponent = void 0;
4
- const tslib_1 = require("tslib");
5
- const react_1 = tslib_1.__importDefault(require("react"));
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
6
5
  const checkbox_1 = require("primereact/checkbox");
7
6
  const CheckboxComponent = () => {
8
- return (react_1.default.createElement("div", null, "checkbox"));
7
+ return (0, jsx_runtime_1.jsx)("div", { children: "checkbox" });
9
8
  };
10
9
  exports.CheckboxComponent = CheckboxComponent;
11
10
  exports.default = checkbox_1.Checkbox;
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.DropdownComponent = void 0;
4
- const tslib_1 = require("tslib");
5
- const react_1 = tslib_1.__importStar(require("react"));
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const react_1 = require("react");
6
6
  const dropdown_1 = require("primereact/dropdown");
7
7
  const DropdownComponent = () => {
8
8
  const [selectedCity, setSelectedCity] = (0, react_1.useState)(null);
@@ -13,8 +13,7 @@ const DropdownComponent = () => {
13
13
  { name: 'Istanbul', code: 'IST' },
14
14
  { name: 'Paris', code: 'PRS' },
15
15
  ];
16
- return (react_1.default.createElement("div", { className: "card flex justify-content-center" },
17
- react_1.default.createElement(dropdown_1.Dropdown, { value: selectedCity, onChange: (e) => setSelectedCity(e.value), options: cities, optionLabel: "name", placeholder: "Select a City", className: "w-full md:w-14rem" })));
16
+ return ((0, jsx_runtime_1.jsx)("div", { className: "card flex justify-content-center", children: (0, jsx_runtime_1.jsx)(dropdown_1.Dropdown, { value: selectedCity, onChange: (e) => setSelectedCity(e.value), options: cities, optionLabel: "name", placeholder: "Select a City", className: "w-full md:w-14rem" }) }));
18
17
  };
19
18
  exports.DropdownComponent = DropdownComponent;
20
19
  exports.default = dropdown_1.Dropdown;
@@ -1,13 +1,12 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.InputComponent = void 0;
4
- const tslib_1 = require("tslib");
5
- const react_1 = tslib_1.__importStar(require("react"));
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const react_1 = require("react");
6
6
  const inputtext_1 = require("primereact/inputtext");
7
7
  const InputComponent = () => {
8
8
  const [value, setValue] = (0, react_1.useState)('');
9
- return (react_1.default.createElement("div", { className: "card flex justify-content-center" },
10
- react_1.default.createElement(inputtext_1.InputText, { value: value, onChange: (e) => setValue(e.target.value) })));
9
+ return ((0, jsx_runtime_1.jsx)("div", { className: "card flex justify-content-center", children: (0, jsx_runtime_1.jsx)(inputtext_1.InputText, { value: value, onChange: (e) => setValue(e.target.value) }) }));
11
10
  };
12
11
  exports.InputComponent = InputComponent;
13
12
  exports.default = inputtext_1.InputText;
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const jsx_runtime_1 = require("react/jsx-runtime");
4
+ const svg_icons_1 = require("./svg-icons");
5
+ const SvgIcon = ({ iconName }) => {
6
+ const iconObj = svg_icons_1.svgIcons.find((icon) => icon.name === iconName);
7
+ if (!iconObj)
8
+ return null; // handle case where icon name is not found
9
+ return (0, jsx_runtime_1.jsx)("span", { dangerouslySetInnerHTML: { __html: iconObj.svg } });
10
+ };
11
+ exports.default = SvgIcon;
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.svgIcons = void 0;
4
+ exports.svgIcons = [
5
+ {
6
+ name: 'user',
7
+ svg: `<svg width="16" height="18" viewBox="0 0 16 18" fill="none" xmlns="http://www.w3.org/2000/svg">
8
+ <path d="M14.6668 16.5C14.6668 15.337 14.6668 14.7555 14.5233 14.2824C14.2001 13.217 13.3664 12.3834 12.3011 12.0602C11.828 11.9167 11.2465 11.9167 10.0835 11.9167H5.91683C4.75386 11.9167 4.17237 11.9167 3.69921 12.0602C2.63388 12.3834 1.8002 13.217 1.47703 14.2824C1.3335 14.7555 1.3335 15.337 1.3335 16.5M11.7502 5.25C11.7502 7.32107 10.0712 9 8.00016 9C5.92909 9 4.25016 7.32107 4.25016 5.25C4.25016 3.17893 5.92909 1.5 8.00016 1.5C10.0712 1.5 11.7502 3.17893 11.7502 5.25Z" stroke="#667085" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
9
+ </svg>
10
+ `,
11
+ },
12
+ {
13
+ name: 'search',
14
+ svg: `<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
15
+ <path d="M16.5 16.5L13.5834 13.5833M15.6667 8.58333C15.6667 12.4954 12.4954 15.6667 8.58333 15.6667C4.67132 15.6667 1.5 12.4954 1.5 8.58333C1.5 4.67132 4.67132 1.5 8.58333 1.5C12.4954 1.5 15.6667 4.67132 15.6667 8.58333Z" stroke="#667085" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
16
+ </svg>
17
+ `,
18
+ },
19
+ {
20
+ name: 'check-selected',
21
+ svg: `<svg width="16" height="11" viewBox="0 0 16 11" fill="none" xmlns="http://www.w3.org/2000/svg">
22
+ <path d="M14.6668 1L5.50016 10.1667L1.3335 6" stroke="#132067" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
23
+ </svg>
24
+ `,
25
+ },
26
+ {
27
+ name: 'close-chip',
28
+ svg: `<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg">
29
+ <path d="M7 1L1 7M1 1L7 7" stroke="#98A2B3" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
30
+ </svg>
31
+ `,
32
+ },
33
+ {
34
+ name: 'down-arrow-dropdown',
35
+ svg: `<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg">
36
+ <path d="M1 1.5L6 6.5L11 1.5" stroke="#667085" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
37
+ </svg>
38
+ `,
39
+ },
40
+ ];
package/dist/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OverlayPanel = exports.Tag = exports.Carousel = exports.ToggleButton = exports.Slider = exports.Card = exports.Dialog = exports.Password = exports.confirmPopup = exports.ConfirmDialog = exports.RadioButton = exports.Badge = exports.Tooltip = exports.Calendar = exports.Image = exports.AvatarGroup = exports.Avatar = exports.classNames = exports.Paginator = exports.MultiSelect = exports.FileUpload = exports.TabMenu = exports.TabPanel = exports.TabView = exports.Sidebar = exports.Column = exports.DataTable = exports.Checkbox = exports.AutoComplete = exports.ColorPicker = exports.AccordionTab = exports.Accordion = exports.InputText = exports.Dropdown = exports.Button = void 0;
4
4
  const tslib_1 = require("tslib");
5
- const react_1 = tslib_1.__importDefault(require("react"));
5
+ const jsx_runtime_1 = require("react/jsx-runtime");
6
6
  const client_1 = tslib_1.__importDefault(require("react-dom/client"));
7
7
  const App_1 = tslib_1.__importDefault(require("./App"));
8
8
  // component exports
@@ -74,4 +74,4 @@ var tag_1 = require("./components/carousel/tag");
74
74
  Object.defineProperty(exports, "Tag", { enumerable: true, get: function () { return tslib_1.__importDefault(tag_1).default; } });
75
75
  var overlay_panel_1 = require("./components/overlays/overlay-panel");
76
76
  Object.defineProperty(exports, "OverlayPanel", { enumerable: true, get: function () { return tslib_1.__importDefault(overlay_panel_1).default; } });
77
- client_1.default.createRoot(document.getElementById('root')).render(react_1.default.createElement(App_1.default, null));
77
+ client_1.default.createRoot(document.getElementById('root')).render((0, jsx_runtime_1.jsx)(App_1.default, {}));
@@ -1,4 +1,3 @@
1
- import React from 'react';
2
1
  import './App.scss';
3
- declare const App: () => React.JSX.Element;
2
+ declare const App: () => import("react/jsx-runtime").JSX.Element;
4
3
  export default App;
@@ -1 +1 @@
1
- export function InfoLogo(): import("react").JSX.Element;
1
+ export function InfoLogo(): import("react/jsx-runtime").JSX.Element;
@@ -1,4 +1,3 @@
1
- import React from 'react';
2
1
  import { Accordion, AccordionTab } from 'primereact/accordion';
3
- export declare const AccordionComponent: () => React.JSX.Element;
2
+ export declare const AccordionComponent: () => import("react/jsx-runtime").JSX.Element;
4
3
  export { Accordion, AccordionTab };
@@ -1,4 +1,3 @@
1
- import React from 'react';
2
1
  import { AutoComplete } from 'primereact/autocomplete';
3
- export declare const AutoCompleteComponent: () => React.JSX.Element;
2
+ export declare const AutoCompleteComponent: () => import("react/jsx-runtime").JSX.Element;
4
3
  export default AutoComplete;
@@ -1,4 +1,3 @@
1
- import React from 'react';
2
1
  import { Button } from 'primereact/button';
3
- export declare const ButtonComponent: () => React.JSX.Element;
2
+ export declare const ButtonComponent: () => import("react/jsx-runtime").JSX.Element;
4
3
  export default Button;
@@ -1,4 +1,3 @@
1
- import React from 'react';
2
1
  import { Checkbox } from 'primereact/checkbox';
3
- export declare const CheckboxComponent: () => React.JSX.Element;
2
+ export declare const CheckboxComponent: () => import("react/jsx-runtime").JSX.Element;
4
3
  export default Checkbox;
@@ -1,4 +1,3 @@
1
- import React from 'react';
2
1
  import { Dropdown } from 'primereact/dropdown';
3
- export declare const DropdownComponent: () => React.JSX.Element;
2
+ export declare const DropdownComponent: () => import("react/jsx-runtime").JSX.Element;
4
3
  export default Dropdown;
@@ -1,4 +1,3 @@
1
- import React from 'react';
2
1
  import { InputText } from 'primereact/inputtext';
3
- export declare const InputComponent: () => React.JSX.Element;
2
+ export declare const InputComponent: () => import("react/jsx-runtime").JSX.Element;
4
3
  export default InputText;
@@ -0,0 +1,4 @@
1
+ declare const SvgIcon: ({ iconName }: {
2
+ iconName: any;
3
+ }) => import("react/jsx-runtime").JSX.Element;
4
+ export default SvgIcon;
@@ -0,0 +1,4 @@
1
+ export declare const svgIcons: {
2
+ name: string;
3
+ svg: string;
4
+ }[];
@@ -11,7 +11,6 @@ export { default as Column } from './components/data-table/data-table';
11
11
  export { default as Sidebar } from './components/side-panel/side-panel';
12
12
  export { TabView, TabPanel } from './components/tabview/tabview';
13
13
  export { default as TabMenu } from './components/tab-menu/tab-menu';
14
- export { default as MenuItem } from './components/tab-menu/menu-item';
15
14
  export { default as FileUpload } from './components/file-upload/file-upload';
16
15
  export { default as MultiSelect } from './components/multi-select/multi-select';
17
16
  export { default as Paginator } from './components/data-table/data-table';
package/package.json CHANGED
@@ -1,58 +1,51 @@
1
- {
2
- "name": "sccoreui",
3
- "version": "1.1.5",
4
- "description": "ui-sccore",
5
- "main": "./dist/index.js",
6
- "module": "./dist/index.js",
7
- "types": "./dist/types/index.d.ts",
8
- "scripts": {
9
- "start": "react-scripts start",
10
- "prettier": "prettier --write \"src/**/*.@(js|jsx|ts|tsx)\"",
11
- "build": "tsc",
12
- "prepare": "npm run build"
13
- },
14
- "files": [
15
- "dist",
16
- "LICENSE",
17
- "README.md"
18
- ],
19
- "keywords": [
20
- "react",
21
- "typescript",
22
- "awesome-project"
23
- ],
24
- "author": "Igor Gaponov (gapon2401)",
25
- "license": "MIT",
26
- "devDependencies": {
27
- "@types/react": "^18.2.8",
28
- "prettier": "^2.8.8",
29
- "sass": "^1.62.1",
30
- "terser-webpack-plugin": "^5.3.9",
31
- "typescript": "^5.1.3",
32
- "webpack": "^5.85.1",
33
- "webpack-cli": "^5.1.3"
34
- },
35
- "dependencies": {
36
- "@types/react-dom": "^18.2.4",
37
- "eslint": "^8.42.0",
38
- "primeflex": "^3.3.1",
39
- "primeicons": "^6.0.1",
40
- "primereact": "^9.5.0",
41
- "react": "^18.2.0",
42
- "react-dom": "^18.2.0",
43
- "react-router-dom": "^6.12.0",
44
- "react-scripts": "^5.0.1"
45
- },
46
- "browserslist": {
47
- "production": [
48
- ">0.2%",
49
- "not dead",
50
- "not op_mini all"
51
- ],
52
- "development": [
53
- "last 1 chrome version",
54
- "last 1 firefox version",
55
- "last 1 safari version"
56
- ]
57
- }
58
- }
1
+ {
2
+ "name": "sccoreui",
3
+ "version": "1.1.6",
4
+ "description": "ui-sccore",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.js",
7
+ "types": "./dist/types/index.d.ts",
8
+ "scripts": {
9
+ "start": "react-scripts start",
10
+ "build": "tsc",
11
+ "prepare": "npm run build"
12
+ },
13
+ "files": [
14
+ "dist",
15
+ "LICENSE",
16
+ "README.md"
17
+ ],
18
+ "keywords": [
19
+ "react",
20
+ "typescript",
21
+ "awesome-project"
22
+ ],
23
+ "author": "UI Framework",
24
+ "devDependencies": {
25
+ "@types/react": "^18.2.8",
26
+ "@types/react-dom": "^18.2.4",
27
+ "sass": "^1.62.1"
28
+ },
29
+ "dependencies": {
30
+ "primeflex": "^3.3.1",
31
+ "primeicons": "^6.0.1",
32
+ "primereact": "^9.5.0",
33
+ "react": "^18.2.0",
34
+ "react-dom": "^18.2.0",
35
+ "react-router-dom": "^6.12.0",
36
+ "react-scripts": "^5.0.1",
37
+ "typescript": "^5.1.3"
38
+ },
39
+ "browserslist": {
40
+ "production": [
41
+ ">0.2%",
42
+ "not dead",
43
+ "not op_mini all"
44
+ ],
45
+ "development": [
46
+ "last 1 chrome version",
47
+ "last 1 firefox version",
48
+ "last 1 safari version"
49
+ ]
50
+ }
51
+ }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2022 Igor Gaponov (gapon2401)
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,2 +0,0 @@
1
- import { MenuItem } from 'primereact/menuitem';
2
- export default MenuItem;