@economic/taco 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/_virtual/_rollupPluginBabelHelpers.js +1 -2
- package/dist/esm/_virtual/_rollupPluginBabelHelpers.js.map +1 -1
- package/dist/esm/utils/hooks/useDraggable.js +0 -1
- package/dist/esm/utils/hooks/useDraggable.js.map +1 -1
- package/dist/taco.cjs.development.js +1 -3
- package/dist/taco.cjs.development.js.map +1 -1
- package/dist/taco.cjs.production.min.js +1 -1
- package/dist/taco.cjs.production.min.js.map +1 -1
- package/package.json +3 -2
- package/tailwind.config.js +2 -44
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@economic/taco",
|
3
|
-
"version": "1.1.
|
3
|
+
"version": "1.1.3",
|
4
4
|
"description": "> TODO: description",
|
5
5
|
"author": "Matt Daly <matthew.daly@visma.com>",
|
6
6
|
"homepage": "https://github.com/e-conomic/taco#readme",
|
@@ -76,6 +76,7 @@
|
|
76
76
|
"tailwindcss": ">=3"
|
77
77
|
},
|
78
78
|
"devDependencies": {
|
79
|
+
"@economic/taco-tokens": "^1.0.0",
|
79
80
|
"@svgr/cli": "^5.5.0",
|
80
81
|
"@testing-library/dom": "^7.31.0",
|
81
82
|
"@testing-library/jest-dom": "^5.11.4",
|
@@ -128,5 +129,5 @@
|
|
128
129
|
"not ie < 11"
|
129
130
|
]
|
130
131
|
},
|
131
|
-
"gitHead": "
|
132
|
+
"gitHead": "805dd9fdf8fa7a51842b07e69bd846f154b326a8"
|
132
133
|
}
|
package/tailwind.config.js
CHANGED
@@ -1,51 +1,9 @@
|
|
1
|
+
const tokens = require('@economic/taco-tokens').default;
|
1
2
|
const plugin = require('tailwindcss/plugin');
|
2
3
|
|
3
4
|
module.exports = {
|
4
5
|
theme: {
|
5
|
-
colors:
|
6
|
-
transparent: 'transparent',
|
7
|
-
current: 'currentColor',
|
8
|
-
white: '#fff',
|
9
|
-
black: '#1c1c1c',
|
10
|
-
grey: {
|
11
|
-
lightest: '#fafafa',
|
12
|
-
light: '#efefef',
|
13
|
-
DEFAULT: '#ebebeb',
|
14
|
-
dark: '#ddd',
|
15
|
-
darker: '#acacac',
|
16
|
-
darkest: '#595959',
|
17
|
-
},
|
18
|
-
purple: {
|
19
|
-
lightest: '#585c74',
|
20
|
-
light: '#4b4f64',
|
21
|
-
DEFAULT: '#3d4153',
|
22
|
-
dark: '#353a48',
|
23
|
-
},
|
24
|
-
blue: {
|
25
|
-
lightest: '#e5efff',
|
26
|
-
light: '#6ba4ff',
|
27
|
-
DEFAULT: '#0063ff',
|
28
|
-
dark: '#0158e2',
|
29
|
-
},
|
30
|
-
red: {
|
31
|
-
lightest: '#f3cfc5',
|
32
|
-
light: '#e67355',
|
33
|
-
DEFAULT: '#cf3c16',
|
34
|
-
dark: '#b12d0b',
|
35
|
-
},
|
36
|
-
green: {
|
37
|
-
lightest: '#c4e1d7',
|
38
|
-
light: '#5caf93',
|
39
|
-
DEFAULT: '#138760',
|
40
|
-
dark: '#0c5f43',
|
41
|
-
},
|
42
|
-
yellow: {
|
43
|
-
lightest: '#fff1c3',
|
44
|
-
light: '#fddd70',
|
45
|
-
DEFAULT: '#ffc810',
|
46
|
-
dark: '#e89c2e',
|
47
|
-
},
|
48
|
-
},
|
6
|
+
colors: tokens.colors,
|
49
7
|
fontFamily: {
|
50
8
|
display: ['Helvetica, Arial, sans-serif'],
|
51
9
|
mono: ['Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace'],
|