@kaizen/components 0.0.0-canary-debug-tab-20251015223744 → 0.0.0-canary-01-rte-strictmode-20251022050526

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 (55) hide show
  1. package/dist/cjs/src/RichTextEditor/utils/core/hooks/useRichTextEditor.cjs +17 -20
  2. package/dist/cjs/src/SingleSelect/subcomponents/ListBox/ListBox.cjs +2 -6
  3. package/dist/cjs/src/Tabs/subcomponents/TabList/TabList.cjs +21 -29
  4. package/dist/esm/src/RichTextEditor/utils/core/hooks/useRichTextEditor.mjs +18 -21
  5. package/dist/esm/src/SingleSelect/subcomponents/ListBox/ListBox.mjs +2 -6
  6. package/dist/esm/src/Tabs/subcomponents/TabList/TabList.mjs +21 -29
  7. package/locales/ar.json +1 -9
  8. package/locales/bg.json +1 -9
  9. package/locales/cs.json +1 -9
  10. package/locales/cy.json +1 -9
  11. package/locales/da.json +1 -9
  12. package/locales/de.json +1 -9
  13. package/locales/el.json +1 -9
  14. package/locales/en-GB.json +1 -9
  15. package/locales/es-419.json +1 -9
  16. package/locales/es.json +1 -9
  17. package/locales/et.json +1 -9
  18. package/locales/fi.json +1 -9
  19. package/locales/fr-CA.json +1 -9
  20. package/locales/fr.json +1 -9
  21. package/locales/he.json +1 -9
  22. package/locales/hi.json +1 -9
  23. package/locales/ht.json +1 -9
  24. package/locales/hu.json +1 -9
  25. package/locales/id.json +1 -9
  26. package/locales/it.json +1 -9
  27. package/locales/ja.json +1 -9
  28. package/locales/km-KH.json +1 -9
  29. package/locales/ko.json +1 -9
  30. package/locales/lt.json +1 -9
  31. package/locales/lv.json +1 -9
  32. package/locales/mi.json +2 -10
  33. package/locales/ms.json +1 -9
  34. package/locales/nb.json +1 -9
  35. package/locales/nl.json +1 -9
  36. package/locales/pl.json +1 -9
  37. package/locales/pt-BR.json +1 -9
  38. package/locales/pt.json +1 -9
  39. package/locales/ro.json +1 -9
  40. package/locales/ru.json +1 -9
  41. package/locales/si-LK.json +1 -9
  42. package/locales/sk.json +1 -9
  43. package/locales/sr.json +1 -9
  44. package/locales/sv.json +1 -9
  45. package/locales/th.json +1 -9
  46. package/locales/tl.json +1 -9
  47. package/locales/tr.json +1 -9
  48. package/locales/uk.json +1 -9
  49. package/locales/vi.json +1 -9
  50. package/locales/zh-TW.json +1 -9
  51. package/locales/zh.json +1 -9
  52. package/package.json +1 -1
  53. package/src/RichTextEditor/utils/core/hooks/useRichTextEditor.ts +16 -20
  54. package/src/SingleSelect/subcomponents/ListBox/ListBox.tsx +2 -2
  55. package/src/Tabs/subcomponents/TabList/TabList.tsx +30 -40
@@ -48,33 +48,30 @@ attributes, options) {
48
48
  // eslint-disable-next-line react-hooks/exhaustive-deps
49
49
  [editableStatusRef]);
