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 +20 -60
- package/dist/App.js +3 -5
- package/dist/assets/svg/svg.js +2 -2
- package/dist/components/accordion/accordion.js +2 -3
- package/dist/components/auto-complete/auto-complete.js +2 -3
- package/dist/components/button/button.js +2 -5
- package/dist/components/checkbox/checkbox.js +2 -3
- package/dist/components/dropdown/dropdown.js +3 -4
- package/dist/components/input/input.js +3 -4
- package/dist/directives/svg-component.js +11 -0
- package/dist/directives/svg-icons.js +40 -0
- package/dist/index.js +2 -2
- package/dist/types/App.d.ts +1 -2
- package/dist/types/assets/svg/svg.d.ts +1 -1
- package/dist/types/components/accordion/accordion.d.ts +1 -2
- package/dist/types/components/auto-complete/auto-complete.d.ts +1 -2
- package/dist/types/components/button/button.d.ts +1 -2
- package/dist/types/components/checkbox/checkbox.d.ts +1 -2
- package/dist/types/components/dropdown/dropdown.d.ts +1 -2
- package/dist/types/components/input/input.d.ts +1 -2
- package/dist/types/directives/svg-component.d.ts +4 -0
- package/dist/types/directives/svg-icons.d.ts +4 -0
- package/dist/types/index.d.ts +0 -1
- package/package.json +51 -58
- package/LICENSE +0 -21
- package/dist/components/tab-menu/menu-item.js +0 -2
- package/dist/types/components/tab-menu/menu-item.d.ts +0 -2
package/README.md
CHANGED
|
@@ -1,60 +1,20 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
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
|
|
4
|
-
|
|
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 (
|
|
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;
|
package/dist/assets/svg/svg.js
CHANGED
|
@@ -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 (
|
|
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
|
|
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 (
|
|
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
|
|
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 (
|
|
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
|
|
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 (
|
|
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
|
|
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 (
|
|
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
|
|
5
|
-
const react_1 =
|
|
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 (
|
|
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
|
|
5
|
-
const react_1 =
|
|
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 (
|
|
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
|
|
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(
|
|
77
|
+
client_1.default.createRoot(document.getElementById('root')).render((0, jsx_runtime_1.jsx)(App_1.default, {}));
|
package/dist/types/App.d.ts
CHANGED
|
@@ -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: () =>
|
|
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: () =>
|
|
2
|
+
export declare const AutoCompleteComponent: () => import("react/jsx-runtime").JSX.Element;
|
|
4
3
|
export default AutoComplete;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -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.
|
|
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
|
-
"
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
"
|
|
49
|
-
|
|
50
|
-
|
|
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.
|