@alfadocs/ui-kit 0.16.0 → 0.17.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/benefit-card-DXmrAyfn.js +219 -0
- package/dist/_chunks/{carousel.agent-OTn-kMQg.js → carousel.agent-Xuw9LPZN.js} +14 -7
- package/dist/_chunks/copy-field-BCHAZ8QV.js +298 -0
- package/dist/_chunks/{navigation-menu-Bav1d_wA.js → navigation-menu-DdufF-_4.js} +18 -18
- package/dist/_chunks/{pagination-OQBlnb1H.js → pagination-F1ei4khE.js} +180 -158
- package/dist/_chunks/public-header.agent-BIBQzkeV.js +557 -0
- package/dist/agent-catalog.json +37 -1
- package/dist/components/benefit-card/index.js +1 -1
- package/dist/components/carousel/index.js +1 -1
- package/dist/components/copy-field/copy-field.agent.d.ts +16 -0
- package/dist/components/copy-field/copy-field.d.ts +50 -0
- package/dist/components/copy-field/index.d.ts +5 -0
- package/dist/components/copy-field/index.js +6 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/navigation-menu/index.js +1 -1
- package/dist/components/pagination/index.js +1 -1
- package/dist/components/public-header/index.d.ts +1 -1
- package/dist/components/public-header/index.js +1 -1
- package/dist/components/public-header/public-header.d.ts +36 -1
- package/dist/hooks/use-controllable-state.d.ts +10 -0
- package/dist/hooks/use-copy-to-clipboard.d.ts +45 -0
- package/dist/i18n/config.js +21 -0
- package/dist/i18n/resources.d.ts +21 -0
- package/dist/index.js +458 -455
- package/dist/locales/de.json +7 -0
- package/dist/locales/en.json +7 -0
- package/dist/locales/it.json +7 -0
- package/dist/tokens.css +1 -1
- package/package.json +5 -1
- package/dist/_chunks/benefit-card-Czs0oXdi.js +0 -161
- package/dist/_chunks/public-header.agent-ZLBAQ30j.js +0 -242
package/dist/locales/de.json
CHANGED
|
@@ -47,6 +47,13 @@
|
|
|
47
47
|
"vatNumberLabel": "USt-IdNr.:",
|
|
48
48
|
"phoneLabel": "Telefon:"
|
|
49
49
|
},
|
|
50
|
+
"copyField": {
|
|
51
|
+
"copy": "Kopieren",
|
|
52
|
+
"copied": "Kopiert",
|
|
53
|
+
"valueLabel": "Wert zum Kopieren",
|
|
54
|
+
"copySuccess": "In Zwischenablage kopiert",
|
|
55
|
+
"copyFailed": "Kopieren fehlgeschlagen"
|
|
56
|
+
},
|
|
50
57
|
"inputs": {
|
|
51
58
|
"switch": {
|
|
52
59
|
"on": "An",
|
package/dist/locales/en.json
CHANGED
|
@@ -50,6 +50,13 @@
|
|
|
50
50
|
"vatNumberLabel": "VAT no.:",
|
|
51
51
|
"phoneLabel": "Phone:"
|
|
52
52
|
},
|
|
53
|
+
"copyField": {
|
|
54
|
+
"copy": "Copy",
|
|
55
|
+
"copied": "Copied",
|
|
56
|
+
"valueLabel": "Value to copy",
|
|
57
|
+
"copySuccess": "Copied to clipboard",
|
|
58
|
+
"copyFailed": "Copy failed"
|
|
59
|
+
},
|
|
53
60
|
"inputs": {
|
|
54
61
|
"switch": {
|
|
55
62
|
"on": "On",
|
package/dist/locales/it.json
CHANGED
|
@@ -47,6 +47,13 @@
|
|
|
47
47
|
"vatNumberLabel": "P. IVA:",
|
|
48
48
|
"phoneLabel": "Telefono:"
|
|
49
49
|
},
|
|
50
|
+
"copyField": {
|
|
51
|
+
"copy": "Copia",
|
|
52
|
+
"copied": "Copiato",
|
|
53
|
+
"valueLabel": "Valore da copiare",
|
|
54
|
+
"copySuccess": "Copiato negli appunti",
|
|
55
|
+
"copyFailed": "Copia non riuscita"
|
|
56
|
+
},
|
|
50
57
|
"inputs": {
|
|
51
58
|
"switch": {
|
|
52
59
|
"on": "Attivo",
|