50
50
  var editorRef = React.useCallback(function (node) {
51
- if (node !== null) {
52
- var instance = createRichTextEditor.createRichTextEditor({
53
- node: node,
54
- initialEditorState: editorState,
55
- onChange: setEditorState,
56
- isEditable: function () {
57
- return editableStatusRef.current;
58
- },
59
- attributes: attributes
60
- });
61
- destroyEditorRef.current = instance.destroy;
62
- dispatchTransactionRef.current = instance.dispatchTransaction;
51
+ if (node === null) {
52
+ if (destroyEditorRef.current) {
53
+ destroyEditorRef.current();
54
+ destroyEditorRef.current = undefined;
55
+ }
56
+ return;
63
57
  }
58
+ var instance = createRichTextEditor.createRichTextEditor({
59
+ node: node,
60
+ initialEditorState: editorState,
61
+ onChange: setEditorState,
62
+ isEditable: function () {
63
+ return editableStatusRef.current;
64
+ },
65
+ attributes: attributes
66
+ });
67
+ destroyEditorRef.current = instance.destroy;
68
+ dispatchTransactionRef.current = instance.dispatchTransaction;
64
69
  },
65
70
  // Including editorState in the dependencies here will cause an endless
66
71
  // loop as the initialization changes its value
67
72
  // @todo: Fix if possible - avoiding breaking in eslint upgrade
68
73
  // eslint-disable-next-line react-hooks/exhaustive-deps
69
74
  [setEditorState, editableStatusRef]);
70
- // Tear down ProseMirror when the consuming component is unmounted
71
- React.useEffect(function () {
72
- return function () {
73
- if (destroyEditorRef.current) {
74
- destroyEditorRef.current();
75
- }
76
- };
77
- }, [destroyEditorRef]);
78
75
  return [editorRef, editorState, dispatchTransaction, setEditableStatus];
79
76
  };
80
77
  exports.useRichTextEditor = useRichTextEditor;
@@ -60,14 +60,10 @@ var ListBox = function (_a) {
60
60
  var optionKey = getOptionKeyFromCollection(state);
61
61
  var focusToElement = safeQuerySelector("[data-key='".concat(optionKey, "']"));
62
62
  if (focusToElement) {
63
- focusToElement.focus({
64
- preventScroll: true
65
- });
63
+ focusToElement.focus();
66
64
  } else {
67
65
  // If an element is not found, focus on the listbox. This ensures the list can still be navigated to via keyboard if the keys do not align to the data attributes of the list items.
68
- (_a = ref.current) === null || _a === void 0 ? void 0 : _a.focus({
69
- preventScroll: true
70
- });
66
+ (_a = ref.current) === null || _a === void 0 ? void 0 : _a.focus();
71
67
  }
72
68
  }
73
69
  // Only run this effect for checking the first successful render
