elab_components 0.2.21 → 0.2.22
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.
|
@@ -6,7 +6,7 @@ declare const props: () => {
|
|
|
6
6
|
};
|
|
7
7
|
export declare const buttonOneProps: () => {
|
|
8
8
|
disabled: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
|
|
9
|
-
look: "
|
|
9
|
+
look: "default" | "flat" | "bare" | "outline";
|
|
10
10
|
icon: string;
|
|
11
11
|
iconClass: string;
|
|
12
12
|
imageAlt: string;
|
|
@@ -24,7 +24,7 @@ export declare const buttonOneProps: () => {
|
|
|
24
24
|
};
|
|
25
25
|
export declare const buttonTwoProps: () => {
|
|
26
26
|
disabled: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
|
|
27
|
-
look: "
|
|
27
|
+
look: "default" | "flat" | "bare" | "outline";
|
|
28
28
|
icon: string;
|
|
29
29
|
iconClass: string;
|
|
30
30
|
imageAlt: string;
|
|
@@ -42,7 +42,7 @@ export declare const buttonTwoProps: () => {
|
|
|
42
42
|
};
|
|
43
43
|
export declare const buttonThreeProps: () => {
|
|
44
44
|
disabled: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
|
|
45
|
-
look: "
|
|
45
|
+
look: "default" | "flat" | "bare" | "outline";
|
|
46
46
|
icon: string;
|
|
47
47
|
iconClass: string;
|
|
48
48
|
imageAlt: string;
|
|
@@ -3,7 +3,7 @@ declare const props: () => {
|
|
|
3
3
|
className: string;
|
|
4
4
|
dir: "auto" | "rtl" | "ltr";
|
|
5
5
|
disabled: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
|
|
6
|
-
look: "
|
|
6
|
+
look: "default" | "flat" | "bare" | "outline";
|
|
7
7
|
icon: string;
|
|
8
8
|
iconClass: string;
|
|
9
9
|
imageAlt: string;
|
|
@@ -7,7 +7,7 @@ declare const props: () => {
|
|
|
7
7
|
icon: string;
|
|
8
8
|
iconClass: string;
|
|
9
9
|
imageUrl: string;
|
|
10
|
-
look: "
|
|
10
|
+
look: "default" | "flat" | "bare" | "outline";
|
|
11
11
|
onBlur: import("@storybook/addon-actions").HandlerFunction;
|
|
12
12
|
onButtonClick: import("@storybook/addon-actions").HandlerFunction;
|
|
13
13
|
onClose: import("@storybook/addon-actions").HandlerFunction;
|
package/dist/index.esm.js
CHANGED
|
@@ -597,7 +597,7 @@ var DropDownCell = function (props, dropdownData, textField) {
|
|
|
597
597
|
};
|
|
598
598
|
var dataItem = props.dataItem;
|
|
599
599
|
console.log('value', value);
|
|
600
|
-
return (React.createElement("td", __assign({}, props.tdProps), dataItem.inEdit && (React.createElement(DropDownList, { style: { width: '
|
|
600
|
+
return (React.createElement("td", __assign({}, props.tdProps), dataItem.inEdit && (React.createElement(DropDownList, { style: { width: '100%', maxWidth: '200px' }, onChange: handleChange, value: value, data: dropdownData, textField: textField }))));
|
|
601
601
|
};
|
|
602
602
|
|
|
603
603
|
/** @format */
|
package/dist/index.js
CHANGED
|
@@ -625,7 +625,7 @@ var DropDownCell = function (props, dropdownData, textField) {
|
|
|
625
625
|
};
|
|
626
626
|
var dataItem = props.dataItem;
|
|
627
627
|
console.log('value', value);
|
|
628
|
-
return (React__namespace.createElement("td", __assign({}, props.tdProps), dataItem.inEdit && (React__namespace.createElement(kendoReactDropdowns.DropDownList, { style: { width: '
|
|
628
|
+
return (React__namespace.createElement("td", __assign({}, props.tdProps), dataItem.inEdit && (React__namespace.createElement(kendoReactDropdowns.DropDownList, { style: { width: '100%', maxWidth: '200px' }, onChange: handleChange, value: value, data: dropdownData, textField: textField }))));
|
|
629
629
|
};
|
|
630
630
|
|
|
631
631
|
/** @format */
|