@alfadocs/ui-kit 0.18.2 → 0.20.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.
- package/dist/_chunks/_commonjsHelpers-DaMA6jEr.js +9 -0
- package/dist/_chunks/{ai-prompt-input-B-w5Rx3V.js → ai-prompt-input-B5MdixzR.js} +2 -2
- package/dist/_chunks/{leo-sidebar-DIsiTju3.js → alia-sidebar-Bof6TlFx.js} +211 -211
- package/dist/_chunks/{chat-message-g3lxpXM_.js → chat-message-ChOnwqf_.js} +5 -5
- package/dist/_chunks/editable-currency-cell-renderer-CqMs0Y8L.js +1590 -0
- package/dist/_chunks/email-input-DvJ_kPKL.js +396 -0
- package/dist/_chunks/exceljs.min-DUJ-5CGx.js +23045 -0
- package/dist/_chunks/file-spreadsheet-zUkY8rJ2.js +25 -0
- package/dist/_chunks/{file-upload-nMh-1jDD.js → file-upload-DxAQprcU.js} +103 -122
- package/dist/_chunks/html2canvas.esm-dgT_1dIT.js +4872 -0
- package/dist/_chunks/{index-CFoBa86t.js → index-BcMWc8W2.js} +2 -2
- package/dist/_chunks/index.es-B8zMZ1wV.js +6694 -0
- package/dist/_chunks/jspdf.es.min-DaapWjR1.js +10007 -0
- package/dist/_chunks/jspdf.plugin.autotable-CSiDNyPn.js +1088 -0
- package/dist/_chunks/{map-view-DVP-Kp9l.js → map-view-CcwycFQX.js} +2 -2
- package/dist/_chunks/{purify.es-DpIUMBYC.js → purify.es-Cm3utOpm.js} +2 -2
- package/dist/_chunks/{rich-text-editor-C7TCIlQO.js → rich-text-editor-J-wAz9eN.js} +22 -22
- package/dist/_chunks/{suggestion-chip-C4Jz0LrM.js → suggestion-chip-C4kxWUIs.js} +2 -2
- package/dist/_chunks/{use-password-requirements-BOgFsoIe.js → use-password-requirements-C9vKBSVn.js} +92 -81
- package/dist/agent-catalog.json +31 -1
- package/dist/components/ai-prompt-input/index.js +1 -1
- package/dist/components/app-frame/app-frame.d.ts +1 -1
- package/dist/components/chat-container/chat-container.d.ts +1 -1
- package/dist/components/chat-message/chat-message.d.ts +1 -1
- package/dist/components/chat-message/index.js +1 -1
- package/dist/components/data-table/cell-renderers/editable-currency-cell-renderer.d.ts +23 -0
- package/dist/components/data-table/cell-renderers/editable-text-cell-renderer.d.ts +11 -0
- package/dist/components/data-table/cell-renderers/image-cell-renderer.d.ts +19 -0
- package/dist/components/data-table/cell-renderers/toggle-cell-renderer.d.ts +15 -3
- package/dist/components/data-table/data-table.d.ts +30 -3
- package/dist/components/data-table/filters/date-range-filter.d.ts +22 -0
- package/dist/components/data-table/index.d.ts +9 -2
- package/dist/components/data-table/index.js +18 -13
- package/dist/components/data-table/toolbar.d.ts +80 -1
- package/dist/components/email-input/email-input.agent.d.ts +13 -0
- package/dist/components/email-input/email-input.d.ts +28 -0
- package/dist/components/email-input/index.d.ts +5 -0
- package/dist/components/email-input/index.js +6 -0
- package/dist/components/file-upload/index.js +1 -1
- package/dist/components/index.d.ts +2 -1
- package/dist/components/map-view/index.js +1 -1
- package/dist/components/password-input/index.js +1 -1
- package/dist/components/password-input/use-password-requirements.d.ts +9 -1
- package/dist/components/rich-text-editor/index.js +1 -1
- package/dist/components/suggestion-chip/index.js +1 -1
- package/dist/i18n/config.js +59 -9
- package/dist/i18n/resources.d.ts +59 -9
- package/dist/index.js +464 -456
- package/dist/locales/de.json +7 -3
- package/dist/locales/en.json +26 -3
- package/dist/locales/it.json +26 -3
- package/dist/patterns/alia-assistant/alia-chat-surface.d.ts +3 -0
- package/dist/patterns/alia-assistant/alia-embedded.d.ts +13 -0
- package/dist/patterns/{leo-assistant/leo-popout.d.ts → alia-assistant/alia-popout.d.ts} +4 -4
- package/dist/patterns/{leo-assistant/leo-sidebar.d.ts → alia-assistant/alia-sidebar.d.ts} +10 -10
- package/dist/patterns/{leo-assistant/leo-types.d.ts → alia-assistant/alia-types.d.ts} +23 -23
- package/dist/patterns/alia-assistant/index.d.ts +20 -0
- package/dist/patterns/alia-assistant/index.js +8 -0
- package/dist/patterns/patient-shell/patient-shell.d.ts +1 -1
- package/dist/safe-html/index.js +6 -6
- package/dist/tokens.css +1 -1
- package/package.json +14 -5
- package/dist/_chunks/_commonjsHelpers-C6fGbg64.js +0 -7
- package/dist/_chunks/balance-cell-renderer-DJB6WDPe.js +0 -1015
- package/dist/patterns/leo-assistant/index.d.ts +0 -20
- package/dist/patterns/leo-assistant/index.js +0 -8
- package/dist/patterns/leo-assistant/leo-chat-surface.d.ts +0 -3
- package/dist/patterns/leo-assistant/leo-embedded.d.ts +0 -13
package/dist/i18n/config.js
CHANGED
|
@@ -98,6 +98,7 @@ const a = {
|
|
|
98
98
|
lowercase: "One lowercase letter",
|
|
99
99
|
digit: "One number",
|
|
100
100
|
symbol: "One symbol",
|
|
101
|
+
noSpaces: "No spaces",
|
|
101
102
|
met: "met",
|
|
102
103
|
unmet: "not yet met"
|
|
103
104
|
}
|
|
@@ -167,6 +168,9 @@ const a = {
|
|
|
167
168
|
popularCountries: "Popular",
|
|
168
169
|
allCountries: "All countries"
|
|
169
170
|
},
|
|
171
|
+
email: {
|
|
172
|
+
invalid: "Invalid email"
|
|
173
|
+
},
|
|
170
174
|
colorPicker: {
|
|
171
175
|
hex: "Hex",
|
|
172
176
|
hue: "Hue",
|
|
@@ -316,6 +320,25 @@ const a = {
|
|
|
316
320
|
print: "Print",
|
|
317
321
|
columnToggle: "Columns",
|
|
318
322
|
bulkAction: "{{count}} selected",
|
|
323
|
+
refresh: "Refresh",
|
|
324
|
+
export: {
|
|
325
|
+
menu: "Export",
|
|
326
|
+
csv: "Export CSV",
|
|
327
|
+
xlsx: "Export Excel",
|
|
328
|
+
pdf: "Export PDF",
|
|
329
|
+
custom: "Export"
|
|
330
|
+
},
|
|
331
|
+
quickSearch: {
|
|
332
|
+
placeholder: "Search…",
|
|
333
|
+
label: "Quick search"
|
|
334
|
+
},
|
|
335
|
+
filterChips: {
|
|
336
|
+
label: "Active filters",
|
|
337
|
+
clearAll: "Clear all"
|
|
338
|
+
},
|
|
339
|
+
facetFilter: {
|
|
340
|
+
label: "Filter"
|
|
341
|
+
},
|
|
319
342
|
expandRow: "Expand row",
|
|
320
343
|
collapseRow: "Collapse row",
|
|
321
344
|
totalRow: "Total",
|
|
@@ -581,8 +604,8 @@ const a = {
|
|
|
581
604
|
}
|
|
582
605
|
}
|
|
583
606
|
},
|
|
584
|
-
|
|
585
|
-
name: "
|
|
607
|
+
alia: {
|
|
608
|
+
name: "Alia",
|
|
586
609
|
greeting: "Hi, how can I help you?",
|
|
587
610
|
subtitle: "Your personal assistant for data analysis",
|
|
588
611
|
newConversation: "New conversation",
|
|
@@ -596,7 +619,7 @@ const a = {
|
|
|
596
619
|
exampleQuestions: "Try asking",
|
|
597
620
|
upgrade: "Upgrade",
|
|
598
621
|
headerLabel: "Assistant header",
|
|
599
|
-
panelLabel: "
|
|
622
|
+
panelLabel: "Alia assistant panel"
|
|
600
623
|
},
|
|
601
624
|
chat: {
|
|
602
625
|
typing: "Assistant is typing",
|
|
@@ -1116,6 +1139,7 @@ const a = {
|
|
|
1116
1139
|
lowercase: "Una lettera minuscola",
|
|
1117
1140
|
digit: "Un numero",
|
|
1118
1141
|
symbol: "Un simbolo",
|
|
1142
|
+
noSpaces: "Nessuno spazio",
|
|
1119
1143
|
met: "soddisfatto",
|
|
1120
1144
|
unmet: "non ancora soddisfatto"
|
|
1121
1145
|
}
|
|
@@ -1185,6 +1209,9 @@ const a = {
|
|
|
1185
1209
|
popularCountries: "Più usati",
|
|
1186
1210
|
allCountries: "Tutti i paesi"
|
|
1187
1211
|
},
|
|
1212
|
+
email: {
|
|
1213
|
+
invalid: "Indirizzo email non valido"
|
|
1214
|
+
},
|
|
1188
1215
|
colorPicker: {
|
|
1189
1216
|
hex: "Hex",
|
|
1190
1217
|
hue: "Tonalità",
|
|
@@ -1334,6 +1361,25 @@ const a = {
|
|
|
1334
1361
|
print: "Stampa",
|
|
1335
1362
|
columnToggle: "Colonne",
|
|
1336
1363
|
bulkAction: "{{count}} selezionati",
|
|
1364
|
+
refresh: "Aggiorna",
|
|
1365
|
+
export: {
|
|
1366
|
+
menu: "Esporta",
|
|
1367
|
+
csv: "Esporta CSV",
|
|
1368
|
+
xlsx: "Esporta Excel",
|
|
1369
|
+
pdf: "Esporta PDF",
|
|
1370
|
+
custom: "Esporta"
|
|
1371
|
+
},
|
|
1372
|
+
quickSearch: {
|
|
1373
|
+
placeholder: "Cerca…",
|
|
1374
|
+
label: "Ricerca rapida"
|
|
1375
|
+
},
|
|
1376
|
+
filterChips: {
|
|
1377
|
+
label: "Filtri attivi",
|
|
1378
|
+
clearAll: "Rimuovi tutti"
|
|
1379
|
+
},
|
|
1380
|
+
facetFilter: {
|
|
1381
|
+
label: "Filtro"
|
|
1382
|
+
},
|
|
1337
1383
|
expandRow: "Espandi riga",
|
|
1338
1384
|
collapseRow: "Comprimi riga",
|
|
1339
1385
|
totalRow: "Totale",
|
|
@@ -1572,8 +1618,8 @@ const a = {
|
|
|
1572
1618
|
}
|
|
1573
1619
|
}
|
|
1574
1620
|
},
|
|
1575
|
-
|
|
1576
|
-
name: "
|
|
1621
|
+
alia: {
|
|
1622
|
+
name: "Alia",
|
|
1577
1623
|
greeting: "Ciao, come posso aiutarti?",
|
|
1578
1624
|
subtitle: "Il tuo assistente personale per l'analisi dei dati",
|
|
1579
1625
|
newConversation: "Nuova conversazione",
|
|
@@ -1587,7 +1633,7 @@ const a = {
|
|
|
1587
1633
|
exampleQuestions: "Prova a chiedere",
|
|
1588
1634
|
upgrade: "Passa al piano superiore",
|
|
1589
1635
|
headerLabel: "Intestazione assistente",
|
|
1590
|
-
panelLabel: "Pannello assistente
|
|
1636
|
+
panelLabel: "Pannello assistente Alia"
|
|
1591
1637
|
},
|
|
1592
1638
|
chat: {
|
|
1593
1639
|
typing: "L'assistente sta scrivendo",
|
|
@@ -2098,6 +2144,7 @@ const a = {
|
|
|
2098
2144
|
lowercase: "Ein Kleinbuchstabe",
|
|
2099
2145
|
digit: "Eine Zahl",
|
|
2100
2146
|
symbol: "Ein Sonderzeichen",
|
|
2147
|
+
noSpaces: "Keine Leerzeichen",
|
|
2101
2148
|
met: "erfüllt",
|
|
2102
2149
|
unmet: "noch nicht erfüllt"
|
|
2103
2150
|
},
|
|
@@ -2173,6 +2220,9 @@ const a = {
|
|
|
2173
2220
|
popularCountries: "Häufig verwendet",
|
|
2174
2221
|
allCountries: "Alle Länder"
|
|
2175
2222
|
},
|
|
2223
|
+
email: {
|
|
2224
|
+
invalid: "Ungültige E-Mail-Adresse"
|
|
2225
|
+
},
|
|
2176
2226
|
colorPicker: {
|
|
2177
2227
|
hex: "Hex",
|
|
2178
2228
|
hue: "Farbton",
|
|
@@ -2560,8 +2610,8 @@ const a = {
|
|
|
2560
2610
|
}
|
|
2561
2611
|
}
|
|
2562
2612
|
},
|
|
2563
|
-
|
|
2564
|
-
name: "
|
|
2613
|
+
alia: {
|
|
2614
|
+
name: "Alia",
|
|
2565
2615
|
greeting: "Hallo, wie kann ich Ihnen helfen?",
|
|
2566
2616
|
subtitle: "Ihr persönlicher Assistent für die Datenanalyse",
|
|
2567
2617
|
newConversation: "Neue Unterhaltung",
|
|
@@ -2575,7 +2625,7 @@ const a = {
|
|
|
2575
2625
|
exampleQuestions: "Fragen Sie zum Beispiel",
|
|
2576
2626
|
upgrade: "Upgrade",
|
|
2577
2627
|
headerLabel: "Assistenten-Kopfzeile",
|
|
2578
|
-
panelLabel: "
|
|
2628
|
+
panelLabel: "Alia-Assistenten-Bereich"
|
|
2579
2629
|
},
|
|
2580
2630
|
chat: {
|
|
2581
2631
|
typing: "Assistent schreibt",
|
package/dist/i18n/resources.d.ts
CHANGED
|
@@ -96,6 +96,7 @@ export declare const enUi: {
|
|
|
96
96
|
readonly lowercase: "One lowercase letter";
|
|
97
97
|
readonly digit: "One number";
|
|
98
98
|
readonly symbol: "One symbol";
|
|
99
|
+
readonly noSpaces: "No spaces";
|
|
99
100
|
readonly met: "met";
|
|
100
101
|
readonly unmet: "not yet met";
|
|
101
102
|
};
|
|
@@ -165,6 +166,9 @@ export declare const enUi: {
|
|
|
165
166
|
readonly popularCountries: "Popular";
|
|
166
167
|
readonly allCountries: "All countries";
|
|
167
168
|
};
|
|
169
|
+
readonly email: {
|
|
170
|
+
readonly invalid: "Invalid email";
|
|
171
|
+
};
|
|
168
172
|
readonly colorPicker: {
|
|
169
173
|
readonly hex: "Hex";
|
|
170
174
|
readonly hue: "Hue";
|
|
@@ -334,6 +338,25 @@ export declare const enUi: {
|
|
|
334
338
|
readonly print: "Print";
|
|
335
339
|
readonly columnToggle: "Columns";
|
|
336
340
|
readonly bulkAction: "{{count}} selected";
|
|
341
|
+
readonly refresh: "Refresh";
|
|
342
|
+
readonly export: {
|
|
343
|
+
readonly menu: "Export";
|
|
344
|
+
readonly csv: "Export CSV";
|
|
345
|
+
readonly xlsx: "Export Excel";
|
|
346
|
+
readonly pdf: "Export PDF";
|
|
347
|
+
readonly custom: "Export";
|
|
348
|
+
};
|
|
349
|
+
readonly quickSearch: {
|
|
350
|
+
readonly placeholder: "Search…";
|
|
351
|
+
readonly label: "Quick search";
|
|
352
|
+
};
|
|
353
|
+
readonly filterChips: {
|
|
354
|
+
readonly label: "Active filters";
|
|
355
|
+
readonly clearAll: "Clear all";
|
|
356
|
+
};
|
|
357
|
+
readonly facetFilter: {
|
|
358
|
+
readonly label: "Filter";
|
|
359
|
+
};
|
|
337
360
|
readonly expandRow: "Expand row";
|
|
338
361
|
readonly collapseRow: "Collapse row";
|
|
339
362
|
readonly totalRow: "Total";
|
|
@@ -596,8 +619,8 @@ export declare const enUi: {
|
|
|
596
619
|
};
|
|
597
620
|
};
|
|
598
621
|
};
|
|
599
|
-
readonly
|
|
600
|
-
readonly name: "
|
|
622
|
+
readonly alia: {
|
|
623
|
+
readonly name: "Alia";
|
|
601
624
|
readonly greeting: "Hi, how can I help you?";
|
|
602
625
|
readonly subtitle: "Your personal assistant for data analysis";
|
|
603
626
|
readonly newConversation: "New conversation";
|
|
@@ -611,7 +634,7 @@ export declare const enUi: {
|
|
|
611
634
|
readonly exampleQuestions: "Try asking";
|
|
612
635
|
readonly upgrade: "Upgrade";
|
|
613
636
|
readonly headerLabel: "Assistant header";
|
|
614
|
-
readonly panelLabel: "
|
|
637
|
+
readonly panelLabel: "Alia assistant panel";
|
|
615
638
|
};
|
|
616
639
|
readonly chat: {
|
|
617
640
|
readonly typing: "Assistant is typing";
|
|
@@ -1130,6 +1153,7 @@ export declare const itUi: {
|
|
|
1130
1153
|
readonly lowercase: "Una lettera minuscola";
|
|
1131
1154
|
readonly digit: "Un numero";
|
|
1132
1155
|
readonly symbol: "Un simbolo";
|
|
1156
|
+
readonly noSpaces: "Nessuno spazio";
|
|
1133
1157
|
readonly met: "soddisfatto";
|
|
1134
1158
|
readonly unmet: "non ancora soddisfatto";
|
|
1135
1159
|
};
|
|
@@ -1199,6 +1223,9 @@ export declare const itUi: {
|
|
|
1199
1223
|
readonly popularCountries: "Più usati";
|
|
1200
1224
|
readonly allCountries: "Tutti i paesi";
|
|
1201
1225
|
};
|
|
1226
|
+
readonly email: {
|
|
1227
|
+
readonly invalid: "Indirizzo email non valido";
|
|
1228
|
+
};
|
|
1202
1229
|
readonly colorPicker: {
|
|
1203
1230
|
readonly hex: "Hex";
|
|
1204
1231
|
readonly hue: "Tonalità";
|
|
@@ -1368,6 +1395,25 @@ export declare const itUi: {
|
|
|
1368
1395
|
readonly print: "Stampa";
|
|
1369
1396
|
readonly columnToggle: "Colonne";
|
|
1370
1397
|
readonly bulkAction: "{{count}} selezionati";
|
|
1398
|
+
readonly refresh: "Aggiorna";
|
|
1399
|
+
readonly export: {
|
|
1400
|
+
readonly menu: "Esporta";
|
|
1401
|
+
readonly csv: "Esporta CSV";
|
|
1402
|
+
readonly xlsx: "Esporta Excel";
|
|
1403
|
+
readonly pdf: "Esporta PDF";
|
|
1404
|
+
readonly custom: "Esporta";
|
|
1405
|
+
};
|
|
1406
|
+
readonly quickSearch: {
|
|
1407
|
+
readonly placeholder: "Cerca…";
|
|
1408
|
+
readonly label: "Ricerca rapida";
|
|
1409
|
+
};
|
|
1410
|
+
readonly filterChips: {
|
|
1411
|
+
readonly label: "Filtri attivi";
|
|
1412
|
+
readonly clearAll: "Rimuovi tutti";
|
|
1413
|
+
};
|
|
1414
|
+
readonly facetFilter: {
|
|
1415
|
+
readonly label: "Filtro";
|
|
1416
|
+
};
|
|
1371
1417
|
readonly expandRow: "Espandi riga";
|
|
1372
1418
|
readonly collapseRow: "Comprimi riga";
|
|
1373
1419
|
readonly totalRow: "Totale";
|
|
@@ -1606,8 +1652,8 @@ export declare const itUi: {
|
|
|
1606
1652
|
};
|
|
1607
1653
|
};
|
|
1608
1654
|
};
|
|
1609
|
-
readonly
|
|
1610
|
-
readonly name: "
|
|
1655
|
+
readonly alia: {
|
|
1656
|
+
readonly name: "Alia";
|
|
1611
1657
|
readonly greeting: "Ciao, come posso aiutarti?";
|
|
1612
1658
|
readonly subtitle: "Il tuo assistente personale per l'analisi dei dati";
|
|
1613
1659
|
readonly newConversation: "Nuova conversazione";
|
|
@@ -1621,7 +1667,7 @@ export declare const itUi: {
|
|
|
1621
1667
|
readonly exampleQuestions: "Prova a chiedere";
|
|
1622
1668
|
readonly upgrade: "Passa al piano superiore";
|
|
1623
1669
|
readonly headerLabel: "Intestazione assistente";
|
|
1624
|
-
readonly panelLabel: "Pannello assistente
|
|
1670
|
+
readonly panelLabel: "Pannello assistente Alia";
|
|
1625
1671
|
};
|
|
1626
1672
|
readonly chat: {
|
|
1627
1673
|
readonly typing: "L'assistente sta scrivendo";
|
|
@@ -2137,6 +2183,7 @@ export declare const deUi: {
|
|
|
2137
2183
|
readonly lowercase: "Ein Kleinbuchstabe";
|
|
2138
2184
|
readonly digit: "Eine Zahl";
|
|
2139
2185
|
readonly symbol: "Ein Sonderzeichen";
|
|
2186
|
+
readonly noSpaces: "Keine Leerzeichen";
|
|
2140
2187
|
readonly met: "erfüllt";
|
|
2141
2188
|
readonly unmet: "noch nicht erfüllt";
|
|
2142
2189
|
};
|
|
@@ -2212,6 +2259,9 @@ export declare const deUi: {
|
|
|
2212
2259
|
readonly popularCountries: "Häufig verwendet";
|
|
2213
2260
|
readonly allCountries: "Alle Länder";
|
|
2214
2261
|
};
|
|
2262
|
+
readonly email: {
|
|
2263
|
+
readonly invalid: "Ungültige E-Mail-Adresse";
|
|
2264
|
+
};
|
|
2215
2265
|
readonly colorPicker: {
|
|
2216
2266
|
readonly hex: "Hex";
|
|
2217
2267
|
readonly hue: "Farbton";
|
|
@@ -2619,8 +2669,8 @@ export declare const deUi: {
|
|
|
2619
2669
|
};
|
|
2620
2670
|
};
|
|
2621
2671
|
};
|
|
2622
|
-
readonly
|
|
2623
|
-
readonly name: "
|
|
2672
|
+
readonly alia: {
|
|
2673
|
+
readonly name: "Alia";
|
|
2624
2674
|
readonly greeting: "Hallo, wie kann ich Ihnen helfen?";
|
|
2625
2675
|
readonly subtitle: "Ihr persönlicher Assistent für die Datenanalyse";
|
|
2626
2676
|
readonly newConversation: "Neue Unterhaltung";
|
|
@@ -2634,7 +2684,7 @@ export declare const deUi: {
|
|
|
2634
2684
|
readonly exampleQuestions: "Fragen Sie zum Beispiel";
|
|
2635
2685
|
readonly upgrade: "Upgrade";
|
|
2636
2686
|
readonly headerLabel: "Assistenten-Kopfzeile";
|
|
2637
|
-
readonly panelLabel: "
|
|
2687
|
+
readonly panelLabel: "Alia-Assistenten-Bereich";
|
|
2638
2688
|
};
|
|
2639
2689
|
readonly chat: {
|
|
2640
2690
|
readonly typing: "Assistent schreibt";
|