@elliemae/pui-app-sdk 3.0.0-beta.21 → 3.0.0-beta.22
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 +2 -0
- package/dist/es/index.js +2 -0
- package/dist/types/index.d.ts +1 -0
- package/package.json +27 -27
package/dist/cjs/index.js
CHANGED
|
@@ -39,6 +39,7 @@ __export(lib_exports, {
|
|
|
39
39
|
ErrorToast: () => import_error_toast.ErrorToast,
|
|
40
40
|
Form: () => import_form.Form,
|
|
41
41
|
FormItemLayout: () => import_form_item_layout.FormItemLayout,
|
|
42
|
+
FormLayoutBlockItem: () => import_form_layout_block_item.FormLayoutBlockItem,
|
|
42
43
|
FormSubmitButton: () => import_submit_button.FormSubmitButton,
|
|
43
44
|
InputMask: () => import_input_mask.InputMask,
|
|
44
45
|
LargeTextBox: () => import_large_text_box.LargeTextBox,
|
|
@@ -166,6 +167,7 @@ var import_error_toast = require("./view/error-toast/index.js");
|
|
|
166
167
|
var import_form = require("./view/form/index.js");
|
|
167
168
|
var import_connect_form = require("./view/fields/connect-form.js");
|
|
168
169
|
var import_form_item_layout = require("./view/fields/form-item-layout/index.js");
|
|
170
|
+
var import_form_layout_block_item = require("./view/fields/form-layout-block-item/index.js");
|
|
169
171
|
var import_text_box = require("./view/fields/text-box/index.js");
|
|
170
172
|
var import_large_text_box = require("./view/fields/large-text-box/index.js");
|
|
171
173
|
var import_input_mask = require("./view/fields/input-mask/index.js");
|
package/dist/es/index.js
CHANGED
|
@@ -67,6 +67,7 @@ import { ErrorToast } from "./view/error-toast/index.js";
|
|
|
67
67
|
import { Form } from "./view/form/index.js";
|
|
68
68
|
import { ConnectForm } from "./view/fields/connect-form.js";
|
|
69
69
|
import { FormItemLayout } from "./view/fields/form-item-layout/index.js";
|
|
70
|
+
import { FormLayoutBlockItem } from "./view/fields/form-layout-block-item/index.js";
|
|
70
71
|
import { TextBox } from "./view/fields/text-box/index.js";
|
|
71
72
|
import { LargeTextBox } from "./view/fields/large-text-box/index.js";
|
|
72
73
|
import {
|
|
@@ -108,6 +109,7 @@ export {
|
|
|
108
109
|
ErrorToast,
|
|
109
110
|
Form,
|
|
110
111
|
FormItemLayout,
|
|
112
|
+
FormLayoutBlockItem,
|
|
111
113
|
FormSubmitButton,
|
|
112
114
|
InputMask,
|
|
113
115
|
LargeTextBox,
|
package/dist/types/index.d.ts
CHANGED
|
@@ -46,6 +46,7 @@ export { ErrorToast } from './view/error-toast/index.js';
|
|
|
46
46
|
export { Form } from './view/form/index.js';
|
|
47
47
|
export { ConnectForm } from './view/fields/connect-form.js';
|
|
48
48
|
export { FormItemLayout } from './view/fields/form-item-layout/index.js';
|
|
49
|
+
export { FormLayoutBlockItem } from './view/fields/form-layout-block-item/index.js';
|
|
49
50
|
export { TextBox } from './view/fields/text-box/index.js';
|
|
50
51
|
export { LargeTextBox } from './view/fields/large-text-box/index.js';
|
|
51
52
|
export { InputMask, MASK_TYPES, MASK_PIPES, } from './view/fields/input-mask/index.js';
|
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.22",
|
|
4
4
|
"description": "ICE MT UI Platform Application SDK ",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css",
|
|
@@ -104,19 +104,19 @@
|
|
|
104
104
|
},
|
|
105
105
|
"peerDependencies": {
|
|
106
106
|
"@elliemae/app-react-dependencies": "^3.0.0-beta.3",
|
|
107
|
-
"@elliemae/ds-basic": "^2.3.0-alpha.
|
|
108
|
-
"@elliemae/ds-button": "^2.3.0-alpha.
|
|
109
|
-
"@elliemae/ds-controlled-form": "^2.3.0-alpha.
|
|
110
|
-
"@elliemae/ds-date-picker": "^2.3.0-alpha.
|
|
111
|
-
"@elliemae/ds-date-range-picker": "^2.3.0-alpha.
|
|
112
|
-
"@elliemae/ds-dialog": "^2.3.0-alpha.
|
|
113
|
-
"@elliemae/ds-form": "^2.3.0-alpha.
|
|
114
|
-
"@elliemae/ds-form-layout-blocks": "^2.3.0-alpha.
|
|
115
|
-
"@elliemae/ds-grid": "^2.3.0-alpha.
|
|
116
|
-
"@elliemae/ds-loading-indicator": "^2.3.0-alpha.
|
|
117
|
-
"@elliemae/ds-modal": "^2.3.0-alpha.
|
|
118
|
-
"@elliemae/ds-popperjs": "^2.3.0-alpha.
|
|
119
|
-
"@elliemae/ds-toast": "^2.3.0-alpha.
|
|
107
|
+
"@elliemae/ds-basic": "^2.3.0-alpha.3",
|
|
108
|
+
"@elliemae/ds-button": "^2.3.0-alpha.3",
|
|
109
|
+
"@elliemae/ds-controlled-form": "^2.3.0-alpha.3",
|
|
110
|
+
"@elliemae/ds-date-picker": "^2.3.0-alpha.3",
|
|
111
|
+
"@elliemae/ds-date-range-picker": "^2.3.0-alpha.3",
|
|
112
|
+
"@elliemae/ds-dialog": "^2.3.0-alpha.3",
|
|
113
|
+
"@elliemae/ds-form": "^2.3.0-alpha.3",
|
|
114
|
+
"@elliemae/ds-form-layout-blocks": "^2.3.0-alpha.3",
|
|
115
|
+
"@elliemae/ds-grid": "^2.3.0-alpha.3",
|
|
116
|
+
"@elliemae/ds-loading-indicator": "^2.3.0-alpha.3",
|
|
117
|
+
"@elliemae/ds-modal": "^2.3.0-alpha.3",
|
|
118
|
+
"@elliemae/ds-popperjs": "^2.3.0-alpha.3",
|
|
119
|
+
"@elliemae/ds-toast": "^2.3.0-alpha.3",
|
|
120
120
|
"@elliemae/em-ssf-guest": "^1.11.1",
|
|
121
121
|
"@elliemae/pui-diagnostics": "^2.7.3",
|
|
122
122
|
"@elliemae/pui-micro-frontend-base": "^1.10.1",
|
|
@@ -126,19 +126,19 @@
|
|
|
126
126
|
"devDependencies": {
|
|
127
127
|
"@elliemae/app-react-dependencies": "~3.0.0-beta.3",
|
|
128
128
|
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.2.1",
|
|
129
|
-
"@elliemae/ds-basic": "~2.3.0-alpha.
|
|
130
|
-
"@elliemae/ds-button": "~2.3.0-alpha.
|
|
131
|
-
"@elliemae/ds-controlled-form": "~2.3.0-alpha.
|
|
132
|
-
"@elliemae/ds-date-picker": "~2.3.0-alpha.
|
|
133
|
-
"@elliemae/ds-date-range-picker": "~2.3.0-alpha.
|
|
134
|
-
"@elliemae/ds-dialog": "~2.3.0-alpha.
|
|
135
|
-
"@elliemae/ds-form": "~2.3.0-alpha.
|
|
136
|
-
"@elliemae/ds-form-layout-blocks": "~2.3.0-alpha.
|
|
137
|
-
"@elliemae/ds-grid": "~2.3.0-alpha.
|
|
138
|
-
"@elliemae/ds-loading-indicator": "~2.3.0-alpha.
|
|
139
|
-
"@elliemae/ds-modal": "~2.3.0-alpha.
|
|
140
|
-
"@elliemae/ds-popperjs": "~2.3.0-alpha.
|
|
141
|
-
"@elliemae/ds-toast": "~2.3.0-alpha.
|
|
129
|
+
"@elliemae/ds-basic": "~2.3.0-alpha.3",
|
|
130
|
+
"@elliemae/ds-button": "~2.3.0-alpha.3",
|
|
131
|
+
"@elliemae/ds-controlled-form": "~2.3.0-alpha.3",
|
|
132
|
+
"@elliemae/ds-date-picker": "~2.3.0-alpha.3",
|
|
133
|
+
"@elliemae/ds-date-range-picker": "~2.3.0-alpha.3",
|
|
134
|
+
"@elliemae/ds-dialog": "~2.3.0-alpha.3",
|
|
135
|
+
"@elliemae/ds-form": "~2.3.0-alpha.3",
|
|
136
|
+
"@elliemae/ds-form-layout-blocks": "~2.3.0-alpha.3",
|
|
137
|
+
"@elliemae/ds-grid": "~2.3.0-alpha.3",
|
|
138
|
+
"@elliemae/ds-loading-indicator": "~2.3.0-alpha.3",
|
|
139
|
+
"@elliemae/ds-modal": "~2.3.0-alpha.3",
|
|
140
|
+
"@elliemae/ds-popperjs": "~2.3.0-alpha.3",
|
|
141
|
+
"@elliemae/ds-toast": "~2.3.0-alpha.3",
|
|
142
142
|
"@elliemae/em-ssf-guest": "~1.11.1",
|
|
143
143
|
"@elliemae/pui-cli": "~6.0.0-beta.37",
|
|
144
144
|
"@elliemae/pui-diagnostics": "~2.7.3",
|