@eui/base 19.0.0-next.11 → 19.0.0-next.13
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/docs/dependencies.html +2 -2
- package/docs/interfaces/LocaleServiceConfig.html +0 -234
- package/docs/interfaces/LocaleState.html +0 -58
- package/docs/js/search/search_index.js +2 -2
- package/docs/miscellaneous/variables.html +2 -2
- package/fesm2022/eui-base.mjs +2 -2
- package/fesm2022/eui-base.mjs.map +1 -1
- package/lib/eui-models/eui-config/locale.config.d.ts +0 -24
- package/lib/eui-models/eui-config/locale.config.d.ts.map +1 -1
- package/lib/eui-models/eui-store/state/locale.state.d.ts +0 -6
- package/lib/eui-models/eui-store/state/locale.state.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1049,8 +1049,8 @@ The array languages will be lower cased 2 char code.</p>
|
|
|
1049
1049
|
<tr>
|
|
1050
1050
|
<td class="col-md-4">
|
|
1051
1051
|
<i>Default value : </i><code>(baseGlobalConfig: GlobalConfig): LocaleServiceConfig => {
|
|
1052
|
-
const {
|
|
1053
|
-
return {
|
|
1052
|
+
const { bindWithTranslate } = baseGlobalConfig.locale;
|
|
1053
|
+
return { bindWithTranslate };
|
|
1054
1054
|
}</code>
|
|
1055
1055
|
</td>
|
|
1056
1056
|
</tr>
|
package/fesm2022/eui-base.mjs
CHANGED
|
@@ -741,8 +741,8 @@ const getBrowserPreferredLanguages = () => navigator.languages.map((lang) => lan
|
|
|
741
741
|
* responsible to extract the attributes "available" and "id" from the locale configuration
|
|
742
742
|
*/
|
|
743
743
|
const getLocaleServiceConfigFromBase = (baseGlobalConfig) => {
|
|
744
|
-
const {
|
|
745
|
-
return {
|
|
744
|
+
const { bindWithTranslate } = baseGlobalConfig.locale;
|
|
745
|
+
return { bindWithTranslate };
|
|
746
746
|
};
|
|
747
747
|
|
|
748
748
|
const initialUserPreferences = Object.assign({}, {
|