@autobest-ui/components 2.13.10 → 2.13.12

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.
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import Portal from '../portal';
3
- export default function Affix(props) {
4
- return /*#__PURE__*/React.createElement(Portal, {
5
- getContainer: props.getContainer
6
- }, props.children);
7
- }
@@ -1,4 +0,0 @@
1
- /// <reference types="react" />
2
- import { PortalProps } from '../portal';
3
- export declare type AffixProps = Required<Omit<PortalProps, 'didUpdate'>>;
4
- export default function Affix(props: AffixProps): JSX.Element;
@@ -1,14 +0,0 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
- Object.defineProperty(exports, "__esModule", {
5
- value: true
6
- });
7
- exports.default = Affix;
8
- var _react = _interopRequireDefault(require("react"));
9
- var _portal = _interopRequireDefault(require("../portal"));
10
- function Affix(props) {
11
- return /*#__PURE__*/_react.default.createElement(_portal.default, {
12
- getContainer: props.getContainer
13
- }, props.children);
14
- }