@@ -63,39 +63,31 @@ var TabList = function (props) {
63
63
  if (!tabs || tabs.length === 0) {
64
64
  return;
65
65
  }
66
- var firstTabObserver = null;
67
- var lastTabObserver = null;
68
- requestAnimationFrame(function () {
69
- var tabList = tabListRef.current;
70
- if (!tabList) {
66
+ var firstTabObserver = new IntersectionObserver(function (entries) {
67
+ if (!entries[0].isIntersecting) {
68
+ setLeftArrowEnabled(true);
71
69
  return;
72
70
  }
73
- firstTabObserver = new IntersectionObserver(function (entries) {
74
- if (!entries[0].isIntersecting) {
75
- setLeftArrowEnabled(true);
76
- return;
77
- }
78
- setLeftArrowEnabled(false);
79
- }, {
80
- threshold: 0.8,
81
- root: containerElement
82
- });
83
- firstTabObserver.observe(isRTL$1 ? tabs[tabs.length - 1] : tabs[0]);
84
- lastTabObserver = new IntersectionObserver(function (entries) {
85
- if (!entries[0].isIntersecting) {
86
- setRightArrowEnabled(true);
87
- return;
88
- }
89
- setRightArrowEnabled(false);
90
- }, {
91
- threshold: 0.8,
92
- root: containerElement
93
- });
94
- lastTabObserver.observe(isRTL$1 ? tabs[0] : tabs[tabs.length - 1]);
71
+ setLeftArrowEnabled(false);
72
+ }, {
73
+ threshold: 0.8,
74
+ root: containerElement
95
75
  });
76
+ firstTabObserver.observe(isRTL$1 ? tabs[tabs.length - 1] : tabs[0]);
77
+ var lastTabObserver = new IntersectionObserver(function (entries) {
78
+ if (!entries[0].isIntersecting) {
79
+ setRightArrowEnabled(true);
80
+ return;
81
+ }
82
+ setRightArrowEnabled(false);
83
+ }, {
84
+ threshold: 0.8,
85
+ root: containerElement
86
+ });
87
+ lastTabObserver.observe(isRTL$1 ? tabs[0] : tabs[tabs.length - 1]);
96
88
  return function () {
97
- firstTabObserver === null || firstTabObserver === void 0 ? void 0 : firstTabObserver.disconnect();
98
- lastTabObserver === null || lastTabObserver === void 0 ? void 0 : lastTabObserver.disconnect();
89
+ firstTabObserver.disconnect();
90
+ lastTabObserver.disconnect();
99
91
  };
100
92
  }, [isDocumentReady, containerElement, isRTL$1, tabListContext === null || tabListContext === void 0 ? void 0 : tabListContext.collection.size]);
101
93
  React.useEffect(function () {
@@ -1,5 +1,5 @@
1
1
  import { __assign } from 'tslib';
2
- import { useState, useRef, useCallback, useEffect } from 'react';
2
+ import { useState, useRef, useCallback } from 'react';
3
3
  import { createRichTextEditor } from '../createRichTextEditor.mjs';
4
4
 
5
5
  /**
@@ -46,33 +46,30 @@ attributes, options) {
46
46
  // eslint-disable-next-line react-hooks/exhaustive-deps
47
47
  [editableStatusRef]);
48
48
  var editorRef = useCallback(function (node) {
49
- if (node !== null) {
50
- var instance = createRichTextEditor({
51
- node: node,
52
- initialEditorState: editorState,
53
- onChange: setEditorState,
54
- isEditable: function () {
55
- return editableStatusRef.current;
56
- },
57
- attributes: attributes
58
- });
59
- destroyEditorRef.current = instance.destroy;
60
- dispatchTransactionRef.current = instance.dispatchTransaction;
49
+ if (node === null) {
50
+ if (destroyEditorRef.current) {
51
+ destroyEditorRef.current();
52
+ destroyEditorRef.current = undefined;
53
+ }
54
+ return;
61
55
  }
56
+ var instance = createRichTextEditor({
57
+ node: node,
58
+ initialEditorState: editorState,
59
+ onChange: setEditorState,
60
+ isEditable: function () {
61
+ return editableStatusRef.current;
62
+ },
63
+ attributes: attributes
64
+ });
65
+ destroyEditorRef.current = instance.destroy;
66
+ dispatchTransactionRef.current = instance.dispatchTransaction;
62
67
  },
63
68
  // Including editorState in the dependencies here will cause an endless
64
69
  // loop as the initialization changes its value
65
70
  // @todo: Fix if possible - avoiding breaking in eslint upgrade
66
71
  // eslint-disable-next-line react-hooks/exhaustive-deps
67
72
  [setEditorState, editableStatusRef]);
68
- // Tear down ProseMirror when the consuming component is unmounted
69
- useEffect(function () {
70
- return function () {
71
- if (destroyEditorRef.current) {
72
- destroyEditorRef.current();
73
- }
74
- };
75
- }, [destroyEditorRef]);
76
73
  return [editorRef, editorState, dispatchTransaction, setEditableStatus];
77
74
  };
78
75
  export { useRichTextEditor };
@@ -52,14 +52,10 @@ const ListBox = /*#__PURE__*/function () {
52
52
  var optionKey = getOptionKeyFromCollection(state);
53
53
  var focusToElement = safeQuerySelector("[data-key='".concat(optionKey, "']"));
54
54
  if (focusToElement) {
55
- focusToElement.focus({
56
- preventScroll: true
57
- });
55
+ focusToElement.focus();
58
56
  } else {
59
57
  // If an element is not found, focus on the listbox. This ensures the list can still be navigated to via keyboard if the keys do not align to the data attributes of the list items.
60
- (_a = ref.current) === null || _a === void 0 ? void 0 : _a.focus({
61
- preventScroll: true
62
- });
58
+ (_a = ref.current) === null || _a === void 0 ? void 0 : _a.focus();
63
59
  }
64
60
  }
65
61
  // Only run this effect for checking the first successful render
@@ -54,39 +54,31 @@ var TabList = function (props) {
54
54
  if (!tabs || tabs.length === 0) {
55
55
  return;
56
56
  }
57
- var firstTabObserver = null;
58
- var lastTabObserver = null;
59
- requestAnimationFrame(function () {
60
- var tabList = tabListRef.current;
61
- if (!tabList) {
57
+ var firstTabObserver = new IntersectionObserver(function (entries) {
58
+ if (!entries[0].isIntersecting) {
59
+ setLeftArrowEnabled(true);
62
60
  return;
63
61
  }
64
- firstTabObserver = new IntersectionObserver(function (entries) {
65
- if (!entries[0].isIntersecting) {
66
- setLeftArrowEnabled(true);
67
- return;
68
- }
69
- setLeftArrowEnabled(false);
70
- }, {
71
- threshold: 0.8,
72
- root: containerElement
73
- });
74
- firstTabObserver.observe(isRTL$1 ? tabs[tabs.length - 1] : tabs[0]);
75
- lastTabObserver = new IntersectionObserver(function (entries) {
76
- if (!entries[0].isIntersecting) {
77
- setRightArrowEnabled(true);
78
- return;
79
- }
80
- setRightArrowEnabled(false);
81
- }, {
82
- threshold: 0.8,
83
- root: containerElement
84
- });
85
- lastTabObserver.observe(isRTL$1 ? tabs[0] : tabs[tabs.length - 1]);
62
+ setLeftArrowEnabled(false);
63
+ }, {
64
+ threshold: 0.8,
65
+ root: containerElement
86
66
  });
67
+ firstTabObserver.observe(isRTL$1 ? tabs[tabs.length - 1] : tabs[0]);
68
+ var lastTabObserver = new IntersectionObserver(function (entries) {
69
+ if (!entries[0].isIntersecting) {
70
+ setRightArrowEnabled(true);
71
+ return;
72
+ }
73
+ setRightArrowEnabled(false);
74
+ }, {
75
+ threshold: 0.8,
76
+ root: containerElement
77
+ });
78
+ lastTabObserver.observe(isRTL$1 ? tabs[0] : tabs[tabs.length - 1]);
87
79
  return function () {
88
- firstTabObserver === null || firstTabObserver === void 0 ? void 0 : firstTabObserver.disconnect();
89
- lastTabObserver === null || lastTabObserver === void 0 ? void 0 : lastTabObserver.disconnect();
80
+ firstTabObserver.disconnect();
81
+ lastTabObserver.disconnect();
90
82
  };
91
83
  }, [isDocumentReady, containerElement, isRTL$1, tabListContext === null || tabListContext === void 0 ? void 0 : tabListContext.collection.size]);
92
84
  useEffect(function () {
package/locales/ar.json CHANGED
@@ -184,16 +184,8 @@
184
184
  "description" : "Prompts user to interact with button to hide information",
185
185
  "message" : "إخفاء المعلومات:"
186
186
  },
187
- "singleSelect.chevronButton" : {
188
- "description" : "Aria label text for the SingleSelect button to open and close suggestions list",
189
- "message" : "عرض الاقتراحات لـ {field}"
190
- },
191
- "singleSelect.clearButtonAlt" : {
192
- "description" : "Alt text for the clear selection button",
193
- "message" : "محو تحديد {field}"
194
- },
195
187
  "splitButton.dropdownButton.label" : {
196
188
  "description" : "Label for a dropdown menu holding additional actions",
197
189
  "message" : "إجراءات إضافية"
198
190
  }
199
- }
191
+ }
package/locales/bg.json CHANGED
@@ -184,16 +184,8 @@
184
184
  "description" : "Prompts user to interact with button to hide information",
185
185
  "message" : "Скриване на информация:"
186
186
  },
187
- "singleSelect.chevronButton" : {
188
- "description" : "Aria label text for the SingleSelect button to open and close suggestions list",
189
- "message" : "Покажи предложения за {field}"
190
- },
191
- "singleSelect.clearButtonAlt" : {
192
- "description" : "Alt text for the clear selection button",
193
- "message" : "Изчисти избора {field}"
194
- },
195
187
  "splitButton.dropdownButton.label" : {
196
188
  "description" : "Label for a dropdown menu holding additional actions",
197
189
  "message" : "Допълнителни действия"
198
190
  }
199
- }
191
+ }
package/locales/cs.json CHANGED
@@ -184,16 +184,8 @@
184
184
  "description" : "Prompts user to interact with button to hide information",
185
185
  "message" : "Skrýt informace:"
186
186
  },
187
- "singleSelect.chevronButton" : {
188
- "description" : "Aria label text for the SingleSelect button to open and close suggestions list",
189
- "message" : "Zobrazit návrhy pro pole {field}"
190
- },
191
- "singleSelect.clearButtonAlt" : {
192
- "description" : "Alt text for the clear selection button",
193
- "message" : "Zrušit výběr pole {field}"
194
- },
195
187
  "splitButton.dropdownButton.label" : {
196
188
  "description" : "Label for a dropdown menu holding additional actions",
197
189
  "message" : "Další akce"
198
190
  }
199
- }
191
+ }
package/locales/cy.json CHANGED
@@ -184,16 +184,8 @@
184
184
  "description" : "Prompts user to interact with button to hide information",
