@alfadocs/ui-kit 0.20.0 → 0.20.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/dist/_chunks/{alert-DBnawbmf.js → alert-ywPR59NE.js} +14 -1
- package/dist/_chunks/{audio-recorder-DNkQLW1G.js → audio-recorder-D4xM3H5i.js} +2 -2
- package/dist/_chunks/editable-currency-cell-renderer-Dn3-ANF5.js +1932 -0
- package/dist/_chunks/{freemium-paywall-DXc7XlGE.js → freemium-paywall-CM6V1zNf.js} +2 -2
- package/dist/_chunks/grip-vertical-Dlg0_k5C.js +19 -0
- package/dist/_chunks/{patient-shell-Dr64lBp_.js → patient-shell-DavGODt9.js} +2 -2
- package/dist/_chunks/{payment-form-BjkuQeqR.js → payment-form-F7uh0Rqr.js} +2 -2
- package/dist/_chunks/{pdf-viewer-BG_nsFT5.js → pdf-viewer-CuYaVR1I.js} +2 -2
- package/dist/_chunks/{sidebar-BqzlRBvC.js → sidebar-DkyC6GvS.js} +167 -180
- package/dist/_chunks/{warning-stack-CDH9TudY.js → warning-stack-bDicCvxs.js} +2 -2
- package/dist/_chunks/{workflow-map-BeKe23uw.js → workflow-map-BkLglexk.js} +2 -2
- package/dist/agent-catalog.json +1 -1
- package/dist/components/alert/index.js +1 -1
- package/dist/components/audio-recorder/index.js +1 -1
- package/dist/components/data-table/cell-renderers/balance-cell-renderer.d.ts +37 -0
- package/dist/components/data-table/filters/date-range-filter.d.ts +9 -1
- package/dist/components/data-table/filters/select-filter.d.ts +64 -0
- package/dist/components/data-table/filters/typeahead-filter.d.ts +49 -0
- package/dist/components/data-table/index.d.ts +5 -1
- package/dist/components/data-table/index.js +23 -18
- package/dist/components/freemium-paywall/index.js +1 -1
- package/dist/components/payment-form/index.js +1 -1
- package/dist/components/pdf-viewer/index.js +1 -1
- package/dist/components/sidebar/index.js +1 -1
- package/dist/components/warning-stack/index.js +1 -1
- package/dist/components/workflow/index.js +1 -1
- package/dist/i18n/config.js +34 -4
- package/dist/i18n/resources.d.ts +30 -0
- package/dist/index.js +399 -394
- package/dist/locales/de.json +10 -0
- package/dist/locales/en.json +10 -0
- package/dist/locales/it.json +10 -0
- package/dist/patterns/patient-shell/index.js +1 -1
- package/dist/tokens.css +2 -2
- package/package.json +1 -1
- package/dist/_chunks/editable-currency-cell-renderer-CqMs0Y8L.js +0 -1590
package/dist/locales/de.json
CHANGED
|
@@ -366,6 +366,16 @@
|
|
|
366
366
|
"resetFilter": "Zurücksetzen",
|
|
367
367
|
"noRowsToShow": "Keine Zeilen anzuzeigen",
|
|
368
368
|
"selectAll": "Alle auswählen"
|
|
369
|
+
},
|
|
370
|
+
"selectFilter": {
|
|
371
|
+
"all": "Alle",
|
|
372
|
+
"selectedCount": "{{count}} ausgewählt",
|
|
373
|
+
"clear": "Zurücksetzen",
|
|
374
|
+
"apply": "Anwenden"
|
|
375
|
+
},
|
|
376
|
+
"typeaheadFilter": {
|
|
377
|
+
"placeholder": "Suchen …",
|
|
378
|
+
"clear": "Zurücksetzen"
|
|
369
379
|
}
|
|
370
380
|
},
|
|
371
381
|
"emptyState": {
|
package/dist/locales/en.json
CHANGED
|
@@ -392,6 +392,16 @@
|
|
|
392
392
|
"resetFilter": "Reset",
|
|
393
393
|
"noRowsToShow": "No rows to show",
|
|
394
394
|
"selectAll": "Select all"
|
|
395
|
+
},
|
|
396
|
+
"selectFilter": {
|
|
397
|
+
"all": "All",
|
|
398
|
+
"selectedCount": "{{count}} selected",
|
|
399
|
+
"clear": "Clear",
|
|
400
|
+
"apply": "Apply"
|
|
401
|
+
},
|
|
402
|
+
"typeaheadFilter": {
|
|
403
|
+
"placeholder": "Search…",
|
|
404
|
+
"clear": "Clear"
|
|
395
405
|
}
|
|
396
406
|
},
|
|
397
407
|
"emptyState": {
|
package/dist/locales/it.json
CHANGED
|
@@ -385,6 +385,16 @@
|
|
|
385
385
|
"resetFilter": "Reimposta",
|
|
386
386
|
"noRowsToShow": "Nessuna riga da mostrare",
|
|
387
387
|
"selectAll": "Seleziona tutto"
|
|
388
|
+
},
|
|
389
|
+
"selectFilter": {
|
|
390
|
+
"all": "Tutti",
|
|
391
|
+
"selectedCount": "{{count}} selezionati",
|
|
392
|
+
"clear": "Rimuovi",
|
|
393
|
+
"apply": "Applica"
|
|
394
|
+
},
|
|
395
|
+
"typeaheadFilter": {
|
|
396
|
+
"placeholder": "Cerca…",
|
|
397
|
+
"clear": "Rimuovi"
|
|
388
398
|
}
|
|
389
399
|
},
|
|
390
400
|
"emptyState": {
|