sag_components 2.0.0-beta2 → 2.0.0-beta4

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.d.ts CHANGED
@@ -265,9 +265,20 @@ declare namespace FilterPanel {
265
265
  const availableMonths: PropTypes.Requireable<(string | null | undefined)[]>;
266
266
  const availableYears: PropTypes.Requireable<(string | null | undefined)[]>;
267
267
  const fieldsData: PropTypes.Requireable<(PropTypes.InferProps<{
268
+ disabled: PropTypes.Requireable<boolean>;
269
+ required: PropTypes.Requireable<boolean>;
270
+ inputType: PropTypes.Requireable<string>;
271
+ placeHolder: PropTypes.Requireable<string>;
272
+ xIconShow: PropTypes.Requireable<boolean>;
273
+ label: PropTypes.Requireable<string>;
274
+ labelEmptyValue: PropTypes.Requireable<string>;
268
275
  name: PropTypes.Requireable<string>;
269
276
  value: PropTypes.Requireable<number>;
270
277
  color: PropTypes.Requireable<string>;
278
+ dropdownOptions: PropTypes.Requireable<(PropTypes.InferProps<{
279
+ value: PropTypes.Requireable<string>;
280
+ label: PropTypes.Requireable<string>;
281
+ }> | null | undefined)[]>;
271
282
  }> | null | undefined)[]>;
272
283
  const width: PropTypes.Requireable<string>;
273
284
  const height: PropTypes.Requireable<string>;
@@ -1103,4 +1114,162 @@ declare namespace TotalHorizontalCharts {
1103
1114
  }
1104
1115
  }
1105
1116
 
