sccoreui 2.1.4 → 2.1.5
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/App.js +1 -0
- package/dist/assets/sccoreui.css +4 -3
- package/dist/types/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/App.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
// import Home from './pages/home';
|
|
5
|
+
// import { InputNumber } from 'primereact/inputnumber';
|
|
5
6
|
require("./App.scss");
|
|
6
7
|
const App = () => {
|
|
7
8
|
return ((0, jsx_runtime_1.jsx)("div", { children: (0, jsx_runtime_1.jsx)("div", {}) }));
|
package/dist/assets/sccoreui.css
CHANGED
|
@@ -2164,6 +2164,7 @@ a {
|
|
|
2164
2164
|
box-shadow 0.2s;
|
|
2165
2165
|
border-radius: 8px;
|
|
2166
2166
|
border: none;
|
|
2167
|
+
width: auto;
|
|
2167
2168
|
}
|
|
2168
2169
|
|
|
2169
2170
|
.p-primary-50 {
|
|
@@ -5334,7 +5335,7 @@ a {
|
|
|
5334
5335
|
border: 1px solid #ccc;
|
|
5335
5336
|
}
|
|
5336
5337
|
.p-card .p-card-body {
|
|
5337
|
-
padding: 0px
|
|
5338
|
+
padding: 0px;
|
|
5338
5339
|
}
|
|
5339
5340
|
.p-card .p-card-title {
|
|
5340
5341
|
font-size: 1.5rem;
|
|
@@ -5348,10 +5349,10 @@ a {
|
|
|
5348
5349
|
color: #6c757d;
|
|
5349
5350
|
}
|
|
5350
5351
|
.p-card .p-card-content {
|
|
5351
|
-
padding: 24px;
|
|
5352
|
+
padding: 6px 24px 10px 24px;
|
|
5352
5353
|
}
|
|
5353
5354
|
.p-card .p-card-footer {
|
|
5354
|
-
padding:
|
|
5355
|
+
padding: 6px 24px;
|
|
5355
5356
|
border-top: 1px solid #eaecf0;
|
|
5356
5357
|
}
|
|
5357
5358
|
|
package/dist/types/index.d.ts
CHANGED
|
@@ -38,3 +38,7 @@ export { default as OverlayPanel } from './components/overlays/overlay-panel';
|
|
|
38
38
|
export { default as InputNumber } from './components/input/input-number';
|
|
39
39
|
export { default as Toast } from './components/toast/toast';
|
|
40
40
|
export type { DropdownChangeEvent, CarouselResponsiveOption, ColorPickerChangeEvent, SliderChangeEvent };
|
|
41
|
+
export interface columnTypes {
|
|
42
|
+
field: string;
|
|
43
|
+
header: string;
|
|
44
|
+
}
|