sag_components 2.0.0-beta112 → 2.0.0-beta114
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 +4 -3
- package/dist/index.esm.js +192 -159
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +192 -159
- package/dist/index.js.map +1 -1
- package/dist/types/components/Input/Input.d.ts +2 -1
- package/dist/types/components/Input/Input.stories.d.ts +53 -32
- package/dist/types/components/ItemManagerPanel/ConfirmationDialog/ConfirmationDialog.style.d.ts +2 -3
- package/dist/types/components/ItemManagerPanel/ItemManagerPanel.d.ts +2 -2
- package/dist/types/components/ItemManagerPanel/ItemManagerPanel.stories.d.ts +22 -10
- package/dist/types/components/ItemManagerPanel/ItemManagerPanel.style.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default Input;
|
|
2
|
-
declare function Input({ label, labelEmptyValue, size, selectedValue, placeHolder, onChange, onBlur, required, disabled, width, error, errorMessage, labelColor, leftIcon, rightIcon, password, leftIconOnClick, rightIconOnClick, }: {
|
|
2
|
+
declare function Input({ label, labelEmptyValue, size, selectedValue, placeHolder, onChange, onBlur, required, disabled, isDarkerBackground, width, error, errorMessage, labelColor, leftIcon, rightIcon, password, leftIconOnClick, rightIconOnClick, }: {
|
|
3
3
|
label: any;
|
|
4
4
|
labelEmptyValue: any;
|
|
5
5
|
size: any;
|
|
@@ -9,6 +9,7 @@ declare function Input({ label, labelEmptyValue, size, selectedValue, placeHolde
|
|
|
9
9
|
onBlur: any;
|
|
10
10
|
required: any;
|
|
11
11
|
disabled: any;
|
|
12
|
+
isDarkerBackground?: boolean;
|
|
12
13
|
width: any;
|
|
13
14
|
error: any;
|
|
14
15
|
errorMessage: any;
|
|
@@ -147,7 +147,7 @@ declare namespace _default {
|
|
|
147
147
|
}
|
|
148
148
|
export { control_7 as control };
|
|
149
149
|
}
|
|
150
|
-
namespace
|
|
150
|
+
namespace isDarkerBackground {
|
|
151
151
|
const name_14: string;
|
|
152
152
|
export { name_14 as name };
|
|
153
153
|
export namespace type_14 {
|
|
@@ -168,7 +168,7 @@ declare namespace _default {
|
|
|
168
168
|
}
|
|
169
169
|
export { control_8 as control };
|
|
170
170
|
}
|
|
171
|
-
namespace
|
|
171
|
+
namespace error {
|
|
172
172
|
const name_16: string;
|
|
173
173
|
export { name_16 as name };
|
|
174
174
|
export namespace type_16 {
|
|
@@ -179,7 +179,7 @@ declare namespace _default {
|
|
|
179
179
|
const description_9: string;
|
|
180
180
|
export { description_9 as description };
|
|
181
181
|
export namespace defaultValue_7 {
|
|
182
|
-
const summary_7:
|
|
182
|
+
const summary_7: boolean;
|
|
183
183
|
export { summary_7 as summary };
|
|
184
184
|
}
|
|
185
185
|
export { defaultValue_7 as defaultValue };
|
|
@@ -189,7 +189,7 @@ declare namespace _default {
|
|
|
189
189
|
}
|
|
190
190
|
export { control_9 as control };
|
|
191
191
|
}
|
|
192
|
-
namespace
|
|
192
|
+
namespace errorMessage {
|
|
193
193
|
const name_18: string;
|
|
194
194
|
export { name_18 as name };
|
|
195
195
|
export namespace type_18 {
|
|
@@ -200,7 +200,7 @@ declare namespace _default {
|
|
|
200
200
|
const description_10: string;
|
|
201
201
|
export { description_10 as description };
|
|
202
202
|
export namespace defaultValue_8 {
|
|
203
|
-
const summary_8:
|
|
203
|
+
const summary_8: string;
|
|
204
204
|
export { summary_8 as summary };
|
|
205
205
|
}
|
|
206
206
|
export { defaultValue_8 as defaultValue };
|
|
@@ -210,60 +210,81 @@ declare namespace _default {
|
|
|
210
210
|
}
|
|
211
211
|
export { control_10 as control };
|
|
212
212
|
}
|
|
213
|
-
namespace
|
|
213
|
+
namespace password {
|
|
214
214
|
const name_20: string;
|
|
215
215
|
export { name_20 as name };
|
|
216
|
-
export
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
export { type_20 as type };
|
|
216
|
+
export namespace type_20 {
|
|
217
|
+
const name_21: string;
|
|
218
|
+
export { name_21 as name };
|
|
220
219
|
}
|
|
221
|
-
export {
|
|
220
|
+
export { type_20 as type };
|
|
222
221
|
const description_11: string;
|
|
223
222
|
export { description_11 as description };
|
|
223
|
+
export namespace defaultValue_9 {
|
|
224
|
+
const summary_9: boolean;
|
|
225
|
+
export { summary_9 as summary };
|
|
226
|
+
}
|
|
227
|
+
export { defaultValue_9 as defaultValue };
|
|
228
|
+
export namespace control_11 {
|
|
229
|
+
const type_21: string;
|
|
230
|
+
export { type_21 as type };
|
|
231
|
+
}
|
|
232
|
+
export { control_11 as control };
|
|
224
233
|
}
|
|
225
|
-
namespace
|
|
226
|
-
const
|
|
227
|
-
export {
|
|
234
|
+
namespace leftIcon {
|
|
235
|
+
const name_22: string;
|
|
236
|
+
export { name_22 as name };
|
|
228
237
|
export { iconsList as options };
|
|
229
238
|
export namespace control_12 {
|
|
230
|
-
const
|
|
231
|
-
export {
|
|
239
|
+
const type_22: string;
|
|
240
|
+
export { type_22 as type };
|
|
232
241
|
}
|
|
233
242
|
export { control_12 as control };
|
|
234
243
|
const description_12: string;
|
|
235
244
|
export { description_12 as description };
|
|
236
245
|
}
|
|
237
|
-
namespace
|
|
238
|
-
const
|
|
239
|
-
export {
|
|
240
|
-
export
|
|
246
|
+
namespace rightIcon {
|
|
247
|
+
const name_23: string;
|
|
248
|
+
export { name_23 as name };
|
|
249
|
+
export { iconsList as options };
|
|
250
|
+
export namespace control_13 {
|
|
251
|
+
const type_23: string;
|
|
252
|
+
export { type_23 as type };
|
|
253
|
+
}
|
|
254
|
+
export { control_13 as control };
|
|
241
255
|
const description_13: string;
|
|
242
256
|
export { description_13 as description };
|
|
243
257
|
}
|
|
258
|
+
namespace leftIconOnClick {
|
|
259
|
+
const name_24: string;
|
|
260
|
+
export { name_24 as name };
|
|
261
|
+
export const action: string;
|
|
262
|
+
const description_14: string;
|
|
263
|
+
export { description_14 as description };
|
|
264
|
+
}
|
|
244
265
|
namespace rightIconOnClick {
|
|
245
|
-
const
|
|
246
|
-
export {
|
|
266
|
+
const name_25: string;
|
|
267
|
+
export { name_25 as name };
|
|
247
268
|
const action_1: string;
|
|
248
269
|
export { action_1 as action };
|
|
249
|
-
const
|
|
250
|
-
export {
|
|
270
|
+
const description_15: string;
|
|
271
|
+
export { description_15 as description };
|
|
251
272
|
}
|
|
252
273
|
namespace onChange {
|
|
253
|
-
const
|
|
254
|
-
export {
|
|
274
|
+
const name_26: string;
|
|
275
|
+
export { name_26 as name };
|
|
255
276
|
const action_2: string;
|
|
256
277
|
export { action_2 as action };
|
|
257
|
-
const
|
|
258
|
-
export {
|
|
278
|
+
const description_16: string;
|
|
279
|
+
export { description_16 as description };
|
|
259
280
|
}
|
|
260
281
|
namespace onBlur {
|
|
261
|
-
const
|
|
262
|
-
export {
|
|
282
|
+
const name_27: string;
|
|
283
|
+
export { name_27 as name };
|
|
263
284
|
const action_3: string;
|
|
264
285
|
export { action_3 as action };
|
|
265
|
-
const
|
|
266
|
-
export {
|
|
286
|
+
const description_17: string;
|
|
287
|
+
export { description_17 as description };
|
|
267
288
|
}
|
|
268
289
|
}
|
|
269
290
|
}
|
package/dist/types/components/ItemManagerPanel/ConfirmationDialog/ConfirmationDialog.style.d.ts
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
export const Overlay: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
2
|
-
export const
|
|
2
|
+
export const HeaderContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
3
3
|
export const Title: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>> & string;
|
|
4
4
|
export const Subtitle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, never>> & string;
|
|
5
|
+
export const Dialog: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
5
6
|
export const VendorSection: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
6
|
-
export const Divider: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
7
7
|
export const Item: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, never>> & string;
|
|
8
8
|
export const VendorHeader: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
9
9
|
export const VendorName: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
|
|
10
10
|
export const NewBadge: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
|
|
11
11
|
export const PackageList: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, never>> & string;
|
|
12
12
|
export const ButtonRow: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
13
|
-
export const HeaderContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default ItemManagerPanel;
|
|
2
|
-
declare function ItemManagerPanel({ width, height, onSendForms, editMode, disabledSendForms, AllFormsSent, itemAndPackage, setItemAndPackage, linkColor, backgroundColor,
|
|
2
|
+
declare function ItemManagerPanel({ width, height, onSendForms, editMode, disabledSendForms, AllFormsSent, itemAndPackage, setItemAndPackage, linkColor, backgroundColor, buttonTooltipText, }: {
|
|
3
3
|
width?: string;
|
|
4
4
|
height?: string;
|
|
5
5
|
onSendForms?: () => void;
|
|
@@ -10,5 +10,5 @@ declare function ItemManagerPanel({ width, height, onSendForms, editMode, disabl
|
|
|
10
10
|
setItemAndPackage: any;
|
|
11
11
|
linkColor?: string;
|
|
12
12
|
backgroundColor?: string;
|
|
13
|
-
|
|
13
|
+
buttonTooltipText?: string;
|
|
14
14
|
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -24,7 +24,7 @@ declare namespace _default {
|
|
|
24
24
|
const defaultValue_1: string;
|
|
25
25
|
export { defaultValue_1 as defaultValue };
|
|
26
26
|
}
|
|
27
|
-
namespace
|
|
27
|
+
namespace linkColor {
|
|
28
28
|
const name_2: string;
|
|
29
29
|
export { name_2 as name };
|
|
30
30
|
const control_2: string;
|
|
@@ -34,17 +34,17 @@ declare namespace _default {
|
|
|
34
34
|
const defaultValue_2: string;
|
|
35
35
|
export { defaultValue_2 as defaultValue };
|
|
36
36
|
}
|
|
37
|
-
namespace
|
|
37
|
+
namespace backgroundColor {
|
|
38
38
|
const name_3: string;
|
|
39
39
|
export { name_3 as name };
|
|
40
40
|
const control_3: string;
|
|
41
41
|
export { control_3 as control };
|
|
42
42
|
const description_3: string;
|
|
43
43
|
export { description_3 as description };
|
|
44
|
-
const defaultValue_3:
|
|
44
|
+
const defaultValue_3: string;
|
|
45
45
|
export { defaultValue_3 as defaultValue };
|
|
46
46
|
}
|
|
47
|
-
namespace
|
|
47
|
+
namespace editMode {
|
|
48
48
|
const name_4: string;
|
|
49
49
|
export { name_4 as name };
|
|
50
50
|
const control_4: string;
|
|
@@ -54,7 +54,7 @@ declare namespace _default {
|
|
|
54
54
|
const defaultValue_4: boolean;
|
|
55
55
|
export { defaultValue_4 as defaultValue };
|
|
56
56
|
}
|
|
57
|
-
namespace
|
|
57
|
+
namespace disabledSendForms {
|
|
58
58
|
const name_5: string;
|
|
59
59
|
export { name_5 as name };
|
|
60
60
|
const control_5: string;
|
|
@@ -64,23 +64,35 @@ declare namespace _default {
|
|
|
64
64
|
const defaultValue_5: boolean;
|
|
65
65
|
export { defaultValue_5 as defaultValue };
|
|
66
66
|
}
|
|
67
|
-
namespace
|
|
67
|
+
namespace AllFormsSent {
|
|
68
68
|
const name_6: string;
|
|
69
69
|
export { name_6 as name };
|
|
70
70
|
const control_6: string;
|
|
71
71
|
export { control_6 as control };
|
|
72
72
|
const description_6: string;
|
|
73
73
|
export { description_6 as description };
|
|
74
|
-
const defaultValue_6:
|
|
74
|
+
const defaultValue_6: boolean;
|
|
75
75
|
export { defaultValue_6 as defaultValue };
|
|
76
76
|
}
|
|
77
|
-
namespace
|
|
77
|
+
namespace itemAndPackage {
|
|
78
78
|
const name_7: string;
|
|
79
79
|
export { name_7 as name };
|
|
80
|
-
const
|
|
81
|
-
export {
|
|
80
|
+
const control_7: string;
|
|
81
|
+
export { control_7 as control };
|
|
82
82
|
const description_7: string;
|
|
83
83
|
export { description_7 as description };
|
|
84
|
+
const defaultValue_7: any[];
|
|
85
|
+
export { defaultValue_7 as defaultValue };
|
|
86
|
+
}
|
|
87
|
+
namespace buttonTooltipText {
|
|
88
|
+
const name_8: string;
|
|
89
|
+
export { name_8 as name };
|
|
90
|
+
const control_8: string;
|
|
91
|
+
export { control_8 as control };
|
|
92
|
+
const description_8: string;
|
|
93
|
+
export { description_8 as description };
|
|
94
|
+
const defaultValue_8: string;
|
|
95
|
+
export { defaultValue_8 as defaultValue };
|
|
84
96
|
}
|
|
85
97
|
}
|
|
86
98
|
}
|
|
@@ -19,6 +19,7 @@ export const VendorNameAndPackagesContainer: import("styled-components/dist/type
|
|
|
19
19
|
export const DotContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
20
20
|
export const LineContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
21
21
|
export const ButtonContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
22
|
+
export const CustomTooltip: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<any, never>> & string & Omit<(props: any) => import("react/jsx-runtime").JSX.Element, keyof React.Component<any, {}, any>>;
|
|
22
23
|
export const Container: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
23
24
|
export const Trash: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
24
25
|
import React from "react";
|