185
185
  "message" : "Cuddio gwybodaeth:"
186
186
  },
187
- "singleSelect.chevronButton" : {
188
- "description" : "Aria label text for the SingleSelect button to open and close suggestions list",
189
- "message" : "Dangos awgrymiadau ar gyfer {field}"
190
- },
191
- "singleSelect.clearButtonAlt" : {
192
- "description" : "Alt text for the clear selection button",
193
- "message" : "Clirio dewis {field}"
194
- },
195
187
  "splitButton.dropdownButton.label" : {
196
188
  "description" : "Label for a dropdown menu holding additional actions",
197
189
  "message" : "Gweithredoedd ychwanegol"
198
190
  }
199
- }
191
+ }
package/locales/da.json CHANGED
@@ -184,16 +184,8 @@
184
184
  "description" : "Prompts user to interact with button to hide information",
185
185
  "message" : "Skjul oplysninger:"
186
186
  },
187
- "singleSelect.chevronButton" : {
188
- "description" : "Aria label text for the SingleSelect button to open and close suggestions list",
189
- "message" : "Vis forslag for {field}"
190
- },
191
- "singleSelect.clearButtonAlt" : {
192
- "description" : "Alt text for the clear selection button",
193
- "message" : "Ryd {field} valg"
194
- },
195
187
  "splitButton.dropdownButton.label" : {
196
188
  "description" : "Label for a dropdown menu holding additional actions",
197
189
  "message" : "Yderligere handlinger"
198
190
  }
