@pure-ds/core 0.7.45 → 0.7.47

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/src/js/pds.js CHANGED
@@ -253,7 +253,7 @@ async function __loadLocalizationRuntime() {
253
253
  "pds-localization.js"
254
254
  );
255
255
 
256
- __localizationPromise = import(localizationModuleURL)
256
+ __localizationPromise = import(/* @vite-ignore */ localizationModuleURL)
257
257
  .then((mod) => {
258
258
  if (
259
259
  typeof mod?.msg !== "function" ||
@@ -467,7 +467,7 @@ async function __loadDefaultEnhancers() {
467
467
  "pds-enhancers.js",
468
468
  PDS.currentConfig?.enhancersURL
469
469
  );
470
- __defaultEnhancersPromise = import(enhancersModuleURL)
470
+ __defaultEnhancersPromise = import(/* @vite-ignore */ enhancersModuleURL)
471
471
  .then((mod) => {
472
472
  const enhancers = Array.isArray(mod?.defaultPDSEnhancers)
473
473
  ? mod.defaultPDSEnhancers
@@ -492,7 +492,7 @@ async function __loadAsk() {
492
492
  "pds-ask.js",
493
493
  PDS.currentConfig?.askURL
494
494
  );
495
- __askPromise = import(askModuleURL)
495
+ __askPromise = import(/* @vite-ignore */ askModuleURL)
496
496
  .then((mod) => {
497
497
  const impl = mod?.ask;
498
498
  if (typeof impl !== "function") {
@@ -518,7 +518,7 @@ async function __loadToast() {
518
518
  "pds-toast.js",
519
519
  PDS.currentConfig?.toastURL
520
520
  );
521
- __toastPromise = import(toastModuleURL)
521
+ __toastPromise = import(/* @vite-ignore */ toastModuleURL)
522
522
  .then((mod) => {
523
523
  const impl = mod?.toast;
524
524
  if (typeof impl !== "function") {