1106
- export { BannerEventBoxList, BarChartsByWeeks, Button, CollapseHeader, DialogOverlay, EventDetailsCard, EventList, FilterPanel, Heatmap, LinnerDataBox, MarketShareDescription, OneColumnContainer, PieChart, PopupCharts, QuickFilter, ReportTable, TabMenu, TopToggleList, TotalDoughnutChart, TotalHorizontalCharts };
1117
+ declare function IconButton(props: any): react_jsx_runtime.JSX.Element;
1118
+ declare namespace IconButton {
1119
+ namespace propTypes {
1120
+ const fileLink: PropTypes.Requireable<string>;
1121
+ const showProcess: PropTypes.Requireable<boolean>;
1122
+ const buttonText: PropTypes.Requireable<string>;
1123
+ const iconName: PropTypes.Requireable<string>;
1124
+ const contentColor: PropTypes.Requireable<string>;
1125
+ const backgroundColor: PropTypes.Requireable<string>;
1126
+ const borderColor: PropTypes.Requireable<string>;
1127
+ const borderRadius: PropTypes.Requireable<string>;
1128
+ const iconHeight: PropTypes.Requireable<number>;
1129
+ const iconWidth: PropTypes.Requireable<number>;
1130
+ const disabled: PropTypes.Requireable<boolean>;
1131
+ const onClick: PropTypes.Requireable<(...args: any[]) => any>;
1132
+ const onCancelClick: PropTypes.Requireable<(...args: any[]) => any>;
1133
+ }
1134
+ namespace defaultProps {
1135
+ const fileLink_1: string;
1136
+ export { fileLink_1 as fileLink };
1137
+ const showProcess_1: boolean;
1138
+ export { showProcess_1 as showProcess };
1139
+ const buttonText_1: string;
1140
+ export { buttonText_1 as buttonText };
1141
+ const iconName_1: string;
1142
+ export { iconName_1 as iconName };
1143
+ const contentColor_1: string;
1144
+ export { contentColor_1 as contentColor };
1145
+ const backgroundColor_1: string;
1146
+ export { backgroundColor_1 as backgroundColor };
1147
+ const borderColor_1: string;
1148
+ export { borderColor_1 as borderColor };
1149
+ const borderRadius_1: string;
1150
+ export { borderRadius_1 as borderRadius };
1151
+ const iconHeight_1: number;
1152
+ export { iconHeight_1 as iconHeight };
1153
+ const iconWidth_1: number;
1154
+ export { iconWidth_1 as iconWidth };
1155
+ const disabled_1: boolean;
1156
+ export { disabled_1 as disabled };
1157
+ export function onClick_1(): void;
1158
+ export { onClick_1 as onClick };
1159
+ export function onCancelClick_1(): void;
1160
+ export { onCancelClick_1 as onCancelClick };
1161
+ }
1162
+ }
1163
+
1164
+ declare function DoublePanelDataRow(props: any): react_jsx_runtime.JSX.Element;
1165
+ declare namespace DoublePanelDataRow {
1166
+ namespace propTypes {
1167
+ const className: PropTypes.Requireable<string>;
1168
+ const width: PropTypes.Requireable<string>;
1169
+ const height: PropTypes.Requireable<string>;
1170
+ const data: PropTypes.Requireable<(PropTypes.InferProps<{
1171
+ title: PropTypes.Requireable<string>;
1172
+ value: PropTypes.Requireable<number>;
1173
+ sign: PropTypes.Requireable<string>;
1174
+ }> | null | undefined)[]>;
1175
+ const backgroundColor: PropTypes.Requireable<string>;
1176
+ const customDataFormat: PropTypes.Requireable<boolean>;
1177
+ const showPercentChange: PropTypes.Requireable<boolean>;
1178
+ }
1179
+ namespace defaultProps {
1180
+ const className_1: string;
1181
+ export { className_1 as className };
1182
+ const width_1: string;
1183
+ export { width_1 as width };
1184
+ const height_1: string;
1185
+ export { height_1 as height };
1186
+ const data_1: never[];
1187
+ export { data_1 as data };
1188
+ const backgroundColor_1: string;
1189
+ export { backgroundColor_1 as backgroundColor };
1190
+ const customDataFormat_1: boolean;
1191
+ export { customDataFormat_1 as customDataFormat };
1192
+ const showPercentChange_1: boolean;
1193
+ export { showPercentChange_1 as showPercentChange };
1194
+ }
1195
+ }
1196
+
1197
+ declare function BarChart(props: any): react_jsx_runtime.JSX.Element;
1198
+ declare namespace BarChart {
1199
+ namespace propTypes {
1200
+ const title: PropTypes.Requireable<string>;
1201
+ const barChartData: PropTypes.Requireable<(PropTypes.InferProps<{
1202
+ title: PropTypes.Requireable<string>;
1203
+ date: PropTypes.Requireable<string>;
1204
+ value: PropTypes.Requireable<number>;
1205
+ }> | null | undefined)[]>;
1206
+ const width: PropTypes.Requireable<string>;
1207
+ const height: PropTypes.Requireable<string>;
1208
+ const barSize: PropTypes.Requireable<number>;
1209
+ const barFontSizeValue: PropTypes.Requireable<string>;
1210
+ const barChartColor: PropTypes.Requireable<string>;
1211
+ const showDollarSign: PropTypes.Requireable<boolean>;
1212
+ const isDollar: PropTypes.Requireable<boolean>;
1213
+ const showLegend: PropTypes.Requireable<boolean>;
1214
+ const legendData: PropTypes.Requireable<(PropTypes.InferProps<{
1215
+ title: PropTypes.Validator<string>;
1216
+ iconType: PropTypes.Validator<string>;
1217
+ iconColor: PropTypes.Validator<string>;
1218
+ }> | null | undefined)[]>;
1219
+ const showReferenceLine: PropTypes.Requireable<boolean>;
1220
+ const referenceLinePoint: PropTypes.Requireable<number>;
1221
+ const referenceLineColor: PropTypes.Requireable<string>;
1222
+ const referenceLineDashed: PropTypes.Requireable<string>;
1223
+ const showCurrentCampaignStyle: PropTypes.Requireable<boolean>;
1224
+ const currentBarColor: PropTypes.Requireable<string>;
1225
+ const isPercent: PropTypes.Requireable<boolean>;
1226
+ }
1227
+ namespace defaultProps {
1228
+ const title_1: string;
1229
+ export { title_1 as title };
1230
+ const barChartData_1: {
1231
+ title: string;
1232
+ date: string;
1233
+ value: number;
1234
+ }[];
1235
+ export { barChartData_1 as barChartData };
1236
+ const width_1: string;
1237
+ export { width_1 as width };
1238
+ const height_1: string;
1239
+ export { height_1 as height };
1240
+ const barSize_1: number;
1241
+ export { barSize_1 as barSize };
1242
+ const barFontSizeValue_1: string;
1243
+ export { barFontSizeValue_1 as barFontSizeValue };
1244
+ const barChartColor_1: string;
1245
+ export { barChartColor_1 as barChartColor };
1246
+ const showDollarSign_1: boolean;
1247
+ export { showDollarSign_1 as showDollarSign };
1248
+ const isDollar_1: boolean;
1249
+ export { isDollar_1 as isDollar };
1250
+ const showLegend_1: boolean;
1251
+ export { showLegend_1 as showLegend };
1252
+ const legendData_1: {
1253
+ title: string;
1254
+ iconType: string;
1255
+ iconColor: string;
1256
+ }[];
1257
+ export { legendData_1 as legendData };
1258
+ const showReferenceLine_1: boolean;
1259
+ export { showReferenceLine_1 as showReferenceLine };
1260
+ const referenceLinePoint_1: number;
1261
+ export { referenceLinePoint_1 as referenceLinePoint };
1262
+ const referenceLineColor_1: string;
1263
+ export { referenceLineColor_1 as referenceLineColor };
1264
+ const referenceLineDashed_1: string;
1265
+ export { referenceLineDashed_1 as referenceLineDashed };
1266
+ const showCurrentCampaignStyle_1: boolean;
1267
+ export { showCurrentCampaignStyle_1 as showCurrentCampaignStyle };
1268
+ const currentBarColor_1: string;
1269
+ export { currentBarColor_1 as currentBarColor };
1270
+ const isPercent_1: boolean;
1271
+ export { isPercent_1 as isPercent };
1272
+ }
1273
+ }
1274
+
1275
+ export { BannerEventBoxList, BarChart, BarChartsByWeeks, Button, CollapseHeader, DialogOverlay, DoublePanelDataRow, EventDetailsCard, EventList, FilterPanel, Heatmap, IconButton, LinnerDataBox, MarketShareDescription, OneColumnContainer, PieChart, PopupCharts, QuickFilter, ReportTable, TabMenu, TopToggleList, TotalDoughnutChart, TotalHorizontalCharts };