@dargmuesli/nuxt-vio 3.2.0-beta.1 → 3.2.0-beta.2
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.
@@ -7,7 +7,7 @@
|
|
7
7
|
[
|
8
8
|
...(isPrimary
|
9
9
|
? [
|
10
|
-
'border-transparent bg-gray-800 text-text-bright hover:bg-black dark:bg-
|
10
|
+
'border-transparent bg-gray-800 text-text-bright hover:bg-black dark:bg-vio-primary-bg dark:text-vio-primary-text dark:hover:bg-gray-200',
|
11
11
|
]
|
12
12
|
: [
|
13
13
|
'border-gray-300 text-text-dark hover:bg-black/5 dark:border-gray-600 dark:text-text-bright dark:hover:bg-black/30',
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dargmuesli/nuxt-vio",
|
3
|
-
"version": "3.2.0-beta.
|
3
|
+
"version": "3.2.0-beta.2",
|
4
4
|
"type": "module",
|
5
5
|
"publishConfig": {
|
6
6
|
"access": "public"
|
@@ -52,6 +52,7 @@
|
|
52
52
|
"@pinia/nuxt": "0.4.11",
|
53
53
|
"@tailwindcss/forms": "0.5.5",
|
54
54
|
"@tailwindcss/typography": "0.5.9",
|
55
|
+
"@types/cookie": "0.5.1",
|
55
56
|
"@urql/core": "4.1.1",
|
56
57
|
"@urql/devtools": "2.0.3",
|
57
58
|
"@urql/exchange-graphcache": "6.3.2",
|
@@ -59,6 +60,7 @@
|
|
59
60
|
"@vuelidate/core": "2.0.3",
|
60
61
|
"@vuelidate/validators": "2.0.3",
|
61
62
|
"clipboard": "2.0.11",
|
63
|
+
"cookie": "0.5.0",
|
62
64
|
"dayjs": "2.0.0-alpha.4",
|
63
65
|
"is-https": "4.0.0",
|
64
66
|
"jose": "4.14.4",
|
@@ -72,10 +74,8 @@
|
|
72
74
|
"devDependencies": {
|
73
75
|
"@intlify/eslint-plugin-vue-i18n": "3.0.0-next.3",
|
74
76
|
"@nuxtjs/eslint-config-typescript": "12.0.0",
|
75
|
-
"@types/cookie": "0.5.1",
|
76
77
|
"@types/lodash-es": "4.17.8",
|
77
78
|
"@types/marked": "5.0.1",
|
78
|
-
"cookie": "0.5.0",
|
79
79
|
"eslint": "8.47.0",
|
80
80
|
"eslint-config-prettier": "9.0.0",
|
81
81
|
"eslint-plugin-compat": "4.1.4",
|
package/tailwind.config.ts
CHANGED
@@ -98,6 +98,29 @@ export default {
|
|
98
98
|
h6: {
|
99
99
|
...heading(theme),
|
100
100
|
},
|
101
|
+
img: {
|
102
|
+
'&::before': {
|
103
|
+
alignItems: 'center',
|
104
|
+
display: 'flex',
|
105
|
+
height: '100%',
|
106
|
+
justifyContent: 'center',
|
107
|
+
},
|
108
|
+
},
|
109
|
+
table: {
|
110
|
+
width: '100%',
|
111
|
+
},
|
112
|
+
td: {
|
113
|
+
padding: theme('padding.4') + ' ' + theme('padding.6'),
|
114
|
+
whiteSpace: 'nowrap',
|
115
|
+
},
|
116
|
+
th: {
|
117
|
+
padding: theme('padding.3') + ' ' + theme('padding.6'),
|
118
|
+
textAlign: 'left',
|
119
|
+
fontSize: theme('fontSize.xs'),
|
120
|
+
fontWeight: theme('fontWeight.medium'),
|
121
|
+
textTransform: 'uppercase',
|
122
|
+
letterSpacing: theme('letterSpacing.wider'),
|
123
|
+
},
|
101
124
|
})
|
102
125
|
addComponents({
|
103
126
|
'::placeholder': {
|
@@ -186,6 +209,12 @@ export default {
|
|
186
209
|
bright: gray['50'],
|
187
210
|
dark: gray['900'],
|
188
211
|
},
|
212
|
+
vio: {
|
213
|
+
primary: {
|
214
|
+
bg: gray['100'],
|
215
|
+
text: gray['900'],
|
216
|
+
},
|
217
|
+
},
|
189
218
|
},
|
190
219
|
keyframes: {
|
191
220
|
shake: {
|