yootd 0.0.51 → 0.0.52
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/dropdown-select/index.js +1 -1
- package/dist/go-back/index.d.ts +2 -2
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
@@ -17,7 +17,7 @@ export var DropdownSelect = function DropdownSelect(_ref) {
|
|
17
17
|
var _rest$overlayClassNam, _items$find$label, _items$find;
|
18
18
|
var items = _ref.items,
|
19
19
|
_ref$arrow = _ref.arrow,
|
20
|
-
arrow = _ref$arrow === void 0 ?
|
20
|
+
arrow = _ref$arrow === void 0 ? false : _ref$arrow,
|
21
21
|
defaultValue = _ref.defaultValue,
|
22
22
|
onChange = _ref.onChange,
|
23
23
|
rest = _objectWithoutProperties(_ref, _excluded);
|
package/dist/go-back/index.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import React, { CSSProperties } from 'react';
|
2
2
|
import './index.scss';
|
3
|
-
export interface
|
3
|
+
export interface GoBackProps {
|
4
4
|
style?: CSSProperties;
|
5
5
|
className?: string;
|
6
6
|
}
|
7
|
-
export declare const GoBack: (props: React.PropsWithChildren<
|
7
|
+
export declare const GoBack: (props: React.PropsWithChildren<GoBackProps>) => React.JSX.Element;
|
package/dist/index.d.ts
CHANGED
@@ -169,6 +169,8 @@ export type { UserDropdownProps } from './user-dropdown/types/types';
|
|
169
169
|
export { ConfigProvider } from './config-provider';
|
170
170
|
export type { ConfigProviderProps } from './config-provider';
|
171
171
|
export { Zone } from './zones';
|
172
|
+
export { GoBack } from './go-back';
|
173
|
+
export type { GoBackProps } from './go-back';
|
172
174
|
export { VideoPlayer } from './video-player';
|
173
175
|
export type { VideoPlayerProps } from './video-player';
|
174
176
|
export type { GetProp, GetProps, GetRef } from './utils/utils';
|
package/dist/index.js
CHANGED