@saasquatch/component-environment 1.0.6-1 → 1.0.6-3

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/index.js CHANGED
@@ -366,6 +366,10 @@ var import_dom_context2 = require("dom-context");
366
366
  var import_dom_context = require("dom-context");
367
367
  var debug3 = (...args) => debug(LOCALE_CONTEXT_NAME, ...args);
368
368
  function validateLocale(locale) {
369
+ debug3("validateLocale", {
370
+ locale,
371
+ isValid: /^[a-z]{2}(_(?:[A-Z]{2}|[0-9]{3}))?$/.test(locale || "")
372
+ });
369
373
  if (locale && /^[a-z]{2}(_(?:[A-Z]{2}|[0-9]{3}))?$/.test(locale)) {
370
374
  return locale;
371
375
  }
@@ -376,6 +380,7 @@ function lazilyStartLocaleContext() {
376
380
  if (!globalProvider) {
377
381
  debug3("Creating locale context provider");
378
382
  const locale = ((_a = window.widgetIdent) == null ? void 0 : _a.locale) ?? validateLocale(navigator.language.replaceAll("-", "_"));
383
+ debug3("initializing with locale:", locale);
379
384
  globalProvider = new import_dom_context.ContextProvider({
380
385
  element: document.documentElement,
381
386
  initialState: locale,
package/dist/index.mjs CHANGED
@@ -317,6 +317,10 @@ import { ContextListener } from "dom-context";
317
317
  import { ContextProvider } from "dom-context";
318
318
  var debug3 = (...args) => debug(LOCALE_CONTEXT_NAME, ...args);
319
319
  function validateLocale(locale) {
320
+ debug3("validateLocale", {
321
+ locale,
322
+ isValid: /^[a-z]{2}(_(?:[A-Z]{2}|[0-9]{3}))?$/.test(locale || "")
323
+ });
320
324
  if (locale && /^[a-z]{2}(_(?:[A-Z]{2}|[0-9]{3}))?$/.test(locale)) {
321
325
  return locale;
322
326
  }
@@ -327,6 +331,7 @@ function lazilyStartLocaleContext() {
327
331
  if (!globalProvider) {
328
332
  debug3("Creating locale context provider");
329
333
  const locale = ((_a = window.widgetIdent) == null ? void 0 : _a.locale) ?? validateLocale(navigator.language.replaceAll("-", "_"));
334
+ debug3("initializing with locale:", locale);
330
335
  globalProvider = new ContextProvider({
331
336
  element: document.documentElement,
332
337
  initialState: locale,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saasquatch/component-environment",
3
- "version": "1.0.6-1",
3
+ "version": "1.0.6-3",
4
4
  "description": "Environment and contexts for SaaSquatch components",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",