@k-int/stripes-kint-components 2.7.1 → 2.8.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/CHANGELOG.md +8 -1
- package/es/index.js +14 -0
- package/es/lib/ActionList/ActionList.js +7 -2
- package/es/lib/ActionList/ActionListFieldArray.js +8 -4
- package/es/lib/CustomProperties/View/CustomPropertiesViewCtx.js +1 -1
- package/es/lib/CycleButton/CycleButton.js +2 -1
- package/es/lib/EditableRefdataCategoryList/EditableRefdataCategoryList.js +8 -1
- package/es/lib/EditableRefdataList/EditableRefdataList.js +8 -1
- package/es/lib/IconSelect/IconSelect.js +105 -110
- package/es/lib/RichSelect/RichSelect.js +252 -0
- package/es/lib/RichSelect/index.js +23 -0
- package/es/lib/RichSelect/useSelectedOption.js +39 -0
- package/package.json +1 -1
- package/src/index.js +1 -0
- package/src/lib/ActionList/ActionList.js +8 -1
- package/src/lib/ActionList/ActionListFieldArray.js +11 -4
- package/src/lib/ActionList/README.md +1 -0
- package/src/lib/CustomProperties/View/CustomPropertiesViewCtx.js +1 -1
- package/src/lib/CycleButton/CycleButton.js +3 -2
- package/src/lib/EditableRefdataCategoryList/EditableRefdataCategoryList.js +8 -1
- package/src/lib/EditableRefdataList/EditableRefdataList.js +8 -1
- package/src/lib/IconSelect/IconSelect.js +94 -113
- package/src/lib/IconSelect/README.md +6 -2
- package/src/lib/RichSelect/README.md +56 -0
- package/src/lib/RichSelect/RichSelect.js +230 -0
- package/src/lib/RichSelect/index.js +2 -0
- package/src/lib/RichSelect/useSelectedOption.js +14 -0
- package/src/lib/hooks/useMutateRefdataCategory.js +3 -3
- package/styles/RichSelect.css +7 -0
- package/translations/stripes-kint-components/ar.json +2 -1
- package/translations/stripes-kint-components/cs_CZ.json +2 -1
- package/translations/stripes-kint-components/de.json +2 -1
- package/translations/stripes-kint-components/en.json +2 -1
- package/translations/stripes-kint-components/es.json +2 -1
- package/translations/stripes-kint-components/hi_IN.json +2 -1
- package/translations/stripes-kint-components/hu.json +2 -1
- package/translations/stripes-kint-components/it_IT.json +2 -1
- package/translations/stripes-kint-components/ja.json +2 -1
- package/translations/stripes-kint-components/ko.json +2 -1
- package/translations/stripes-kint-components/pt_PT.json +2 -1
- package/translations/stripes-kint-components/ru.json +2 -1
- package/translations/stripes-kint-components/sv.json +2 -1
- package/translations/stripes-kint-components/zh_CN.json +2 -1
|
@@ -117,5 +117,6 @@
|
|
|
117
117
|
"operator.isNot": "Não é",
|
|
118
118
|
"operator.contains": "Contém",
|
|
119
119
|
"operator.doesNotContain": "Não contém",
|
|
120
|
-
"iconSelect.notSet": "Não definido"
|
|
120
|
+
"iconSelect.notSet": "Não definido",
|
|
121
|
+
"richSelect.placeholder": "Por favor, selecione uma opção"
|
|
121
122
|
}
|
|
@@ -117,5 +117,6 @@
|
|
|
117
117
|
"operator.isNot": "Не",
|
|
118
118
|
"operator.contains": "Содержит",
|
|
119
119
|
"operator.doesNotContain": "Не содержит",
|
|
120
|
-
"iconSelect.notSet": "Не установлено"
|
|
120
|
+
"iconSelect.notSet": "Не установлено",
|
|
121
|
+
"richSelect.placeholder": "Пожалуйста, выберите вариант"
|
|
121
122
|
}
|
|
@@ -117,5 +117,6 @@
|
|
|
117
117
|
"operator.isNot": "Är inte",
|
|
118
118
|
"operator.contains": "Innehåll",
|
|
119
119
|
"operator.doesNotContain": "Innehåller inte",
|
|
120
|
-
"iconSelect.notSet": "Inte set"
|
|
120
|
+
"iconSelect.notSet": "Inte set",
|
|
121
|
+
"richSelect.placeholder": "Vänligen välj ett alternativ"
|
|
121
122
|
}
|