@autoafleveren/ui 0.9.13 → 0.9.16
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 +8 -1
- package/dist/icons.cjs +24 -24
- package/dist/icons.js +6338 -6246
- package/dist/style.css +1 -1
- package/dist/types/components/AppDataTable/AppDataTable.vue.d.ts +11 -2
- package/dist/types/components/AppDataTable/AppDataTableFooter.vue.d.ts +6 -0
- package/dist/types/components/AppSelect/AppSelect.vue.d.ts +9 -0
- package/dist/types/composables/useNavigation/index.d.ts +1 -0
- package/dist/types/icons/HeroPersonWithBgIcon.vue.d.ts +16 -0
- package/dist/types/icons/index.d.ts +1 -0
- package/dist/ui-library.css +1 -1
- package/dist/ui.cjs +12 -12
- package/dist/ui.css +1 -1
- package/dist/ui.js +3906 -3885
- package/package.json +1 -1
|
@@ -117,6 +117,11 @@ module.exports = {
|
|
|
117
117
|
},
|
|
118
118
|
screens,
|
|
119
119
|
extend: {
|
|
120
|
+
fontSize: {
|
|
121
|
+
'sm': ['0.875rem', {
|
|
122
|
+
lineHeight: '1.375rem',
|
|
123
|
+
}],
|
|
124
|
+
},
|
|
120
125
|
spacing: {
|
|
121
126
|
'4.5': '1.2rem',
|
|
122
127
|
18: '4.5rem',
|
|
@@ -126,6 +131,7 @@ module.exports = {
|
|
|
126
131
|
18: '4.5rem',
|
|
127
132
|
},
|
|
128
133
|
width: {
|
|
134
|
+
110: '27.5rem',
|
|
129
135
|
141: '34.375rem',
|
|
130
136
|
},
|
|
131
137
|
borderWidth: {
|
|
@@ -140,7 +146,8 @@ module.exports = {
|
|
|
140
146
|
4: '4px',
|
|
141
147
|
},
|
|
142
148
|
dropShadow: {
|
|
143
|
-
card: '0px 4px
|
|
149
|
+
card: '0px 4px 2px rgba(21, 21, 21, 0.08)',
|
|
150
|
+
cardhighlight: '1px 4px 3px rgba(21, 21, 21, 0.16)',
|
|
144
151
|
},
|
|
145
152
|
transitionProperty: {
|
|
146
153
|
'font': 'font-weight, font-size, line-height',
|