@kaizen/components 1.68.3 → 1.68.5

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.
Files changed (88) hide show
  1. package/dist/cjs/Filter/FilterBar/context/FilterBarContext.cjs +13 -3
  2. package/dist/cjs/Filter/FilterBar/context/reducer/filterBarStateReducer.cjs +1 -1
  3. package/dist/cjs/Filter/FilterBar/context/reducer/setupFilterBarState.cjs +4 -0
  4. package/dist/cjs/Filter/FilterBar/context/utils/updateDependentFilters.cjs +1 -1
  5. package/dist/cjs/Filter/FilterBar/subcomponents/ClearAllButton/ClearAllButton.cjs +7 -2
  6. package/dist/cjs/Filter/FilterBar/subcomponents/ClearAllButton/ClearAllButton.module.scss.cjs +2 -1
  7. package/dist/cjs/Filter/FilterDateRangePicker/subcomponents/FilterDateRangePickerField/FilterDateRangePickerField.cjs +3 -0
  8. package/dist/cjs/Tile/subcomponents/GenericTile/GenericTile.cjs +23 -2
  9. package/dist/esm/Filter/FilterBar/context/FilterBarContext.mjs +13 -3
  10. package/dist/esm/Filter/FilterBar/context/reducer/filterBarStateReducer.mjs +1 -1
  11. package/dist/esm/Filter/FilterBar/context/reducer/setupFilterBarState.mjs +4 -0
  12. package/dist/esm/Filter/FilterBar/context/utils/updateDependentFilters.mjs +1 -1
  13. package/dist/esm/Filter/FilterBar/subcomponents/ClearAllButton/ClearAllButton.mjs +6 -2
  14. package/dist/esm/Filter/FilterBar/subcomponents/ClearAllButton/ClearAllButton.module.scss.mjs +2 -1
  15. package/dist/esm/Filter/FilterDateRangePicker/subcomponents/FilterDateRangePickerField/FilterDateRangePickerField.mjs +3 -0
  16. package/dist/esm/Tile/subcomponents/GenericTile/GenericTile.mjs +24 -3
  17. package/dist/styles.css +77 -73
  18. package/dist/types/Filter/FilterBar/context/FilterBarContext.d.ts +1 -0
  19. package/dist/types/Filter/FilterBar/context/types.d.ts +1 -0
  20. package/locales/ar.json +8 -0
  21. package/locales/bg.json +8 -0
  22. package/locales/cs.json +8 -0
  23. package/locales/cy.json +8 -0
  24. package/locales/da.json +8 -0
  25. package/locales/de.json +8 -0
  26. package/locales/el.json +8 -0
  27. package/locales/en-GB.json +8 -0
  28. package/locales/es-419.json +8 -0
  29. package/locales/es.json +8 -0
  30. package/locales/et.json +8 -0
  31. package/locales/fi.json +8 -0
  32. package/locales/fr-CA.json +8 -0
  33. package/locales/fr.json +8 -0
  34. package/locales/he.json +8 -0
  35. package/locales/hi.json +8 -0
  36. package/locales/ht.json +8 -0
  37. package/locales/hu.json +8 -0
  38. package/locales/id.json +8 -0
  39. package/locales/it.json +8 -0
  40. package/locales/ja.json +8 -0
  41. package/locales/km-KH.json +8 -0
  42. package/locales/ko.json +8 -0
  43. package/locales/lt.json +8 -0
  44. package/locales/lv.json +8 -0
  45. package/locales/mi.json +8 -0
  46. package/locales/ms.json +8 -0
  47. package/locales/nb.json +8 -0
  48. package/locales/nl.json +8 -0
  49. package/locales/pl.json +8 -0
  50. package/locales/pt-BR.json +8 -0
  51. package/locales/pt.json +8 -0
  52. package/locales/ro.json +8 -0
  53. package/locales/ru.json +8 -0
  54. package/locales/si-LK.json +8 -0
  55. package/locales/sk.json +8 -0
  56. package/locales/sr.json +8 -0
  57. package/locales/sv.json +8 -0
  58. package/locales/th.json +8 -0
  59. package/locales/tl.json +8 -0
  60. package/locales/tr.json +8 -0
  61. package/locales/uk.json +8 -0
  62. package/locales/vi.json +8 -0
  63. package/locales/zh-TW.json +8 -0
  64. package/locales/zh.json +8 -0
  65. package/package.json +1 -1
  66. package/src/Filter/FilterBar/FilterBar.spec.tsx +0 -64
  67. package/src/Filter/FilterBar/_docs/FilterBar.spec.stories.tsx +249 -0
  68. package/src/Filter/FilterBar/_docs/FilterBar.stickersheet.stories.tsx +1 -1
  69. package/src/Filter/FilterBar/_docs/FilterBar.stories.tsx +1 -1
  70. package/src/Filter/FilterBar/context/FilterBarContext.tsx +17 -5
  71. package/src/Filter/FilterBar/context/reducer/filterBarStateReducer.spec.ts +3 -0
  72. package/src/Filter/FilterBar/context/reducer/filterBarStateReducer.ts +1 -1
  73. package/src/Filter/FilterBar/context/reducer/setupFilterBarState.spec.tsx +40 -0
  74. package/src/Filter/FilterBar/context/reducer/setupFilterBarState.ts +5 -0
  75. package/src/Filter/FilterBar/context/reducer/updateSingleFilter.spec.ts +2 -0
  76. package/src/Filter/FilterBar/context/reducer/updateValues.spec.ts +5 -0
  77. package/src/Filter/FilterBar/context/types.ts +1 -0
  78. package/src/Filter/FilterBar/context/utils/checkShouldUpdateValues.spec.ts +1 -0
  79. package/src/Filter/FilterBar/context/utils/getInactiveFilters.spec.ts +2 -0
  80. package/src/Filter/FilterBar/context/utils/getIsUsableWhenArgs.spec.ts +1 -0
  81. package/src/Filter/FilterBar/context/utils/updateDependentFilters.spec.ts +8 -0
  82. package/src/Filter/FilterBar/context/utils/updateDependentFilters.ts +1 -1
  83. package/src/Filter/FilterBar/subcomponents/ClearAllButton/ClearAllButton.module.scss +4 -0
  84. package/src/Filter/FilterBar/subcomponents/ClearAllButton/ClearAllButton.tsx +5 -2
  85. package/src/Filter/FilterDateRangePicker/subcomponents/FilterDateRangePickerField/FilterDateRangePickerField.tsx +4 -0
  86. package/src/Tile/TileGrid/_docs/TileGrid.stories.tsx +41 -8
  87. package/src/Tile/subcomponents/GenericTile/GenericTile.spec.stories.tsx +58 -0
  88. package/src/Tile/subcomponents/GenericTile/GenericTile.tsx +24 -1
