sccoreui 2.4.3 → 2.4.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/App.js +3 -2
- package/dist/assets/sccoreui.css +4 -4
- package/dist/assets/theme.css +2 -2
- package/dist/directives/svg-component.js +939 -7
- package/dist/directives/svg-icons.js +997 -10
- package/dist/pages/slideout-menus/slideout-menus.js +55 -3
- package/dist/pages/tags/tags.js +2 -2
- package/dist/types/directives/svg-component.d.ts +7 -3
- package/dist/types/directives/svg-icons.d.ts +7 -0
- package/package.json +1 -1
package/dist/App.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
3
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
|
-
|
|
5
|
+
const home_1 = tslib_1.__importDefault(require("./pages/home"));
|
|
5
6
|
require("./App.scss");
|
|
6
7
|
const App = () => {
|
|
7
|
-
return ((0, jsx_runtime_1.jsx)("div", { children: (0, jsx_runtime_1.jsx)("div", {}) }));
|
|
8
|
+
return ((0, jsx_runtime_1.jsx)("div", { children: (0, jsx_runtime_1.jsx)("div", { children: (0, jsx_runtime_1.jsx)(home_1.default, {}) }) }));
|
|
8
9
|
};
|
|
9
10
|
exports.default = App;
|
package/dist/assets/sccoreui.css
CHANGED
|
@@ -5949,10 +5949,10 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--gray-100);
|
|
|
5949
5949
|
}
|
|
5950
5950
|
.p-sidebar .p-sidebar-header .p-sidebar-close,
|
|
5951
5951
|
.p-sidebar .p-sidebar-header .p-sidebar-icon {
|
|
5952
|
-
width:
|
|
5953
|
-
height:
|
|
5952
|
+
width: 2.5rem;
|
|
5953
|
+
height: 2.5rem;
|
|
5954
5954
|
color: #6c757d;
|
|
5955
|
-
border: 1px solid
|
|
5955
|
+
border: 1px solid var(--gray-200);
|
|
5956
5956
|
background: #fff;
|
|
5957
5957
|
border-radius: 50%;
|
|
5958
5958
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
@@ -6050,7 +6050,7 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--gray-100);
|
|
|
6050
6050
|
}
|
|
6051
6051
|
|
|
6052
6052
|
.p-breadcrumb {
|
|
6053
|
-
background:
|
|
6053
|
+
background: transparent;
|
|
6054
6054
|
/* border: 1px solid #dee2e6;
|
|
6055
6055
|
border-radius: 6px; */
|
|
6056
6056
|
padding: 4px;
|
package/dist/assets/theme.css
CHANGED