sag_components 2.0.0-beta160 → 2.0.0-beta161
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 +89 -75
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +89 -75
- package/dist/index.js.map +1 -1
- package/dist/types/components/DropdownNew/DropdownNew.stories.d.ts +31 -10
- package/dist/types/components/DropdownSingleNew/DropdownSingleNew.d.ts +2 -1
- package/package.json +1 -1
|
@@ -240,30 +240,51 @@ declare namespace _default {
|
|
|
240
240
|
}
|
|
241
241
|
export { control_10 as control };
|
|
242
242
|
}
|
|
243
|
-
namespace
|
|
243
|
+
namespace height {
|
|
244
244
|
const name_24: string;
|
|
245
245
|
export { name_24 as name };
|
|
246
|
+
export namespace type_22 {
|
|
247
|
+
const name_25: string;
|
|
248
|
+
export { name_25 as name };
|
|
249
|
+
}
|
|
250
|
+
export { type_22 as type };
|
|
246
251
|
const description_13: string;
|
|
247
252
|
export { description_13 as description };
|
|
253
|
+
export namespace defaultValue_11 {
|
|
254
|
+
const summary_11: string;
|
|
255
|
+
export { summary_11 as summary };
|
|
256
|
+
}
|
|
257
|
+
export { defaultValue_11 as defaultValue };
|
|
248
258
|
export namespace control_11 {
|
|
249
|
-
const
|
|
250
|
-
export {
|
|
251
|
-
export const presetColors: string[];
|
|
259
|
+
const type_23: string;
|
|
260
|
+
export { type_23 as type };
|
|
252
261
|
}
|
|
253
262
|
export { control_11 as control };
|
|
254
263
|
}
|
|
255
|
-
namespace
|
|
256
|
-
const
|
|
257
|
-
export {
|
|
264
|
+
namespace labelColor {
|
|
265
|
+
const name_26: string;
|
|
266
|
+
export { name_26 as name };
|
|
258
267
|
const description_14: string;
|
|
259
268
|
export { description_14 as description };
|
|
260
269
|
export namespace control_12 {
|
|
261
|
-
const
|
|
262
|
-
export {
|
|
270
|
+
const type_24: string;
|
|
271
|
+
export { type_24 as type };
|
|
272
|
+
export const presetColors: string[];
|
|
273
|
+
}
|
|
274
|
+
export { control_12 as control };
|
|
275
|
+
}
|
|
276
|
+
namespace checkBoxColor {
|
|
277
|
+
const name_27: string;
|
|
278
|
+
export { name_27 as name };
|
|
279
|
+
const description_15: string;
|
|
280
|
+
export { description_15 as description };
|
|
281
|
+
export namespace control_13 {
|
|
282
|
+
const type_25: string;
|
|
283
|
+
export { type_25 as type };
|
|
263
284
|
const presetColors_1: string[];
|
|
264
285
|
export { presetColors_1 as presetColors };
|
|
265
286
|
}
|
|
266
|
-
export {
|
|
287
|
+
export { control_13 as control };
|
|
267
288
|
}
|
|
268
289
|
}
|
|
269
290
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export function DropdownSingleNew({ label, labelEmptyValue, options, selectedValue, onChange, required, disabled, width, withMarginBottom, error, errorMessage, xIconShow, labelColor, showLabelOnTop, orderBy, elementType, }: {
|
|
1
|
+
export function DropdownSingleNew({ label, labelEmptyValue, options, selectedValue, onChange, required, disabled, width, height, withMarginBottom, error, errorMessage, xIconShow, labelColor, showLabelOnTop, orderBy, elementType, }: {
|
|
2
2
|
label: any;
|
|
3
3
|
labelEmptyValue: any;
|
|
4
4
|
options: any;
|
|
@@ -7,6 +7,7 @@ export function DropdownSingleNew({ label, labelEmptyValue, options, selectedVal
|
|
|
7
7
|
required: any;
|
|
8
8
|
disabled: any;
|
|
9
9
|
width: any;
|
|
10
|
+
height: any;
|
|
10
11
|
withMarginBottom?: boolean;
|
|
11
12
|
error: any;
|
|
12
13
|
errorMessage: any;
|