199
- }
191
+ }
package/locales/de.json CHANGED
@@ -184,16 +184,8 @@
184
184
  "description" : "Prompts user to interact with button to hide information",
185
185
  "message" : "Informationen ausblenden:"
186
186
  },
187
- "singleSelect.chevronButton" : {
188
- "description" : "Aria label text for the SingleSelect button to open and close suggestions list",
189
- "message" : "Vorschläge für {field} anzeigen"
190
- },
191
- "singleSelect.clearButtonAlt" : {
192
- "description" : "Alt text for the clear selection button",
193
- "message" : "Auswahl für {field} löschen"
194
- },
195
187
  "splitButton.dropdownButton.label" : {
196
188
  "description" : "Label for a dropdown menu holding additional actions",
197
189
  "message" : "Zusätzliche Maßnahmen"
198
190
  }
199
- }
191
+ }
package/locales/el.json CHANGED
@@ -184,16 +184,8 @@
184
184
  "description" : "Prompts user to interact with button to hide information",
185
185
  "message" : "Κρύψτε πληροφορίες:"
186
186
  },
187
- "singleSelect.chevronButton" : {
188
- "description" : "Aria label text for the SingleSelect button to open and close suggestions list",
189
- "message" : "Εμφάνιση προτάσεων για το πεδίο \"{field}\""
190
- },
191
- "singleSelect.clearButtonAlt" : {
192
- "description" : "Alt text for the clear selection button",
193
- "message" : "Διαγραφή επιλογής πεδίου \"{field}\""
194
- },
195
187
  "splitButton.dropdownButton.label" : {
196
188
  "description" : "Label for a dropdown menu holding additional actions",
197
189
  "message" : "Περαιτέρω ενέργειες"
198
190
  }
