@elliemae/pui-app-sdk 3.0.0-beta.5 → 3.0.0-beta.9
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/analytics/index.js +3 -3
- package/dist/cjs/analytics/page-view-event.js +2 -2
- package/dist/cjs/analytics/user-session-event.js +4 -4
- package/dist/cjs/analytics/user-wait-event.js +3 -3
- package/dist/cjs/api/auth/index.js +1 -1
- package/dist/cjs/api/users/index.js +1 -1
- package/dist/cjs/communication/http-client/index.js +5 -5
- package/dist/cjs/communication/http-client/request-interceptor.js +1 -1
- package/dist/cjs/communication/http-client/retry.js +1 -1
- package/dist/cjs/communication/http-client/tests/index.test-disable.js +3 -3
- package/dist/cjs/data/auth/reducer.js +1 -1
- package/dist/cjs/data/index.js +34 -0
- package/dist/cjs/data/reducers.js +4 -4
- package/dist/cjs/data/store.js +1 -1
- package/dist/cjs/data/wait-message/reducer.js +1 -1
- package/dist/cjs/index.js +73 -73
- package/dist/cjs/micro-frontend.js +33 -0
- package/dist/cjs/route/index.js +2 -1
- package/dist/cjs/route/page-view.js +1 -1
- package/dist/cjs/route/private-route/index.js +8 -7
- package/dist/cjs/sideeffect/auth/index.js +4 -4
- package/dist/cjs/sideeffect/error-toast/index.js +4 -4
- package/dist/cjs/sideeffect/wait-message/index.js +4 -4
- package/dist/cjs/utils/app-config/index.js +4 -4
- package/dist/cjs/utils/app-host-integration/react.js +1 -1
- package/dist/cjs/utils/auth/helper.js +1 -1
- package/dist/cjs/utils/auth/index.js +9 -9
- package/dist/cjs/utils/micro-frontend/console-logger.js +1 -1
- package/dist/cjs/utils/micro-frontend/guest.js +8 -8
- package/dist/cjs/utils/micro-frontend/host.js +14 -14
- package/dist/cjs/utils/micro-frontend/index.js +4 -4
- package/dist/cjs/utils/service-worker.js +2 -2
- package/dist/cjs/utils/session.js +2 -2
- package/dist/cjs/utils/storybook/{main.js → cjs/main.js} +11 -3
- package/dist/cjs/utils/storybook/{middleware.js → cjs/middleware.js} +0 -0
- package/dist/cjs/utils/storybook/{vite.js → cjs/vite.js} +0 -0
- package/dist/cjs/utils/storybook/{webpack.js → cjs/webpack.js} +0 -0
- package/dist/cjs/utils/storybook/manager.js +1 -1
- package/dist/cjs/utils/storybook/preview.js +7 -8
- package/dist/cjs/utils/testing/index.js +4 -3
- package/dist/cjs/utils/testing/render-with-redux.js +3 -2
- package/dist/cjs/utils/testing/render-with-router-redux.js +3 -2
- package/dist/cjs/utils/testing/render-with-router.js +1 -0
- package/dist/cjs/utils/testing/render-with-state-addons.js +1 -0
- package/dist/cjs/view/app-root/hosted-app.js +5 -4
- package/dist/cjs/view/app-root/index.js +7 -6
- package/dist/cjs/view/app-root/stand-alone-app.js +8 -7
- package/dist/cjs/view/error-boundary/default-error-template.js +17 -0
- package/dist/cjs/view/error-boundary/index.js +3 -3
- package/dist/cjs/view/error-toast/index.js +8 -7
- package/dist/cjs/view/fetch-host-app-data/index.js +3 -3
- package/dist/cjs/view/fields/check-box/index.js +2 -1
- package/dist/cjs/view/fields/combo-box/index.js +2 -1
- package/dist/cjs/view/fields/date-input/index.js +2 -1
- package/dist/cjs/view/fields/date-picker/index.js +1 -0
- package/dist/cjs/view/fields/form-item-layout/index.js +3 -2
- package/dist/cjs/view/fields/input-mask/index.js +2 -1
- package/dist/cjs/view/fields/large-text-box/index.js +2 -1
- package/dist/cjs/view/fields/radio/index.js +2 -1
- package/dist/cjs/view/fields/radio-group/index.js +2 -1
- package/dist/cjs/view/fields/text-box/index.js +2 -1
- package/dist/cjs/view/fields/watch-value.js +1 -0
- package/dist/cjs/view/form/index.js +1 -0
- package/dist/cjs/view/form/personal-info-section.js +5 -4
- package/dist/cjs/view/form/submit-button/index.js +3 -2
- package/dist/cjs/view/guest-unload-handlers/index.js +1 -1
- package/dist/cjs/view/header/center-region/index.js +1 -0
- package/dist/cjs/view/header/index.js +5 -4
- package/dist/cjs/view/header/logo-region/index.js +1 -0
- package/dist/cjs/view/header/nav-region/index.js +3 -2
- package/dist/cjs/view/header/nav-region/notification/index.js +1 -0
- package/dist/cjs/view/header/nav-region/user/index.js +1 -0
- package/dist/cjs/view/live-message/index.js +2 -1
- package/dist/cjs/view/loadable/index.js +2 -1
- package/dist/cjs/view/login/index.js +4 -3
- package/dist/cjs/view/media-breakpoint/index.js +5 -4
- package/dist/cjs/view/message-to-host-app/index.js +1 -1
- package/dist/cjs/view/micro-app/app-factory/index.js +11 -9
- package/dist/cjs/view/micro-app/index.js +3 -2
- package/dist/cjs/view/micro-app/resources/manifest.js +6 -4
- package/dist/cjs/view/micro-app/resources/script.js +1 -1
- package/dist/cjs/view/micro-app/resources/style.js +1 -1
- package/dist/cjs/view/micro-app/use-app-will-render.js +4 -4
- package/dist/cjs/view/micro-app/utils.js +1 -1
- package/dist/cjs/view/micro-iframe-app/app.js +4 -3
- package/dist/cjs/view/micro-iframe-app/iframe/index.js +2 -1
- package/dist/cjs/view/micro-iframe-app/index.js +3 -2
- package/dist/cjs/view/micro-iframe-app/use-frame-loaded.js +5 -3
- package/dist/cjs/view/modals/error/index.js +1 -0
- package/dist/cjs/view/modals/navigation-prompt/index.js +3 -2
- package/dist/cjs/view/modals/session-expiry/customHooks.js +2 -2
- package/dist/cjs/view/modals/session-expiry/index.js +5 -4
- package/dist/cjs/view/modals/wait-message/html-wait-message.js +1 -0
- package/dist/cjs/view/modals/wait-message/index.js +6 -5
- package/dist/cjs/view/modals/wait-message/wait-message-launcher.js +3 -2
- package/dist/cjs/view/render-with-delay/index.js +1 -0
- package/dist/cjs/view/render-with-host-data/index.js +3 -2
- package/dist/cjs/view/session-timeout/index.js +5 -4
- package/dist/cjs/view/storybook/decorator.js +3 -2
- package/dist/cjs/view/visually-hidden/index.js +1 -0
- package/dist/cjs/view/window-size/index.js +2 -1
- package/dist/es/analytics/index.js +3 -3
- package/dist/es/analytics/page-view-event.js +1 -1
- package/dist/es/analytics/user-session-event.js +2 -2
- package/dist/es/analytics/user-wait-event.js +1 -1
- package/dist/es/api/auth/index.js +1 -1
- package/dist/es/api/users/index.js +1 -1
- package/dist/es/communication/http-client/index.js +5 -5
- package/dist/es/communication/http-client/request-interceptor.js +1 -1
- package/dist/es/communication/http-client/retry.js +1 -1
- package/dist/es/communication/http-client/tests/index.test-disable.js +3 -3
- package/dist/es/data/auth/reducer.js +1 -1
- package/dist/es/data/index.js +11 -0
- package/dist/es/data/reducers.js +4 -4
- package/dist/es/data/store.js +1 -1
- package/dist/es/data/wait-message/reducer.js +1 -1
- package/dist/es/index.js +83 -73
- package/dist/es/micro-frontend.js +10 -0
- package/dist/es/route/index.js +2 -1
- package/dist/es/route/page-view.js +1 -1
- package/dist/es/route/private-route/index.js +8 -7
- package/dist/es/sideeffect/auth/index.js +4 -4
- package/dist/es/sideeffect/error-toast/index.js +4 -4
- package/dist/es/sideeffect/wait-message/index.js +4 -4
- package/dist/es/utils/app-config/index.js +4 -4
- package/dist/es/utils/app-host-integration/react.js +1 -1
- package/dist/es/utils/auth/helper.js +1 -1
- package/dist/es/utils/auth/index.js +9 -9
- package/dist/es/utils/micro-frontend/console-logger.js +1 -1
- package/dist/es/utils/micro-frontend/guest.js +8 -8
- package/dist/es/utils/micro-frontend/host.js +14 -14
- package/dist/es/utils/micro-frontend/index.js +4 -4
- package/dist/es/utils/service-worker.js +2 -2
- package/dist/es/utils/session.js +2 -2
- package/dist/es/utils/storybook/manager.js +1 -1
- package/dist/es/utils/storybook/preview.js +7 -8
- package/dist/es/utils/testing/index.js +4 -3
- package/dist/es/utils/testing/render-with-redux.js +3 -2
- package/dist/es/utils/testing/render-with-router-redux.js +3 -2
- package/dist/es/utils/testing/render-with-router.js +1 -0
- package/dist/es/utils/testing/render-with-state-addons.js +1 -0
- package/dist/es/view/app-root/hosted-app.js +5 -4
- package/dist/es/view/app-root/index.js +7 -6
- package/dist/es/view/app-root/stand-alone-app.js +8 -7
- package/dist/es/view/error-boundary/default-error-template.js +1 -0
- package/dist/es/view/error-boundary/index.js +3 -3
- package/dist/es/view/error-toast/index.js +4 -8
- package/dist/es/view/fetch-host-app-data/index.js +6 -3
- package/dist/es/view/fields/check-box/index.js +2 -1
- package/dist/es/view/fields/combo-box/index.js +2 -1
- package/dist/es/view/fields/date-input/index.js +2 -1
- package/dist/es/view/fields/date-picker/index.js +1 -0
- package/dist/es/view/fields/form-item-layout/index.js +3 -2
- package/dist/es/view/fields/input-mask/index.js +2 -1
- package/dist/es/view/fields/large-text-box/index.js +2 -1
- package/dist/es/view/fields/radio/index.js +2 -1
- package/dist/es/view/fields/radio-group/index.js +2 -1
- package/dist/es/view/fields/text-box/index.js +2 -1
- package/dist/es/view/fields/watch-value.js +1 -0
- package/dist/es/view/form/index.js +1 -0
- package/dist/es/view/form/personal-info-section.js +5 -4
- package/dist/es/view/form/submit-button/index.js +2 -1
- package/dist/es/view/guest-unload-handlers/index.js +1 -1
- package/dist/es/view/header/center-region/index.js +1 -0
- package/dist/es/view/header/index.js +5 -4
- package/dist/es/view/header/logo-region/index.js +1 -0
- package/dist/es/view/header/nav-region/index.js +3 -2
- package/dist/es/view/header/nav-region/notification/index.js +1 -0
- package/dist/es/view/header/nav-region/user/index.js +1 -0
- package/dist/es/view/live-message/index.js +2 -1
- package/dist/es/view/loadable/index.js +2 -1
- package/dist/es/view/login/index.js +4 -3
- package/dist/es/view/media-breakpoint/index.js +5 -4
- package/dist/es/view/message-to-host-app/index.js +1 -1
- package/dist/es/view/micro-app/app-factory/index.js +14 -9
- package/dist/es/view/micro-app/index.js +3 -2
- package/dist/es/view/micro-app/resources/manifest.js +6 -4
- package/dist/es/view/micro-app/resources/script.js +1 -1
- package/dist/es/view/micro-app/resources/style.js +1 -1
- package/dist/es/view/micro-app/use-app-will-render.js +9 -4
- package/dist/es/view/micro-app/utils.js +1 -1
- package/dist/es/view/micro-iframe-app/app.js +4 -3
- package/dist/es/view/micro-iframe-app/iframe/index.js +2 -1
- package/dist/es/view/micro-iframe-app/index.js +3 -2
- package/dist/es/view/micro-iframe-app/use-frame-loaded.js +5 -3
- package/dist/es/view/modals/error/index.js +1 -0
- package/dist/es/view/modals/navigation-prompt/index.js +3 -2
- package/dist/es/view/modals/session-expiry/customHooks.js +2 -2
- package/dist/es/view/modals/session-expiry/index.js +5 -4
- package/dist/es/view/modals/wait-message/html-wait-message.js +1 -0
- package/dist/es/view/modals/wait-message/index.js +5 -4
- package/dist/es/view/modals/wait-message/wait-message-launcher.js +3 -2
- package/dist/es/view/render-with-delay/index.js +1 -0
- package/dist/es/view/render-with-host-data/index.js +3 -2
- package/dist/es/view/session-timeout/index.js +5 -4
- package/dist/es/view/storybook/decorator.js +3 -2
- package/dist/es/view/visually-hidden/index.js +1 -0
- package/dist/es/view/window-size/index.js +2 -1
- package/dist/types/.storybook/main.d.ts +63 -0
- package/dist/types/{communication/http-client/tests/index.test-disable.d.ts → .storybook/manager.d.ts} +0 -0
- package/dist/types/.storybook/middleware.d.ts +2 -0
- package/dist/types/{utils/storybook → .storybook}/preview.d.ts +3 -2
- package/dist/types/.storybook/theme.d.ts +4 -0
- package/dist/types/{analytics → lib/analytics}/appdynamics.d.ts +0 -0
- package/dist/types/{analytics → lib/analytics}/index.d.ts +0 -0
- package/dist/types/{analytics → lib/analytics}/page-view-event.d.ts +0 -0
- package/dist/types/{analytics → lib/analytics}/user-session-event.d.ts +0 -0
- package/dist/types/{analytics → lib/analytics}/user-wait-event.d.ts +0 -0
- package/dist/types/{analytics → lib/analytics}/web-analytics.d.ts +0 -0
- package/dist/types/{api → lib/api}/auth/index.d.ts +0 -0
- package/dist/types/{api → lib/api}/helpers.d.ts +0 -0
- package/dist/types/{api → lib/api}/users/index.d.ts +0 -0
- package/dist/types/{api → lib/api}/users/index.endpoint.d.ts +0 -0
- package/dist/types/{communication → lib/communication}/http-client/index.d.ts +0 -0
- package/dist/types/{communication → lib/communication}/http-client/request-interceptor.d.ts +0 -0
- package/dist/types/{communication → lib/communication}/http-client/response-interceptor.d.ts +0 -0
- package/dist/types/{communication → lib/communication}/http-client/retry-axios.d.ts +0 -0
- package/dist/types/{communication → lib/communication}/http-client/retry.d.ts +1 -1
- package/dist/types/{communication → lib/communication}/http-client/tests/hello.endpoint.d.ts +0 -0
- package/dist/types/{data/tests/store.test.d.ts → lib/communication/http-client/tests/index.test-disable.d.ts} +0 -0
- package/dist/types/{communication → lib/communication}/http-client/tests/private.endpoint.d.ts +0 -0
- package/dist/types/{data → lib/data}/auth/actions.d.ts +0 -0
- package/dist/types/{data → lib/data}/auth/reducer.d.ts +0 -0
- package/dist/types/{data → lib/data}/breakpoint/index.d.ts +0 -0
- package/dist/types/{data → lib/data}/error/index.d.ts +0 -0
- package/dist/types/lib/data/index.d.ts +4 -0
- package/dist/types/{data → lib/data}/live-message/index.d.ts +0 -0
- package/dist/types/{data → lib/data}/logout/actions.d.ts +0 -0
- package/dist/types/{data → lib/data}/navigation-prompt/actions.d.ts +0 -0
- package/dist/types/lib/data/react-redux.d.ts +20 -0
- package/dist/types/lib/data/reducers.d.ts +16 -0
- package/dist/types/{data → lib/data}/saga.d.ts +0 -0
- package/dist/types/lib/data/store.d.ts +54 -0
- package/dist/types/lib/data/tests/store.test.d.ts +1 -0
- package/dist/types/{data → lib/data}/wait-message/actions.d.ts +0 -0
- package/dist/types/{data → lib/data}/wait-message/reducer.d.ts +0 -0
- package/dist/types/lib/index.d.ts +80 -0
- package/dist/types/lib/micro-frontend.d.ts +6 -0
- package/dist/types/{route → lib/route}/index.d.ts +0 -0
- package/dist/types/{route → lib/route}/page-view.d.ts +0 -0
- package/dist/types/{route → lib/route}/private-route/index.d.ts +1 -1
- package/dist/types/{sideeffect → lib/sideeffect}/auth/index.d.ts +1 -1
- package/dist/types/{sideeffect → lib/sideeffect}/error-toast/index.d.ts +0 -0
- package/dist/types/{sideeffect → lib/sideeffect}/wait-message/index.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/app-config/config.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/app-config/index.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/app-host-integration/react.d.ts +1 -1
- package/dist/types/{utils → lib/utils}/auth/helper.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/auth/index.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/await.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/constants.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/font-size.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/guest-with-service.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/helpers.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/history.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/log-records.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/micro-frontend/console-logger.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/micro-frontend/guest.d.ts +3 -3
- package/dist/types/{utils → lib/utils}/micro-frontend/host.d.ts +1 -1
- package/dist/types/{utils → lib/utils}/micro-frontend/index.d.ts +2 -2
- package/dist/types/{utils → lib/utils}/micro-frontend/types.d.ts +1 -1
- package/dist/types/{utils → lib/utils}/redact-pii.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/service-worker.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/session.d.ts +0 -0
- package/dist/types/{utils/storybook/main.d.cts → lib/utils/storybook/cjs/main.d.ts} +15 -1
- package/dist/types/{utils/storybook/middleware.d.cts → lib/utils/storybook/cjs/middleware.d.ts} +0 -0
- package/dist/types/{utils/storybook/vite.d.cts → lib/utils/storybook/cjs/vite.d.ts} +0 -0
- package/dist/types/{utils/storybook/webpack.d.cts → lib/utils/storybook/cjs/webpack.d.ts} +0 -0
- package/dist/types/{utils → lib/utils}/storybook/manager.d.ts +0 -0
- package/dist/types/lib/utils/storybook/preview.d.ts +30 -0
- package/dist/types/{utils → lib/utils}/storybook/theme.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/testing/index.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/testing/render-with-redux.d.ts +19 -19
- package/dist/types/{utils → lib/utils}/testing/render-with-router-redux.d.ts +19 -19
- package/dist/types/{utils → lib/utils}/testing/render-with-router.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/testing/render-with-state-addons.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/types.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/url.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/web-storage.d.ts +0 -0
- package/dist/types/{utils → lib/utils}/window.d.ts +0 -0
- package/dist/types/{view → lib/view}/app-root/hosted-app.d.ts +0 -0
- package/dist/types/{view → lib/view}/app-root/index.d.ts +1 -1
- package/dist/types/{view → lib/view}/app-root/stand-alone-app.d.ts +0 -0
- package/dist/types/{view → lib/view}/app-root/style.d.ts +0 -0
- package/dist/types/{view → lib/view}/error-boundary/default-error-template.d.ts +0 -0
- package/dist/types/{view → lib/view}/error-boundary/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/error-toast/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/error-toast/index.stories.d.ts +0 -0
- package/dist/types/{view → lib/view}/fetch-host-app-data/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/fetch-host-app-data/store.d.ts +0 -0
- package/dist/types/{view → lib/view}/fields/check-box/index.d.ts +1 -1
- package/dist/types/{view → lib/view}/fields/check-box/index.stories.d.ts +1 -1
- package/dist/types/{view → lib/view}/fields/check-box/set-value.stories.d.ts +1 -1
- package/dist/types/{view → lib/view}/fields/combo-box/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/fields/combo-box/index.stories.d.ts +1 -1
- package/dist/types/{view → lib/view}/fields/connect-form.d.ts +0 -0
- package/dist/types/{view → lib/view}/fields/date-input/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/fields/date-input/index.stories.d.ts +1 -1
- package/dist/types/{view → lib/view}/fields/date-picker/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/fields/date-picker/index.stories.d.ts +1 -1
- package/dist/types/{view → lib/view}/fields/form-item-layout/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/fields/form-item-layout/index.stories.d.ts +1 -1
- package/dist/types/{view → lib/view}/fields/input-mask/index.d.ts +1 -1
- package/dist/types/{view → lib/view}/fields/input-mask/index.stories.d.ts +1 -1
- package/dist/types/{view → lib/view}/fields/large-text-box/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/fields/large-text-box/index.stories.d.ts +1 -1
- package/dist/types/{view → lib/view}/fields/radio/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/fields/radio/index.stories.d.ts +1 -1
- package/dist/types/{view → lib/view}/fields/radio/set-value.stories.d.ts +1 -1
- package/dist/types/{view → lib/view}/fields/radio-group/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/fields/radio-group/index.stories.d.ts +1 -1
- package/dist/types/{view → lib/view}/fields/text-box/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/fields/text-box/index.stories.d.ts +1 -1
- package/dist/types/{view → lib/view}/fields/watch-value.d.ts +0 -0
- package/dist/types/{view → lib/view}/form/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/form/index.stories.d.ts +0 -0
- package/dist/types/{view → lib/view}/form/personal-info-section.d.ts +0 -0
- package/dist/types/{view → lib/view}/form/submit-button/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/form/usecases.stories.d.ts +1 -1
- package/dist/types/{view → lib/view}/guest-unload-handlers/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/header/center-region/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/header/index.d.ts +1 -1
- package/dist/types/{view → lib/view}/header/index.stories.d.ts +1 -1
- package/dist/types/{view → lib/view}/header/logo-region/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/header/nav-region/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/header/nav-region/notification/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/header/nav-region/user/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/host-binding-events/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/live-message/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/live-message/index.stories.d.ts +0 -0
- package/dist/types/{view → lib/view}/loadable/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/login/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/media-breakpoint/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/media-breakpoint/index.stories.d.ts +0 -0
- package/dist/types/{view → lib/view}/message-to-host-app/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/micro-app/app-factory/index.d.ts +3 -3
- package/dist/types/{view → lib/view}/micro-app/const.d.ts +0 -0
- package/dist/types/{view → lib/view}/micro-app/index.d.ts +1 -1
- package/dist/types/{view → lib/view}/micro-app/resources/manifest.d.ts +2 -2
- package/dist/types/{view → lib/view}/micro-app/resources/script.d.ts +1 -1
- package/dist/types/{view → lib/view}/micro-app/resources/style.d.ts +1 -1
- package/dist/types/{view → lib/view}/micro-app/types.d.ts +0 -0
- package/dist/types/{view → lib/view}/micro-app/use-app-will-render.d.ts +1 -1
- package/dist/types/{view → lib/view}/micro-app/utils.d.ts +0 -0
- package/dist/types/{view → lib/view}/micro-iframe-app/app.d.ts +2 -2
- package/dist/types/{view → lib/view}/micro-iframe-app/iframe/const.d.ts +0 -0
- package/dist/types/{view → lib/view}/micro-iframe-app/iframe/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/micro-iframe-app/index.d.ts +1 -1
- package/dist/types/{view → lib/view}/micro-iframe-app/types.d.ts +1 -1
- package/dist/types/{view → lib/view}/micro-iframe-app/use-frame-loaded.d.ts +1 -1
- package/dist/types/{view → lib/view}/modals/error/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/modals/error/index.stories.d.ts +1 -1
- package/dist/types/{view → lib/view}/modals/navigation-prompt/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/modals/navigation-prompt/index.stories.d.ts +1 -1
- package/dist/types/{view → lib/view}/modals/session-expiry/customHooks.d.ts +0 -0
- package/dist/types/{view → lib/view}/modals/session-expiry/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/modals/session-expiry/index.stories.d.ts +1 -1
- package/dist/types/{view → lib/view}/modals/wait-message/html-wait-message.d.ts +0 -0
- package/dist/types/{view → lib/view}/modals/wait-message/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/modals/wait-message/index.stories.d.ts +1 -1
- package/dist/types/{view → lib/view}/modals/wait-message/wait-message-launcher.d.ts +0 -0
- package/dist/types/{view → lib/view}/render-with-delay/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/render-with-host-data/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/session-timeout/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/session-timeout/index.stories.d.ts +0 -0
- package/dist/types/{view → lib/view}/storybook/decorator.d.ts +1 -1
- package/dist/types/{view → lib/view}/use-previous.d.ts +0 -0
- package/dist/types/{view → lib/view}/useMediaBreakpoints/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/visually-hidden/index.d.ts +0 -0
- package/dist/types/{view → lib/view}/window-size/index.d.ts +0 -0
- package/package.json +28 -11
- package/dist/types/data/react-redux.d.ts +0 -20
- package/dist/types/data/reducers.d.ts +0 -16
- package/dist/types/data/store.d.ts +0 -54
- package/dist/types/index.d.ts +0 -80
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { History } from 'history';
|
|
3
|
-
import { AppStore, RootState } from '../../data/store';
|
|
3
|
+
import { AppStore, RootState } from '../../data/store.js';
|
|
4
4
|
interface Args {
|
|
5
5
|
initialState: RootState;
|
|
6
6
|
store: AppStore;
|
|
@@ -9,31 +9,31 @@ interface Args {
|
|
|
9
9
|
}
|
|
10
10
|
export declare const renderWithRouterRedux: (ui: React.ReactElement, { route, history, initialState, store, }?: Args) => {
|
|
11
11
|
store: import("@reduxjs/toolkit").EnhancedStore<import("redux").CombinedState<{
|
|
12
|
-
waitMessage: import("../../data/wait-message/reducer").WaitMessageState;
|
|
13
|
-
error: import("../../data/error").ErrorState;
|
|
14
|
-
breakpoint: import("../../data/breakpoint").BreakpointState;
|
|
15
|
-
liveMessage: import("../../data/live-message").LiveMessageState;
|
|
12
|
+
waitMessage: import("../../data/wait-message/reducer.js").WaitMessageState;
|
|
13
|
+
error: import("../../data/error/index.js").ErrorState;
|
|
14
|
+
breakpoint: import("../../data/breakpoint/index.js").BreakpointState;
|
|
15
|
+
liveMessage: import("../../data/live-message/index.js").LiveMessageState;
|
|
16
16
|
}>, {
|
|
17
|
-
payload: import("../../data/wait-message/reducer").WaitMessageState;
|
|
17
|
+
payload: import("../../data/wait-message/reducer.js").WaitMessageState;
|
|
18
18
|
type: string;
|
|
19
19
|
} | import("redux").AnyAction | {
|
|
20
|
-
payload: import("../../data/breakpoint").Breakpoints;
|
|
20
|
+
payload: import("../../data/breakpoint/index.js").Breakpoints;
|
|
21
21
|
type: string;
|
|
22
22
|
}, import("@reduxjs/toolkit").MiddlewareArray<import("redux-saga").SagaMiddleware<object> | import("redux-thunk").ThunkMiddleware<import("redux").CombinedState<{
|
|
23
|
-
waitMessage: import("../../data/wait-message/reducer").WaitMessageState;
|
|
24
|
-
error: import("../../data/error").ErrorState;
|
|
25
|
-
breakpoint: import("../../data/breakpoint").BreakpointState;
|
|
26
|
-
liveMessage: import("../../data/live-message").LiveMessageState;
|
|
23
|
+
waitMessage: import("../../data/wait-message/reducer.js").WaitMessageState;
|
|
24
|
+
error: import("../../data/error/index.js").ErrorState;
|
|
25
|
+
breakpoint: import("../../data/breakpoint/index.js").BreakpointState;
|
|
26
|
+
liveMessage: import("../../data/live-message/index.js").LiveMessageState;
|
|
27
27
|
}>, import("redux").AnyAction, null> | import("redux-thunk").ThunkMiddleware<import("redux").CombinedState<{
|
|
28
|
-
waitMessage: import("../../data/wait-message/reducer").WaitMessageState;
|
|
29
|
-
error: import("../../data/error").ErrorState;
|
|
30
|
-
breakpoint: import("../../data/breakpoint").BreakpointState;
|
|
31
|
-
liveMessage: import("../../data/live-message").LiveMessageState;
|
|
28
|
+
waitMessage: import("../../data/wait-message/reducer.js").WaitMessageState;
|
|
29
|
+
error: import("../../data/error/index.js").ErrorState;
|
|
30
|
+
breakpoint: import("../../data/breakpoint/index.js").BreakpointState;
|
|
31
|
+
liveMessage: import("../../data/live-message/index.js").LiveMessageState;
|
|
32
32
|
}>, import("redux").AnyAction, undefined> | import("redux").Middleware<{}, import("redux").CombinedState<{
|
|
33
|
-
waitMessage: import("../../data/wait-message/reducer").WaitMessageState;
|
|
34
|
-
error: import("../../data/error").ErrorState;
|
|
35
|
-
breakpoint: import("../../data/breakpoint").BreakpointState;
|
|
36
|
-
liveMessage: import("../../data/live-message").LiveMessageState;
|
|
33
|
+
waitMessage: import("../../data/wait-message/reducer.js").WaitMessageState;
|
|
34
|
+
error: import("../../data/error/index.js").ErrorState;
|
|
35
|
+
breakpoint: import("../../data/breakpoint/index.js").BreakpointState;
|
|
36
|
+
liveMessage: import("../../data/live-message/index.js").LiveMessageState;
|
|
37
37
|
}>, import("redux").Dispatch<import("redux").AnyAction>>>>;
|
|
38
38
|
container: HTMLElement;
|
|
39
39
|
baseElement: Element;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { History } from 'history';
|
|
3
3
|
import { Theme } from '@elliemae/pui-theme';
|
|
4
|
-
import { AppStore } from '../../data/store';
|
|
4
|
+
import { AppStore } from '../../data/store.js';
|
|
5
5
|
declare type AppRootProps = {
|
|
6
6
|
store: AppStore;
|
|
7
7
|
history: History;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { CHECKBOX_VARIANT } from '@elliemae/ds-
|
|
2
|
+
import { CHECKBOX_VARIANT } from '@elliemae/ds-form/Checkbox';
|
|
3
3
|
import { RegisterOptions, FieldValues, FieldPath } from 'react-hook-form';
|
|
4
4
|
export declare type CheckBoxProps<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> = {
|
|
5
5
|
name: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Story, Meta } from '@storybook/react';
|
|
2
|
-
import { CheckBoxProps } from '.';
|
|
2
|
+
import { CheckBoxProps } from './index.js';
|
|
3
3
|
declare const _default: Meta<import("@storybook/react").Args>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Basic: Story<CheckBoxProps<import("react-hook-form").FieldValues, string> & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Story, Meta } from '@storybook/react';
|
|
2
|
-
import { CheckBoxProps } from '.';
|
|
2
|
+
import { CheckBoxProps } from './index.js';
|
|
3
3
|
declare const _default: Meta<import("@storybook/react").Args>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const SetValue: Story<CheckBoxProps<import("react-hook-form").FieldValues, string>>;
|
|
File without changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Story, Meta } from '@storybook/react';
|
|
2
|
-
import { FormItemLayoutProps } from '../form-item-layout';
|
|
2
|
+
import { FormItemLayoutProps } from '../form-item-layout/index.js';
|
|
3
3
|
declare const _default: Meta<import("@storybook/react").Args>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Basic: Story<FormItemLayoutProps & {
|
|
File without changes
|
|
File without changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Story, Meta } from '@storybook/react';
|
|
2
|
-
import { DateInputProps } from '.';
|
|
2
|
+
import { DateInputProps } from './index.js';
|
|
3
3
|
declare const _default: Meta<import("@storybook/react").Args>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Basic: Story<DateInputProps<import("react-hook-form").FieldValues, string> & {
|
|
File without changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Story, Meta } from '@storybook/react';
|
|
2
|
-
import { DatePickerProps } from '.';
|
|
2
|
+
import { DatePickerProps } from './index.js';
|
|
3
3
|
declare const _default: Meta<import("@storybook/react").Args>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Basic: Story<DatePickerProps<import("react-hook-form").FieldValues, string> & {
|
|
File without changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Story, Meta } from '@storybook/react';
|
|
2
|
-
import { FormItemLayoutProps } from '.';
|
|
2
|
+
import { FormItemLayoutProps } from './index.js';
|
|
3
3
|
declare const _default: Meta<import("@storybook/react").Args>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Basic: Story<FormItemLayoutProps>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { MASK_TYPES, MASK_PIPES } from '@elliemae/ds-
|
|
2
|
+
import { MASK_TYPES, MASK_PIPES } from '@elliemae/ds-form/InputMask';
|
|
3
3
|
import { RegisterOptions, FieldValues, FieldPath } from 'react-hook-form';
|
|
4
4
|
export declare type InputMaskProps<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> = {
|
|
5
5
|
name: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Story, Meta } from '@storybook/react';
|
|
2
|
-
import { InputMaskProps } from '.';
|
|
2
|
+
import { InputMaskProps } from './index.js';
|
|
3
3
|
declare const _default: Meta<import("@storybook/react").Args>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Basic: Story<InputMaskProps<import("react-hook-form").FieldValues, string> & {
|
|
File without changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Story, Meta } from '@storybook/react';
|
|
2
|
-
import { LargeTextBoxProps } from '.';
|
|
2
|
+
import { LargeTextBoxProps } from './index.js';
|
|
3
3
|
declare const _default: Meta<import("@storybook/react").Args>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Basic: Story<LargeTextBoxProps<import("react-hook-form").FieldValues, string> & {
|
|
File without changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Story, Meta } from '@storybook/react';
|
|
2
|
-
import { RadioProps } from '.';
|
|
2
|
+
import { RadioProps } from './index.js';
|
|
3
3
|
declare const _default: Meta<import("@storybook/react").Args>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Basic: Story<RadioProps<import("react-hook-form").FieldValues, string> & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Story, Meta } from '@storybook/react';
|
|
2
|
-
import { RadioProps } from '.';
|
|
2
|
+
import { RadioProps } from './index.js';
|
|
3
3
|
declare const _default: Meta<import("@storybook/react").Args>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const SetValue: Story<RadioProps<import("react-hook-form").FieldValues, string>>;
|
|
File without changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Story, Meta } from '@storybook/react';
|
|
2
|
-
import { RadioGroupProps } from '.';
|
|
2
|
+
import { RadioGroupProps } from './index.js';
|
|
3
3
|
declare const _default: Meta<import("@storybook/react").Args>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Basic: Story<RadioGroupProps<import("react-hook-form").FieldValues, string>>;
|
|
File without changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Story, Meta } from '@storybook/react';
|
|
2
|
-
import { TextBoxProps } from '.';
|
|
2
|
+
import { TextBoxProps } from './index.js';
|
|
3
3
|
declare const _default: Meta<import("@storybook/react").Args>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Basic: Story<TextBoxProps<import("react-hook-form").FieldValues, string> & {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { MicroAppConfig } from '../../../utils/micro-frontend/types';
|
|
1
|
+
import { MicroAppConfig } from '../../../utils/micro-frontend/types.js';
|
|
2
2
|
export declare const mountApp: ({ id, name }: MicroAppConfig) => Promise<void>;
|
|
3
3
|
export declare const unmountApp: ({ id, name }: MicroAppConfig) => Promise<void | null>;
|
|
4
4
|
export declare const loadApp: (appConfig: MicroAppConfig) => Promise<void>;
|
|
5
5
|
export declare const unloadApp: ({ id, hostUrl, documentEle, }: {
|
|
6
6
|
id: string;
|
|
7
|
-
hostUrl
|
|
8
|
-
documentEle:
|
|
7
|
+
hostUrl?: string | undefined;
|
|
8
|
+
documentEle: Document;
|
|
9
9
|
}) => void;
|
|
File without changes
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare type Manifest = Record<string, string>;
|
|
2
2
|
export declare const getAppManifest: ({ hostUrl, manifestPath, }: {
|
|
3
|
-
hostUrl
|
|
4
|
-
manifestPath
|
|
3
|
+
hostUrl?: string | undefined;
|
|
4
|
+
manifestPath?: string | undefined;
|
|
5
5
|
}) => Promise<Manifest>;
|
|
6
6
|
export declare const getFullFileNameofAssetsFromManifest: (manifest: Record<string, string>, assetNames?: Array<string>) => Array<string>;
|
|
7
7
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { MicroAppConfig } from '../../../utils/micro-frontend/types';
|
|
1
|
+
import { MicroAppConfig } from '../../../utils/micro-frontend/types.js';
|
|
2
2
|
export declare const APP_SCRIPT_ID_PREFIX = "emui-script-";
|
|
3
3
|
export declare const addScriptToDOM: ({ name, hostUrl, documentEle }: MicroAppConfig, fileName: string, index: number) => Promise<string>;
|
|
4
4
|
export declare const removeScriptFromDOM: (elementId?: string, documentEle?: Document) => Promise<void>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { MicroAppConfig } from '../../../utils/micro-frontend/types';
|
|
1
|
+
import { MicroAppConfig } from '../../../utils/micro-frontend/types.js';
|
|
2
2
|
export declare const APP_STYLE_ID_PREFIX = "emui-style-";
|
|
3
3
|
export declare const addStylesToDOM: ({ name, hostUrl, documentEle }: MicroAppConfig, fileName: string, index: number) => Promise<string>;
|
|
4
4
|
export declare const removeStyleFromDOM: (elementId?: string, documentEle?: Document) => Promise<void>;
|
|
File without changes
|
|
File without changes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { OnUnloadCompleteFn } from '../micro-app/use-app-will-render';
|
|
3
|
-
import { MicroIFrameAppProps } from './types';
|
|
2
|
+
import { OnUnloadCompleteFn } from '../micro-app/use-app-will-render.js';
|
|
3
|
+
import { MicroIFrameAppProps } from './types.js';
|
|
4
4
|
declare type AppProps = MicroIFrameAppProps & {
|
|
5
5
|
dispose: boolean;
|
|
6
6
|
onUnloadComplete: OnUnloadCompleteFn;
|
|
File without changes
|
|
File without changes
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { MicroIFrameAppProps } from './types';
|
|
1
|
+
import { MicroIFrameAppProps } from './types.js';
|
|
2
2
|
export declare const useFrameLoaded: ({ id, documentEle }: MicroIFrameAppProps) => void;
|
|
File without changes
|
|
File without changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Story, Meta } from '@storybook/react';
|
|
2
|
-
import { NavigationPromptProps } from '.';
|
|
2
|
+
import { NavigationPromptProps } from './index.js';
|
|
3
3
|
declare const _default: Meta<import("@storybook/react").Args>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Basic: Story<NavigationPromptProps>;
|
|
File without changes
|
|
File without changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Story, Meta } from '@storybook/react';
|
|
2
|
-
import { SessionExpiryProps } from '.';
|
|
2
|
+
import { SessionExpiryProps } from './index.js';
|
|
3
3
|
declare const _default: Meta<import("@storybook/react").Args>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Basic: Story<SessionExpiryProps>;
|
|
File without changes
|
|
File without changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Story, Meta } from '@storybook/react';
|
|
2
|
-
import { WaitMessageProps } from '.';
|
|
2
|
+
import { WaitMessageProps } from './index.js';
|
|
3
3
|
declare const _default: Meta<import("@storybook/react").Args>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Basic: Story<WaitMessageProps>;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { Theme } from '@elliemae/pui-theme';
|
|
3
|
-
import { AppStore } from '../../data/store';
|
|
3
|
+
import { AppStore } from '../../data/store.js';
|
|
4
4
|
declare type StoreFn = () => React.ReactElement;
|
|
5
5
|
export declare const withAppDecorator: (theme: Theme, store: AppStore, story: StoreFn) => JSX.Element;
|
|
6
6
|
export {};
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/pui-app-sdk",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.9",
|
|
4
4
|
"description": "ICE MT UI Platform Application SDK ",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css",
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"exports": {
|
|
13
13
|
".": {
|
|
14
14
|
"import": "./dist/es/index.js",
|
|
15
|
-
"require": "./dist/cjs/index.js"
|
|
15
|
+
"require": "./dist/cjs/index.js",
|
|
16
|
+
"typings": "./dist/types/index.d.ts"
|
|
16
17
|
},
|
|
17
18
|
"./storybook/*": {
|
|
18
19
|
"import": "./dist/es/utils/storybook/*.js",
|
|
@@ -33,6 +34,14 @@
|
|
|
33
34
|
"./analytics": {
|
|
34
35
|
"import": "./dist/es/analytics/index.js",
|
|
35
36
|
"require": "./dist/cjs/analytics/index.js"
|
|
37
|
+
},
|
|
38
|
+
"./data": {
|
|
39
|
+
"import": "./dist/es/data/index.js",
|
|
40
|
+
"require": "./dist/cjs/data/index.js"
|
|
41
|
+
},
|
|
42
|
+
"./micro-frontend": {
|
|
43
|
+
"import": "./dist/es/micro-frontend.js",
|
|
44
|
+
"require": "./dist/cjs/micro-frontend.js"
|
|
36
45
|
}
|
|
37
46
|
},
|
|
38
47
|
"files": [
|
|
@@ -90,29 +99,37 @@
|
|
|
90
99
|
"peerDependencies": {
|
|
91
100
|
"@elliemae/app-react-dependencies": "^2.10.0",
|
|
92
101
|
"@elliemae/ds-basic": "^1.60.0",
|
|
102
|
+
"@elliemae/ds-button": "^1.60.0",
|
|
103
|
+
"@elliemae/ds-form": "^1.60.0",
|
|
104
|
+
"@elliemae/ds-loading-indicator": "^1.60.0",
|
|
93
105
|
"@elliemae/ds-date-picker": "^1.60.0",
|
|
94
106
|
"@elliemae/ds-modal": "^1.60.0",
|
|
95
107
|
"@elliemae/ds-popperjs": "^1.60.0",
|
|
108
|
+
"@elliemae/ds-toast": "^1.60.0",
|
|
96
109
|
"@elliemae/em-ssf-guest": "^1.11.1",
|
|
97
|
-
"@elliemae/pui-diagnostics": "^2.7.
|
|
98
|
-
"@elliemae/pui-micro-frontend-base": "^1.
|
|
99
|
-
"@elliemae/pui-theme": "^2.
|
|
100
|
-
"@elliemae/pui-user-monitoring": "^1.
|
|
110
|
+
"@elliemae/pui-diagnostics": "^2.7.2",
|
|
111
|
+
"@elliemae/pui-micro-frontend-base": "^1.10.0",
|
|
112
|
+
"@elliemae/pui-theme": "^2.3.0",
|
|
113
|
+
"@elliemae/pui-user-monitoring": "^1.12.1"
|
|
101
114
|
},
|
|
102
115
|
"devDependencies": {
|
|
103
116
|
"@elliemae/app-react-dependencies": "~2.10.0",
|
|
104
117
|
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.2.1",
|
|
105
118
|
"@elliemae/ds-basic": "~1.60.0",
|
|
119
|
+
"@elliemae/ds-button": "~1.60.0",
|
|
120
|
+
"@elliemae/ds-form": "~1.60.0",
|
|
121
|
+
"@elliemae/ds-loading-indicator": "~1.60.0",
|
|
106
122
|
"@elliemae/ds-date-picker": "~1.60.0",
|
|
107
123
|
"@elliemae/ds-modal": "~1.60.0",
|
|
108
124
|
"@elliemae/ds-popperjs": "~1.60.0",
|
|
125
|
+
"@elliemae/ds-toast": "~1.60.0",
|
|
109
126
|
"@elliemae/em-ssf-guest": "~1.11.1",
|
|
110
|
-
"@elliemae/pui-cli": "~6.0.0-beta.
|
|
111
|
-
"@elliemae/pui-diagnostics": "~2.7.
|
|
127
|
+
"@elliemae/pui-cli": "~6.0.0-beta.24",
|
|
128
|
+
"@elliemae/pui-diagnostics": "~2.7.2",
|
|
112
129
|
"@elliemae/pui-e2e-test-sdk": "~6.8.0",
|
|
113
|
-
"@elliemae/pui-micro-frontend-base": "~1.
|
|
114
|
-
"@elliemae/pui-theme": "~2.
|
|
115
|
-
"@elliemae/pui-user-monitoring": "~1.
|
|
130
|
+
"@elliemae/pui-micro-frontend-base": "~1.10.0",
|
|
131
|
+
"@elliemae/pui-theme": "~2.3.0",
|
|
132
|
+
"@elliemae/pui-user-monitoring": "~1.12.1",
|
|
116
133
|
"react-router": "~5.2.1",
|
|
117
134
|
"react-router-dom": "~5.3.0"
|
|
118
135
|
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { TypedUseSelectorHook } from 'react-redux';
|
|
2
|
-
import { RootState } from './store';
|
|
3
|
-
export declare const useAppDispatch: () => import("redux-thunk").ThunkDispatch<import("redux").CombinedState<{
|
|
4
|
-
waitMessage: import("./wait-message/reducer").WaitMessageState;
|
|
5
|
-
error: import("./error").ErrorState;
|
|
6
|
-
breakpoint: import("./breakpoint").BreakpointState;
|
|
7
|
-
liveMessage: import("./live-message").LiveMessageState;
|
|
8
|
-
}>, null, import("redux").AnyAction> & import("redux-thunk").ThunkDispatch<import("redux").CombinedState<{
|
|
9
|
-
waitMessage: import("./wait-message/reducer").WaitMessageState;
|
|
10
|
-
error: import("./error").ErrorState;
|
|
11
|
-
breakpoint: import("./breakpoint").BreakpointState;
|
|
12
|
-
liveMessage: import("./live-message").LiveMessageState;
|
|
13
|
-
}>, undefined, import("redux").AnyAction> & import("redux").Dispatch<{
|
|
14
|
-
payload: import("./wait-message/reducer").WaitMessageState;
|
|
15
|
-
type: string;
|
|
16
|
-
} | import("redux").AnyAction | {
|
|
17
|
-
payload: import("./breakpoint").Breakpoints;
|
|
18
|
-
type: string;
|
|
19
|
-
}>;
|
|
20
|
-
export declare const useAppSelector: TypedUseSelectorHook<RootState>;
|