@elliemae/ds-form 2.4.3 → 2.4.5
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/cjs/MenuItem/components/MultiMenuItem/MultiMenuItem.js +0 -3
- package/cjs/MenuItem/components/index.js +0 -1
- package/cjs/MenuItem/index.js +0 -1
- package/cjs/index.js +0 -1
- package/esm/MenuItem/components/MultiMenuItem/MultiMenuItem.js +1 -3
- package/esm/MenuItem/components/index.js +1 -1
- package/esm/MenuItem/index.js +1 -1
- package/esm/index.js +1 -1
- package/package.json +20 -20
- package/types/MenuItem/components/MultiMenuItem/MultiMenuItem.d.ts +0 -1
|
@@ -49,9 +49,7 @@ const MultiMenuItem = props => {
|
|
|
49
49
|
className: isActive ? 'ds-list-item-active' : '',
|
|
50
50
|
"aria-selected": isSelected,
|
|
51
51
|
style: wrapperStyles,
|
|
52
|
-
pr: render ? 0 : 40,
|
|
53
52
|
onClick: onClick,
|
|
54
|
-
onKeyDown: onClick,
|
|
55
53
|
"data-testid": "combobox-option",
|
|
56
54
|
children: /*#__PURE__*/_jsx__default["default"](styled$1.StyledItemContent, {}, void 0, render ? render(props) : /*#__PURE__*/_jsx__default["default"](dsControlledForm.DSControlledCheckbox, {
|
|
57
55
|
disabled: disabled,
|
|
@@ -73,4 +71,3 @@ MultiMenuItemWithSchema.propTypes = props.itemProps;
|
|
|
73
71
|
|
|
74
72
|
exports.MultiMenuItem = MultiMenuItem;
|
|
75
73
|
exports.MultiMenuItemWithSchema = MultiMenuItemWithSchema;
|
|
76
|
-
exports.noop = noop;
|
|
@@ -14,7 +14,6 @@ var index$3 = require('./Separator/index.js');
|
|
|
14
14
|
exports.SingleMenuItem = SingleMenuItem.SingleMenuItem;
|
|
15
15
|
exports.MultiMenuItem = MultiMenuItem.MultiMenuItem;
|
|
16
16
|
exports.MultiMenuItemWithSchema = MultiMenuItem.MultiMenuItemWithSchema;
|
|
17
|
-
exports.noop = MultiMenuItem.noop;
|
|
18
17
|
exports.MenuItem = index.MenuItem;
|
|
19
18
|
exports.MenuItemWithSchema = index.MenuItemWithSchema;
|
|
20
19
|
exports.SubmenuItem = index$1.SubmenuItem;
|
package/cjs/MenuItem/index.js
CHANGED
|
@@ -14,7 +14,6 @@ var index$3 = require('./components/Separator/index.js');
|
|
|
14
14
|
exports.SingleMenuItem = SingleMenuItem.SingleMenuItem;
|
|
15
15
|
exports.MultiMenuItem = MultiMenuItem.MultiMenuItem;
|
|
16
16
|
exports.MultiMenuItemWithSchema = MultiMenuItem.MultiMenuItemWithSchema;
|
|
17
|
-
exports.noop = MultiMenuItem.noop;
|
|
18
17
|
exports.MenuItem = index.MenuItem;
|
|
19
18
|
exports.MenuItemWithSchema = index.MenuItemWithSchema;
|
|
20
19
|
exports.SubmenuItem = index$1.SubmenuItem;
|
package/cjs/index.js
CHANGED
|
@@ -79,7 +79,6 @@ exports.DSLargeInputTextWithSchema = DSLargeInputText.DSLargeInputTextWithSchema
|
|
|
79
79
|
exports.SingleMenuItem = SingleMenuItem.SingleMenuItem;
|
|
80
80
|
exports.MultiMenuItem = MultiMenuItem.MultiMenuItem;
|
|
81
81
|
exports.MultiMenuItemWithSchema = MultiMenuItem.MultiMenuItemWithSchema;
|
|
82
|
-
exports.noop = MultiMenuItem.noop;
|
|
83
82
|
exports.MenuItem = index.MenuItem;
|
|
84
83
|
exports.MenuItemWithSchema = index.MenuItemWithSchema;
|
|
85
84
|
exports.SubmenuItem = index$1.SubmenuItem;
|
|
@@ -41,9 +41,7 @@ const MultiMenuItem = props => {
|
|
|
41
41
|
className: isActive ? 'ds-list-item-active' : '',
|
|
42
42
|
"aria-selected": isSelected,
|
|
43
43
|
style: wrapperStyles,
|
|
44
|
-
pr: render ? 0 : 40,
|
|
45
44
|
onClick: onClick,
|
|
46
|
-
onKeyDown: onClick,
|
|
47
45
|
"data-testid": "combobox-option",
|
|
48
46
|
children: /*#__PURE__*/_jsx(StyledItemContent, {}, void 0, render ? render(props) : /*#__PURE__*/_jsx(DSControlledCheckbox, {
|
|
49
47
|
disabled: disabled,
|
|
@@ -63,4 +61,4 @@ MultiMenuItem.defaultProps = defaultProps;
|
|
|
63
61
|
const MultiMenuItemWithSchema = describe(MultiMenuItem);
|
|
64
62
|
MultiMenuItemWithSchema.propTypes = itemProps;
|
|
65
63
|
|
|
66
|
-
export { MultiMenuItem, MultiMenuItemWithSchema
|
|
64
|
+
export { MultiMenuItem, MultiMenuItemWithSchema };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { SingleMenuItem } from './SingleMenuItem/SingleMenuItem.js';
|
|
2
|
-
export { MultiMenuItem, MultiMenuItemWithSchema
|
|
2
|
+
export { MultiMenuItem, MultiMenuItemWithSchema } from './MultiMenuItem/MultiMenuItem.js';
|
|
3
3
|
export { MenuItem, MenuItemWithSchema } from './MenuItem/index.js';
|
|
4
4
|
export { SubmenuItem, SubmenuItemWithSchema } from './SubmenuItem/index.js';
|
|
5
5
|
export { Section } from './Section/index.js';
|
package/esm/MenuItem/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { SingleMenuItem } from './components/SingleMenuItem/SingleMenuItem.js';
|
|
2
|
-
export { MultiMenuItem, MultiMenuItemWithSchema
|
|
2
|
+
export { MultiMenuItem, MultiMenuItemWithSchema } from './components/MultiMenuItem/MultiMenuItem.js';
|
|
3
3
|
export { MenuItem, MenuItemWithSchema } from './components/MenuItem/index.js';
|
|
4
4
|
export { SubmenuItem, SubmenuItemWithSchema } from './components/SubmenuItem/index.js';
|
|
5
5
|
export { Section } from './components/Section/index.js';
|
package/esm/index.js
CHANGED
|
@@ -17,7 +17,7 @@ export { DSInputProtected, DSInputProtectedWithSchema } from './InputProtected/D
|
|
|
17
17
|
export { LEFT_ADDON_OPTIONS, RIGHT_ADDON_OPTIONS } from './InputProtected/options.js';
|
|
18
18
|
export { default as DSLargeInputText, DSLargeInputTextWithSchema } from './LargeInputText/DSLargeInputText.js';
|
|
19
19
|
export { SingleMenuItem } from './MenuItem/components/SingleMenuItem/SingleMenuItem.js';
|
|
20
|
-
export { MultiMenuItem, MultiMenuItemWithSchema
|
|
20
|
+
export { MultiMenuItem, MultiMenuItemWithSchema } from './MenuItem/components/MultiMenuItem/MultiMenuItem.js';
|
|
21
21
|
export { MenuItem, MenuItemWithSchema } from './MenuItem/components/MenuItem/index.js';
|
|
22
22
|
export { SubmenuItem, SubmenuItemWithSchema } from './MenuItem/components/SubmenuItem/index.js';
|
|
23
23
|
export { Section } from './MenuItem/components/Section/index.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-form",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.5",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Form",
|
|
6
6
|
"module": "./esm/index.js",
|
|
@@ -748,25 +748,25 @@
|
|
|
748
748
|
"build": "node ../../scripts/build/build.js"
|
|
749
749
|
},
|
|
750
750
|
"dependencies": {
|
|
751
|
-
"@elliemae/ds-button": "2.4.
|
|
752
|
-
"@elliemae/ds-circular-progress-indicator": "2.4.
|
|
753
|
-
"@elliemae/ds-classnames": "2.4.
|
|
754
|
-
"@elliemae/ds-controlled-form": "2.4.
|
|
755
|
-
"@elliemae/ds-dropdownmenu": "2.4.
|
|
756
|
-
"@elliemae/ds-grid": "2.4.
|
|
757
|
-
"@elliemae/ds-icon": "2.4.
|
|
758
|
-
"@elliemae/ds-icons": "2.4.
|
|
759
|
-
"@elliemae/ds-menu": "2.4.
|
|
760
|
-
"@elliemae/ds-overlay": "2.4.
|
|
761
|
-
"@elliemae/ds-popper": "2.4.
|
|
762
|
-
"@elliemae/ds-props-helpers": "2.4.
|
|
763
|
-
"@elliemae/ds-separator": "2.4.
|
|
764
|
-
"@elliemae/ds-shared": "2.4.
|
|
765
|
-
"@elliemae/ds-system": "2.4.
|
|
766
|
-
"@elliemae/ds-text-wrapper": "2.4.
|
|
767
|
-
"@elliemae/ds-tooltip": "2.4.
|
|
768
|
-
"@elliemae/ds-truncated-tooltip-text": "2.4.
|
|
769
|
-
"@elliemae/ds-utilities": "2.4.
|
|
751
|
+
"@elliemae/ds-button": "2.4.5",
|
|
752
|
+
"@elliemae/ds-circular-progress-indicator": "2.4.5",
|
|
753
|
+
"@elliemae/ds-classnames": "2.4.5",
|
|
754
|
+
"@elliemae/ds-controlled-form": "2.4.5",
|
|
755
|
+
"@elliemae/ds-dropdownmenu": "2.4.5",
|
|
756
|
+
"@elliemae/ds-grid": "2.4.5",
|
|
757
|
+
"@elliemae/ds-icon": "2.4.5",
|
|
758
|
+
"@elliemae/ds-icons": "2.4.5",
|
|
759
|
+
"@elliemae/ds-menu": "2.4.5",
|
|
760
|
+
"@elliemae/ds-overlay": "2.4.5",
|
|
761
|
+
"@elliemae/ds-popper": "2.4.5",
|
|
762
|
+
"@elliemae/ds-props-helpers": "2.4.5",
|
|
763
|
+
"@elliemae/ds-separator": "2.4.5",
|
|
764
|
+
"@elliemae/ds-shared": "2.4.5",
|
|
765
|
+
"@elliemae/ds-system": "2.4.5",
|
|
766
|
+
"@elliemae/ds-text-wrapper": "2.4.5",
|
|
767
|
+
"@elliemae/ds-tooltip": "2.4.5",
|
|
768
|
+
"@elliemae/ds-truncated-tooltip-text": "2.4.5",
|
|
769
|
+
"@elliemae/ds-utilities": "2.4.5",
|
|
770
770
|
"@elliemae/react-popper": "1.0.2",
|
|
771
771
|
"@xstyled/styled-components": "~3.1.1",
|
|
772
772
|
"csstype": "~3.0.9",
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
/// <reference path="../../../../../../../shared/typings/react-desc.d.ts" />
|
|
2
2
|
/// <reference types="react" />
|
|
3
3
|
import { MenuItemT } from '../../props';
|
|
4
|
-
export declare function noop<T extends unknown[]>(..._args: T): void;
|
|
5
4
|
declare const MultiMenuItem: {
|
|
6
5
|
(props: MenuItemT): JSX.Element;
|
|
7
6
|
propTypes: {
|