@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260423051720 → 0.8.1-dev.20260423063335
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/index.d.mts +112 -1
- package/dist/index.d.ts +112 -1
- package/dist/index.js +1007 -850
- package/dist/index.mjs +568 -413
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -16,6 +16,7 @@ declare const ViewControlTypes: {
|
|
|
16
16
|
lineText: string;
|
|
17
17
|
asset: string;
|
|
18
18
|
multilineTextBullets: string;
|
|
19
|
+
boolean: string;
|
|
19
20
|
money: string;
|
|
20
21
|
date: string;
|
|
21
22
|
time: string;
|
|
@@ -183,6 +184,116 @@ interface FilterColumn {
|
|
|
183
184
|
}
|
|
184
185
|
declare const DataList: React.FC<DataListConfiguration<any>>;
|
|
185
186
|
|
|
187
|
+
interface SiteFormData {
|
|
188
|
+
siteFormId: number;
|
|
189
|
+
siteId: number;
|
|
190
|
+
appId: number;
|
|
191
|
+
formTitle?: string;
|
|
192
|
+
siteFormTypeId: number;
|
|
193
|
+
siteFormType: SiteFormTypeData;
|
|
194
|
+
siteFormDataList: SiteFormDataListData;
|
|
195
|
+
siteFormDataForm: SiteFormDataFormData;
|
|
196
|
+
}
|
|
197
|
+
interface SiteFormTypeData {
|
|
198
|
+
siteFormTypeId: number;
|
|
199
|
+
siteFormTypeCode?: string;
|
|
200
|
+
siteFormTypeTitle?: string;
|
|
201
|
+
siteFormTypeThumbnail?: string;
|
|
202
|
+
siteFormTypeIcon?: string;
|
|
203
|
+
}
|
|
204
|
+
interface SiteFormDataListData {
|
|
205
|
+
siteFormDataListId: number;
|
|
206
|
+
siteFormId: number;
|
|
207
|
+
serviceRoute?: string;
|
|
208
|
+
addLinkHref?: string;
|
|
209
|
+
addLinkText?: string;
|
|
210
|
+
siteFormDataListColumns?: SiteFormDataListColumnData[];
|
|
211
|
+
siteFormDataListFilters?: SiteFormDataListFilterData[];
|
|
212
|
+
}
|
|
213
|
+
interface SiteFormDataListFilterData {
|
|
214
|
+
siteFormDataListFilterId: number;
|
|
215
|
+
siteFormDataListId: number;
|
|
216
|
+
placeholder?: string;
|
|
217
|
+
columnName?: string;
|
|
218
|
+
serviceRoute?: string;
|
|
219
|
+
dataTextFieldName?: string;
|
|
220
|
+
dataKeyFieldName?: string;
|
|
221
|
+
isKeyNumber: boolean;
|
|
222
|
+
}
|
|
223
|
+
interface SiteFormDataFormActionData {
|
|
224
|
+
siteFormDataFormActionId: number;
|
|
225
|
+
siteFormDataFormId: number;
|
|
226
|
+
actionCode?: string;
|
|
227
|
+
actionTitle?: string;
|
|
228
|
+
serviceRoute?: string;
|
|
229
|
+
httpMethod?: string;
|
|
230
|
+
returnRoute?: string;
|
|
231
|
+
}
|
|
232
|
+
interface SiteFormDataFormData {
|
|
233
|
+
entityIdParamName?: string;
|
|
234
|
+
actions?: SiteFormDataFormActionData[];
|
|
235
|
+
sections?: SiteFormDataFormSectionData[];
|
|
236
|
+
}
|
|
237
|
+
interface SiteFormDataFormSectionData {
|
|
238
|
+
siteFormDataFormSectionId: number;
|
|
239
|
+
siteFormDataFormId: number;
|
|
240
|
+
sectionTitle?: string;
|
|
241
|
+
sectionName?: string;
|
|
242
|
+
parentSectionName?: string;
|
|
243
|
+
isChildSection: boolean;
|
|
244
|
+
sectionRows?: SiteFormDataFormSectionRowData[];
|
|
245
|
+
}
|
|
246
|
+
interface SiteFormDataListColumnData {
|
|
247
|
+
siteFormDataListColumnId: number;
|
|
248
|
+
siteFormDataListId: number;
|
|
249
|
+
columnName?: string;
|
|
250
|
+
label?: string;
|
|
251
|
+
controlTypeCode?: string;
|
|
252
|
+
enableSorting: boolean;
|
|
253
|
+
format?: string;
|
|
254
|
+
showAsLink: boolean;
|
|
255
|
+
linkUrlSegment?: string;
|
|
256
|
+
emptyValueLabel?: string;
|
|
257
|
+
}
|
|
258
|
+
interface SiteFormDataFormSectionRowData {
|
|
259
|
+
siteFormDataFormRowId: number;
|
|
260
|
+
siteFormDataFormSectionId: number;
|
|
261
|
+
grow?: boolean;
|
|
262
|
+
elements?: SiteFormDataFormSectionRowElementData[];
|
|
263
|
+
}
|
|
264
|
+
interface SiteFormDataFormSectionRowElementData {
|
|
265
|
+
siteFormDataFormRowElementId: number;
|
|
266
|
+
siteFormDataFormRowId: number;
|
|
267
|
+
name?: string;
|
|
268
|
+
label?: string;
|
|
269
|
+
controlTypeCode?: string;
|
|
270
|
+
required?: boolean;
|
|
271
|
+
readOnly?: boolean;
|
|
272
|
+
errorMessage?: string;
|
|
273
|
+
dataSource?: string;
|
|
274
|
+
dataTextFieldName?: string;
|
|
275
|
+
dataKeyFieldName?: string;
|
|
276
|
+
maxLength?: number;
|
|
277
|
+
minLength?: number;
|
|
278
|
+
maxValue?: number;
|
|
279
|
+
minValue?: number;
|
|
280
|
+
placeholder?: string;
|
|
281
|
+
hintText?: string;
|
|
282
|
+
helpText?: string;
|
|
283
|
+
autoFocus?: boolean;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
interface DataListRendererProps {
|
|
287
|
+
formDefinition: SiteFormData;
|
|
288
|
+
apiBaseUrl: string;
|
|
289
|
+
session: any;
|
|
290
|
+
params: Record<string, any>;
|
|
291
|
+
query: Record<string, any>;
|
|
292
|
+
path: string;
|
|
293
|
+
widgetProps?: any;
|
|
294
|
+
}
|
|
295
|
+
declare const DataListRenderer: ({ formDefinition, apiBaseUrl, session, params, query, path, widgetProps, }: DataListRendererProps) => react_jsx_runtime.JSX.Element;
|
|
296
|
+
|
|
186
297
|
interface Session {
|
|
187
298
|
cid: string;
|
|
188
299
|
contactId?: number;
|
|
@@ -255,4 +366,4 @@ declare const EmailInput: React.FC<InputControlProps>;
|
|
|
255
366
|
|
|
256
367
|
declare const TimeInput: React.FC<InputControlProps>;
|
|
257
368
|
|
|
258
|
-
export { type ActionResponse, BooleanSelect, CheckboxInput, ColorInput, DataList, DateTimeInput, EmailInput, InputControl, type InputControlProps, InputControlType, LineTextInput, MoneyInput, MultilineTextInput, NumberInput, OtpInput, PageBodyRenderer, PercentageInput, PhoneInput, TimeInput, Toast, ToastService, ViewControl, type ViewControlProps, ViewControlTypes };
|
|
369
|
+
export { type ActionResponse, BooleanSelect, CheckboxInput, ColorInput, DataList, DataListRenderer, DateTimeInput, EmailInput, InputControl, type InputControlProps, InputControlType, LineTextInput, MoneyInput, MultilineTextInput, NumberInput, OtpInput, PageBodyRenderer, PercentageInput, PhoneInput, TimeInput, Toast, ToastService, ViewControl, type ViewControlProps, ViewControlTypes };
|
package/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ declare const ViewControlTypes: {
|
|
|
16
16
|
lineText: string;
|
|
17
17
|
asset: string;
|
|
18
18
|
multilineTextBullets: string;
|
|
19
|
+
boolean: string;
|
|
19
20
|
money: string;
|
|
20
21
|
date: string;
|
|
21
22
|
time: string;
|
|
@@ -183,6 +184,116 @@ interface FilterColumn {
|
|
|
183
184
|
}
|
|
184
185
|
declare const DataList: React.FC<DataListConfiguration<any>>;
|
|
185
186
|
|
|
187
|
+
interface SiteFormData {
|
|
188
|
+
siteFormId: number;
|
|
189
|
+
siteId: number;
|
|
190
|
+
appId: number;
|
|
191
|
+
formTitle?: string;
|
|
192
|
+
siteFormTypeId: number;
|
|
193
|
+
siteFormType: SiteFormTypeData;
|
|
194
|
+
siteFormDataList: SiteFormDataListData;
|
|
195
|
+
siteFormDataForm: SiteFormDataFormData;
|
|
196
|
+
}
|
|
197
|
+
interface SiteFormTypeData {
|
|
198
|
+
siteFormTypeId: number;
|
|
199
|
+
siteFormTypeCode?: string;
|
|
200
|
+
siteFormTypeTitle?: string;
|
|
201
|
+
siteFormTypeThumbnail?: string;
|
|
202
|
+
siteFormTypeIcon?: string;
|
|
203
|
+
}
|
|
204
|
+
interface SiteFormDataListData {
|
|
205
|
+
siteFormDataListId: number;
|
|
206
|
+
siteFormId: number;
|
|
207
|
+
serviceRoute?: string;
|
|
208
|
+
addLinkHref?: string;
|
|
209
|
+
addLinkText?: string;
|
|
210
|
+
siteFormDataListColumns?: SiteFormDataListColumnData[];
|
|
211
|
+
siteFormDataListFilters?: SiteFormDataListFilterData[];
|
|
212
|
+
}
|
|
213
|
+
interface SiteFormDataListFilterData {
|
|
214
|
+
siteFormDataListFilterId: number;
|
|
215
|
+
siteFormDataListId: number;
|
|
216
|
+
placeholder?: string;
|
|
217
|
+
columnName?: string;
|
|
218
|
+
serviceRoute?: string;
|
|
219
|
+
dataTextFieldName?: string;
|
|
220
|
+
dataKeyFieldName?: string;
|
|
221
|
+
isKeyNumber: boolean;
|
|
222
|
+
}
|
|
223
|
+
interface SiteFormDataFormActionData {
|
|
224
|
+
siteFormDataFormActionId: number;
|
|
225
|
+
siteFormDataFormId: number;
|
|
226
|
+
actionCode?: string;
|
|
227
|
+
actionTitle?: string;
|
|
228
|
+
serviceRoute?: string;
|
|
229
|
+
httpMethod?: string;
|
|
230
|
+
returnRoute?: string;
|
|
231
|
+
}
|
|
232
|
+
interface SiteFormDataFormData {
|
|
233
|
+
entityIdParamName?: string;
|
|
234
|
+
actions?: SiteFormDataFormActionData[];
|
|
235
|
+
sections?: SiteFormDataFormSectionData[];
|
|
236
|
+
}
|
|
237
|
+
interface SiteFormDataFormSectionData {
|
|
238
|
+
siteFormDataFormSectionId: number;
|
|
239
|
+
siteFormDataFormId: number;
|
|
240
|
+
sectionTitle?: string;
|
|
241
|
+
sectionName?: string;
|
|
242
|
+
parentSectionName?: string;
|
|
243
|
+
isChildSection: boolean;
|
|
244
|
+
sectionRows?: SiteFormDataFormSectionRowData[];
|
|
245
|
+
}
|
|
246
|
+
interface SiteFormDataListColumnData {
|
|
247
|
+
siteFormDataListColumnId: number;
|
|
248
|
+
siteFormDataListId: number;
|
|
249
|
+
columnName?: string;
|
|
250
|
+
label?: string;
|
|
251
|
+
controlTypeCode?: string;
|
|
252
|
+
enableSorting: boolean;
|
|
253
|
+
format?: string;
|
|
254
|
+
showAsLink: boolean;
|
|
255
|
+
linkUrlSegment?: string;
|
|
256
|
+
emptyValueLabel?: string;
|
|
257
|
+
}
|
|
258
|
+
interface SiteFormDataFormSectionRowData {
|
|
259
|
+
siteFormDataFormRowId: number;
|
|
260
|
+
siteFormDataFormSectionId: number;
|
|
261
|
+
grow?: boolean;
|
|
262
|
+
elements?: SiteFormDataFormSectionRowElementData[];
|
|
263
|
+
}
|
|
264
|
+
interface SiteFormDataFormSectionRowElementData {
|
|
265
|
+
siteFormDataFormRowElementId: number;
|
|
266
|
+
siteFormDataFormRowId: number;
|
|
267
|
+
name?: string;
|
|
268
|
+
label?: string;
|
|
269
|
+
controlTypeCode?: string;
|
|
270
|
+
required?: boolean;
|
|
271
|
+
readOnly?: boolean;
|
|
272
|
+
errorMessage?: string;
|
|
273
|
+
dataSource?: string;
|
|
274
|
+
dataTextFieldName?: string;
|
|
275
|
+
dataKeyFieldName?: string;
|
|
276
|
+
maxLength?: number;
|
|
277
|
+
minLength?: number;
|
|
278
|
+
maxValue?: number;
|
|
279
|
+
minValue?: number;
|
|
280
|
+
placeholder?: string;
|
|
281
|
+
hintText?: string;
|
|
282
|
+
helpText?: string;
|
|
283
|
+
autoFocus?: boolean;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
interface DataListRendererProps {
|
|
287
|
+
formDefinition: SiteFormData;
|
|
288
|
+
apiBaseUrl: string;
|
|
289
|
+
session: any;
|
|
290
|
+
params: Record<string, any>;
|
|
291
|
+
query: Record<string, any>;
|
|
292
|
+
path: string;
|
|
293
|
+
widgetProps?: any;
|
|
294
|
+
}
|
|
295
|
+
declare const DataListRenderer: ({ formDefinition, apiBaseUrl, session, params, query, path, widgetProps, }: DataListRendererProps) => react_jsx_runtime.JSX.Element;
|
|
296
|
+
|
|
186
297
|
interface Session {
|
|
187
298
|
cid: string;
|
|
188
299
|
contactId?: number;
|
|
@@ -255,4 +366,4 @@ declare const EmailInput: React.FC<InputControlProps>;
|
|
|
255
366
|
|
|
256
367
|
declare const TimeInput: React.FC<InputControlProps>;
|
|
257
368
|
|
|
258
|
-
export { type ActionResponse, BooleanSelect, CheckboxInput, ColorInput, DataList, DateTimeInput, EmailInput, InputControl, type InputControlProps, InputControlType, LineTextInput, MoneyInput, MultilineTextInput, NumberInput, OtpInput, PageBodyRenderer, PercentageInput, PhoneInput, TimeInput, Toast, ToastService, ViewControl, type ViewControlProps, ViewControlTypes };
|
|
369
|
+
export { type ActionResponse, BooleanSelect, CheckboxInput, ColorInput, DataList, DataListRenderer, DateTimeInput, EmailInput, InputControl, type InputControlProps, InputControlType, LineTextInput, MoneyInput, MultilineTextInput, NumberInput, OtpInput, PageBodyRenderer, PercentageInput, PhoneInput, TimeInput, Toast, ToastService, ViewControl, type ViewControlProps, ViewControlTypes };
|