@autoafleveren/ui 0.13.1 → 0.13.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/eslint.cjs +2 -0
- package/dist/config/tailwind/config.cjs +4 -4
- package/dist/icons.cjs +37 -37
- package/dist/icons.js +7116 -7064
- package/dist/style.css +1 -1
- package/dist/types/components/AppDropdownButton/AppDropdownButton.vue.d.ts +1 -0
- package/dist/types/components/AppInput/AppInput.vue.d.ts +15 -0
- package/dist/types/components/AppInput/Input.vue.d.ts +3 -0
- package/dist/types/components/AppInput/index.d.ts +1 -0
- package/dist/types/components/AppMenu/AppMenu.vue.d.ts +26 -0
- package/dist/types/components/AppMenu/AppMenuItem.vue.d.ts +33 -0
- package/dist/types/components/AppNavigationMenu/NavigationItem.vue.d.ts +2 -0
- package/dist/types/components/AppSection/AppSection.vue.d.ts +27 -0
- package/dist/types/components/AppTable/AppTable.vue.d.ts +9 -0
- package/dist/types/components/index.d.ts +3 -0
- package/dist/types/composables/useLayout/index.d.ts +3 -0
- package/dist/types/icons/index.d.ts +2 -1
- package/dist/ui-library.css +1 -1
- package/dist/ui.cjs +33 -33
- package/dist/ui.css +1 -1
- package/dist/ui.js +7501 -7324
- package/package.json +2 -1
package/dist/config/eslint.cjs
CHANGED
|
@@ -108,6 +108,7 @@ module.exports = {
|
|
|
108
108
|
...typescriptOverride.rules,
|
|
109
109
|
...testOverrideRules,
|
|
110
110
|
'no-promise-executor-return': 'off',
|
|
111
|
+
'import/no-unresolved': 'off',
|
|
111
112
|
'@typescript-eslint/naming-convention': namingConventionsTestFileRule,
|
|
112
113
|
'unicorn/prevent-abbreviations': ['error', {
|
|
113
114
|
checkShorthandProperties: true,
|
|
@@ -188,5 +189,6 @@ module.exports = {
|
|
|
188
189
|
'vue/no-v-text-v-html-on-component': 'off',
|
|
189
190
|
'vue/no-ref-object-destructure': 'off',
|
|
190
191
|
'import/no-cycle': 'off',
|
|
192
|
+
'import/no-unresolved': 'off',
|
|
191
193
|
},
|
|
192
194
|
};
|
|
@@ -28,10 +28,10 @@ module.exports = {
|
|
|
28
28
|
colors: {
|
|
29
29
|
current: 'currentColor',
|
|
30
30
|
transparent: 'transparent',
|
|
31
|
-
primary: 'var(--color-primary)',
|
|
32
|
-
'primary-active': 'var(--color-primary-active)',
|
|
33
|
-
secondary: 'var(--color-secondary)',
|
|
34
|
-
'secondary-active': 'var(--color-secondary-active)',
|
|
31
|
+
primary: 'rgb(var(--color-primary) / <alpha-value>)',
|
|
32
|
+
'primary-active': 'rgb(var(--color-primary-active) / <alpha-value>)',
|
|
33
|
+
secondary: 'rgb(var(--color-secondary) / <alpha-value>)',
|
|
34
|
+
'secondary-active': 'rgb(var(--color-secondary-active) / <alpha-value>)',
|
|
35
35
|
black: {
|
|
36
36
|
black: '#000000',
|
|
37
37
|
DEFAULT: '#1E1E1E',
|