sccoreui 6.2.99 → 6.3.1
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.scss +15 -7
- package/dist/assets/sccoreui.css +10 -0
- package/dist/components/ag-grid/advancedFeature/column-group.js +3 -1
- package/dist/components/ag-grid/advancedFeature/grid-view-list-view.js +1 -1
- package/dist/components/ag-grid/advancedFeature/new-filter/table-filter.js +1 -1
- package/dist/types/directives/svg-component.d.ts +1 -1
- package/package.json +1 -1
- package/dist/App copy.scss +0 -2862
package/dist/App.scss
CHANGED
|
@@ -833,7 +833,8 @@ div:has(ul.date_filter) .p-datepicker-footer {
|
|
|
833
833
|
|
|
834
834
|
.errorField {
|
|
835
835
|
color: var(--red-500);
|
|
836
|
-
height:
|
|
836
|
+
height: auto;
|
|
837
|
+
line-height: 20px;
|
|
837
838
|
}
|
|
838
839
|
|
|
839
840
|
.full_form_field {
|
|
@@ -2314,12 +2315,6 @@ button[aria-expanded="true"] {
|
|
|
2314
2315
|
display: none !important;
|
|
2315
2316
|
}
|
|
2316
2317
|
|
|
2317
|
-
.ag-row-hover {
|
|
2318
|
-
background-color: var(--primary-25) !important;
|
|
2319
|
-
transform: scale(1.1);
|
|
2320
|
-
transition: transform 0.4s ease-in-out;
|
|
2321
|
-
}
|
|
2322
|
-
|
|
2323
2318
|
.ag-ltr .ag-cell-focus:not(.ag-cell-range-selected):focus-within {
|
|
2324
2319
|
border: 0;
|
|
2325
2320
|
border-color: initial;
|
|
@@ -2594,6 +2589,10 @@ button[aria-expanded="true"] {
|
|
|
2594
2589
|
height: 38px;
|
|
2595
2590
|
}
|
|
2596
2591
|
|
|
2592
|
+
.border-round-6 {
|
|
2593
|
+
border-radius: 6px !important;
|
|
2594
|
+
}
|
|
2595
|
+
|
|
2597
2596
|
// loader styles
|
|
2598
2597
|
.loader-wrapper {
|
|
2599
2598
|
width: 60px;
|
|
@@ -2653,6 +2652,15 @@ button[aria-expanded="true"] {
|
|
|
2653
2652
|
border-radius: 50%;
|
|
2654
2653
|
position: relative;
|
|
2655
2654
|
animation: rotate 1s linear infinite;
|
|
2655
|
+
&:nth-child(2) {
|
|
2656
|
+
width: 90%;
|
|
2657
|
+
}
|
|
2658
|
+
&:nth-child(3) {
|
|
2659
|
+
width: 80%;
|
|
2660
|
+
}
|
|
2661
|
+
&:nth-child(4) {
|
|
2662
|
+
width: 70%;
|
|
2663
|
+
}
|
|
2656
2664
|
}
|
|
2657
2665
|
|
|
2658
2666
|
.loader-main::before {
|
package/dist/assets/sccoreui.css
CHANGED
|
@@ -1074,11 +1074,13 @@ a {
|
|
|
1074
1074
|
height: 20px;
|
|
1075
1075
|
width: 20px;
|
|
1076
1076
|
padding-top: 0px;
|
|
1077
|
+
transition: rotate 0.4s ease-in-out;
|
|
1077
1078
|
}
|
|
1078
1079
|
|
|
1079
1080
|
.p-inputgroup > .p-dropdown .p-dropdown-trigger {
|
|
1080
1081
|
width: 1rem;
|
|
1081
1082
|
padding-top: 0px;
|
|
1083
|
+
transition: rotate 0.4s ease-in-out;
|
|
1082
1084
|
}
|
|
1083
1085
|
.p-dropdown .p-dropdown-clear-icon {
|
|
1084
1086
|
color: #6c757d;
|
|
@@ -8134,6 +8136,7 @@ a {
|
|
|
8134
8136
|
font-size: 14px;
|
|
8135
8137
|
line-height: 20px;
|
|
8136
8138
|
color: var(--gray-800);
|
|
8139
|
+
transition: rotate 0.4s ease-in-out;
|
|
8137
8140
|
}
|
|
8138
8141
|
|
|
8139
8142
|
.p-paginator .p-paginator-prev .pi.pi-angle-left {
|
|
@@ -8374,6 +8377,10 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8374
8377
|
rotate: 180deg;
|
|
8375
8378
|
}
|
|
8376
8379
|
|
|
8380
|
+
.p-dropdown-trigger {
|
|
8381
|
+
transition: rotate 0.4s ease-in-out;
|
|
8382
|
+
}
|
|
8383
|
+
|
|
8377
8384
|
.p-dropdown-item.p-highlight {
|
|
8378
8385
|
display: flex;
|
|
8379
8386
|
align-items: center;
|
|
@@ -8601,6 +8608,7 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8601
8608
|
}
|
|
8602
8609
|
.p-paginator > .p-dropdown > .p-dropdown-trigger {
|
|
8603
8610
|
padding-top: 0px;
|
|
8611
|
+
transition: rotate 0.4s ease-in-out;
|
|
8604
8612
|
}
|
|
8605
8613
|
.p-paginator > .p-dropdown {
|
|
8606
8614
|
display: flex;
|
|
@@ -8641,6 +8649,7 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8641
8649
|
}
|
|
8642
8650
|
.p-dropdown-badge > .p-dropdown-trigger {
|
|
8643
8651
|
padding-top: 2px;
|
|
8652
|
+
transition: rotate 0.4s ease-in-out;
|
|
8644
8653
|
}
|
|
8645
8654
|
|
|
8646
8655
|
/* Input components changes classes for styling the input components */
|
|
@@ -8748,6 +8757,7 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8748
8757
|
|
|
8749
8758
|
.p-dropdown-xl.p-dropdown .p-dropdown-trigger {
|
|
8750
8759
|
padding-top: 0px;
|
|
8760
|
+
transition: rotate 0.4s ease-in-out;
|
|
8751
8761
|
}
|
|
8752
8762
|
|
|
8753
8763
|
.tab-view-bg-dark.p-tabview-nav-container.p-tabview-nav-content {
|
|
@@ -198,7 +198,9 @@ const ColumnGroup = (props) => {
|
|
|
198
198
|
setRenderColumns(columnsFromGrid);
|
|
199
199
|
}
|
|
200
200
|
}, [(_d = (_c = (_b = (_a = gridApi === null || gridApi === void 0 ? void 0 : gridApi.current) === null || _a === void 0 ? void 0 : _a.api) === null || _b === void 0 ? void 0 : _b.columnModel) === null || _c === void 0 ? void 0 : _c.columnDefs) === null || _d === void 0 ? void 0 : _d.length]);
|
|
201
|
-
return (0, utilComponents_1.skeletonLoding)() ? ((0, jsx_runtime_1.jsx)(FeatureSkeleton_1.default, {})) : ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsxs)("div", Object.assign({ className: `${(columnsSelectedForGroup === null || columnsSelectedForGroup === void 0 ? void 0 : columnsSelectedForGroup.length) > 0
|
|
201
|
+
return (0, utilComponents_1.skeletonLoding)() ? ((0, jsx_runtime_1.jsx)(FeatureSkeleton_1.default, {})) : ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsxs)("div", Object.assign({ className: `${(columnsSelectedForGroup === null || columnsSelectedForGroup === void 0 ? void 0 : columnsSelectedForGroup.length) > 0
|
|
202
|
+
? "bg-primary-50 px-3"
|
|
203
|
+
: "bg-white icon-40x40 px-2"} hover:bg-primary-25 br-8 sc_icon_hover h-40 cursor-pointer flex align-items-cente gap-1 zoom_animate ${isDisabled && "disabled"}`, ref: btnRef, onClick: (e) => !isDisabled && showColumnOptions(e), title: "Column Grouping" }, { children: [(0, jsx_runtime_1.jsx)(svg_component_1.default, { icon: "grid-01", size: 18,
|
|
202
204
|
// disabled={isDisabled}
|
|
203
205
|
color: (columnsSelectedForGroup === null || columnsSelectedForGroup === void 0 ? void 0 : columnsSelectedForGroup.length) > 0
|
|
204
206
|
? "text-primary-400"
|
|
@@ -8,7 +8,7 @@ const context_provider_1 = require("../context-provider");
|
|
|
8
8
|
const svg_component_1 = tslib_1.__importDefault(require("../../../directives/svg-component"));
|
|
9
9
|
const GridViewListView = () => {
|
|
10
10
|
const { gridViewFun, gridView } = (0, react_1.useContext)(context_provider_1.FeatureContext);
|
|
11
|
-
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex border-1 border-gray-300 border-round-
|
|
11
|
+
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex border-1 border-gray-300 border-round-6" }, { children: [(0, jsx_runtime_1.jsx)(button_1.Button, { className: `border-round-sm border-noround-right sc_icon_hover ${!gridView
|
|
12
12
|
? "focus:shadow-none"
|
|
13
13
|
: "bg-primary-50 focus:shadow-none border-right-1 border-gray-300"} `, icon: (0, jsx_runtime_1.jsx)(svg_component_1.default, { icon: "grid-01", color: !gridView ? "text-gray-600" : "text-primary-400", size: 18 }), outlined: true, onClick: () => gridViewFun(true), title: "Grid View" }), (0, jsx_runtime_1.jsx)(button_1.Button, { title: "List View", className: `sc_icon_hover border-round-sm border-noround-left border-left-none ${!gridView
|
|
14
14
|
? "bg-primary-50 focus:shadow-none"
|
|
@@ -164,7 +164,7 @@ const TableFilter = () => {
|
|
|
164
164
|
});
|
|
165
165
|
setAllFieldsFilled(isAllFieldsFilled && enbleApply);
|
|
166
166
|
}, [conditionsArray, enbleApply]);
|
|
167
|
-
return (0, utilComponents_1.skeletonLoding)() ? ((0, jsx_runtime_1.jsx)(FeatureSkeleton_1.default, {})) : ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsxs)("div", Object.assign({ className: `cursor-pointer filter-btn-grid font-semibold hover:bg-primary-25 sc_icon_hover flex align-items-center gap-2 border-round-
|
|
167
|
+
return (0, utilComponents_1.skeletonLoding)() ? ((0, jsx_runtime_1.jsx)(FeatureSkeleton_1.default, {})) : ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsxs)("div", Object.assign({ className: `cursor-pointer filter-btn-grid font-semibold hover:bg-primary-25 sc_icon_hover flex align-items-center gap-2 border-round-6 ${isDisabled && "disabled"} ${isOverlayOpened ||
|
|
168
168
|
(globalFilters === null || globalFilters === void 0 ? void 0 : globalFilters.filter((each) => each.isActive).length) >= 1
|
|
169
169
|
? "bg-primary-50"
|
|
170
170
|
: "bg-white"}`, title: "Apply Filters" }, { children: [(0, jsx_runtime_1.jsx)("div", { id: "advancedFilterParent", className: "hidden" }), (0, jsx_runtime_1.jsxs)("span", Object.assign({ onClick: (e) => !isDisabled && onClickFilter(e), className: "flex zoom_animate", id: "advance-filter-id" }, { children: [(0, jsx_runtime_1.jsx)(svg_component_1.default, { icon: "filter-lines", size: 18, color: isOverlayOpened ||
|
|
@@ -5,7 +5,7 @@ interface icon {
|
|
|
5
5
|
size?: number;
|
|
6
6
|
className?: string;
|
|
7
7
|
disabled?: boolean;
|
|
8
|
-
title?:
|
|
8
|
+
title?: string;
|
|
9
9
|
}
|
|
10
10
|
declare const SvgComponent: ({ icon, size, color, className, disabled, title, }: icon) => import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
export default SvgComponent;
|