sccoreui 1.0.3 → 1.0.4
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/dist/index.js +1 -4
- package/dist/types/index.d.ts +0 -1
- package/package.json +1 -1
- package/dist/App copy.scss +0 -61
- package/dist/assets copy/flex.css +0 -20970
- package/dist/assets copy/fonts/Lato-Black.ttf +0 -0
- package/dist/assets copy/fonts/Lato-Bold.ttf +0 -0
- package/dist/assets copy/fonts/Lato-Light.ttf +0 -0
- package/dist/assets copy/fonts/Lato-Regular.ttf +0 -0
- package/dist/assets copy/fonts/Lato-Thin.ttf +0 -0
- package/dist/assets copy/fonts/primeicons.eot +0 -0
- package/dist/assets copy/fonts/primeicons.svg +0 -292
- package/dist/assets copy/fonts/primeicons.ttf +0 -0
- package/dist/assets copy/fonts/primeicons.woff +0 -0
- package/dist/assets copy/fonts/primeicons.woff2 +0 -0
- package/dist/assets copy/sccoreicons.css +0 -1104
- package/dist/assets copy/sccoreui.css +0 -7916
- package/dist/assets copy/svg/add.svg +0 -3
- package/dist/assets copy/svg/back-button.svg +0 -3
- package/dist/assets copy/svg/check.svg +0 -3
- package/dist/assets copy/svg/close.svg +0 -3
- package/dist/assets copy/svg/delete.svg +0 -3
- package/dist/assets copy/svg/done_all.svg +0 -3
- package/dist/assets copy/svg/down_arrow.svg +0 -3
- package/dist/assets copy/svg/edit.svg +0 -3
- package/dist/assets copy/svg/info.svg +0 -3
- package/dist/assets copy/svg/input-info.svg +0 -0
- package/dist/assets copy/svg/remove.svg +0 -3
- package/dist/assets copy/svg/sort-down-arrow.svg +0 -3
- package/dist/assets copy/svg/sort-up-arrow.svg +0 -8
- package/dist/assets copy/theme.css +0 -6291
- package/dist/components/auto-complete/auto-complete.js +0 -11
- package/dist/types/components/auto-complete/auto-complete.d.ts +0 -4
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.InputText = exports.Dropdown = exports.Button = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const react_1 = tslib_1.__importDefault(require("react"));
|
|
6
6
|
const client_1 = tslib_1.__importDefault(require("react-dom/client"));
|
|
@@ -12,7 +12,4 @@ var dropdown_1 = require("./components/dropdown/dropdown");
|
|
|
12
12
|
Object.defineProperty(exports, "Dropdown", { enumerable: true, get: function () { return tslib_1.__importDefault(dropdown_1).default; } });
|
|
13
13
|
var input_1 = require("./components/input/input");
|
|
14
14
|
Object.defineProperty(exports, "InputText", { enumerable: true, get: function () { return tslib_1.__importDefault(input_1).default; } });
|
|
15
|
-
var accordion_1 = require("./components/accordion/accordion");
|
|
16
|
-
Object.defineProperty(exports, "Accordion", { enumerable: true, get: function () { return accordion_1.Accordion; } });
|
|
17
|
-
Object.defineProperty(exports, "AccordionTab", { enumerable: true, get: function () { return accordion_1.AccordionTab; } });
|
|
18
15
|
client_1.default.createRoot(document.getElementById('root')).render(react_1.default.createElement(App_1.default, null));
|
package/dist/types/index.d.ts
CHANGED
|
@@ -2,5 +2,4 @@ import { DropdownChangeEvent } from 'primereact/dropdown';
|
|
|
2
2
|
export { default as Button } from './components/button/button';
|
|
3
3
|
export { default as Dropdown } from './components/dropdown/dropdown';
|
|
4
4
|
export { default as InputText } from './components/input/input';
|
|
5
|
-
export { Accordion, AccordionTab } from './components/accordion/accordion';
|
|
6
5
|
export type { DropdownChangeEvent };
|
package/package.json
CHANGED
package/dist/App copy.scss
DELETED
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
@import url('./assets/theme.css');
|
|
2
|
-
@import url('./assets/sccoreui.css');
|
|
3
|
-
@import url('./assets/sccoreicons.css');
|
|
4
|
-
@import url('./assets/flex.css');
|
|
5
|
-
|
|
6
|
-
:root {
|
|
7
|
-
--fw-600: 600;
|
|
8
|
-
--fw-400: 400;
|
|
9
|
-
--fs-24: 24px;
|
|
10
|
-
--fs-18: 18px;
|
|
11
|
-
--fs-16: 16px;
|
|
12
|
-
--lh:24px;
|
|
13
|
-
--fs-14:14px;
|
|
14
|
-
--grey-bg:#101828;
|
|
15
|
-
--border-none: border-none;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
@font-face {
|
|
19
|
-
font-family: 'Lato-400';
|
|
20
|
-
font-weight: 400;
|
|
21
|
-
src: url('./assets/fonts/Lato-Regular.ttf') format('truetype');
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
@font-face {
|
|
25
|
-
font-family: 'Lato-600';
|
|
26
|
-
font-weight: 600;
|
|
27
|
-
src: url('./assets/fonts/Lato-Regular.ttf') format('truetype');
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
body {
|
|
32
|
-
margin: 0;
|
|
33
|
-
font-family: 'Lato-400', sans-serif;
|
|
34
|
-
-webkit-font-smoothing: antialiased;
|
|
35
|
-
-moz-osx-font-smoothing: grayscale;
|
|
36
|
-
line-height: var(--lh);
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
code {
|
|
40
|
-
font-family: 'Lato-400', monospace;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
h1 {
|
|
44
|
-
font-size: var(--fs-24);
|
|
45
|
-
font-weight: var(--fw-600);
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
h2 {
|
|
49
|
-
font-size: var(--fs-18);
|
|
50
|
-
font-weight: var(--fw-600);
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
h3 {
|
|
54
|
-
font-size: var(--fs-16);
|
|
55
|
-
font-weight: var(--fw-400);
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
// p {
|
|
59
|
-
// font-size: var(--fs-16);
|
|
60
|
-
// font-weight: var(--fw-400);
|
|
61
|
-
// }
|