199
- }
191
+ }
@@ -184,16 +184,8 @@
184
184
  "description" : "Prompts user to interact with button to hide information",
185
185
  "message" : "Hide information:"
186
186
  },
187
- "singleSelect.chevronButton" : {
188
- "description" : "Aria label text for the SingleSelect button to open and close suggestions list",
189
- "message" : "Show suggestions for {field}"
190
- },
191
- "singleSelect.clearButtonAlt" : {
192
- "description" : "Alt text for the clear selection button",
193
- "message" : "Clear {field} selection"
194
- },
195
187
  "splitButton.dropdownButton.label" : {
196
188
  "description" : "Label for a dropdown menu holding additional actions",
197
189
  "message" : "Additional actions"
198
190
  }
199
- }
191
+ }
@@ -184,16 +184,8 @@
184
184
  "description" : "Prompts user to interact with button to hide information",
185
185
  "message" : "Ocultar información:"
186
186
  },
187
- "singleSelect.chevronButton" : {
188
- "description" : "Aria label text for the SingleSelect button to open and close suggestions list",
189
- "message" : "Mostrar sugerencias para {field}"
190
- },
191
- "singleSelect.clearButtonAlt" : {
192
- "description" : "Alt text for the clear selection button",
193
- "message" : "Borrar la selección de {field}"
194
- },
195
187
  "splitButton.dropdownButton.label" : {
196
188
  "description" : "Label for a dropdown menu holding additional actions",
197
189
  "message" : "Acciones adicionales"
198
190
  }
199
- }
191
+ }
package/locales/es.json CHANGED
@@ -184,16 +184,8 @@
184
184
  "description" : "Prompts user to interact with button to hide information",
185
185
  "message" : "Ocultar información:"
186
186
  },
187
- "singleSelect.chevronButton" : {
188
- "description" : "Aria label text for the SingleSelect button to open and close suggestions list",
189
- "message" : "Mostrar sugerencias para {field}"
190
- },
191
- "singleSelect.clearButtonAlt" : {
192
- "description" : "Alt text for the clear selection button",
193
- "message" : "Borrar la selección {field}"
194
- },
195
187
  "splitButton.dropdownButton.label" : {
196
188
  "description" : "Label for a dropdown menu holding additional actions",
197
189
  "message" : "Otras acciones"
198
190
  }
199
- }
191
+ }
package/locales/et.json CHANGED
@@ -184,16 +184,8 @@
184
184
  "description" : "Prompts user to interact with button to hide information",
185
185
  "message" : "Peida teave:"
186
186
  },
