@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260416045203 → 0.8.1-dev.20260416084656
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 +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +6 -4
- package/dist/index.mjs +5 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -229,4 +229,6 @@ declare class ToastService {
|
|
|
229
229
|
static close(): void;
|
|
230
230
|
}
|
|
231
231
|
|
|
232
|
-
|
|
232
|
+
declare const LineTextInput: React.FC<InputControlProps>;
|
|
233
|
+
|
|
234
|
+
export { type ActionResponse, DataList, InputControl, type InputControlProps, InputControlType, LineTextInput, PageBodyRenderer, Toast, ToastService, ViewControl, type ViewControlProps, ViewControlTypes };
|
package/dist/index.d.ts
CHANGED
|
@@ -229,4 +229,6 @@ declare class ToastService {
|
|
|
229
229
|
static close(): void;
|
|
230
230
|
}
|
|
231
231
|
|
|
232
|
-
|
|
232
|
+
declare const LineTextInput: React.FC<InputControlProps>;
|
|
233
|
+
|
|
234
|
+
export { type ActionResponse, DataList, InputControl, type InputControlProps, InputControlType, LineTextInput, PageBodyRenderer, Toast, ToastService, ViewControl, type ViewControlProps, ViewControlTypes };
|
package/dist/index.js
CHANGED
|
@@ -975,6 +975,7 @@ __export(index_exports, {
|
|
|
975
975
|
DataList: () => DataList_default,
|
|
976
976
|
InputControl: () => InputControl_default,
|
|
977
977
|
InputControlType: () => InputControlType_default,
|
|
978
|
+
LineTextInput: () => LineTextInput_default,
|
|
978
979
|
PageBodyRenderer: () => PageBodyRenderer_default,
|
|
979
980
|
Toast: () => Toast_default,
|
|
980
981
|
ToastService: () => ToastService_default,
|
|
@@ -5652,7 +5653,7 @@ var Toast = () => {
|
|
|
5652
5653
|
setMessageType("error");
|
|
5653
5654
|
setTimeout(() => {
|
|
5654
5655
|
setShowToast(false);
|
|
5655
|
-
},
|
|
5656
|
+
}, 4e3);
|
|
5656
5657
|
};
|
|
5657
5658
|
ToastService_default.showSuccess = function(message2) {
|
|
5658
5659
|
setShowToast(true);
|
|
@@ -5660,7 +5661,7 @@ var Toast = () => {
|
|
|
5660
5661
|
setMessageType("success");
|
|
5661
5662
|
setTimeout(() => {
|
|
5662
5663
|
setShowToast(false);
|
|
5663
|
-
},
|
|
5664
|
+
}, 4e3);
|
|
5664
5665
|
};
|
|
5665
5666
|
ToastService_default.showWarning = function(message2) {
|
|
5666
5667
|
setShowToast(true);
|
|
@@ -5668,7 +5669,7 @@ var Toast = () => {
|
|
|
5668
5669
|
setMessageType("warning");
|
|
5669
5670
|
setTimeout(() => {
|
|
5670
5671
|
setShowToast(false);
|
|
5671
|
-
},
|
|
5672
|
+
}, 4e3);
|
|
5672
5673
|
};
|
|
5673
5674
|
ToastService_default.showInfo = function(message2) {
|
|
5674
5675
|
setShowToast(true);
|
|
@@ -5676,7 +5677,7 @@ var Toast = () => {
|
|
|
5676
5677
|
setMessageType("info");
|
|
5677
5678
|
setTimeout(() => {
|
|
5678
5679
|
setShowToast(false);
|
|
5679
|
-
},
|
|
5680
|
+
}, 4e3);
|
|
5680
5681
|
};
|
|
5681
5682
|
ToastService_default.close = function() {
|
|
5682
5683
|
setShowToast(false);
|
|
@@ -5715,6 +5716,7 @@ init_ToastService();
|
|
|
5715
5716
|
DataList,
|
|
5716
5717
|
InputControl,
|
|
5717
5718
|
InputControlType,
|
|
5719
|
+
LineTextInput,
|
|
5718
5720
|
PageBodyRenderer,
|
|
5719
5721
|
Toast,
|
|
5720
5722
|
ToastService,
|
package/dist/index.mjs
CHANGED
|
@@ -4672,7 +4672,7 @@ var Toast = () => {
|
|
|
4672
4672
|
setMessageType("error");
|
|
4673
4673
|
setTimeout(() => {
|
|
4674
4674
|
setShowToast(false);
|
|
4675
|
-
},
|
|
4675
|
+
}, 4e3);
|
|
4676
4676
|
};
|
|
4677
4677
|
ToastService_default.showSuccess = function(message2) {
|
|
4678
4678
|
setShowToast(true);
|
|
@@ -4680,7 +4680,7 @@ var Toast = () => {
|
|
|
4680
4680
|
setMessageType("success");
|
|
4681
4681
|
setTimeout(() => {
|
|
4682
4682
|
setShowToast(false);
|
|
4683
|
-
},
|
|
4683
|
+
}, 4e3);
|
|
4684
4684
|
};
|
|
4685
4685
|
ToastService_default.showWarning = function(message2) {
|
|
4686
4686
|
setShowToast(true);
|
|
@@ -4688,7 +4688,7 @@ var Toast = () => {
|
|
|
4688
4688
|
setMessageType("warning");
|
|
4689
4689
|
setTimeout(() => {
|
|
4690
4690
|
setShowToast(false);
|
|
4691
|
-
},
|
|
4691
|
+
}, 4e3);
|
|
4692
4692
|
};
|
|
4693
4693
|
ToastService_default.showInfo = function(message2) {
|
|
4694
4694
|
setShowToast(true);
|
|
@@ -4696,7 +4696,7 @@ var Toast = () => {
|
|
|
4696
4696
|
setMessageType("info");
|
|
4697
4697
|
setTimeout(() => {
|
|
4698
4698
|
setShowToast(false);
|
|
4699
|
-
},
|
|
4699
|
+
}, 4e3);
|
|
4700
4700
|
};
|
|
4701
4701
|
ToastService_default.close = function() {
|
|
4702
4702
|
setShowToast(false);
|
|
@@ -4731,6 +4731,7 @@ export {
|
|
|
4731
4731
|
DataList_default as DataList,
|
|
4732
4732
|
InputControl_default as InputControl,
|
|
4733
4733
|
InputControlType_default as InputControlType,
|
|
4734
|
+
LineTextInput_default as LineTextInput,
|
|
4734
4735
|
PageBodyRenderer_default as PageBodyRenderer,
|
|
4735
4736
|
Toast_default as Toast,
|
|
4736
4737
|
ToastService_default as ToastService,
|
package/package.json
CHANGED