@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.
@@ -116,6 +116,9 @@ async function onClose(event: MouseEvent) {
116
116
  "fr": {
117
117
  "closeThisMessage": "Fermer ce message"
118
118
  },
119
+ "it": {
120
+ "closeThisMessage": "Chiudi questo messaggio"
121
+ },
119
122
  "ja": {
120
123
  "closeThisMessage": "このメッセージを閉じる"
121
124
  },
@@ -167,6 +167,9 @@ function onMouseLeave() {
167
167
  "fr": {
168
168
  "edit": "Modifier"
169
169
  },
170
+ "it": {
171
+ "edit": "Modifica"
172
+ },
170
173
  "ja": {
171
174
  "edit": "編集"
172
175
  },
@@ -152,6 +152,9 @@ function onClick(event: MouseEvent) {
152
152
  "fr": {
153
153
  "confirm": "Confirmer"
154
154
  },
155
+ "it": {
156
+ "confirm": "Conferma"
157
+ },
155
158
  "ja": {
156
159
  "confirm": "確認"
157
160
  },
@@ -174,6 +174,9 @@ function onKeyDown(event: KeyboardEvent) {
174
174
  "fr": {
175
175
  "confirm": "Confirmer"
176
176
  },
177
+ "it": {
178
+ "confirm": "Conferma"
179
+ },
177
180
  "ja": {
178
181
  "confirm": "確認"
179
182
  },
@@ -171,6 +171,9 @@ function onClose(event: MouseEvent) {
171
171
  "fr": {
172
172
  "close": "Fermer"
173
173
  },
174
+ "it": {
175
+ "close": "Chiudi"
176
+ },
174
177
  "ja": {
175
178
  "close": "閉じる"
176
179
  },
@@ -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": "新しいタグ",
@@ -156,6 +156,9 @@ function onShowMore() {
156
156
  "fr": {
157
157
  "showMore": "(afficher)"
158
158
  },
159
+ "it": {
160
+ "showMore": "(mostra altro)"
161
+ },
159
162
  "ja": {
160
163
  "showMore": "(もっと見る)"
161
164
  },
@@ -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
@@ -71,7 +71,7 @@ export default defineNuxtConfig({
71
71
 
72
72
  i18n: {
73
73
  defaultLocale: 'en',
74
- locales: ['de', 'en', 'es', 'fr', 'ko'],
74
+ locales: ['de', 'en', 'es', 'fr', 'it', 'ja', 'ko'],
75
75
  strategy: 'prefix_except_default',
76
76
 
77
77
  detectBrowserLanguage: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saasmakers/ui",
3
- "version": "1.0.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": "8.0.0",
22
- "@nuxt/icon": "2.1.1",
23
- "@nuxt/scripts": "0.13.2",
24
- "@nuxtjs/color-mode": "3.5.2",
25
- "@nuxtjs/i18n": "10.2.1",
26
- "@nuxtjs/plausible": "2.0.1",
27
- "@nuxtjs/robots": "5.6.7",
28
- "@nuxtjs/sitemap": "7.5.0",
29
- "@nuxtjs/storybook": "9.0.1",
30
- "@pinia/nuxt": "0.11.3",
31
- "@unhead/vue": "2.0.19",
32
- "@unocss/nuxt": "66.5.10",
33
- "@unocss/reset": "66.5.10",
34
- "@vuelidate/core": "2.0.3",
35
- "@vuelidate/validators": "2.0.4",
36
- "@vueuse/components": "14.1.0",
37
- "@vueuse/core": "14.1.0",
38
- "@vueuse/nuxt": "14.1.0",
39
- "chartist": "1.5.0",
40
- "floating-vue": "5.2.2",
41
- "motion-v": "1.7.4",
42
- "numbro": "2.5.0",
43
- "snarkdown": "2.0.0",
44
- "storybook": "9.0.5",
45
- "unocss": "66.5.10",
46
- "vue": "3.5.26",
47
- "vue-router": "4.6.4"
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
- "nuxt": "4.2.2",
51
- "typescript": "5.9.3",
52
- "@saasmakers/shared": "0.2.0"
56
+ "@saasmakers/shared": "workspace:*",
57
+ "nuxt": "catalog:",
58
+ "typescript": "catalog:"
53
59
  },
54
60
  "peerDependencies": {
55
61
  "@saasmakers/shared": "^0.2.0",
56
- "nuxt": "4.2.2"
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
+ }