sag_components 2.0.0-beta106 → 2.0.0-beta108
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 +1 -7
- package/dist/index.esm.js +308 -1219
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +308 -1219
- package/dist/index.js.map +1 -1
- package/dist/types/components/DropdownMultiNew/DropdownMultiNew.d.ts +0 -60
- package/dist/types/components/DropdownSingleNew/DropdownSingleNew.d.ts +0 -57
- package/dist/types/components/ItemManagerPanel/ItemManagerPanel.d.ts +1 -7
- package/dist/types/components/OverlayDropdown/OverlayTemplateDialog.d.ts +1 -0
- package/dist/types/components/Table/Table.stories.d.ts +10 -2
- package/package.json +1 -1
|
@@ -17,64 +17,4 @@ export function DropdownMultiNew({ label, labelEmptyValue, options, selectedValu
|
|
|
17
17
|
orderBy: any;
|
|
18
18
|
elementType: any;
|
|
19
19
|
}): import("react/jsx-runtime").JSX.Element;
|
|
20
|
-
export namespace DropdownMultiNew {
|
|
21
|
-
namespace propTypes {
|
|
22
|
-
const placeHolder: PropTypes.Requireable<string>;
|
|
23
|
-
const label: PropTypes.Requireable<string>;
|
|
24
|
-
const labelEmptyValue: PropTypes.Requireable<string>;
|
|
25
|
-
const labelColor: PropTypes.Requireable<string>;
|
|
26
|
-
const checkBoxColor: PropTypes.Requireable<string>;
|
|
27
|
-
const required: PropTypes.Requireable<boolean>;
|
|
28
|
-
const width: PropTypes.Requireable<string>;
|
|
29
|
-
const disabled: PropTypes.Requireable<boolean>;
|
|
30
|
-
const error: PropTypes.Requireable<boolean>;
|
|
31
|
-
const errorMessage: string;
|
|
32
|
-
const options: PropTypes.Requireable<PropTypes.InferProps<{
|
|
33
|
-
value: PropTypes.Requireable<string>;
|
|
34
|
-
label: PropTypes.Requireable<string>;
|
|
35
|
-
}>[]>;
|
|
36
|
-
const selectedValue: PropTypes.Requireable<PropTypes.InferProps<{
|
|
37
|
-
value: PropTypes.Requireable<string>;
|
|
38
|
-
label: PropTypes.Requireable<string>;
|
|
39
|
-
}>[]>;
|
|
40
|
-
const onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
41
|
-
const xIconShow: PropTypes.Requireable<boolean>;
|
|
42
|
-
const showLabelOnTop: PropTypes.Requireable<boolean>;
|
|
43
|
-
}
|
|
44
|
-
namespace defaultProps {
|
|
45
|
-
const placeHolder_1: string;
|
|
46
|
-
export { placeHolder_1 as placeHolder };
|
|
47
|
-
const label_1: string;
|
|
48
|
-
export { label_1 as label };
|
|
49
|
-
const labelEmptyValue_1: string;
|
|
50
|
-
export { labelEmptyValue_1 as labelEmptyValue };
|
|
51
|
-
const labelColor_1: string;
|
|
52
|
-
export { labelColor_1 as labelColor };
|
|
53
|
-
const checkBoxColor_1: string;
|
|
54
|
-
export { checkBoxColor_1 as checkBoxColor };
|
|
55
|
-
const required_1: boolean;
|
|
56
|
-
export { required_1 as required };
|
|
57
|
-
const width_1: string;
|
|
58
|
-
export { width_1 as width };
|
|
59
|
-
const disabled_1: boolean;
|
|
60
|
-
export { disabled_1 as disabled };
|
|
61
|
-
const error_1: boolean;
|
|
62
|
-
export { error_1 as error };
|
|
63
|
-
const errorMessage_1: string;
|
|
64
|
-
export { errorMessage_1 as errorMessage };
|
|
65
|
-
const options_1: any[];
|
|
66
|
-
export { options_1 as options };
|
|
67
|
-
const selectedValue_1: any[];
|
|
68
|
-
export { selectedValue_1 as selectedValue };
|
|
69
|
-
const xIconShow_1: boolean;
|
|
70
|
-
export { xIconShow_1 as xIconShow };
|
|
71
|
-
export function onChange_1(): void;
|
|
72
|
-
export { onChange_1 as onChange };
|
|
73
|
-
const showLabelOnTop_1: boolean;
|
|
74
|
-
export { showLabelOnTop_1 as showLabelOnTop };
|
|
75
|
-
export const orderBy: string;
|
|
76
|
-
export const elementType: string;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
20
|
export default DropdownMultiNew;
|
|
80
|
-
import PropTypes from "prop-types";
|
|
@@ -16,61 +16,4 @@ export function DropdownSingleNew({ label, labelEmptyValue, options, selectedVal
|
|
|
16
16
|
orderBy: any;
|
|
17
17
|
elementType: any;
|
|
18
18
|
}): import("react/jsx-runtime").JSX.Element;
|
|
19
|
-
export namespace DropdownSingleNew {
|
|
20
|
-
namespace propTypes {
|
|
21
|
-
const placeHolder: PropTypes.Requireable<string>;
|
|
22
|
-
const label: PropTypes.Requireable<string>;
|
|
23
|
-
const labelEmptyValue: PropTypes.Requireable<string>;
|
|
24
|
-
const labelColor: PropTypes.Requireable<string>;
|
|
25
|
-
const required: PropTypes.Requireable<boolean>;
|
|
26
|
-
const width: PropTypes.Requireable<string>;
|
|
27
|
-
const disabled: PropTypes.Requireable<boolean>;
|
|
28
|
-
const error: PropTypes.Requireable<boolean>;
|
|
29
|
-
const errorMessage: string;
|
|
30
|
-
const options: PropTypes.Requireable<PropTypes.InferProps<{
|
|
31
|
-
value: PropTypes.Requireable<string>;
|
|
32
|
-
label: PropTypes.Requireable<string>;
|
|
33
|
-
}>[]>;
|
|
34
|
-
const selectedValue: PropTypes.Requireable<PropTypes.InferProps<{
|
|
35
|
-
value: PropTypes.Requireable<string>;
|
|
36
|
-
label: PropTypes.Requireable<string>;
|
|
37
|
-
}>[]>;
|
|
38
|
-
const xIconShow: PropTypes.Requireable<boolean>;
|
|
39
|
-
const onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
40
|
-
const showLabelOnTop: PropTypes.Requireable<boolean>;
|
|
41
|
-
}
|
|
42
|
-
namespace defaultProps {
|
|
43
|
-
const placeHolder_1: string;
|
|
44
|
-
export { placeHolder_1 as placeHolder };
|
|
45
|
-
const label_1: string;
|
|
46
|
-
export { label_1 as label };
|
|
47
|
-
const labelEmptyValue_1: string;
|
|
48
|
-
export { labelEmptyValue_1 as labelEmptyValue };
|
|
49
|
-
const labelColor_1: string;
|
|
50
|
-
export { labelColor_1 as labelColor };
|
|
51
|
-
const required_1: boolean;
|
|
52
|
-
export { required_1 as required };
|
|
53
|
-
const width_1: string;
|
|
54
|
-
export { width_1 as width };
|
|
55
|
-
const disabled_1: boolean;
|
|
56
|
-
export { disabled_1 as disabled };
|
|
57
|
-
const error_1: boolean;
|
|
58
|
-
export { error_1 as error };
|
|
59
|
-
const errorMessage_1: string;
|
|
60
|
-
export { errorMessage_1 as errorMessage };
|
|
61
|
-
const options_1: any[];
|
|
62
|
-
export { options_1 as options };
|
|
63
|
-
const selectedValue_1: any[];
|
|
64
|
-
export { selectedValue_1 as selectedValue };
|
|
65
|
-
const xIconShow_1: boolean;
|
|
66
|
-
export { xIconShow_1 as xIconShow };
|
|
67
|
-
export function onChange_1(): void;
|
|
68
|
-
export { onChange_1 as onChange };
|
|
69
|
-
const showLabelOnTop_1: boolean;
|
|
70
|
-
export { showLabelOnTop_1 as showLabelOnTop };
|
|
71
|
-
export const orderBy: string;
|
|
72
|
-
export const elementType: string;
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
19
|
export default DropdownSingleNew;
|
|
76
|
-
import PropTypes from "prop-types";
|
|
@@ -4,13 +4,7 @@ declare function ItemManagerPanel({ width, height, onSendForms, editMode, itemAn
|
|
|
4
4
|
height?: string;
|
|
5
5
|
onSendForms?: () => void;
|
|
6
6
|
editMode?: boolean;
|
|
7
|
-
itemAndPackage?:
|
|
8
|
-
name: string;
|
|
9
|
-
packages: {
|
|
10
|
-
brands: string;
|
|
11
|
-
component: string;
|
|
12
|
-
}[];
|
|
13
|
-
}[];
|
|
7
|
+
itemAndPackage?: any[];
|
|
14
8
|
setItemAndPackage: any;
|
|
15
9
|
linkColor?: string;
|
|
16
10
|
backgroundColor?: string;
|
|
@@ -17,6 +17,7 @@ declare namespace OverlayTemplateDialog {
|
|
|
17
17
|
const params: PropTypes.Validator<PropTypes.InferProps<{
|
|
18
18
|
label: PropTypes.Validator<string>;
|
|
19
19
|
type: PropTypes.Validator<string>;
|
|
20
|
+
suffix: PropTypes.Requireable<string>;
|
|
20
21
|
}>[]>;
|
|
21
22
|
const buttonColor: PropTypes.Requireable<string>;
|
|
22
23
|
const buttonHoverColor: PropTypes.Requireable<string>;
|
|
@@ -255,6 +255,8 @@ export namespace Default {
|
|
|
255
255
|
export { sideButtonHoverColor_1 as sideButtonHoverColor };
|
|
256
256
|
const showHorizontalScroll_1: boolean;
|
|
257
257
|
export { showHorizontalScroll_1 as showHorizontalScroll };
|
|
258
|
+
const showNoDataInSearch_1: boolean;
|
|
259
|
+
export { showNoDataInSearch_1 as showNoDataInSearch };
|
|
258
260
|
const children_1: import("react/jsx-runtime").JSX.Element;
|
|
259
261
|
export { children_1 as children };
|
|
260
262
|
}
|
|
@@ -280,6 +282,8 @@ export namespace WithData {
|
|
|
280
282
|
export { data1 as data };
|
|
281
283
|
const buttonColor_2: string;
|
|
282
284
|
export { buttonColor_2 as buttonColor };
|
|
285
|
+
const showNoDataInSearch_2: boolean;
|
|
286
|
+
export { showNoDataInSearch_2 as showNoDataInSearch };
|
|
283
287
|
}
|
|
284
288
|
export { args_1 as args };
|
|
285
289
|
}
|
|
@@ -295,6 +299,8 @@ export namespace EmptyState {
|
|
|
295
299
|
export { columns_2 as columns };
|
|
296
300
|
const data_2: any[];
|
|
297
301
|
export { data_2 as data };
|
|
302
|
+
const showNoDataInSearch_3: boolean;
|
|
303
|
+
export { showNoDataInSearch_3 as showNoDataInSearch };
|
|
298
304
|
}
|
|
299
305
|
export { args_2 as args };
|
|
300
306
|
}
|
|
@@ -309,8 +315,10 @@ export namespace NoDataInSearch {
|
|
|
309
315
|
export { columns1 as columns };
|
|
310
316
|
const data_3: any[];
|
|
311
317
|
export { data_3 as data };
|
|
312
|
-
const
|
|
313
|
-
export {
|
|
318
|
+
const showNoDataInSearch_4: boolean;
|
|
319
|
+
export { showNoDataInSearch_4 as showNoDataInSearch };
|
|
320
|
+
export const noDataInSearchTitle: string;
|
|
321
|
+
export const noDataInSearchMessage: string;
|
|
314
322
|
}
|
|
315
323
|
export { args_3 as args };
|
|
316
324
|
}
|