package/locales/cy.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Ewch i'r Hafan"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Gweld mwy o wybodaeth:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Cuddio gwybodaeth:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Gweithredoedd ychwanegol"
package/locales/da.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Gå til forsiden"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Se mere information:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Skjul oplysninger:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Yderligere handlinger"
package/locales/de.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Zur Startseite"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Mehr Informationen anzeigen:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Informationen ausblenden:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Zusätzliche Aktionen"
package/locales/el.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Επιστροφή στην αρχή σελίδα"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Δείτε περισσότερες πληροφορίες:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Κρύψτε πληροφορίες:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Περαιτέρω ενέργειες"
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Go to Home"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "View more information:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Hide information:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Additional actions"
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Ir a Inicio"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Ver más información:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Ocultar información:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Acciones adicionales"
package/locales/es.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Ir a Inicio"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Ver más información:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Ocultar información:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Otras acciones"
package/locales/et.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Avalehele"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Vaata rohkem teavet:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Peida teave:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Täiendavad toimingud"
package/locales/fi.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Siirry Etusivulle"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Katso lisätietoja:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Piilota tiedot:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Lisätoimet"
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Retour à la page d'accueil"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Afficher plus d'informations :"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Masquer les informations :"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Actions supplémentaires"
package/locales/fr.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Retour à la page d'accueil"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Afficher plus d'informations :"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Masquer les informations :"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Actions supplémentaires"
package/locales/he.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "מעבר אל דף הבית"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "עיון במידע נוסף:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "הסתרת מידע:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "פעולות נוספות"
package/locales/hi.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "होम पेज पर जाएं"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "ज़्यादा जानकारी देखें:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "जानकारी छिपाएं:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "अतिरिक्त कार्यवाईयां"
package/locales/ht.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Ale nan paj akèy la"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Gade plis enfòmasyon:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Kache Enfòmasyon:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Desizyon adisyonèl"
package/locales/hu.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Ugrás a kezdőlapra"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "További információk megjelenítése:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Információk elrejtése:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "További műveletek"
package/locales/id.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Pergi ke Beranda"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Lihat informasi lebih lanjut:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Sembunyikan informasi:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Tindakan lain"
package/locales/it.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Vai alla Home"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Visualizza ulteriori informazioni:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Nascondi informazioni:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Azioni aggiuntive"
package/locales/ja.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "ホームに移動"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "詳細情報を見る:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "情報を非表示にする:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "追加のアクション"
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "ទៅកាន់ទំព័រដើម"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "មើលព័ត៌មានបន្ថែម៖"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "លាក់ព័ត៌មាន៖"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "សកម្មភាពបន្ថែម"
package/locales/ko.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "홈으로 이동하기"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "자세한 정보 보기:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "정보 숨기기:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "추가 작업"
package/locales/lt.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Eiti į pagrindinį puslapį"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Žiūrėti daugiau informacijos:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Paslėpti informaciją:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Papildomi veiksmai"
package/locales/lv.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Doties uz sākumlapu"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Skatīt vairāk informācijas:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Paslēpt informāciju:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Papildu darbības"
package/locales/mi.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Go to Home"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Tirohia etahi atu korero:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Huna mōhiohio:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Ngā mahi tāpiri"
package/locales/ms.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Pergi kepada Laman Utama"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Lihat maklumat lanjut:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Sembunyikan maklumat:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Tindakan tambahan"
package/locales/nb.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Gå til Hjem"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Vis mer informasjon:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Skjul informasjon:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Ytterligere handlinger"
package/locales/nl.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Naar startpagina"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Bekijk meer informatie:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Informatie verbergen:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Meer acties"
package/locales/pl.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Przejdź do strony głównej"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Zobacz więcej informacji:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Ukryj informacje:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Dodatkowe działania"
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Acessar página inicial"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Ver mais informações:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Ocultar informações:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Mais ações"
package/locales/pt.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Acessar página inicial"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Ver mais informações:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Ocultar informações:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Mais ações"
package/locales/ro.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Mergeți la pagina principală"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Vedeți mai multe informații:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Ascundeți informațiile:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Acțiuni suplimentare"
package/locales/ru.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Перейти на главную"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Показать дополнительную информацию:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Скрыть информацию:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Дополнительные действия"
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "ගෙදර යන්න"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "වැඩි විස්තර බලන්න:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "තොරතුරු සඟවන්න:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "අතිරේක ක්‍රියාමාර්ග"
package/locales/sk.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Prejsť na Úvod"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Zobraziť viac informácií:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Skryť informácie:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Ďalšie činnosti"
package/locales/sr.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Idite na Početnu stranicu"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Pogledaj više informacija:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Sakrij informacije:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Dodatne radnje"
package/locales/sv.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Gå till startsidan"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Visa mer information:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Dölj information:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Ytterligare åtgärder"
package/locales/th.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "ไปที่หน้าแรก"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "ดูข้อมูลเพิ่มเติม:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "ซ่อนข้อมูล:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "การดำเนินการเพิ่มเติม"
package/locales/tl.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Pumunta sa Home"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Tingnan ang iba pang impormasyon"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Itago ang impormasyon:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Karagdagang mga aksiyon"
package/locales/tr.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Ana Sayfaya Git"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Daha fazla bilgi görüntüleyin:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Bilgileri gizleyin:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Ek eylemler"
package/locales/uk.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Перейти на головну"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Переглянути додаткову інформацію:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Приховати інформацію:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Додаткові дії"