187
- "singleSelect.chevronButton" : {
188
- "description" : "Aria label text for the SingleSelect button to open and close suggestions list",
189
- "message" : "Näita ettepanekuid {field}"
190
- },
191
- "singleSelect.clearButtonAlt" : {
192
- "description" : "Alt text for the clear selection button",
193
- "message" : "Tühjenda {field} valik"
194
- },
195
187
  "splitButton.dropdownButton.label" : {
196
188
  "description" : "Label for a dropdown menu holding additional actions",
197
189
  "message" : "Täiendavad toimingud"
198
190
  }
199
- }
191
+ }
package/locales/fi.json CHANGED
@@ -184,16 +184,8 @@
184
184
  "description" : "Prompts user to interact with button to hide information",
185
185
  "message" : "Piilota tiedot:"
186
186
  },
187
- "singleSelect.chevronButton" : {
188
- "description" : "Aria label text for the SingleSelect button to open and close suggestions list",
189
- "message" : "Näytä ehdotuksia kohteelle {field}"
190
- },
191
- "singleSelect.clearButtonAlt" : {
192
- "description" : "Alt text for the clear selection button",
193
- "message" : "Tyhjennä {field} valinta"
194
- },
195
187
  "splitButton.dropdownButton.label" : {
196
188
  "description" : "Label for a dropdown menu holding additional actions",
197
189
  "message" : "Lisätoimet"
198
190
  }
199
- }
191
+ }
@@ -184,16 +184,8 @@
184
184
  "description" : "Prompts user to interact with button to hide information",
185
185
  "message" : "Masquer les informations :"
186
186
  },
187
- "singleSelect.chevronButton" : {
188
- "description" : "Aria label text for the SingleSelect button to open and close suggestions list",
189
- "message" : "Afficher les suggestions pour {field}"
190
- },
191
- "singleSelect.clearButtonAlt" : {
192
- "description" : "Alt text for the clear selection button",
193
- "message" : "Effacer la sélection {field}"
194
- },
195
187
  "splitButton.dropdownButton.label" : {
196
188
  "description" : "Label for a dropdown menu holding additional actions",
197
189
  "message" : "Actions supplémentaires"
198
190
  }
199
- }
191
+ }
package/locales/fr.json CHANGED
@@ -184,16 +184,8 @@
184
184
  "description" : "Prompts user to interact with button to hide information",
185
185
  "message" : "Masquer les informations :"
186
186
  },
187
- "singleSelect.chevronButton" : {
188
- "description" : "Aria label text for the SingleSelect button to open and close suggestions list",
189
- "message" : "Afficher les suggestions pour {field}"
190
- },
191
- "singleSelect.clearButtonAlt" : {
192
- "description" : "Alt text for the clear selection button",
193
- "message" : "Effacer la sélection {field}"
194
- },
195
187
  "splitButton.dropdownButton.label" : {
196
188
  "description" : "Label for a dropdown menu holding additional actions",
197
189
  "message" : "Actions supplémentaires"
198
190
  }
199
- }
191
+ }
package/locales/he.json CHANGED
@@ -184,16 +184,8 @@
184
184
  "description" : "Prompts user to interact with button to hide information",
185
185
  "message" : "הסתרת מידע:"
186
186
  },
187
- "singleSelect.chevronButton" : {
188
- "description" : "Aria label text for the SingleSelect button to open and close suggestions list",
189
- "message" : "הצגת הצעות עבור {field}"
190
- },
191
- "singleSelect.clearButtonAlt" : {
192
- "description" : "Alt text for the clear selection button",
193
- "message" : "ניקוי הבחירה {field}"
194
- },
195
187
  "splitButton.dropdownButton.label" : {
196
188
  "description" : "Label for a dropdown menu holding additional actions",
197
189
  "message" : "פעולות נוספות"
198
190
  }
199
- }
191
+ }
package/locales/hi.json CHANGED
@@ -184,16 +184,8 @@
184
184
  "description" : "Prompts user to interact with button to hide information",
185
185
  "message" : "जानकारी छिपाएं:"
186
186
  },
