@autoafleveren/ui 0.13.3 → 0.14.1
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 +23 -5
- package/dist/icons.cjs +37 -37
- package/dist/icons.js +3939 -3954
- package/dist/style.css +1 -1
- package/dist/types/components/AppActionBar/AppActionBarItem.vue.d.ts +35 -3
- package/dist/types/components/AppActionBar/index.d.ts +1 -0
- package/dist/types/components/AppAlert/AppAlert.vue.d.ts +1 -0
- package/dist/types/components/AppBackButton/AppBackButton.vue.d.ts +20 -11
- package/dist/types/components/AppCard/AppCard.vue.d.ts +6 -0
- package/dist/types/components/AppContextMenu/AppContextMenu.vue.d.ts +30 -0
- package/dist/types/components/AppContextMenu/ShortcutItem.vue.d.ts +18 -0
- package/dist/types/components/AppDataTable/AppDataTable.vue.d.ts +22 -11
- package/dist/types/components/AppInput/AppInput.vue.d.ts +22 -20
- package/dist/types/components/AppInput/Input.vue.d.ts +7 -8
- package/dist/types/components/AppInput/index.d.ts +1 -1
- package/dist/types/components/AppToggle/AppToggle.vue.d.ts +28 -14
- package/dist/types/components/index.d.ts +1 -0
- package/dist/types/composables/index.d.ts +1 -0
- package/dist/types/composables/useContextMenu/index.d.ts +12 -0
- package/dist/ui.cjs +34 -34
- package/dist/ui.css +1 -1
- package/dist/ui.js +9154 -9025
- package/package.json +13 -12
|
@@ -20,6 +20,29 @@ module.exports = {
|
|
|
20
20
|
'2xl': '1400px',
|
|
21
21
|
},
|
|
22
22
|
},
|
|
23
|
+
fontSize: {
|
|
24
|
+
'2xl': ['1.25rem', {
|
|
25
|
+
lineHeight: '1.75rem',
|
|
26
|
+
}],
|
|
27
|
+
xl: ['1.125rem', {
|
|
28
|
+
lineHeight: '1.75rem',
|
|
29
|
+
}],
|
|
30
|
+
lg: ['1rem', {
|
|
31
|
+
lineHeight: '1.5rem',
|
|
32
|
+
}],
|
|
33
|
+
base: ['0.875rem', {
|
|
34
|
+
lineHeight: '1.375rem',
|
|
35
|
+
}],
|
|
36
|
+
sm: ['0.75rem', {
|
|
37
|
+
lineHeight: '1rem',
|
|
38
|
+
}],
|
|
39
|
+
xs: ['0.625rem', {
|
|
40
|
+
lineHeight: '0.75rem',
|
|
41
|
+
}],
|
|
42
|
+
xxs: ['0.5rem', {
|
|
43
|
+
lineHeight: '0.6rem',
|
|
44
|
+
}],
|
|
45
|
+
},
|
|
23
46
|
fontFamily: {
|
|
24
47
|
sans: 'Inter',
|
|
25
48
|
serif: 'Inter',
|
|
@@ -128,11 +151,6 @@ module.exports = {
|
|
|
128
151
|
},
|
|
129
152
|
screens,
|
|
130
153
|
extend: {
|
|
131
|
-
fontSize: {
|
|
132
|
-
'sm': ['0.875rem', {
|
|
133
|
-
lineHeight: '1.375rem',
|
|
134
|
-
}],
|
|
135
|
-
},
|
|
136
154
|
spacing: {
|
|
137
155
|
'4.5': '1.2rem',
|
|
138
156
|
18: '4.5rem',
|