@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260707132556 → 0.8.1-dev.20260707162731
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 +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +820 -786
- package/dist/index.mjs +352 -314
- package/dist/server.d.mts +6 -0
- package/dist/server.d.ts +6 -0
- package/dist/server.js +331 -295
- package/dist/server.mjs +188 -152
- package/package.json +1 -1
package/dist/server.d.mts
CHANGED
|
@@ -85,22 +85,28 @@ declare const ViewControl: (props: ViewControlProps) => React.JSX.Element;
|
|
|
85
85
|
|
|
86
86
|
declare const ViewControlTypes: {
|
|
87
87
|
lineText: string;
|
|
88
|
+
emailText: string;
|
|
88
89
|
asset: string;
|
|
89
90
|
multilineTextBullets: string;
|
|
90
91
|
boolean: string;
|
|
92
|
+
checkboxInput: string;
|
|
91
93
|
money: string;
|
|
92
94
|
date: string;
|
|
93
95
|
time: string;
|
|
94
96
|
datetime: string;
|
|
95
97
|
number: string;
|
|
96
98
|
multilineText: string;
|
|
99
|
+
multilinetext: string;
|
|
97
100
|
moneyText: string;
|
|
98
101
|
percentage: string;
|
|
102
|
+
status: string;
|
|
99
103
|
statusBg: string;
|
|
100
104
|
progressIndicator: string;
|
|
101
105
|
timeUntilStarts: string;
|
|
102
106
|
timeUntilStartsStyled: string;
|
|
103
107
|
aiGeneratedSummary: string;
|
|
108
|
+
booleanView: string;
|
|
109
|
+
text: string;
|
|
104
110
|
};
|
|
105
111
|
|
|
106
112
|
export { PageBodyRenderer, ViewControl, type ViewControlProps, ViewControlTypes };
|
package/dist/server.d.ts
CHANGED
|
@@ -85,22 +85,28 @@ declare const ViewControl: (props: ViewControlProps) => React.JSX.Element;
|
|
|
85
85
|
|
|
86
86
|
declare const ViewControlTypes: {
|
|
87
87
|
lineText: string;
|
|
88
|
+
emailText: string;
|
|
88
89
|
asset: string;
|
|
89
90
|
multilineTextBullets: string;
|
|
90
91
|
boolean: string;
|
|
92
|
+
checkboxInput: string;
|
|
91
93
|
money: string;
|
|
92
94
|
date: string;
|
|
93
95
|
time: string;
|
|
94
96
|
datetime: string;
|
|
95
97
|
number: string;
|
|
96
98
|
multilineText: string;
|
|
99
|
+
multilinetext: string;
|
|
97
100
|
moneyText: string;
|
|
98
101
|
percentage: string;
|
|
102
|
+
status: string;
|
|
99
103
|
statusBg: string;
|
|
100
104
|
progressIndicator: string;
|
|
101
105
|
timeUntilStarts: string;
|
|
102
106
|
timeUntilStartsStyled: string;
|
|
103
107
|
aiGeneratedSummary: string;
|
|
108
|
+
booleanView: string;
|
|
109
|
+
text: string;
|
|
104
110
|
};
|
|
105
111
|
|
|
106
112
|
export { PageBodyRenderer, ViewControl, type ViewControlProps, ViewControlTypes };
|