@elliemae/pui-app-sdk 5.17.5 → 5.17.6

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.
@@ -21,8 +21,8 @@ __export(decorators_exports, {
21
21
  decorators: () => decorators
22
22
  });
23
23
  module.exports = __toCommonJS(decorators_exports);
24
- var import_classDecorators = require("./classDecorators");
25
- var import_functionDecorators = require("./functionDecorators");
24
+ var import_classDecorators = require("./classDecorators.js");
25
+ var import_functionDecorators = require("./functionDecorators.js");
26
26
  const decorators = {
27
27
  class: {
28
28
  Mixins: import_classDecorators.Mixins,
@@ -1,4 +1,4 @@
1
- import { Mixins, Singleton } from "./classDecorators";
1
+ import { Mixins, Singleton } from "./classDecorators.js";
2
2
  import {
3
3
  CacheUntilResolved,
4
4
  Debounce,
@@ -7,7 +7,7 @@ import {
7
7
  MemoizeAsync,
8
8
  QueueTask,
9
9
  Throttle
10
- } from "./functionDecorators";
10
+ } from "./functionDecorators.js";
11
11
  const decorators = {
12
12
  class: {
13
13
  Mixins,
@@ -1,5 +1,5 @@
1
- import { Mixins, Singleton } from './classDecorators';
2
- import { CacheUntilResolved, Debounce, ImmutableArgs, Memoize, MemoizeAsync, QueueTask, Throttle } from './functionDecorators';
1
+ import { Mixins, Singleton } from './classDecorators.js';
2
+ import { CacheUntilResolved, Debounce, ImmutableArgs, Memoize, MemoizeAsync, QueueTask, Throttle } from './functionDecorators.js';
3
3
  declare const decorators: {
4
4
  class: {
5
5
  Mixins: typeof Mixins;