UNPKG

@salesforce/design-system-react

Version:

Salesforce Lightning Design System for React

34 lines (27 loc) 1.89 kB
/* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ /* eslint-disable import/no-mutable-exports */ import oneOfRequiredProperty from '../../utilities/warning/one-of-required-property'; import hasChildrenWithoutDisplayNameOf from '../../utilities/warning/has-children-without-display-name-of'; import sunsetProperty from '../../utilities/warning/sunset-property'; import deprecatedProperty from '../../utilities/warning/deprecated-property'; import getComponentDocFn from '../../utilities/get-component-doc'; import { MENU_DROPDOWN_TRIGGER } from '../../utilities/constants'; var checkProps = function checkProps() {}; if (process.env.NODE_ENV !== 'production') { checkProps = function checkProps(COMPONENT, props, jsonDoc) { var createDocUrl = getComponentDocFn(jsonDoc); sunsetProperty(COMPONENT, props.forceOpen, 'forceOpen', "Please use `isOpen` instead. It provides a consistent prop that aligns with other componenents. ".concat(createDocUrl('isOpen'))); deprecatedProperty(COMPONENT, props.offset, 'offset', undefined, "The manual setting of positional offset of dialog components has been deemed unreliable. Position logic has been re-written to deliver better and more reliable positioning. Please create an issue if you have an edge case not covered by the built-in logic. ".concat(createDocUrl())); oneOfRequiredProperty(COMPONENT, { options: props.options, children: props.children }, createDocUrl()); if (!props.options) { hasChildrenWithoutDisplayNameOf(COMPONENT, props.children, MENU_DROPDOWN_TRIGGER, createDocUrl('children')); } deprecatedProperty(COMPONENT, props.isInline, 'isInline', 'menuPosition="relative"', createDocUrl('menuPosition')); }; } export default checkProps; //# sourceMappingURL=check-props.js.map