@saasmakers/ui 1.0.0 → 1.0.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/app/components/bases/BaseAlert.vue +3 -0
- package/app/components/bases/BaseAvatar.vue +3 -0
- package/app/components/bases/BaseButton.vue +3 -0
- package/app/components/bases/BaseIcon.vue +3 -0
- package/app/components/bases/BaseQuote.vue +3 -0
- package/app/components/bases/BaseTags.vue +5 -0
- package/app/components/bases/BaseText.vue +3 -0
- package/app/components/fields/FieldDays.vue +11 -0
- package/app/components/fields/FieldEmojis.vue +15 -0
- package/app/components/fields/FieldMessage.vue +19 -0
- package/nuxt.config.ts +1 -1
- package/package.json +39 -38
|
@@ -243,6 +243,11 @@ function onUpdateTag(event: FocusEvent | KeyboardEvent, name: string, tagId?: nu
|
|
|
243
243
|
"newTag": "Nouveau tag",
|
|
244
244
|
"showMore": "& {value} autre | & {value} autres"
|
|
245
245
|
},
|
|
246
|
+
"it": {
|
|
247
|
+
"cancel": "Annulla",
|
|
248
|
+
"newTag": "Nuovo tag",
|
|
249
|
+
"showMore": "& {value} altro | & {value} altri"
|
|
250
|
+
},
|
|
246
251
|
"ja": {
|
|
247
252
|
"cancel": "キャンセル",
|
|
248
253
|
"newTag": "新しいタグ",
|
|
@@ -126,6 +126,17 @@ function onUpdateDays(event: MouseEvent, day: number) {
|
|
|
126
126
|
"wednesday": "Mercredi"
|
|
127
127
|
}
|
|
128
128
|
},
|
|
129
|
+
"it": {
|
|
130
|
+
"days": {
|
|
131
|
+
"friday": "Venerdì",
|
|
132
|
+
"monday": "Lunedì",
|
|
133
|
+
"saturday": "Sabato",
|
|
134
|
+
"sunday": "Domenica",
|
|
135
|
+
"thursday": "Giovedì",
|
|
136
|
+
"tuesday": "Martedì",
|
|
137
|
+
"wednesday": "Mercoledì"
|
|
138
|
+
}
|
|
139
|
+
},
|
|
129
140
|
"ja": {
|
|
130
141
|
"days": {
|
|
131
142
|
"friday": "金曜日",
|
|
@@ -165,6 +165,21 @@ function onEmojiClick(event: MouseEvent, emoji?: string) {
|
|
|
165
165
|
},
|
|
166
166
|
"searchEmoji": "Rechercher un emoji (en anglais)"
|
|
167
167
|
},
|
|
168
|
+
"it": {
|
|
169
|
+
"categories": {
|
|
170
|
+
"activity": "Attività",
|
|
171
|
+
"diversity": "Toni della pelle",
|
|
172
|
+
"flags": "Bandiere",
|
|
173
|
+
"food": "Cibo e bevande",
|
|
174
|
+
"nature": "Animali e natura",
|
|
175
|
+
"objects": "Oggetti",
|
|
176
|
+
"people": "Faccine e persone",
|
|
177
|
+
"regional": "Regionali",
|
|
178
|
+
"symbol": "Simboli",
|
|
179
|
+
"travel": "Viaggi e luoghi"
|
|
180
|
+
},
|
|
181
|
+
"searchEmoji": "Cerca un emoji"
|
|
182
|
+
},
|
|
168
183
|
"ja": {
|
|
169
184
|
"categories": {
|
|
170
185
|
"activity": "アクティビティ",
|
|
@@ -193,6 +193,25 @@ const text = computed<BaseTextText>(() => {
|
|
|
193
193
|
"sameAs": "La valeur ne correspond pas à: {field}",
|
|
194
194
|
"url": "La valeur n'est pas une URL valide"
|
|
195
195
|
},
|
|
196
|
+
"it": {
|
|
197
|
+
"alpha": "Il valore accetta solo caratteri alfabetici",
|
|
198
|
+
"alphaNum": "Il valore accetta solo caratteri alfanumerici",
|
|
199
|
+
"between": "Il valore deve essere compreso tra {min} e {max}",
|
|
200
|
+
"decimal": "Il valore accetta solo numeri decimali positivi e negativi",
|
|
201
|
+
"email": "Il valore non è un'email valida",
|
|
202
|
+
"integer": "Il valore accetta solo numeri interi positivi e negativi",
|
|
203
|
+
"invalid": "Il valore non è valido",
|
|
204
|
+
"ipAddress": "Il valore accetta solo un indirizzo IPv4 valido",
|
|
205
|
+
"macAddress": "Il valore accetta solo un indirizzo MAC valido",
|
|
206
|
+
"maxLength": "Il valore è troppo lungo (max: {max})",
|
|
207
|
+
"maxValue": "Valore massimo consentito: {max}",
|
|
208
|
+
"minLength": "Il valore è troppo corto (min: {min})",
|
|
209
|
+
"minValue": "Valore minimo consentito: {min}",
|
|
210
|
+
"numeric": "Il valore accetta solo numeri",
|
|
211
|
+
"required": "È richiesto un valore",
|
|
212
|
+
"sameAs": "Il valore non corrisponde a: {field}",
|
|
213
|
+
"url": "Il valore non è un URL valido"
|
|
214
|
+
},
|
|
196
215
|
"ja": {
|
|
197
216
|
"alpha": "値はアルファベット文字のみを受け入れます",
|
|
198
217
|
"alphaNum": "値はアルファベットと数字のみを受け入れます",
|
package/nuxt.config.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saasmakers/ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Reusable Nuxt UI components for SaaS Makers projects",
|
|
6
6
|
"license": "MIT",
|
|
@@ -17,50 +17,51 @@
|
|
|
17
17
|
"public",
|
|
18
18
|
"uno.config.ts"
|
|
19
19
|
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"dev": "storybook dev -p 3104 --no-open",
|
|
22
|
+
"lint": "eslint . --max-warnings=0",
|
|
23
|
+
"prepare": "nuxi prepare",
|
|
24
|
+
"typecheck": "nuxi typecheck"
|
|
25
|
+
},
|
|
20
26
|
"dependencies": {
|
|
21
|
-
"@capacitor/preferences": "
|
|
22
|
-
"@nuxt/icon": "
|
|
23
|
-
"@nuxt/scripts": "
|
|
24
|
-
"@nuxtjs/color-mode": "
|
|
25
|
-
"@nuxtjs/i18n": "
|
|
26
|
-
"@nuxtjs/plausible": "
|
|
27
|
-
"@nuxtjs/robots": "
|
|
28
|
-
"@nuxtjs/sitemap": "
|
|
29
|
-
"@nuxtjs/storybook": "
|
|
30
|
-
"@pinia/nuxt": "
|
|
31
|
-
"@unhead/vue": "
|
|
32
|
-
"@unocss/nuxt": "
|
|
33
|
-
"@unocss/reset": "
|
|
34
|
-
"@vuelidate/core": "
|
|
35
|
-
"@vuelidate/validators": "
|
|
36
|
-
"@vueuse/components": "
|
|
37
|
-
"@vueuse/core": "
|
|
38
|
-
"@vueuse/nuxt": "
|
|
39
|
-
"chartist": "
|
|
40
|
-
"floating-vue": "
|
|
41
|
-
"motion-v": "
|
|
42
|
-
"numbro": "
|
|
43
|
-
"snarkdown": "
|
|
44
|
-
"storybook": "
|
|
45
|
-
"unocss": "
|
|
46
|
-
"vue": "
|
|
47
|
-
"vue-router": "
|
|
27
|
+
"@capacitor/preferences": "catalog:",
|
|
28
|
+
"@nuxt/icon": "catalog:",
|
|
29
|
+
"@nuxt/scripts": "catalog:",
|
|
30
|
+
"@nuxtjs/color-mode": "catalog:",
|
|
31
|
+
"@nuxtjs/i18n": "catalog:",
|
|
32
|
+
"@nuxtjs/plausible": "catalog:",
|
|
33
|
+
"@nuxtjs/robots": "catalog:",
|
|
34
|
+
"@nuxtjs/sitemap": "catalog:",
|
|
35
|
+
"@nuxtjs/storybook": "catalog:",
|
|
36
|
+
"@pinia/nuxt": "catalog:",
|
|
37
|
+
"@unhead/vue": "catalog:",
|
|
38
|
+
"@unocss/nuxt": "catalog:",
|
|
39
|
+
"@unocss/reset": "catalog:",
|
|
40
|
+
"@vuelidate/core": "catalog:",
|
|
41
|
+
"@vuelidate/validators": "catalog:",
|
|
42
|
+
"@vueuse/components": "catalog:",
|
|
43
|
+
"@vueuse/core": "catalog:",
|
|
44
|
+
"@vueuse/nuxt": "catalog:",
|
|
45
|
+
"chartist": "catalog:",
|
|
46
|
+
"floating-vue": "catalog:",
|
|
47
|
+
"motion-v": "catalog:",
|
|
48
|
+
"numbro": "catalog:",
|
|
49
|
+
"snarkdown": "catalog:",
|
|
50
|
+
"storybook": "catalog:",
|
|
51
|
+
"unocss": "catalog:",
|
|
52
|
+
"vue": "catalog:",
|
|
53
|
+
"vue-router": "catalog:"
|
|
48
54
|
},
|
|
49
55
|
"devDependencies": {
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
56
|
+
"@saasmakers/shared": "workspace:*",
|
|
57
|
+
"nuxt": "catalog:",
|
|
58
|
+
"typescript": "catalog:"
|
|
53
59
|
},
|
|
54
60
|
"peerDependencies": {
|
|
55
61
|
"@saasmakers/shared": "^0.2.0",
|
|
56
|
-
"nuxt": "
|
|
62
|
+
"nuxt": "catalog:"
|
|
57
63
|
},
|
|
58
64
|
"publishConfig": {
|
|
59
65
|
"access": "public"
|
|
60
|
-
},
|
|
61
|
-
"scripts": {
|
|
62
|
-
"dev": "storybook dev -p 3104 --no-open",
|
|
63
|
-
"lint": "eslint . --max-warnings=0",
|
|
64
|
-
"typecheck": "nuxi typecheck"
|
|
65
66
|
}
|
|
66
|
-
}
|
|
67
|
+
}
|