UNPKG

@salesforce/design-system-react

Version:

Salesforce Lightning Design System for React

40 lines (32 loc) 2.37 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 */ /* eslint-disable max-len */ import oneOfRequiredProperty from '../../utilities/warning/one-of-required-property'; import oneOfComponent from '../../utilities/warning/one-of-component'; import deprecatedProperty from '../../utilities/warning/deprecated-property'; import getComponentDocFn from '../../utilities/get-component-doc'; import incompatibleProps from '../../utilities/warning/incompatible-props'; var checkProps = function checkPropsFunction() {}; if (process.env.NODE_ENV !== 'production') { checkProps = function checkPropsFunction(COMPONENT, props, jsonDoc) { var createDocUrl = getComponentDocFn(jsonDoc); oneOfRequiredProperty(COMPONENT, { ariaLabelledby: props.ariaLabelledby, heading: props.heading }, createDocUrl()); if (props.children !== undefined) { if (props.children.length && props.children.length > 1) { oneOfComponent(COMPONENT, props, 'children[0]', ['SLDSButton', 'a', 'button', 'SLDSInnerInput', 'SLDSPopoverTooltip'], " Multiple children of any kind are allowed, but the first child must serve as the trigger component. ".concat(createDocUrl()), props.children[0]); } else { oneOfComponent(COMPONENT, props, 'children', ['SLDSButton', 'a', 'button', 'SLDSInnerInput', 'SLDSPopoverTooltip'], createDocUrl()); } } 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()), props.silenceDeprecatedPropertyWarning || false); deprecatedProperty(COMPONENT, props.isInline, 'isInline', 'position="relative"', createDocUrl('position')); deprecatedProperty(COMPONENT, props.closeButtonAssistiveText, 'closeButtonAssistiveText', "assistiveText['closeButton']", createDocUrl('assistiveText')); incompatibleProps(COMPONENT, props, 'position', ['relative'], 'target', null, "".concat(createDocUrl())); }; } export default checkProps; //# sourceMappingURL=check-props.js.map