@lotte-innovate/ui-component-test 0.1.65 → 0.1.66

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,6 +6,7 @@ export var classPrefixesByScale = {
6
6
  'hover:bg': [2, 3, 4, 6, 9, 10],
7
7
  'hover:border': [4, 6, 7, 8, 9],
8
8
  'hover:text': [1, 10, 11, 12],
9
+ 'hover:fill': [1, 12],
9
10
  'active:bg': [3, 4, 5, 6, 8, 9, 10],
10
11
  'active:border': [6, 8, 9],
11
12
  'active:text': [10, 11, 12],
@@ -21,7 +21,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
21
21
  import * as lightColors from './lib/color/light';
22
22
  import * as darkColors from './lib/color/dark';
23
23
  import * as alphaColors from './lib/color/alpha';
24
- import { colorOptions, alphaColorOptions } from './lib/color/constants';
24
+ import { colorOptions, alphaColorOptions, darkColorOptions } from './lib/color/constants';
25
25
  import { classPrefixesByScale } from './lib/utils/classPrefixes';
26
26
  var classes = [];
27
27
  var allColorOptions = [colorOptions, alphaColorOptions];
@@ -37,15 +37,12 @@ var generateClasses = function (colorList, mode) {
37
37
  };
38
38
  allColorOptions.forEach(function (options) {
39
39
  classes = classes.concat(generateClasses(options));
40
+ });
41
+ [darkColorOptions].forEach(function (options) {
40
42
  classes = classes.concat(generateClasses(options, 'dark:'));
41
43
  });
42
44
  var config = {
43
- content: [
44
- './src/app/**/*.{js,ts,jsx,tsx,mdx,zip}',
45
- './lib/**/*.{js,ts,jsx,tsx,mdx,zip}',
46
- './src/stories/**/*.{js,ts,jsx,tsx,mdx,zip}',
47
- './src/**/*.{js,ts,jsx,tsx,mdx,zip}',
48
- ],
45
+ content: ['./src/**/*.{js,ts,jsx,tsx,mdx,zip}'],
49
46
  safelist: __spreadArray([], classes, true),
50
47
  theme: {
51
48
  extend: {