187
- "singleSelect.chevronButton" : {
188
- "description" : "Aria label text for the SingleSelect button to open and close suggestions list",
189
- "message" : "{field} के लिए सुझाव दिखाएँ"
190
- },
191
- "singleSelect.clearButtonAlt" : {
192
- "description" : "Alt text for the clear selection button",
193
- "message" : "{field} चयन हटाएँ"
194
- },
195
187
  "splitButton.dropdownButton.label" : {
196
188
  "description" : "Label for a dropdown menu holding additional actions",
197
189
  "message" : "अतिरिक्त कार्यवाईयां"
198
190
  }
199
- }
191
+ }
package/locales/ht.json CHANGED
@@ -184,16 +184,8 @@
184
184
  "description" : "Prompts user to interact with button to hide information",
185
185
  "message" : "Kache Enfòmasyon:"
186
186
  },
187
- "singleSelect.chevronButton" : {
188
- "description" : "Aria label text for the SingleSelect button to open and close suggestions list",
189
- "message" : "Afiche sijesyon pou {field}"
190
- },
191
- "singleSelect.clearButtonAlt" : {
192
- "description" : "Alt text for the clear selection button",
193
- "message" : "Efase seleksyon {field}"
194
- },
195
187
  "splitButton.dropdownButton.label" : {
196
188
  "description" : "Label for a dropdown menu holding additional actions",
197
189
  "message" : "Desizyon adisyonèl"
198
190
  }
199
- }
191
+ }
package/locales/hu.json CHANGED
@@ -184,16 +184,8 @@
184
184
  "description" : "Prompts user to interact with button to hide information",
185
185
  "message" : "Információk elrejtése:"
186
186
  },
187
- "singleSelect.chevronButton" : {
188
- "description" : "Aria label text for the SingleSelect button to open and close suggestions list",
189
- "message" : "Javaslatok megjelenítése a következőhöz: {field}"
190
- },
191
- "singleSelect.clearButtonAlt" : {
192
- "description" : "Alt text for the clear selection button",
193
- "message" : "{field} kijelölés törlése"
194
- },
195
187
  "splitButton.dropdownButton.label" : {
196
188
  "description" : "Label for a dropdown menu holding additional actions",
197
189
  "message" : "További műveletek"
198
190
  }
199
- }
191
+ }
package/locales/id.json CHANGED
@@ -184,16 +184,8 @@
184
184
  "description" : "Prompts user to interact with button to hide information",
185
185
  "message" : "Sembunyikan informasi:"
186
186
  },
187
- "singleSelect.chevronButton" : {
188
- "description" : "Aria label text for the SingleSelect button to open and close suggestions list",
189
- "message" : "Tampilkan saran untuk {field}"
190
- },
191
- "singleSelect.clearButtonAlt" : {
192
- "description" : "Alt text for the clear selection button",
193
- "message" : "Hapus pilihan {field}"
194
- },
195
187
  "splitButton.dropdownButton.label" : {
196
188
  "description" : "Label for a dropdown menu holding additional actions",
197
189
  "message" : "Tindakan lain"
198
190
  }
199
- }
191
+ }
package/locales/it.json CHANGED
@@ -184,16 +184,8 @@
184
184
  "description" : "Prompts user to interact with button to hide information",
185
185
  "message" : "Nascondi informazioni:"
186
186
  },
187
- "singleSelect.chevronButton" : {
188
- "description" : "Aria label text for the SingleSelect button to open and close suggestions list",
189
- "message" : "Mostra suggerimenti per {field}"
190
- },
191
- "singleSelect.clearButtonAlt" : {
192
- "description" : "Alt text for the clear selection button",
193
- "message" : "Cancella {field} selezione"
194
- },
195
187
  "splitButton.dropdownButton.label" : {
196
188
  "description" : "Label for a dropdown menu holding additional actions",
197
189
  "message" : "Azioni aggiuntive"
198
190
  }
199
- }
191
+ }