@salesforce/design-system-react
Version:
Salesforce Lightning Design System for React
56 lines (49 loc) • 1.63 kB
JavaScript
/* 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 deprecatedProperty from '../../utilities/warning/deprecated-property';
import deprecatedPropertyValue from '../../utilities/warning/deprecated-property-value';
import isTriggerTabbable from '../../utilities/warning/is-trigger-tabbable';
let checkProps = function () {};
if (process.env.NODE_ENV !== 'production') {
checkProps = function (COMPONENT, props) {
if (props.variant === 'base') {
isTriggerTabbable(COMPONENT, props.children, '');
}
// Deprecated and changed to another property
deprecatedPropertyValue(COMPONENT, {
propAsString: 'variant',
propValue: props.variant,
deprecatedPropValue: 'info',
replacementPropAsString: 'theme',
replacementPropAsValue: 'info',
});
deprecatedPropertyValue(COMPONENT, {
propAsString: 'variant',
propValue: props.variant,
deprecatedPropValue: 'error',
replacementPropAsString: 'theme',
replacementPropAsValue: 'error',
});
deprecatedProperty(
COMPONENT,
props.openByDefault,
'openByDefault',
'isOpen'
);
deprecatedProperty(
COMPONENT,
props.target,
'target',
undefined,
'A new positioning library is being implmented under the hood. Please trigger tooltips to appear on their triggers with `isOpen` and not on other DOM elements.' // eslint-disable-line max-len
);
deprecatedProperty(
COMPONENT,
props.isInline,
'isInline',
'position="relative"'
);
};
}
export default checkProps;