@datawheel/data-explorer 0.2.0 → 0.2.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/main.js +7 -2
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -4164,7 +4164,6 @@ function LocaleSelector() {
|
|
|
4164
4164
|
if (currentCode !== l.value) {
|
|
4165
4165
|
resetGraph();
|
|
4166
4166
|
actions2.updateLocale(l.value);
|
|
4167
|
-
actions2.willRequestQuery();
|
|
4168
4167
|
}
|
|
4169
4168
|
};
|
|
4170
4169
|
if (localeOptions.length < 2) {
|
|
@@ -4180,7 +4179,13 @@ function LocaleSelector() {
|
|
|
4180
4179
|
selectedItem: currentCode,
|
|
4181
4180
|
selectProps: {
|
|
4182
4181
|
styles: localeSelectorStyle,
|
|
4183
|
-
icon: /* @__PURE__ */ React10__default.createElement(
|
|
4182
|
+
icon: /* @__PURE__ */ React10__default.createElement(
|
|
4183
|
+
IconLanguage,
|
|
4184
|
+
{
|
|
4185
|
+
size: "0.8rem",
|
|
4186
|
+
color: theme.colorScheme === "dark" ? theme.fn.lighten(theme.fn.primaryColor(), 0.8) : theme.fn.primaryColor()
|
|
4187
|
+
}
|
|
4188
|
+
)
|
|
4184
4189
|
}
|
|
4185
4190
|
}
|
|
4186
4191
|
)));
|