@autoafleveren/ui 0.9.27 → 0.10.0

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.
@@ -124,6 +124,7 @@ module.exports = {
124
124
  '@typescript-eslint/no-unsafe-member-access': 'off',
125
125
  '@typescript-eslint/no-floating-promises': 'off',
126
126
  '@typescript-eslint/no-unsafe-call': 'off',
127
+ '@typescript-eslint/no-non-null-assertion': 'off',
127
128
  'vitest/consistent-test-it': 'error',
128
129
  'vitest/no-alias-methods': 'error',
129
130
  'vitest/no-conditional-expect': 'error',
@@ -177,7 +178,7 @@ module.exports = {
177
178
  devDependencies: ["**/tests/**", "**/__tests__/**"],
178
179
  }],
179
180
  'tailwindcss/no-custom-classname': ['error', {
180
- whitelist: ['^app-.+$', 'stroke-3'],
181
+ whitelist: ['^app-.+$', 'stroke-3', 'scrollbar-primary'],
181
182
  }],
182
183
  'vitest/consistent-test-filename': ['error', {
183
184
  pattern: '.*\\.spec\\.[tj]sx?$',
@@ -9,6 +9,17 @@ module.exports = {
9
9
  './App.vue'
10
10
  ],
11
11
  theme: {
12
+ container: {
13
+ center: true,
14
+
15
+ screens: {
16
+ sm: '600px',
17
+ md: '728px',
18
+ lg: '984px',
19
+ xl: '1240px',
20
+ '2xl': '1400px',
21
+ },
22
+ },
12
23
  fontFamily: {
13
24
  sans: 'Inter',
14
25
  serif: 'Inter',
@@ -134,6 +145,10 @@ module.exports = {
134
145
  width: {
135
146
  110: '27.5rem',
136
147
  141: '34.375rem',
148
+ fullPlus8: 'calc(100% + 2rem)',
149
+ },
150
+ maxHeight: {
151
+ 160: '40rem',
137
152
  },
138
153
  borderWidth: {
139
154
  '4.5': '1.2rem',