sag_components 2.0.0-beta279 → 2.0.0-beta280
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.esm.js +144 -150
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +144 -150
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -10580,24 +10580,23 @@ const QuarterPopupPicker = ({
|
|
|
10580
10580
|
};
|
|
10581
10581
|
|
|
10582
10582
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
10583
|
-
const QuarterPicker =
|
|
10584
|
-
|
|
10585
|
-
|
|
10586
|
-
|
|
10587
|
-
|
|
10588
|
-
|
|
10589
|
-
|
|
10590
|
-
|
|
10591
|
-
|
|
10592
|
-
|
|
10593
|
-
|
|
10594
|
-
|
|
10595
|
-
|
|
10596
|
-
|
|
10597
|
-
|
|
10598
|
-
|
|
10599
|
-
|
|
10600
|
-
} = _ref;
|
|
10583
|
+
const QuarterPicker = ({
|
|
10584
|
+
availableQuarters,
|
|
10585
|
+
// ["Q1-2024"]
|
|
10586
|
+
label,
|
|
10587
|
+
onChange,
|
|
10588
|
+
borderRadius,
|
|
10589
|
+
required,
|
|
10590
|
+
width,
|
|
10591
|
+
height,
|
|
10592
|
+
placeholder,
|
|
10593
|
+
disabled,
|
|
10594
|
+
borderColor,
|
|
10595
|
+
borderColorFocus,
|
|
10596
|
+
textColor,
|
|
10597
|
+
selectedValue,
|
|
10598
|
+
startYear
|
|
10599
|
+
}) => {
|
|
10601
10600
|
const [isFocused, setIsFocused] = useState(false);
|
|
10602
10601
|
const [isOpen, setIsOpen] = useState(false);
|
|
10603
10602
|
const [value, setValue] = useState('');
|
|
@@ -11039,23 +11038,22 @@ const MonthPopupPicker = ({
|
|
|
11039
11038
|
};
|
|
11040
11039
|
|
|
11041
11040
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
11042
|
-
const MonthPicker =
|
|
11043
|
-
|
|
11044
|
-
|
|
11045
|
-
|
|
11046
|
-
|
|
11047
|
-
|
|
11048
|
-
|
|
11049
|
-
|
|
11050
|
-
|
|
11051
|
-
|
|
11052
|
-
|
|
11053
|
-
|
|
11054
|
-
|
|
11055
|
-
|
|
11056
|
-
|
|
11057
|
-
|
|
11058
|
-
} = _ref;
|
|
11041
|
+
const MonthPicker = ({
|
|
11042
|
+
availableMonths,
|
|
11043
|
+
label,
|
|
11044
|
+
onChange,
|
|
11045
|
+
borderRadius,
|
|
11046
|
+
required,
|
|
11047
|
+
width,
|
|
11048
|
+
height,
|
|
11049
|
+
placeholder,
|
|
11050
|
+
disabled,
|
|
11051
|
+
borderColor,
|
|
11052
|
+
borderColorFocus,
|
|
11053
|
+
textColor,
|
|
11054
|
+
selectedValue,
|
|
11055
|
+
startYear
|
|
11056
|
+
}) => {
|
|
11059
11057
|
const [isFocused, setIsFocused] = useState(false);
|
|
11060
11058
|
const [isOpen, setIsOpen] = useState(false);
|
|
11061
11059
|
const [value, setValue] = useState('');
|
|
@@ -12255,16 +12253,13 @@ const Td$1 = styled.td`
|
|
|
12255
12253
|
`;
|
|
12256
12254
|
const Tr = styled.tr`
|
|
12257
12255
|
border-bottom: 1px solid #f3f4f6;
|
|
12258
|
-
${
|
|
12259
|
-
|
|
12260
|
-
|
|
12261
|
-
|
|
12262
|
-
} = _ref;
|
|
12263
|
-
return enableHover && `&:hover {
|
|
12256
|
+
${({
|
|
12257
|
+
enableHover,
|
|
12258
|
+
selectHoverColor
|
|
12259
|
+
}) => enableHover && `&:hover {
|
|
12264
12260
|
background-color: ${selectHoverColor};
|
|
12265
12261
|
cursor: pointer;
|
|
12266
|
-
}
|
|
12267
|
-
}}
|
|
12262
|
+
}`}
|
|
12268
12263
|
`;
|
|
12269
12264
|
const InfoText = styled.div`
|
|
12270
12265
|
font-weight: 400;
|
|
@@ -24166,22 +24161,21 @@ const DeleteIcon = styled.div`
|
|
|
24166
24161
|
position: absolute;
|
|
24167
24162
|
`;
|
|
24168
24163
|
|
|
24169
|
-
const QuickFilterDropdownSingle =
|
|
24170
|
-
|
|
24171
|
-
|
|
24172
|
-
|
|
24173
|
-
|
|
24174
|
-
|
|
24175
|
-
|
|
24176
|
-
|
|
24177
|
-
|
|
24178
|
-
|
|
24179
|
-
|
|
24180
|
-
|
|
24181
|
-
|
|
24182
|
-
|
|
24183
|
-
|
|
24184
|
-
} = _ref;
|
|
24164
|
+
const QuickFilterDropdownSingle = ({
|
|
24165
|
+
label,
|
|
24166
|
+
hoverColor,
|
|
24167
|
+
options,
|
|
24168
|
+
selectedValue,
|
|
24169
|
+
placeHolder,
|
|
24170
|
+
onChange,
|
|
24171
|
+
disabled,
|
|
24172
|
+
width,
|
|
24173
|
+
error,
|
|
24174
|
+
errorMessage,
|
|
24175
|
+
xIconShow,
|
|
24176
|
+
labelColor,
|
|
24177
|
+
showLabelOnTop
|
|
24178
|
+
}) => {
|
|
24185
24179
|
const [isFocused, setIsFocused] = useState(false);
|
|
24186
24180
|
const [showOptions, setShowOptions] = useState(false);
|
|
24187
24181
|
const [inputValue, setInputValue] = useState("");
|
|
@@ -24633,26 +24627,25 @@ const IconContainer$2 = styled.div`
|
|
|
24633
24627
|
cursor: pointer;
|
|
24634
24628
|
`;
|
|
24635
24629
|
|
|
24636
|
-
const QuickFilterDropdownMultiSelection =
|
|
24637
|
-
|
|
24638
|
-
|
|
24639
|
-
|
|
24640
|
-
|
|
24641
|
-
|
|
24642
|
-
|
|
24643
|
-
|
|
24644
|
-
|
|
24645
|
-
|
|
24646
|
-
|
|
24647
|
-
|
|
24648
|
-
|
|
24649
|
-
|
|
24650
|
-
|
|
24651
|
-
|
|
24652
|
-
|
|
24653
|
-
|
|
24654
|
-
|
|
24655
|
-
} = _ref;
|
|
24630
|
+
const QuickFilterDropdownMultiSelection = ({
|
|
24631
|
+
label,
|
|
24632
|
+
labelEmptyValue,
|
|
24633
|
+
options,
|
|
24634
|
+
selectedValue,
|
|
24635
|
+
placeHolder,
|
|
24636
|
+
onChange,
|
|
24637
|
+
required,
|
|
24638
|
+
disabled,
|
|
24639
|
+
width,
|
|
24640
|
+
height,
|
|
24641
|
+
error,
|
|
24642
|
+
errorMessage,
|
|
24643
|
+
labelColor,
|
|
24644
|
+
xIconShow,
|
|
24645
|
+
checkBoxColor,
|
|
24646
|
+
showLabelOnTop,
|
|
24647
|
+
dropdownHeight
|
|
24648
|
+
}) => {
|
|
24656
24649
|
const [isFocused, setIsFocused] = useState(false);
|
|
24657
24650
|
const [showOptions, setShowOptions] = useState(false);
|
|
24658
24651
|
const [inputValue, setInputValue] = useState('');
|
|
@@ -36168,9 +36161,9 @@ const ToggleSlider = styled.span`
|
|
|
36168
36161
|
}
|
|
36169
36162
|
`;
|
|
36170
36163
|
|
|
36171
|
-
/**
|
|
36172
|
-
* ToggleSwitch component for on/off states.
|
|
36173
|
-
* Supports small/large sizes and disabled state.
|
|
36164
|
+
/**
|
|
36165
|
+
* ToggleSwitch component for on/off states.
|
|
36166
|
+
* Supports small/large sizes and disabled state.
|
|
36174
36167
|
*/
|
|
36175
36168
|
function ToggleSwitch(_ref) {
|
|
36176
36169
|
let {
|
|
@@ -37012,104 +37005,104 @@ const LoadingText = styled.span`
|
|
|
37012
37005
|
const rotation = keyframes`
|
|
37013
37006
|
0%, 100% {
|
|
37014
37007
|
box-shadow:
|
|
37015
|
-
0px -
|
|
37016
|
-
|
|
37017
|
-
|
|
37018
|
-
|
|
37019
|
-
0px
|
|
37020
|
-
-
|
|
37021
|
-
-
|
|
37022
|
-
-
|
|
37008
|
+
0px -24.96px 0px 0px #1F7677,
|
|
37009
|
+
17.28px -17.28px 0 0px rgba(31, 118, 119,0.2),
|
|
37010
|
+
24px 0px 0 0px rgba(31, 118, 119,0.2),
|
|
37011
|
+
16.8px 16.8px 0 0px rgba(31, 118, 119,0.2),
|
|
37012
|
+
0px 24px 0 0px rgba(31, 118, 119,0.2),
|
|
37013
|
+
-17.28px 17.28px 0 0px rgba(31, 118, 119,0.2),
|
|
37014
|
+
-24.96px 0px 0 0px rgba(31, 118, 119,0.5),
|
|
37015
|
+
-17.28px -17.28px 0 0px rgba(31, 118, 119,0.7);
|
|
37023
37016
|
}
|
|
37024
37017
|
|
|
37025
37018
|
12.5% {
|
|
37026
37019
|
box-shadow:
|
|
37027
|
-
0px -
|
|
37028
|
-
|
|
37029
|
-
|
|
37030
|
-
|
|
37031
|
-
0px
|
|
37032
|
-
-
|
|
37033
|
-
-
|
|
37034
|
-
-
|
|
37020
|
+
0px -24.96px 0px 0px rgba(31, 118, 119,0.7),
|
|
37021
|
+
17.28px -17.28px 0 0px #1F7677,
|
|
37022
|
+
24px 0px 0 0px rgba(31, 118, 119,0.2),
|
|
37023
|
+
16.8px 16.8px 0 0px rgba(31, 118, 119,0.2),
|
|
37024
|
+
0px 24px 0 0px rgba(31, 118, 119,0.2),
|
|
37025
|
+
-17.28px 17.28px 0 0px rgba(31, 118, 119,0.2),
|
|
37026
|
+
-24.96px 0px 0 0px rgba(31, 118, 119,0.2),
|
|
37027
|
+
-17.28px -17.28px 0 0px rgba(31, 118, 119,0.5);
|
|
37035
37028
|
}
|
|
37036
37029
|
|
|
37037
37030
|
25% {
|
|
37038
37031
|
box-shadow:
|
|
37039
|
-
0px -
|
|
37040
|
-
|
|
37041
|
-
|
|
37042
|
-
|
|
37043
|
-
0px
|
|
37044
|
-
-
|
|
37045
|
-
-
|
|
37046
|
-
-
|
|
37032
|
+
0px -24.96px 0px 0px rgba(31, 118, 119,0.5),
|
|
37033
|
+
17.28px -17.28px 0 0px rgba(31, 118, 119,0.7),
|
|
37034
|
+
24px 0px 0 0px #1F7677,
|
|
37035
|
+
16.8px 16.8px 0 0px rgba(31, 118, 119,0.2),
|
|
37036
|
+
0px 24px 0 0px rgba(31, 118, 119,0.2),
|
|
37037
|
+
-17.28px 17.28px 0 0px rgba(31, 118, 119,0.2),
|
|
37038
|
+
-24.96px 0px 0 0px rgba(31, 118, 119,0.2),
|
|
37039
|
+
-17.28px -17.28px 0 0px rgba(31, 118, 119,0.2);
|
|
37047
37040
|
}
|
|
37048
37041
|
|
|
37049
37042
|
37.5% {
|
|
37050
37043
|
box-shadow:
|
|
37051
|
-
0px -
|
|
37052
|
-
|
|
37053
|
-
|
|
37054
|
-
|
|
37055
|
-
0px
|
|
37056
|
-
-
|
|
37057
|
-
-
|
|
37058
|
-
-
|
|
37044
|
+
0px -24.96px 0px 0px rgba(31, 118, 119,0.2),
|
|
37045
|
+
17.28px -17.28px 0 0px rgba(31, 118, 119,0.5),
|
|
37046
|
+
24px 0px 0 0px rgba(31, 118, 119,0.7),
|
|
37047
|
+
16.8px 16.8px 0 0px #1F7677,
|
|
37048
|
+
0px 24px 0 0px rgba(31, 118, 119,0.2),
|
|
37049
|
+
-17.28px 17.28px 0 0px rgba(31, 118, 119,0.2),
|
|
37050
|
+
-24.96px 0px 0 0px rgba(31, 118, 119,0.2),
|
|
37051
|
+
-17.28px -17.28px 0 0px rgba(31, 118, 119,0.2);
|
|
37059
37052
|
}
|
|
37060
37053
|
|
|
37061
37054
|
50% {
|
|
37062
37055
|
box-shadow:
|
|
37063
|
-
0px -
|
|
37064
|
-
|
|
37065
|
-
|
|
37066
|
-
|
|
37067
|
-
0px
|
|
37068
|
-
-
|
|
37069
|
-
-
|
|
37070
|
-
-
|
|
37056
|
+
0px -24.96px 0px 0px rgba(31, 118, 119,0.2),
|
|
37057
|
+
17.28px -17.28px 0 0px rgba(31, 118, 119,0.2),
|
|
37058
|
+
24px 0px 0 0px rgba(31, 118, 119,0.5),
|
|
37059
|
+
16.8px 16.8px 0 0px rgba(31, 118, 119,0.7),
|
|
37060
|
+
0px 24px 0 0px #1F7677,
|
|
37061
|
+
-17.28px 17.28px 0 0px rgba(31, 118, 119,0.2),
|
|
37062
|
+
-24.96px 0px 0 0px rgba(31, 118, 119,0.2),
|
|
37063
|
+
-17.28px -17.28px 0 0px rgba(31, 118, 119,0.2);
|
|
37071
37064
|
}
|
|
37072
37065
|
|
|
37073
37066
|
62.5% {
|
|
37074
37067
|
box-shadow:
|
|
37075
|
-
0px -
|
|
37076
|
-
|
|
37077
|
-
|
|
37078
|
-
|
|
37079
|
-
0px
|
|
37080
|
-
-
|
|
37081
|
-
-
|
|
37082
|
-
-
|
|
37068
|
+
0px -24.96px 0px 0px rgba(31, 118, 119,0.2),
|
|
37069
|
+
17.28px -17.28px 0 0px rgba(31, 118, 119,0.2),
|
|
37070
|
+
24px 0px 0 0px rgba(31, 118, 119,0.2),
|
|
37071
|
+
16.8px 16.8px 0 0px rgba(31, 118, 119,0.5),
|
|
37072
|
+
0px 24px 0 0px rgba(31, 118, 119,0.7),
|
|
37073
|
+
-17.28px 17.28px 0 0px #1F7677,
|
|
37074
|
+
-24.96px 0px 0 0px rgba(31, 118, 119,0.2),
|
|
37075
|
+
-17.28px -17.28px 0 0px rgba(31, 118, 119,0.2);
|
|
37083
37076
|
}
|
|
37084
37077
|
|
|
37085
37078
|
75% {
|
|
37086
37079
|
box-shadow:
|
|
37087
|
-
0px -
|
|
37088
|
-
|
|
37089
|
-
|
|
37090
|
-
|
|
37091
|
-
0px
|
|
37092
|
-
-
|
|
37093
|
-
-
|
|
37094
|
-
-
|
|
37080
|
+
0px -24.96px 0px 0px rgba(31, 118, 119,0.2),
|
|
37081
|
+
17.28px -17.28px 0 0px rgba(31, 118, 119,0.2),
|
|
37082
|
+
24px 0px 0 0px rgba(31, 118, 119,0.2),
|
|
37083
|
+
16.8px 16.8px 0 0px rgba(31, 118, 119,0.2),
|
|
37084
|
+
0px 24px 0 0px rgba(31, 118, 119,0.5),
|
|
37085
|
+
-17.28px 17.28px 0 0px rgba(31, 118, 119,0.7),
|
|
37086
|
+
-24.96px 0px 0 0px #1F7677,
|
|
37087
|
+
-17.28px -17.28px 0 0px rgba(31, 118, 119,0.2);
|
|
37095
37088
|
}
|
|
37096
37089
|
|
|
37097
37090
|
87.5% {
|
|
37098
37091
|
box-shadow:
|
|
37099
|
-
0px -
|
|
37100
|
-
|
|
37101
|
-
|
|
37102
|
-
|
|
37103
|
-
0px
|
|
37104
|
-
-
|
|
37105
|
-
-
|
|
37106
|
-
-
|
|
37092
|
+
0px -24.96px 0px 0px rgba(31, 118, 119,0.2),
|
|
37093
|
+
17.28px -17.28px 0 0px rgba(31, 118, 119,0.2),
|
|
37094
|
+
24px 0px 0 0px rgba(31, 118, 119,0.2),
|
|
37095
|
+
16.8px 16.8px 0 0px rgba(31, 118, 119,0.2),
|
|
37096
|
+
0px 24px 0 0px rgba(31, 118, 119,0.2),
|
|
37097
|
+
-17.28px 17.28px 0 0px rgba(31, 118, 119,0.5),
|
|
37098
|
+
-24.96px 0px 0 0px rgba(31, 118, 119,0.7),
|
|
37099
|
+
-17.28px -17.28px 0 0px #1F7677;
|
|
37107
37100
|
}
|
|
37108
37101
|
`;
|
|
37109
37102
|
const Loader = styled.span`
|
|
37110
|
-
font-size:
|
|
37111
|
-
width:
|
|
37112
|
-
height:
|
|
37103
|
+
font-size: 30px;
|
|
37104
|
+
width: 12px;
|
|
37105
|
+
height: 12px;
|
|
37113
37106
|
border-radius: 50%;
|
|
37114
37107
|
position: relative;
|
|
37115
37108
|
text-indent: -9999em;
|
|
@@ -37118,7 +37111,7 @@ const Loader = styled.span`
|
|
|
37118
37111
|
`;
|
|
37119
37112
|
const LoaderWrapper = styled.div`
|
|
37120
37113
|
position: absolute;
|
|
37121
|
-
top:
|
|
37114
|
+
top: 50%;
|
|
37122
37115
|
left: 50%;
|
|
37123
37116
|
transform: translate(-50%, -50%);
|
|
37124
37117
|
display: flex;
|
|
@@ -37126,6 +37119,7 @@ const LoaderWrapper = styled.div`
|
|
|
37126
37119
|
justify-content: center;
|
|
37127
37120
|
gap: 20px;
|
|
37128
37121
|
color: #1f7677;
|
|
37122
|
+
background-color: rgba(255, 255, 255, 0.8);
|
|
37129
37123
|
z-index: 10;
|
|
37130
37124
|
width: 100%;
|
|
37131
37125
|
height: 100%;
|