@elliemae/pui-app-sdk 5.7.1 → 6.0.0-next.10
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/README.md +8 -0
- package/dist/cjs/analytics/appdynamics.js +1 -1
- package/dist/cjs/analytics/page-view-event.js +1 -1
- package/dist/cjs/api/helpers.js +14 -4
- package/dist/cjs/api/users/index.endpoint.cjs +12 -0
- package/dist/cjs/app.config.json +2 -2
- package/dist/cjs/communication/http-client/index.js +2 -2
- package/dist/cjs/communication/http-client/response-interceptor.js +2 -2
- package/dist/cjs/communication/http-client/retry-axios.js +14 -14
- package/dist/cjs/communication/http-client/retry.js +1 -1
- package/dist/cjs/communication/http-client/tests/hello.endpoint.cjs +12 -0
- package/dist/cjs/communication/http-client/tests/private.endpoint.cjs +13 -0
- package/dist/cjs/data/appMiddleware.js +2 -3
- package/dist/cjs/{view/fields/large-text-box/index.js → data/auth-state.js} +24 -20
- package/dist/cjs/data/breakpoint-state.js +46 -0
- package/dist/cjs/data/{error/index.js → error-state.js} +3 -3
- package/dist/cjs/data/errorMiddleware.js +2 -2
- package/dist/cjs/data/listenerMiddleware.js +5 -3
- package/dist/cjs/data/{live-message/index.js → live-message-state.js} +3 -3
- package/dist/cjs/data/{logout/actions.js → logout-actions.js} +6 -16
- package/dist/cjs/data/{navigation-prompt/actions.js → navigation-prompt-actions.js} +6 -16
- package/dist/cjs/data/queryMiddleware.js +3 -1
- package/dist/cjs/data/reducers.js +8 -8
- package/dist/cjs/data/store.js +12 -8
- package/dist/cjs/data/wait-message-state.js +46 -0
- package/dist/cjs/index.js +13 -35
- package/dist/cjs/sideeffect/auth/index.js +4 -4
- package/dist/cjs/sideeffect/error-toast/index.js +3 -3
- package/dist/cjs/sideeffect/wait-message/index.js +3 -3
- package/dist/cjs/utils/app-config/config.js +2 -2
- package/dist/cjs/utils/app-config/index.js +1 -1
- package/dist/cjs/utils/auth/helper.js +2 -2
- package/dist/cjs/utils/auth/index.js +2 -2
- package/dist/cjs/utils/font-size.js +1 -1
- package/dist/cjs/utils/micro-frontend/guest.js +9 -8
- package/dist/cjs/utils/micro-frontend/host.js +10 -8
- package/dist/cjs/utils/micro-frontend/index.js +15 -5
- package/dist/cjs/utils/micro-frontend/ssfguest-adapter.js +1 -1
- package/dist/cjs/utils/session.js +26 -4
- package/dist/cjs/{data/breakpoint/index.js → utils/storybook/main.js} +31 -26
- package/dist/cjs/utils/storybook/manager.js +2 -2
- package/dist/cjs/{data/wait-message/actions.js → utils/storybook/middleware.js} +7 -18
- package/dist/cjs/utils/storybook/preview.js +10 -5
- package/dist/cjs/utils/storybook/theme.js +5 -8
- package/dist/cjs/utils/storybook/vite.js +33 -0
- package/dist/cjs/{view/fields/date-input/index.js → utils/storybook/webpack.js} +22 -20
- package/dist/cjs/utils/testing/index.js +1 -1
- package/dist/cjs/utils/testing/render-with-redux.js +1 -5
- package/dist/cjs/utils/testing/render-with-router-redux.js +1 -2
- package/dist/cjs/utils/url.js +2 -0
- package/dist/cjs/utils/web-storage.js +1 -1
- package/dist/cjs/utils/window.js +1 -1
- package/dist/cjs/view/app-root/hosted-app.js +3 -3
- package/dist/cjs/view/app-root/index.js +2 -0
- package/dist/cjs/view/app-root/stand-alone-app.js +3 -3
- package/dist/cjs/view/app-root/style.js +1 -1
- package/dist/cjs/{data/auth/actions.js → view/app-root/use-prefetch-resources.js} +15 -31
- package/dist/cjs/view/breakpoint/use-breakpoint.js +4 -4
- package/dist/cjs/view/error-boundary/index.js +2 -2
- package/dist/cjs/view/error-toast/index.js +4 -4
- package/dist/cjs/view/fetch-host-app-data/index.js +1 -1
- package/dist/cjs/view/fetch-host-app-data/store.js +12 -2
- package/dist/cjs/view/fields/autocomplete/index.js +4 -1
- package/dist/cjs/view/fields/combo-box-v3/index.js +1 -1
- package/dist/cjs/view/fields/masked-input-text/index.js +1 -1
- package/dist/cjs/view/fields/watch-value.js +1 -1
- package/dist/cjs/view/form/index.js +1 -1
- package/dist/cjs/view/form/personal-info-section.js +5 -7
- package/dist/cjs/view/login/index.js +2 -2
- package/dist/cjs/view/micro-app/app-factory/index.js +17 -7
- package/dist/cjs/view/micro-app/index.js +1 -1
- package/dist/cjs/view/micro-app/resources/script.js +16 -8
- package/dist/cjs/view/micro-app/resources/style.js +14 -1
- package/dist/cjs/view/micro-app/use-app-will-render.js +15 -5
- package/dist/cjs/view/micro-iframe-app/app.js +1 -1
- package/dist/cjs/view/micro-iframe-app/iframe/index.js +1 -2
- package/dist/cjs/view/modals/navigation-prompt/index.js +3 -3
- package/dist/cjs/view/modals/session-expiry/index.js +3 -3
- package/dist/cjs/view/page.js +1 -1
- package/dist/cjs/view/require-auth.js +3 -3
- package/dist/cjs/view/session-timeout/index.js +2 -2
- package/dist/cjs/view/storybook/decorator.js +1 -1
- package/dist/cjs/view/use-window-size-change.js +1 -1
- package/dist/cjs/view/visually-hidden/index.js +2 -1
- package/dist/cjs/view/wait-message/index.js +2 -2
- package/dist/cjs/view/wait-message/wait-message-launcher.js +3 -3
- package/dist/esm/analytics/page-view-event.js +1 -1
- package/dist/esm/api/users/index.endpoint.cjs +12 -0
- package/dist/esm/app.config.json +2 -2
- package/dist/esm/communication/http-client/response-interceptor.js +1 -1
- package/dist/esm/communication/http-client/retry-axios.js +13 -13
- package/dist/esm/communication/http-client/retry.js +1 -1
- package/dist/esm/communication/http-client/tests/hello.endpoint.cjs +12 -0
- package/dist/esm/communication/http-client/tests/private.endpoint.cjs +13 -0
- package/dist/esm/data/appMiddleware.js +2 -3
- package/dist/esm/data/auth-state.js +24 -0
- package/dist/esm/data/breakpoint-state.js +26 -0
- package/dist/esm/data/errorMiddleware.js +2 -2
- package/dist/esm/data/listenerMiddleware.js +5 -3
- package/dist/esm/data/logout-actions.js +8 -0
- package/dist/esm/data/navigation-prompt-actions.js +8 -0
- package/dist/esm/data/queryMiddleware.js +3 -1
- package/dist/esm/data/reducers.js +4 -4
- package/dist/esm/data/store.js +12 -8
- package/dist/esm/data/wait-message-state.js +26 -0
- package/dist/esm/index.js +11 -37
- package/dist/esm/sideeffect/auth/index.js +4 -8
- package/dist/esm/sideeffect/error-toast/index.js +2 -2
- package/dist/esm/sideeffect/wait-message/index.js +3 -3
- package/dist/esm/utils/auth/helper.js +1 -1
- package/dist/esm/utils/auth/index.js +2 -2
- package/dist/esm/utils/font-size.js +1 -1
- package/dist/esm/utils/micro-frontend/guest.js +8 -7
- package/dist/esm/utils/micro-frontend/host.js +6 -4
- package/dist/esm/utils/micro-frontend/index.js +14 -4
- package/dist/esm/utils/session.js +13 -1
- package/dist/esm/utils/storybook/main.js +33 -0
- package/dist/esm/utils/storybook/manager.js +2 -2
- package/dist/esm/utils/storybook/middleware.js +7 -0
- package/dist/esm/utils/storybook/preview.js +10 -5
- package/dist/esm/utils/storybook/theme.js +5 -8
- package/dist/esm/utils/storybook/vite.js +13 -0
- package/dist/esm/utils/storybook/webpack.js +22 -0
- package/dist/esm/utils/testing/index.js +1 -1
- package/dist/esm/utils/testing/render-with-redux.js +1 -5
- package/dist/esm/utils/testing/render-with-router-redux.js +1 -2
- package/dist/esm/utils/url.js +2 -0
- package/dist/esm/utils/window.js +1 -1
- package/dist/esm/view/app-root/hosted-app.js +1 -1
- package/dist/esm/view/app-root/index.js +2 -0
- package/dist/esm/view/app-root/stand-alone-app.js +1 -1
- package/dist/esm/view/app-root/style.js +1 -1
- package/dist/esm/view/app-root/use-prefetch-resources.js +15 -0
- package/dist/esm/view/breakpoint/use-breakpoint.js +7 -4
- package/dist/esm/view/error-boundary/index.js +1 -1
- package/dist/esm/view/error-toast/index.js +3 -3
- package/dist/esm/view/fields/autocomplete/index.js +4 -1
- package/dist/esm/view/fields/combo-box-v3/index.js +1 -1
- package/dist/esm/view/form/personal-info-section.js +5 -7
- package/dist/esm/view/login/index.js +2 -2
- package/dist/esm/view/micro-app/app-factory/index.js +21 -9
- package/dist/esm/view/micro-app/resources/script.js +17 -9
- package/dist/esm/view/micro-app/resources/style.js +15 -2
- package/dist/esm/view/micro-app/use-app-will-render.js +1 -1
- package/dist/esm/view/micro-iframe-app/iframe/index.js +0 -1
- package/dist/esm/view/modals/navigation-prompt/index.js +1 -1
- package/dist/esm/view/modals/session-expiry/index.js +1 -1
- package/dist/esm/view/require-auth.js +1 -1
- package/dist/esm/view/session-timeout/index.js +1 -1
- package/dist/esm/view/storybook/decorator.js +1 -1
- package/dist/esm/view/use-window-size-change.js +1 -1
- package/dist/esm/view/visually-hidden/index.js +1 -0
- package/dist/esm/view/wait-message/index.js +1 -1
- package/dist/esm/view/wait-message/wait-message-launcher.js +1 -1
- package/dist/types/docusaurus.config.d.ts +2 -0
- package/dist/types/lib/api/helpers.d.ts +1 -1
- package/dist/types/lib/communication/http-client/response-interceptor.d.ts +1 -3
- package/dist/types/lib/communication/http-client/retry-axios.d.ts +5 -5
- package/dist/types/lib/data/appMiddleware.d.ts +2 -2
- package/dist/types/lib/data/auth-state.d.ts +28 -0
- package/dist/types/lib/data/breakpoint-state.d.ts +15 -0
- package/dist/types/lib/data/{error/index.d.ts → error-state.d.ts} +5 -1
- package/dist/types/lib/data/listenerMiddleware.d.ts +38 -17
- package/dist/types/lib/data/{live-message/index.d.ts → live-message-state.d.ts} +5 -1
- package/dist/types/lib/data/logout-actions.d.ts +4 -0
- package/dist/types/lib/data/navigation-prompt-actions.d.ts +4 -0
- package/dist/types/lib/data/reducers.d.ts +12 -15
- package/dist/types/lib/data/saga.d.ts +3 -5
- package/dist/types/lib/data/store.d.ts +31 -38
- package/dist/types/lib/data/types.d.ts +6 -6
- package/dist/types/lib/data/wait-message-state.d.ts +17 -0
- package/dist/types/lib/index.d.ts +6 -16
- package/dist/types/lib/sideeffect/auth/index.d.ts +1 -1
- package/dist/types/lib/utils/app-config/config.d.ts +1 -3
- package/dist/types/lib/utils/app-host-integration/react.d.ts +2 -2
- package/dist/types/lib/utils/guest-with-service.d.ts +1 -3
- package/dist/types/lib/utils/micro-frontend/host.d.ts +4 -4
- package/dist/types/lib/utils/micro-frontend/index.d.ts +1 -0
- package/dist/types/lib/utils/micro-frontend/types.d.ts +5 -4
- package/dist/types/lib/utils/session.d.ts +3 -9
- package/dist/types/lib/utils/storybook/main.d.ts +2 -0
- package/dist/types/lib/utils/storybook/manager.d.ts +2 -1
- package/dist/types/lib/utils/storybook/middleware.d.ts +1 -0
- package/dist/types/lib/utils/storybook/preview.d.ts +5 -29
- package/dist/types/lib/utils/storybook/theme.d.ts +2 -5
- package/dist/types/lib/utils/storybook/vite.d.ts +10 -0
- package/dist/types/lib/utils/storybook/webpack.d.ts +17 -0
- package/dist/types/lib/utils/testing/render-with-redux.d.ts +15 -19
- package/dist/types/lib/utils/testing/render-with-router-redux.d.ts +14 -18
- package/dist/types/lib/utils/testing/render-with-router.d.ts +1 -1
- package/dist/types/lib/utils/testing/render-with-state-addons.d.ts +2 -2
- package/dist/types/lib/utils/url.d.ts +1 -0
- package/dist/types/lib/utils/window.d.ts +1 -3
- package/dist/types/lib/view/app-root/hosted-app.d.ts +2 -2
- package/dist/types/lib/view/app-root/index.d.ts +2 -2
- package/dist/types/lib/view/app-root/stand-alone-app.d.ts +2 -2
- package/dist/types/lib/view/app-root/use-prefetch-resources.d.ts +1 -0
- package/dist/types/lib/view/breakpoint/index.stories.d.ts +6 -3
- package/dist/types/lib/view/breakpoint/use-media-query-list.d.ts +1 -1
- package/dist/types/lib/view/error-toast/index.d.ts +1 -4
- package/dist/types/lib/view/error-toast/index.stories.d.ts +12 -5
- package/dist/types/lib/view/fields/autocomplete/advanced-autocomplete.stories.d.ts +6 -5
- package/dist/types/lib/view/fields/autocomplete/async-suggestions-autocomplete.stories.d.ts +6 -5
- package/dist/types/lib/view/fields/autocomplete/index.stories.d.ts +6 -5
- package/dist/types/lib/view/fields/check-box/index.stories.d.ts +8 -5
- package/dist/types/lib/view/fields/check-box/set-value.stories.d.ts +8 -5
- package/dist/types/lib/view/fields/combo-box-v3/index.stories.d.ts +8 -5
- package/dist/types/lib/view/fields/connect-form.d.ts +2 -2
- package/dist/types/lib/view/fields/date-range-picker/index.d.ts +2 -2
- package/dist/types/lib/view/fields/date-range-picker/index.stories.d.ts +8 -7
- package/dist/types/lib/view/fields/date-time-picker/index.stories.d.ts +19 -39
- package/dist/types/lib/view/fields/form-layout-block-item/index.stories.d.ts +8 -4
- package/dist/types/lib/view/fields/input-text/index.stories.d.ts +8 -10
- package/dist/types/lib/view/fields/masked-input-text/index.d.ts +2 -2
- package/dist/types/lib/view/fields/masked-input-text/index.stories.d.ts +10 -0
- package/dist/types/lib/view/fields/toggle/index.stories.d.ts +6 -10
- package/dist/types/lib/view/fields/watch-value.d.ts +2 -2
- package/dist/types/lib/view/form/index.d.ts +2 -2
- package/dist/types/lib/view/form/index.stories.d.ts +7 -3
- package/dist/types/lib/view/form/personal-info-section.d.ts +0 -1
- package/dist/types/lib/view/form/submit-button/index.d.ts +2 -2
- package/dist/types/lib/view/form/usecases.stories.d.ts +9 -12
- package/dist/types/lib/view/live-message/index.stories.d.ts +5 -3
- package/dist/types/lib/view/micro-app/app-factory/index.d.ts +1 -0
- package/dist/types/lib/view/micro-app/resources/manifest.d.ts +1 -1
- package/dist/types/lib/view/micro-app/resources/script.d.ts +4 -0
- package/dist/types/lib/view/micro-app/resources/style.d.ts +4 -0
- package/dist/types/lib/view/micro-app/types.d.ts +2 -2
- package/dist/types/lib/view/micro-app/utils.d.ts +2 -2
- package/dist/types/lib/view/micro-iframe-app/iframe/index.d.ts +2 -2
- package/dist/types/lib/view/modals/error/index.stories.d.ts +9 -6
- package/dist/types/lib/view/modals/navigation-prompt/index.stories.d.ts +9 -10
- package/dist/types/lib/view/modals/session-expiry/index.stories.d.ts +10 -6
- package/dist/types/lib/view/session-timeout/index.stories.d.ts +8 -4
- package/dist/types/lib/view/storybook/decorator.d.ts +1 -1
- package/dist/types/lib/view/visually-hidden/index.d.ts +1 -0
- package/dist/types/lib/view/wait-message/index.stories.d.ts +8 -8
- package/package.json +52 -50
- package/dist/cjs/data/auth/reducer.js +0 -49
- package/dist/cjs/data/wait-message/reducer.js +0 -51
- package/dist/cjs/utils/storybook/cjs/main.js +0 -58
- package/dist/cjs/utils/storybook/cjs/middleware.js +0 -6
- package/dist/cjs/utils/storybook/cjs/vite.js +0 -8
- package/dist/cjs/utils/storybook/cjs/webpack.js +0 -20
- package/dist/cjs/view/fields/combo-box/index.js +0 -50
- package/dist/cjs/view/fields/date-picker/index.js +0 -50
- package/dist/cjs/view/fields/form-item-layout/index.js +0 -43
- package/dist/cjs/view/fields/input-mask/index.js +0 -60
- package/dist/cjs/view/fields/radio/index.js +0 -48
- package/dist/cjs/view/fields/radio-group/index.js +0 -40
- package/dist/cjs/view/fields/text-box/index.js +0 -40
- package/dist/esm/data/auth/actions.js +0 -31
- package/dist/esm/data/auth/reducer.js +0 -19
- package/dist/esm/data/breakpoint/index.js +0 -28
- package/dist/esm/data/logout/actions.js +0 -18
- package/dist/esm/data/navigation-prompt/actions.js +0 -18
- package/dist/esm/data/wait-message/actions.js +0 -18
- package/dist/esm/data/wait-message/reducer.js +0 -21
- package/dist/esm/view/fields/combo-box/index.js +0 -32
- package/dist/esm/view/fields/date-input/index.js +0 -22
- package/dist/esm/view/fields/date-picker/index.js +0 -22
- package/dist/esm/view/fields/form-item-layout/index.js +0 -23
- package/dist/esm/view/fields/input-mask/index.js +0 -42
- package/dist/esm/view/fields/large-text-box/index.js +0 -22
- package/dist/esm/view/fields/radio/index.js +0 -30
- package/dist/esm/view/fields/radio-group/index.js +0 -22
- package/dist/esm/view/fields/text-box/index.js +0 -22
- package/dist/types/lib/data/auth/actions.d.ts +0 -22
- package/dist/types/lib/data/auth/reducer.d.ts +0 -6
- package/dist/types/lib/data/breakpoint/index.d.ts +0 -13
- package/dist/types/lib/data/logout/actions.d.ts +0 -9
- package/dist/types/lib/data/navigation-prompt/actions.d.ts +0 -9
- package/dist/types/lib/data/wait-message/actions.d.ts +0 -14
- package/dist/types/lib/data/wait-message/reducer.d.ts +0 -7
- package/dist/types/lib/utils/storybook/cjs/main.d.ts +0 -66
- package/dist/types/lib/utils/storybook/cjs/middleware.d.ts +0 -2
- package/dist/types/lib/utils/storybook/cjs/vite.d.ts +0 -5
- package/dist/types/lib/utils/storybook/cjs/webpack.d.ts +0 -17
- package/dist/types/lib/view/fields/combo-box/index.d.ts +0 -8
- package/dist/types/lib/view/fields/combo-box/index.stories.d.ts +0 -5
- package/dist/types/lib/view/fields/date-input/index.d.ts +0 -8
- package/dist/types/lib/view/fields/date-input/index.stories.d.ts +0 -7
- package/dist/types/lib/view/fields/date-picker/index.d.ts +0 -9
- package/dist/types/lib/view/fields/date-picker/index.stories.d.ts +0 -5
- package/dist/types/lib/view/fields/form-item-layout/index.d.ts +0 -9
- package/dist/types/lib/view/fields/form-item-layout/index.stories.d.ts +0 -5
- package/dist/types/lib/view/fields/input-mask/index.d.ts +0 -15
- package/dist/types/lib/view/fields/input-mask/index.stories.d.ts +0 -5
- package/dist/types/lib/view/fields/large-text-box/index.d.ts +0 -9
- package/dist/types/lib/view/fields/large-text-box/index.stories.d.ts +0 -5
- package/dist/types/lib/view/fields/masked-input-text/with-money-mask.stories.d.ts +0 -11
- package/dist/types/lib/view/fields/masked-input-text/with-percentage-mask.stories.d.ts +0 -11
- package/dist/types/lib/view/fields/radio/index.d.ts +0 -9
- package/dist/types/lib/view/fields/radio/index.stories.d.ts +0 -5
- package/dist/types/lib/view/fields/radio/set-value.stories.d.ts +0 -5
- package/dist/types/lib/view/fields/radio-group/index.d.ts +0 -8
- package/dist/types/lib/view/fields/radio-group/index.stories.d.ts +0 -5
- package/dist/types/lib/view/fields/text-box/index.d.ts +0 -8
- package/dist/types/lib/view/fields/text-box/index.stories.d.ts +0 -7
- /package/dist/esm/data/{error/index.js → error-state.js} +0 -0
- /package/dist/esm/data/{live-message/index.js → live-message-state.js} +0 -0
- /package/dist/types/lib/api/users/{index.endpoint.d.ts → index.endpoint.d.cts} +0 -0
- /package/dist/types/lib/communication/http-client/tests/{hello.endpoint.d.ts → hello.endpoint.d.cts} +0 -0
- /package/dist/types/lib/communication/http-client/tests/{private.endpoint.d.ts → private.endpoint.d.cts} +0 -0
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
var radio_group_exports = {};
|
|
20
|
-
__export(radio_group_exports, {
|
|
21
|
-
RadioGroup: () => RadioGroup
|
|
22
|
-
});
|
|
23
|
-
module.exports = __toCommonJS(radio_group_exports);
|
|
24
|
-
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
|
-
var import_ds_form = require("@elliemae/ds-form");
|
|
26
|
-
var import_react_hook_form = require("react-hook-form");
|
|
27
|
-
const RadioGroup = ({
|
|
28
|
-
name,
|
|
29
|
-
rules = {},
|
|
30
|
-
defaultValue,
|
|
31
|
-
...rest
|
|
32
|
-
}) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
33
|
-
import_react_hook_form.Controller,
|
|
34
|
-
{
|
|
35
|
-
name,
|
|
36
|
-
rules,
|
|
37
|
-
defaultValue,
|
|
38
|
-
render: ({ field: { value, ...restProps } }) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_ds_form.DSRadioGroup, { ...rest, ...restProps, activeValue: value })
|
|
39
|
-
}
|
|
40
|
-
);
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
var text_box_exports = {};
|
|
20
|
-
__export(text_box_exports, {
|
|
21
|
-
TextBox: () => TextBox
|
|
22
|
-
});
|
|
23
|
-
module.exports = __toCommonJS(text_box_exports);
|
|
24
|
-
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
|
-
var import_ds_form = require("@elliemae/ds-form");
|
|
26
|
-
var import_react_hook_form = require("react-hook-form");
|
|
27
|
-
const TextBox = ({
|
|
28
|
-
name,
|
|
29
|
-
defaultValue = "",
|
|
30
|
-
rules = {},
|
|
31
|
-
...rest
|
|
32
|
-
}) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
33
|
-
import_react_hook_form.Controller,
|
|
34
|
-
{
|
|
35
|
-
name,
|
|
36
|
-
defaultValue,
|
|
37
|
-
rules,
|
|
38
|
-
render: ({ field }) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_ds_form.DSTextBox, { ...rest, ...field })
|
|
39
|
-
}
|
|
40
|
-
);
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
const LOGIN = "auth/LOGIN";
|
|
2
|
-
const LOGIN_SUCCESS = "auth/LOGIN_SUCCESS";
|
|
3
|
-
const LOGOUT = "auth/LOGOUT";
|
|
4
|
-
const auth = {
|
|
5
|
-
login: ({
|
|
6
|
-
idpCode,
|
|
7
|
-
redirectUri,
|
|
8
|
-
clientId,
|
|
9
|
-
responseType,
|
|
10
|
-
scope
|
|
11
|
-
}) => ({
|
|
12
|
-
type: LOGIN,
|
|
13
|
-
payload: { idpCode, redirectUri, clientId, responseType, scope }
|
|
14
|
-
}),
|
|
15
|
-
logout: ({
|
|
16
|
-
clientId,
|
|
17
|
-
redirectUri,
|
|
18
|
-
responseType,
|
|
19
|
-
scope,
|
|
20
|
-
code
|
|
21
|
-
}) => ({
|
|
22
|
-
type: LOGOUT,
|
|
23
|
-
payload: { clientId, redirectUri, responseType, scope, code }
|
|
24
|
-
})
|
|
25
|
-
};
|
|
26
|
-
export {
|
|
27
|
-
LOGIN,
|
|
28
|
-
LOGIN_SUCCESS,
|
|
29
|
-
LOGOUT,
|
|
30
|
-
auth
|
|
31
|
-
};
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import produce from "immer";
|
|
2
|
-
import { LOGIN_SUCCESS } from "./actions.js";
|
|
3
|
-
const initialState = {
|
|
4
|
-
authenticated: false
|
|
5
|
-
};
|
|
6
|
-
const authReducer = produce(
|
|
7
|
-
(draft, action) => {
|
|
8
|
-
switch (action.type) {
|
|
9
|
-
case LOGIN_SUCCESS:
|
|
10
|
-
draft.authenticated = true;
|
|
11
|
-
break;
|
|
12
|
-
}
|
|
13
|
-
},
|
|
14
|
-
initialState
|
|
15
|
-
);
|
|
16
|
-
export {
|
|
17
|
-
authReducer,
|
|
18
|
-
initialState
|
|
19
|
-
};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import produce from "immer";
|
|
2
|
-
const breakpoint = {
|
|
3
|
-
change: "change"
|
|
4
|
-
};
|
|
5
|
-
var Breakpoints = /* @__PURE__ */ ((Breakpoints2) => {
|
|
6
|
-
Breakpoints2["LARGE"] = "large";
|
|
7
|
-
Breakpoints2["MEDIUM"] = "medium";
|
|
8
|
-
Breakpoints2["SMALL"] = "small";
|
|
9
|
-
return Breakpoints2;
|
|
10
|
-
})(Breakpoints || {});
|
|
11
|
-
const initialState = {
|
|
12
|
-
value: "large" /* LARGE */
|
|
13
|
-
};
|
|
14
|
-
const breakpointReducer = (state = initialState, action) => {
|
|
15
|
-
const { type, payload } = action;
|
|
16
|
-
return produce(state, (draft) => {
|
|
17
|
-
switch (type) {
|
|
18
|
-
case breakpoint.change:
|
|
19
|
-
draft.value = payload;
|
|
20
|
-
break;
|
|
21
|
-
}
|
|
22
|
-
});
|
|
23
|
-
};
|
|
24
|
-
export {
|
|
25
|
-
Breakpoints,
|
|
26
|
-
breakpoint,
|
|
27
|
-
breakpointReducer
|
|
28
|
-
};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
const actions = {
|
|
2
|
-
CONFIRM: "log-out/CONFIRM",
|
|
3
|
-
CANCEL: "log-out/CANCEL"
|
|
4
|
-
};
|
|
5
|
-
const logout = {
|
|
6
|
-
confirm: () => ({
|
|
7
|
-
type: actions.CONFIRM,
|
|
8
|
-
payload: null
|
|
9
|
-
}),
|
|
10
|
-
cancel: () => ({
|
|
11
|
-
type: actions.CANCEL,
|
|
12
|
-
payload: null
|
|
13
|
-
})
|
|
14
|
-
};
|
|
15
|
-
export {
|
|
16
|
-
actions,
|
|
17
|
-
logout
|
|
18
|
-
};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
const ACTIONS = {
|
|
2
|
-
CONFIRM: "navigation-prompt/CONFIRM",
|
|
3
|
-
CANCEL: "navigation-prompt/CANCEL"
|
|
4
|
-
};
|
|
5
|
-
const navigationPrompt = {
|
|
6
|
-
confirm: () => ({
|
|
7
|
-
type: ACTIONS.CONFIRM,
|
|
8
|
-
payload: null
|
|
9
|
-
}),
|
|
10
|
-
cancel: () => ({
|
|
11
|
-
type: ACTIONS.CANCEL,
|
|
12
|
-
payload: null
|
|
13
|
-
})
|
|
14
|
-
};
|
|
15
|
-
export {
|
|
16
|
-
ACTIONS,
|
|
17
|
-
navigationPrompt
|
|
18
|
-
};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
const ACTIONS = {
|
|
2
|
-
OPEN: "wait-message/OPEN",
|
|
3
|
-
CLOSE: "wait-message/CLOSE"
|
|
4
|
-
};
|
|
5
|
-
const waitMessage = {
|
|
6
|
-
open: (message = "loading...") => ({
|
|
7
|
-
type: ACTIONS.OPEN,
|
|
8
|
-
payload: { message }
|
|
9
|
-
}),
|
|
10
|
-
close: () => ({
|
|
11
|
-
type: ACTIONS.CLOSE,
|
|
12
|
-
payload: null
|
|
13
|
-
})
|
|
14
|
-
};
|
|
15
|
-
export {
|
|
16
|
-
ACTIONS,
|
|
17
|
-
waitMessage
|
|
18
|
-
};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import produce from "immer";
|
|
2
|
-
import { ACTIONS } from "./actions.js";
|
|
3
|
-
const initialState = {
|
|
4
|
-
isOpen: null,
|
|
5
|
-
message: "loading..."
|
|
6
|
-
};
|
|
7
|
-
const waitMessageReducer = (state = initialState, action) => produce(state, (draft) => {
|
|
8
|
-
switch (action.type) {
|
|
9
|
-
case ACTIONS.OPEN:
|
|
10
|
-
draft.isOpen = true;
|
|
11
|
-
draft.message = action.payload.message;
|
|
12
|
-
break;
|
|
13
|
-
case ACTIONS.CLOSE:
|
|
14
|
-
draft.isOpen = false;
|
|
15
|
-
break;
|
|
16
|
-
}
|
|
17
|
-
});
|
|
18
|
-
export {
|
|
19
|
-
initialState,
|
|
20
|
-
waitMessageReducer
|
|
21
|
-
};
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
import { DSComboBox } from "@elliemae/ds-form";
|
|
3
|
-
import {
|
|
4
|
-
Controller
|
|
5
|
-
} from "react-hook-form";
|
|
6
|
-
const ComboBox = ({
|
|
7
|
-
name,
|
|
8
|
-
defaultValue = "",
|
|
9
|
-
rules = {},
|
|
10
|
-
...rest
|
|
11
|
-
}) => /* @__PURE__ */ jsx(
|
|
12
|
-
Controller,
|
|
13
|
-
{
|
|
14
|
-
name,
|
|
15
|
-
rules,
|
|
16
|
-
defaultValue,
|
|
17
|
-
render: ({ field: { onChange, ...props } }) => /* @__PURE__ */ jsx(
|
|
18
|
-
DSComboBox,
|
|
19
|
-
{
|
|
20
|
-
...rest,
|
|
21
|
-
...props,
|
|
22
|
-
onChange: (selected) => {
|
|
23
|
-
const { value = selected } = selected || {};
|
|
24
|
-
onChange(value);
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
)
|
|
28
|
-
}
|
|
29
|
-
);
|
|
30
|
-
export {
|
|
31
|
-
ComboBox
|
|
32
|
-
};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
import { DSDateInput } from "@elliemae/ds-form";
|
|
3
|
-
import {
|
|
4
|
-
Controller
|
|
5
|
-
} from "react-hook-form";
|
|
6
|
-
const DateInput = ({
|
|
7
|
-
name,
|
|
8
|
-
defaultValue = "",
|
|
9
|
-
rules = {},
|
|
10
|
-
...rest
|
|
11
|
-
}) => /* @__PURE__ */ jsx(
|
|
12
|
-
Controller,
|
|
13
|
-
{
|
|
14
|
-
name,
|
|
15
|
-
rules,
|
|
16
|
-
defaultValue,
|
|
17
|
-
render: ({ field }) => /* @__PURE__ */ jsx(DSDateInput, { ...rest, ...field })
|
|
18
|
-
}
|
|
19
|
-
);
|
|
20
|
-
export {
|
|
21
|
-
DateInput
|
|
22
|
-
};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
import DSDatePicker from "@elliemae/ds-date-picker";
|
|
3
|
-
import {
|
|
4
|
-
Controller
|
|
5
|
-
} from "react-hook-form";
|
|
6
|
-
const DatePicker = ({
|
|
7
|
-
name,
|
|
8
|
-
defaultValue = "",
|
|
9
|
-
rules = {},
|
|
10
|
-
...rest
|
|
11
|
-
}) => /* @__PURE__ */ jsx(
|
|
12
|
-
Controller,
|
|
13
|
-
{
|
|
14
|
-
name,
|
|
15
|
-
defaultValue,
|
|
16
|
-
rules,
|
|
17
|
-
render: ({ field }) => /* @__PURE__ */ jsx(DSDatePicker, { ...rest, ...field })
|
|
18
|
-
}
|
|
19
|
-
);
|
|
20
|
-
export {
|
|
21
|
-
DatePicker
|
|
22
|
-
};
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
import { DSFormItemLayout } from "@elliemae/ds-form";
|
|
3
|
-
import { get } from "react-hook-form";
|
|
4
|
-
import { ConnectForm } from "../connect-form.js";
|
|
5
|
-
const FormItemLayout = ({ name, ...rest }) => /* @__PURE__ */ jsx(ConnectForm, { children: ({
|
|
6
|
-
formState: { errors }
|
|
7
|
-
}) => {
|
|
8
|
-
const errorField = get(errors, name);
|
|
9
|
-
const hasError = !!errorField;
|
|
10
|
-
const validationMessage = errorField?.message;
|
|
11
|
-
return /* @__PURE__ */ jsx(
|
|
12
|
-
DSFormItemLayout,
|
|
13
|
-
{
|
|
14
|
-
name,
|
|
15
|
-
hasError,
|
|
16
|
-
validationMessage,
|
|
17
|
-
...rest
|
|
18
|
-
}
|
|
19
|
-
);
|
|
20
|
-
} });
|
|
21
|
-
export {
|
|
22
|
-
FormItemLayout
|
|
23
|
-
};
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
import { DSInputMask, MASK_TYPES, MASK_PIPES } from "@elliemae/ds-form";
|
|
3
|
-
import {
|
|
4
|
-
Controller
|
|
5
|
-
} from "react-hook-form";
|
|
6
|
-
const InputMask = ({
|
|
7
|
-
name,
|
|
8
|
-
defaultValue = "",
|
|
9
|
-
rules = {},
|
|
10
|
-
onChange: changeHandler,
|
|
11
|
-
onBlur: onBlurHandler,
|
|
12
|
-
...rest
|
|
13
|
-
}) => /* @__PURE__ */ jsx(
|
|
14
|
-
Controller,
|
|
15
|
-
{
|
|
16
|
-
name,
|
|
17
|
-
rules,
|
|
18
|
-
defaultValue,
|
|
19
|
-
render: ({ field: { onChange, onBlur, ...props } }) => /* @__PURE__ */ jsx(
|
|
20
|
-
DSInputMask,
|
|
21
|
-
{
|
|
22
|
-
...rest,
|
|
23
|
-
...props,
|
|
24
|
-
onChange: (e) => {
|
|
25
|
-
onChange(e);
|
|
26
|
-
if (changeHandler)
|
|
27
|
-
changeHandler(e);
|
|
28
|
-
},
|
|
29
|
-
onBlur: (e) => {
|
|
30
|
-
onBlur();
|
|
31
|
-
if (onBlurHandler)
|
|
32
|
-
onBlurHandler(e);
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
)
|
|
36
|
-
}
|
|
37
|
-
);
|
|
38
|
-
export {
|
|
39
|
-
InputMask,
|
|
40
|
-
MASK_PIPES,
|
|
41
|
-
MASK_TYPES
|
|
42
|
-
};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
import { DSLargeInputText } from "@elliemae/ds-form";
|
|
3
|
-
import {
|
|
4
|
-
Controller
|
|
5
|
-
} from "react-hook-form";
|
|
6
|
-
const LargeTextBox = ({
|
|
7
|
-
name,
|
|
8
|
-
defaultValue = "",
|
|
9
|
-
rules = {},
|
|
10
|
-
...rest
|
|
11
|
-
}) => /* @__PURE__ */ jsx(
|
|
12
|
-
Controller,
|
|
13
|
-
{
|
|
14
|
-
name,
|
|
15
|
-
rules,
|
|
16
|
-
defaultValue,
|
|
17
|
-
render: ({ field }) => /* @__PURE__ */ jsx(DSLargeInputText, { ...rest, ...field })
|
|
18
|
-
}
|
|
19
|
-
);
|
|
20
|
-
export {
|
|
21
|
-
LargeTextBox
|
|
22
|
-
};
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
import { DSRadio } from "@elliemae/ds-form";
|
|
3
|
-
import {
|
|
4
|
-
Controller
|
|
5
|
-
} from "react-hook-form";
|
|
6
|
-
const Radio = ({
|
|
7
|
-
name,
|
|
8
|
-
defaultChecked = false,
|
|
9
|
-
rules = {},
|
|
10
|
-
...rest
|
|
11
|
-
}) => /* @__PURE__ */ jsx(
|
|
12
|
-
Controller,
|
|
13
|
-
{
|
|
14
|
-
name,
|
|
15
|
-
rules,
|
|
16
|
-
defaultValue: defaultChecked,
|
|
17
|
-
render: ({ field: { onChange, value, ...restProps } }) => /* @__PURE__ */ jsx(
|
|
18
|
-
DSRadio,
|
|
19
|
-
{
|
|
20
|
-
...rest,
|
|
21
|
-
...restProps,
|
|
22
|
-
checked: value,
|
|
23
|
-
onChange: (e) => onChange(((e || {}).target || {}).checked)
|
|
24
|
-
}
|
|
25
|
-
)
|
|
26
|
-
}
|
|
27
|
-
);
|
|
28
|
-
export {
|
|
29
|
-
Radio
|
|
30
|
-
};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
import { DSRadioGroup } from "@elliemae/ds-form";
|
|
3
|
-
import {
|
|
4
|
-
Controller
|
|
5
|
-
} from "react-hook-form";
|
|
6
|
-
const RadioGroup = ({
|
|
7
|
-
name,
|
|
8
|
-
rules = {},
|
|
9
|
-
defaultValue,
|
|
10
|
-
...rest
|
|
11
|
-
}) => /* @__PURE__ */ jsx(
|
|
12
|
-
Controller,
|
|
13
|
-
{
|
|
14
|
-
name,
|
|
15
|
-
rules,
|
|
16
|
-
defaultValue,
|
|
17
|
-
render: ({ field: { value, ...restProps } }) => /* @__PURE__ */ jsx(DSRadioGroup, { ...rest, ...restProps, activeValue: value })
|
|
18
|
-
}
|
|
19
|
-
);
|
|
20
|
-
export {
|
|
21
|
-
RadioGroup
|
|
22
|
-
};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
import { DSTextBox } from "@elliemae/ds-form";
|
|
3
|
-
import {
|
|
4
|
-
Controller
|
|
5
|
-
} from "react-hook-form";
|
|
6
|
-
const TextBox = ({
|
|
7
|
-
name,
|
|
8
|
-
defaultValue = "",
|
|
9
|
-
rules = {},
|
|
10
|
-
...rest
|
|
11
|
-
}) => /* @__PURE__ */ jsx(
|
|
12
|
-
Controller,
|
|
13
|
-
{
|
|
14
|
-
name,
|
|
15
|
-
defaultValue,
|
|
16
|
-
rules,
|
|
17
|
-
render: ({ field }) => /* @__PURE__ */ jsx(DSTextBox, { ...rest, ...field })
|
|
18
|
-
}
|
|
19
|
-
);
|
|
20
|
-
export {
|
|
21
|
-
TextBox
|
|
22
|
-
};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { PayloadAction } from '@reduxjs/toolkit';
|
|
2
|
-
export declare const LOGIN = "auth/LOGIN";
|
|
3
|
-
export declare const LOGIN_SUCCESS = "auth/LOGIN_SUCCESS";
|
|
4
|
-
export declare const LOGOUT = "auth/LOGOUT";
|
|
5
|
-
export interface LoginParms {
|
|
6
|
-
idpCode: string;
|
|
7
|
-
redirectUri: string;
|
|
8
|
-
clientId: string;
|
|
9
|
-
responseType: string;
|
|
10
|
-
scope: string;
|
|
11
|
-
}
|
|
12
|
-
export interface LogoutParams {
|
|
13
|
-
redirectUri: string;
|
|
14
|
-
clientId: string;
|
|
15
|
-
responseType: string;
|
|
16
|
-
scope: string;
|
|
17
|
-
code: string;
|
|
18
|
-
}
|
|
19
|
-
export declare const auth: {
|
|
20
|
-
login: ({ idpCode, redirectUri, clientId, responseType, scope, }: LoginParms) => PayloadAction<LoginParms>;
|
|
21
|
-
logout: ({ clientId, redirectUri, responseType, scope, code, }: LogoutParams) => PayloadAction<LogoutParams>;
|
|
22
|
-
};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { PayloadAction } from '@reduxjs/toolkit';
|
|
2
|
-
export declare const breakpoint: {
|
|
3
|
-
change: string;
|
|
4
|
-
};
|
|
5
|
-
export declare enum Breakpoints {
|
|
6
|
-
LARGE = "large",
|
|
7
|
-
MEDIUM = "medium",
|
|
8
|
-
SMALL = "small"
|
|
9
|
-
}
|
|
10
|
-
export interface BreakpointState {
|
|
11
|
-
value: Breakpoints;
|
|
12
|
-
}
|
|
13
|
-
export declare const breakpointReducer: (state: BreakpointState | undefined, action: PayloadAction<Breakpoints>) => BreakpointState;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { PayloadAction } from '@reduxjs/toolkit';
|
|
2
|
-
export declare const ACTIONS: {
|
|
3
|
-
OPEN: string;
|
|
4
|
-
CLOSE: string;
|
|
5
|
-
};
|
|
6
|
-
export declare const waitMessage: {
|
|
7
|
-
open: (message?: string) => {
|
|
8
|
-
payload: {
|
|
9
|
-
message: string;
|
|
10
|
-
};
|
|
11
|
-
type: string;
|
|
12
|
-
};
|
|
13
|
-
close: () => PayloadAction<null>;
|
|
14
|
-
};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { PayloadAction } from '@reduxjs/toolkit';
|
|
2
|
-
export type WaitMessageState = {
|
|
3
|
-
isOpen: boolean | null;
|
|
4
|
-
message: string;
|
|
5
|
-
};
|
|
6
|
-
export declare const initialState: WaitMessageState;
|
|
7
|
-
export declare const waitMessageReducer: (state: WaitMessageState | undefined, action: PayloadAction<WaitMessageState>) => WaitMessageState;
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
declare function _exports(viteBuilder?: boolean): {
|
|
2
|
-
addons: (string | {
|
|
3
|
-
name: string;
|
|
4
|
-
options: {
|
|
5
|
-
sourceLoaderOptions: {
|
|
6
|
-
injectStoryParameters: boolean;
|
|
7
|
-
};
|
|
8
|
-
docs?: undefined;
|
|
9
|
-
};
|
|
10
|
-
} | {
|
|
11
|
-
name: string;
|
|
12
|
-
options: {
|
|
13
|
-
docs: boolean;
|
|
14
|
-
sourceLoaderOptions?: undefined;
|
|
15
|
-
};
|
|
16
|
-
})[];
|
|
17
|
-
framework: string;
|
|
18
|
-
features: {
|
|
19
|
-
fastRefresh: boolean;
|
|
20
|
-
storyStoreV7: boolean;
|
|
21
|
-
};
|
|
22
|
-
reactOptions: {
|
|
23
|
-
fastRefresh: boolean;
|
|
24
|
-
strictMode: boolean;
|
|
25
|
-
legacyRootApi: boolean;
|
|
26
|
-
};
|
|
27
|
-
typescript: {
|
|
28
|
-
check: boolean;
|
|
29
|
-
checkOptions: {};
|
|
30
|
-
reactDocgen: boolean;
|
|
31
|
-
reactDocgenTypescriptOptions: {
|
|
32
|
-
shouldExtractLiteralValuesFromEnum: boolean;
|
|
33
|
-
propFilter: (prop: any) => boolean;
|
|
34
|
-
compilerOptions: {
|
|
35
|
-
allowSyntheticDefaultImports: boolean;
|
|
36
|
-
esModuleInterop: boolean;
|
|
37
|
-
};
|
|
38
|
-
};
|
|
39
|
-
};
|
|
40
|
-
} & ({
|
|
41
|
-
stories: string[];
|
|
42
|
-
core: {
|
|
43
|
-
builder: string;
|
|
44
|
-
disableTelemetry: boolean;
|
|
45
|
-
};
|
|
46
|
-
} | {
|
|
47
|
-
stories: {
|
|
48
|
-
directory: string;
|
|
49
|
-
}[];
|
|
50
|
-
addons: {
|
|
51
|
-
name: string;
|
|
52
|
-
options: {
|
|
53
|
-
optimizationLevel: number;
|
|
54
|
-
esbuildMinifyOptions: {
|
|
55
|
-
target: string;
|
|
56
|
-
};
|
|
57
|
-
};
|
|
58
|
-
}[];
|
|
59
|
-
managerWebpack: any;
|
|
60
|
-
webpackFinal: any;
|
|
61
|
-
core: {
|
|
62
|
-
builder: string;
|
|
63
|
-
disableTelemetry: boolean;
|
|
64
|
-
};
|
|
65
|
-
});
|
|
66
|
-
export = _exports;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export declare let stories: {
|
|
2
|
-
directory: string;
|
|
3
|
-
}[];
|
|
4
|
-
export declare let addons: {
|
|
5
|
-
name: string;
|
|
6
|
-
options: {
|
|
7
|
-
optimizationLevel: number;
|
|
8
|
-
esbuildMinifyOptions: {
|
|
9
|
-
target: string;
|
|
10
|
-
};
|
|
11
|
-
};
|
|
12
|
-
}[];
|
|
13
|
-
export declare namespace core {
|
|
14
|
-
let builder: string;
|
|
15
|
-
let disableTelemetry: boolean;
|
|
16
|
-
}
|
|
17
|
-
export { managerWebpack, webpackFinal };
|