@elliemae/pui-app-sdk 5.17.4 → 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.
package/dist/cjs/index.js CHANGED
@@ -168,7 +168,7 @@ var import_react = require("./data/react.js");
168
168
  var import_use_state_selector = require("./utils/custom-hooks/use-state-selector.js");
169
169
  var import_errorMiddleware = require("./data/errorMiddleware.js");
170
170
  var import_listenerMiddleware = require("./data/listenerMiddleware.js");
171
- var import_decorators = require("./utils/decorators");
171
+ var import_decorators = require("./utils/decorators/index.js");
172
172
  var import_helper = require("./utils/auth/helper.js");
173
173
  var import_url = require("./utils/url.js");
174
174
  var import_store = require("./data/store.js");
@@ -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,
package/dist/esm/index.js CHANGED
@@ -41,7 +41,7 @@ import {
41
41
  removeSideEffect,
42
42
  clearSideEffects
43
43
  } from "./data/listenerMiddleware.js";
44
- import { decorators } from "./utils/decorators";
44
+ import { decorators } from "./utils/decorators/index.js";
45
45
  import { getAuthorizationHeader } from "./utils/auth/helper.js";
46
46
  import { getRedirectUrl, removeDoubleSlash } from "./utils/url.js";
47
47
  import { createAppStore } from "./data/store.js";
@@ -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,
@@ -16,7 +16,7 @@ export { useStateSelector, useStateSelectorShallow, } from './utils/custom-hooks
16
16
  export type { UseStateSelectorOptions } from './utils/custom-hooks/use-state-selector.js';
17
17
  export { errorMiddleware } from './data/errorMiddleware.js';
18
18
  export { startSideEffect, createSideEffect, removeSideEffect, clearSideEffects, } from './data/listenerMiddleware.js';
19
- export { decorators } from './utils/decorators';
19
+ export { decorators } from './utils/decorators/index.js';
20
20
  export { getAuthorizationHeader } from './utils/auth/helper.js';
21
21
  export { getRedirectUrl, removeDoubleSlash } from './utils/url.js';
22
22
  export { createAppStore as configureStore } from './data/store.js';
@@ -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;