@aloudata/aloudata-design 1.4.1 → 1.4.3
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/AProgress/index.d.ts +2 -0
- package/dist/AProgress/index.js +2 -0
- package/dist/AProgress/style/index.d.ts +2 -0
- package/dist/AProgress/style/index.js +2 -0
- package/dist/AProgress/style/index.less +1 -0
- package/dist/Dropdown/index.js +1 -1
- package/dist/ScrollArea/style/index.less +1 -0
- package/dist/Select/index.js +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '../../style/index.less';
|
package/dist/Dropdown/index.js
CHANGED
|
@@ -57,7 +57,7 @@ export default function Dropdown(props) {
|
|
|
57
57
|
borderRadius: 0
|
|
58
58
|
})[placement || 'bottomLeft']) === null || _getPlacements === void 0 ? void 0 : _getPlacements['offset']) || [0, 1]
|
|
59
59
|
};
|
|
60
|
-
}, [align]);
|
|
60
|
+
}, [align, placement]);
|
|
61
61
|
return /*#__PURE__*/React.createElement(AntdDropdown, _extends({
|
|
62
62
|
overlayClassName: classNames('ald-dropdown-overlay', overlayClassName),
|
|
63
63
|
menu: menus,
|
package/dist/Select/index.js
CHANGED
|
@@ -353,7 +353,7 @@ var Select = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
353
353
|
|
|
354
354
|
return (_selectedOptions$ = selectedOptions[0]) === null || _selectedOptions$ === void 0 ? void 0 : _selectedOptions$.value;
|
|
355
355
|
}
|
|
356
|
-
}, [selectedOptions]);
|
|
356
|
+
}, [selectedOptions, isMultiple]);
|
|
357
357
|
useEffect(function () {
|
|
358
358
|
if (prefixRef.current && prefix) {
|
|
359
359
|
setPrefixWidth(prefixRef.current.offsetWidth);
|
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export { MenuClickEventHandler } from 'rc-menu/lib/interface';
|
|
|
2
2
|
export { default as Alert } from './Alert';
|
|
3
3
|
export type { AlertProps } from './Alert';
|
|
4
4
|
export { default as App } from './App';
|
|
5
|
+
export { default as AProgress } from './AProgress';
|
|
5
6
|
export { default as Avatar } from './Avatar';
|
|
6
7
|
export type { IAvatarProps as AvatarProps } from './Avatar';
|
|
7
8
|
export { default as Breadcrumb } from './Breadcrumb';
|
package/dist/index.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
export { MenuClickEventHandler } from 'rc-menu/lib/interface';
|
|
3
3
|
export { default as Alert } from "./Alert";
|
|
4
4
|
export { default as App } from "./App";
|
|
5
|
+
export { default as AProgress } from "./AProgress";
|
|
5
6
|
export { default as Avatar } from "./Avatar";
|
|
6
7
|
export { default as Breadcrumb } from "./Breadcrumb";
|
|
7
8
|
export { default as Button } from "./Button";
|