@economic/taco 2.54.5 → 2.54.6

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.
Files changed (2) hide show
  1. package/dist/taco.css +152 -158
  2. package/package.json +11 -3
package/dist/taco.css CHANGED
@@ -1,190 +1,184 @@
1
- @tailwind base;
2
- @tailwind components;
3
- @tailwind utilities;
4
-
5
- @layer base {
6
- *,
7
- *::before,
8
- *::after {
9
- box-sizing: border-box;
10
- }
11
-
12
- html {
13
- @apply font-display h-screen;
14
- -moz-osx-font-smoothing: grayscale;
15
- -webkit-font-smoothing: antialiased;
16
- }
17
-
18
- body {
19
- @apply h-screen bg-white text-sm leading-5 text-black;
20
- }
21
-
22
- blockquote,
23
- dl,
24
- dd,
25
- hr,
26
- figure,
27
- p,
28
- pre,
29
- ol,
30
- ul,
31
- h1,
32
- h2,
33
- h3,
34
- h4,
35
- h5,
36
- h6 {
37
- max-width: 100ch;
38
- }
39
-
40
- blockquote,
41
- dl,
42
- dd,
43
- hr,
44
- figure,
45
- p,
46
- pre,
47
- ol,
48
- ul {
49
- @apply mb-10;
50
- }
51
-
52
- ol ol,
53
- ul ul,
54
- ol ul,
55
- ul ol {
56
- @apply mb-0;
57
- }
1
+ *,
2
+ *::before,
3
+ *::after {
4
+ box-sizing: border-box;
5
+ }
6
+
7
+ html {
8
+ @apply font-display h-screen;
9
+ -moz-osx-font-smoothing: grayscale;
10
+ -webkit-font-smoothing: antialiased;
11
+ }
12
+
13
+ body {
14
+ @apply h-screen bg-white text-sm leading-5 text-black;
15
+ }
16
+
17
+ blockquote,
18
+ dl,
19
+ dd,
20
+ hr,
21
+ figure,
22
+ p,
23
+ pre,
24
+ ol,
25
+ ul,
26
+ h1,
27
+ h2,
28
+ h3,
29
+ h4,
30
+ h5,
31
+ h6 {
32
+ max-width: 100ch;
33
+ }
34
+
35
+ blockquote,
36
+ dl,
37
+ dd,
38
+ hr,
39
+ figure,
40
+ p,
41
+ pre,
42
+ ol,
43
+ ul {
44
+ @apply mb-10;
45
+ }
46
+
47
+ ol ol,
48
+ ul ul,
49
+ ol ul,
50
+ ul ol {
51
+ @apply mb-0;
52
+ }
58
53
 
59
- ul.list-disc,
60
- ul.list-decimal,
61
- ul.list-circle,
62
- ol.list-disc,
63
- ol.list-decimal,
64
- ol.list-circle {
65
- @apply pl-4;
66
- }
54
+ ul.list-disc,
55
+ ul.list-decimal,
56
+ ul.list-circle,
57
+ ol.list-disc,
58
+ ol.list-decimal,
59
+ ol.list-circle {
60
+ @apply pl-4;
61
+ }
67
62
 
68
- dt {
69
- @apply font-bold;
70
- }
63
+ dt {
64
+ @apply font-bold;
65
+ }
71
66
 
72
- blockquote {
73
- @apply pl-8;
74
- }
67
+ blockquote {
68
+ @apply pl-8;
69
+ }
75
70
 
76
- hr {
77
- @apply bg-grey-300 my-5 flex h-px border-none;
78
- }
71
+ hr {
72
+ @apply bg-grey-300 my-5 flex h-px border-none;
73
+ }
79
74
 
80
- h1,
81
- h2,
82
- h3,
83
- h4,
84
- h5,
85
- h6 {
86
- @apply font-normal;
87
- }
75
+ h1,
76
+ h2,
77
+ h3,
78
+ h4,
79
+ h5,
80
+ h6 {
81
+ @apply font-normal;
82
+ }
88
83
 
89
- h1 {
90
- @apply mb-5 text-3xl;
91
- }
84
+ h1 {
85
+ @apply mb-5 text-3xl;
86
+ }
92
87
 
93
- h2 {
94
- @apply mb-2 text-2xl;
95
- }
88
+ h2 {
89
+ @apply mb-2 text-2xl;
90
+ }
96
91
 
97
- h3 {
98
- @apply mb-2 text-xl;
99
- }
92
+ h3 {
93
+ @apply mb-2 text-xl;
94
+ }
100
95
 
101
- h4 {
102
- @apply mb-1 text-base font-bold;
103
- }
96
+ h4 {
97
+ @apply mb-1 text-base font-bold;
98
+ }
104
99
 
105
- h5 {
106
- @apply mb-1 text-sm font-bold;
107
- }
100
+ h5 {
101
+ @apply mb-1 text-sm font-bold;
102
+ }
108
103
 
109
- h6 {
110
- @apply mb-1 text-xs font-bold;
111
- }
104
+ h6 {
105
+ @apply mb-1 text-xs font-bold;
106
+ }
112
107
 
113
- b,
114
- strong {
115
- @apply font-bold;
116
- }
108
+ b,
109
+ strong {
110
+ @apply font-bold;
111
+ }
117
112
 
118
- a {
119
- @apply text-blue-500 no-underline;
120
- }
113
+ a {
114
+ @apply text-blue-500 no-underline;
115
+ }
121
116
 
122
- a:hover,
123
- a:focus {
124
- @apply text-blue-300;
125
- }
117
+ a:hover,
118
+ a:focus {
119
+ @apply text-blue-300;
120
+ }
126
121
 
127
- a:active {
128
- @apply text-blue-700;
129
- }
122
+ a:active {
123
+ @apply text-blue-700;
124
+ }
130
125
 
131
- button::-moz-focus-inner {
132
- @apply border-none;
133
- }
126
+ button::-moz-focus-inner {
127
+ @apply border-none;
128
+ }
134
129
 
135
- input[type='search']::-webkit-search-decoration,
136
- input[type='search']::-webkit-search-cancel-button,
137
- input[type='search']::-webkit-search-results-button,
138
- input[type='search']::-webkit-search-results-decoration {
139
- @apply block cursor-pointer;
140
- }
130
+ input[type='search']::-webkit-search-decoration,
131
+ input[type='search']::-webkit-search-cancel-button,
132
+ input[type='search']::-webkit-search-results-button,
133
+ input[type='search']::-webkit-search-results-decoration {
134
+ @apply block cursor-pointer;
135
+ }
141
136
 
142
- input[type='search']::-webkit-search-cancel-button {
143
- -webkit-appearance: none;
144
- }
137
+ input[type='search']::-webkit-search-cancel-button {
138
+ -webkit-appearance: none;
139
+ }
145
140
 
146
- table.yt-table {
147
- @apply focus:yt-focus flex flex-col focus:rounded-sm;
148
- }
149
- table.yt-table thead.yt-table__head tr.yt-table__row {
150
- @apply border-grey-100 flex h-auto min-h-[2.5rem] w-full select-none border-b-2 border-t-0 font-bold;
151
- }
141
+ table.yt-table {
142
+ @apply focus:yt-focus flex flex-col focus:rounded-sm;
143
+ }
144
+ table.yt-table thead.yt-table__head tr.yt-table__row {
145
+ @apply border-grey-100 flex h-auto min-h-[2.5rem] w-full select-none border-b-2 border-t-0 font-bold;
146
+ }
152
147
 
153
- table.yt-table thead.yt-table__head tr.yt-table__row th.yt-table__cell {
154
- @apply text-grey-700 flex flex-1 justify-center truncate p-2 text-center align-middle hover:text-black;
155
- }
148
+ table.yt-table thead.yt-table__head tr.yt-table__row th.yt-table__cell {
149
+ @apply text-grey-700 flex flex-1 justify-center truncate p-2 text-center align-middle hover:text-black;
150
+ }
156
151
 
157
- table.yt-table tbody.yt-table__body tr.yt-table__row {
158
- @apply border-grey-100 hover:bg-grey-100 flex min-h-[2.5rem] border-b;
159
- }
152
+ table.yt-table tbody.yt-table__body tr.yt-table__row {
153
+ @apply border-grey-100 hover:bg-grey-100 flex min-h-[2.5rem] border-b;
154
+ }
160
155
 
161
- table.yt-table tbody.yt-table__body tr.yt-table__row td.yt-table__cell {
162
- @apply flex-1 truncate p-2 text-center align-middle;
163
- }
156
+ table.yt-table tbody.yt-table__body tr.yt-table__row td.yt-table__cell {
157
+ @apply flex-1 truncate p-2 text-center align-middle;
158
+ }
164
159
 
165
- [aria-hidden] > [data-taco='hanger'] {
166
- @apply invisible;
167
- }
160
+ [aria-hidden] > [data-taco='hanger'] {
161
+ @apply invisible;
162
+ }
168
163
 
169
- /*
164
+ /*
170
165
  * While the dialog is open, all elements are aria-hidden except for the dialog content. This ensures that the
171
166
  * print document contains only the dialog content.
172
167
  */
173
- [aria-hidden='true'] {
174
- @apply print:!hidden;
175
- }
168
+ [aria-hidden='true'] {
169
+ @apply print:!hidden;
170
+ }
176
171
 
177
- .wcag-transparent {
178
- @apply bg-black/[0.08] text-black;
179
- }
172
+ .wcag-transparent {
173
+ @apply bg-black/[0.08] text-black;
174
+ }
180
175
 
181
- @keyframes fade-in {
182
- from {
183
- @apply opacity-0;
184
- }
185
- to {
186
- @apply opacity-100;
187
- }
176
+ @keyframes fade-in {
177
+ from {
178
+ @apply opacity-0;
179
+ }
180
+ to {
181
+ @apply opacity-100;
188
182
  }
189
183
  }
190
184
  .recharts-cartesian-axis line,
package/package.json CHANGED
@@ -1,18 +1,26 @@
1
1
  {
2
2
  "name": "@economic/taco",
3
- "version": "2.54.5",
3
+ "version": "2.54.6",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "./dist/taco.cjs",
7
7
  "module": "./dist/taco.js",
8
8
  "types": "./dist/taco.d.ts",
9
+ "sideEffects": false,
10
+ "exports": {
11
+ ".": {
12
+ "import": "./dist/taco.js",
13
+ "require": "./dist/taco.cjs"
14
+ },
15
+ "./taco.css": "./dist/taco.css",
16
+ "./tailwind.config.js": "./tailwind.config.js"
17
+ },
9
18
  "files": [
10
19
  "dist",
11
20
  "plugins",
12
21
  "tailwind.colors.js",
13
22
  "tailwind.config.js"
14
23
  ],
15
- "sideEffects": false,
16
24
  "scripts": {
17
25
  "build": "vite build",
18
26
  "test": "vitest run",
@@ -99,5 +107,5 @@
99
107
  "not ie < 11"
100
108
  ]
101
109
  },
102
- "gitHead": "c1ed63a7fb89757a812fccbf6edaa036f779ff36"
110
+ "gitHead": "483b0d4a96e3151ddeaa1ff40e38a439af60ab6e"
103
111
  }