@autoafleveren/ui 0.14.1 → 0.14.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/config/tailwind/config.cjs +14 -0
- package/dist/icons.cjs +2 -2
- package/dist/icons.js +81 -81
- package/dist/types/components/AppInput/index.d.ts +1 -1
- package/dist/types/composables/useActionBar/index.d.ts +2 -0
- package/dist/types/composables/useContextMenu/index.d.ts +1 -0
- package/dist/ui.cjs +24 -24
- package/dist/ui.js +5317 -5330
- package/package.json +1 -1
|
@@ -21,6 +21,12 @@ module.exports = {
|
|
|
21
21
|
},
|
|
22
22
|
},
|
|
23
23
|
fontSize: {
|
|
24
|
+
'4xl': ['1.953rem', {
|
|
25
|
+
lineHeight: '2rem',
|
|
26
|
+
}],
|
|
27
|
+
'3xl': ['1.563rem', {
|
|
28
|
+
lineHeight: '2rem',
|
|
29
|
+
}],
|
|
24
30
|
'2xl': ['1.25rem', {
|
|
25
31
|
lineHeight: '1.75rem',
|
|
26
32
|
}],
|
|
@@ -151,6 +157,14 @@ module.exports = {
|
|
|
151
157
|
},
|
|
152
158
|
screens,
|
|
153
159
|
extend: {
|
|
160
|
+
fontSize: {
|
|
161
|
+
'sm': ['0.875rem', {
|
|
162
|
+
lineHeight: '1.375rem',
|
|
163
|
+
}],
|
|
164
|
+
'xxs': ['0.625rem', {
|
|
165
|
+
lineHeight: '0.75rem',
|
|
166
|
+
}],
|
|
167
|
+
},
|
|
154
168
|
spacing: {
|
|
155
169
|
'4.5': '1.2rem',
|
|
156
170
|
18: '4.5rem',
|