@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260425052557 → 0.8.1-dev.20260425055034
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -495,7 +495,7 @@ interface AdditionalActions {
|
|
|
495
495
|
title: string;
|
|
496
496
|
onClick?: (formState: FormState<any>) => Promise<ActionResponse$1<any>>;
|
|
497
497
|
}
|
|
498
|
-
declare const
|
|
498
|
+
declare const DataForm: React.FC<DataFormConfiguration>;
|
|
499
499
|
|
|
500
500
|
interface ActionResponse<T> {
|
|
501
501
|
isSuccessful: boolean;
|
|
@@ -531,4 +531,4 @@ interface DataFormRendererProps {
|
|
|
531
531
|
}
|
|
532
532
|
declare const DataFormRenderer: ({ formDefinition, dataItem, params, tabs, apiBaseUrl, session, widgetProps, onSave, onDelete, onCancelAdd, isAddPage, entityId, }: DataFormRendererProps) => react_jsx_runtime.JSX.Element | null;
|
|
533
533
|
|
|
534
|
-
export { type ActionResponse$1 as ActionResponse, BooleanSelect, CheckboxInput, ColorInput,
|
|
534
|
+
export { type ActionResponse$1 as ActionResponse, BooleanSelect, CheckboxInput, ColorInput, DataForm, DataFormRenderer, DataList, DataListRenderer, DateTimeInput, EmailInput, InputControl, type InputControlProps$1 as InputControlProps, InputControlType, LineTextInput, MoneyInput, MultilineTextInput, NavigationTabsV2, NumberInput, OtpInput, PageBodyRenderer, PercentageInput, PhoneInput, TimeInput, Toast, ToastService, ViewControl, type ViewControlProps, ViewControlTypes };
|
package/dist/index.d.ts
CHANGED
|
@@ -495,7 +495,7 @@ interface AdditionalActions {
|
|
|
495
495
|
title: string;
|
|
496
496
|
onClick?: (formState: FormState<any>) => Promise<ActionResponse$1<any>>;
|
|
497
497
|
}
|
|
498
|
-
declare const
|
|
498
|
+
declare const DataForm: React.FC<DataFormConfiguration>;
|
|
499
499
|
|
|
500
500
|
interface ActionResponse<T> {
|
|
501
501
|
isSuccessful: boolean;
|
|
@@ -531,4 +531,4 @@ interface DataFormRendererProps {
|
|
|
531
531
|
}
|
|
532
532
|
declare const DataFormRenderer: ({ formDefinition, dataItem, params, tabs, apiBaseUrl, session, widgetProps, onSave, onDelete, onCancelAdd, isAddPage, entityId, }: DataFormRendererProps) => react_jsx_runtime.JSX.Element | null;
|
|
533
533
|
|
|
534
|
-
export { type ActionResponse$1 as ActionResponse, BooleanSelect, CheckboxInput, ColorInput,
|
|
534
|
+
export { type ActionResponse$1 as ActionResponse, BooleanSelect, CheckboxInput, ColorInput, DataForm, DataFormRenderer, DataList, DataListRenderer, DateTimeInput, EmailInput, InputControl, type InputControlProps$1 as InputControlProps, InputControlType, LineTextInput, MoneyInput, MultilineTextInput, NavigationTabsV2, NumberInput, OtpInput, PageBodyRenderer, PercentageInput, PhoneInput, TimeInput, Toast, ToastService, ViewControl, type ViewControlProps, ViewControlTypes };
|
package/dist/index.js
CHANGED
|
@@ -6254,7 +6254,7 @@ var DataFormChildSection_default = DataFormChildSection;
|
|
|
6254
6254
|
|
|
6255
6255
|
// src/components/dataForm/DataForm.tsx
|
|
6256
6256
|
var import_jsx_runtime75 = require("react/jsx-runtime");
|
|
6257
|
-
var
|
|
6257
|
+
var DataForm = (props) => {
|
|
6258
6258
|
const formRef = (0, import_react56.useRef)(null);
|
|
6259
6259
|
console.log(props.dataItem, "dssads");
|
|
6260
6260
|
const initialState = {
|
|
@@ -6606,7 +6606,7 @@ var DataForm2 = (props) => {
|
|
|
6606
6606
|
] })
|
|
6607
6607
|
] }) });
|
|
6608
6608
|
};
|
|
6609
|
-
var DataForm_default =
|
|
6609
|
+
var DataForm_default = DataForm;
|
|
6610
6610
|
|
|
6611
6611
|
// src/components/dataForm/DataFormRenderer.tsx
|
|
6612
6612
|
init_ServiceClient();
|
package/dist/index.mjs
CHANGED
|
@@ -5104,7 +5104,7 @@ var DataFormChildSection_default = DataFormChildSection;
|
|
|
5104
5104
|
|
|
5105
5105
|
// src/components/dataForm/DataForm.tsx
|
|
5106
5106
|
import { jsx as jsx66, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
5107
|
-
var
|
|
5107
|
+
var DataForm = (props) => {
|
|
5108
5108
|
const formRef = useRef4(null);
|
|
5109
5109
|
console.log(props.dataItem, "dssads");
|
|
5110
5110
|
const initialState = {
|
|
@@ -5456,7 +5456,7 @@ var DataForm2 = (props) => {
|
|
|
5456
5456
|
] })
|
|
5457
5457
|
] }) });
|
|
5458
5458
|
};
|
|
5459
|
-
var DataForm_default =
|
|
5459
|
+
var DataForm_default = DataForm;
|
|
5460
5460
|
|
|
5461
5461
|
// src/components/dataForm/DataFormRenderer.tsx
|
|
5462
5462
|
import { jsx as jsx67, jsxs as jsxs39 } from "react/jsx-runtime";
|
package/package.json
CHANGED