HOME


sh-3ll 1.0
DIR:/proc/self/cwd/bright.medisavehealthcarebd.com/node_modules/tailwindcss/lib/plugins/
Upload File :
Current File : //proc/self/cwd/bright.medisavehealthcarebd.com/node_modules/tailwindcss/lib/plugins/borderColor.js
"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.default = _default;

var _lodash = _interopRequireDefault(require("lodash"));

var _flattenColorPalette = _interopRequireDefault(require("../util/flattenColorPalette"));

var _withAlphaVariable = _interopRequireDefault(require("../util/withAlphaVariable"));

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

function _default() {
  return function ({
    addUtilities,
    e,
    theme,
    variants,
    target,
    corePlugins
  }) {
    const colors = (0, _flattenColorPalette.default)(theme('borderColor'));

    const getProperties = value => {
      if (target('borderColor') === 'ie11') {
        return {
          'border-color': value
        };
      }

      if (corePlugins('borderOpacity')) {
        return (0, _withAlphaVariable.default)({
          color: value,
          property: 'border-color',
          variable: '--border-opacity'
        });
      }

      return {
        'border-color': value
      };
    };

    const utilities = _lodash.default.fromPairs(_lodash.default.map(_lodash.default.omit(colors, 'default'), (value, modifier) => {
      return [`.${e(`border-${modifier}`)}`, getProperties(value)];
    }));

    addUtilities(utilities, variants('borderColor'));
  };
}