@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260326053312 → 0.8.1-dev.20260326055821
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 +17 -12
- package/dist/index.d.ts +17 -12
- package/dist/index.js +634 -671
- package/dist/index.mjs +512 -549
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -5,7 +5,7 @@ declare function registerWidgets(widgets: WidgetRegistryType): void;
|
|
|
5
5
|
declare function getWidget(code: string): ComponentType<any> | undefined;
|
|
6
6
|
|
|
7
7
|
interface ViewControlProps {
|
|
8
|
-
value?:
|
|
8
|
+
value?: any;
|
|
9
9
|
controlType?: string;
|
|
10
10
|
format?: string;
|
|
11
11
|
width?: string;
|
|
@@ -16,17 +16,22 @@ interface ViewControlProps {
|
|
|
16
16
|
declare const ViewControl: React.ForwardRefExoticComponent<ViewControlProps & React.RefAttributes<HTMLDivElement>>;
|
|
17
17
|
|
|
18
18
|
declare const ViewControlTypes: {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
19
|
+
lineText: string;
|
|
20
|
+
asset: string;
|
|
21
|
+
multilineTextBullets: string;
|
|
22
|
+
money: string;
|
|
23
|
+
date: string;
|
|
24
|
+
time: string;
|
|
25
|
+
datetime: string;
|
|
26
|
+
number: string;
|
|
27
|
+
multilineText: string;
|
|
28
|
+
moneyText: string;
|
|
29
|
+
percentage: string;
|
|
30
|
+
statusBg: string;
|
|
31
|
+
progressIndicator: string;
|
|
32
|
+
timeUntilStarts: string;
|
|
33
|
+
timeUntilStartsStyled: string;
|
|
34
|
+
aiGeneratedSummary: string;
|
|
30
35
|
};
|
|
31
36
|
|
|
32
37
|
interface InputCallbackValues<T> {
|
package/dist/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ declare function registerWidgets(widgets: WidgetRegistryType): void;
|
|
|
5
5
|
declare function getWidget(code: string): ComponentType<any> | undefined;
|
|
6
6
|
|
|
7
7
|
interface ViewControlProps {
|
|
8
|
-
value?:
|
|
8
|
+
value?: any;
|
|
9
9
|
controlType?: string;
|
|
10
10
|
format?: string;
|
|
11
11
|
width?: string;
|
|
@@ -16,17 +16,22 @@ interface ViewControlProps {
|
|
|
16
16
|
declare const ViewControl: React.ForwardRefExoticComponent<ViewControlProps & React.RefAttributes<HTMLDivElement>>;
|
|
17
17
|
|
|
18
18
|
declare const ViewControlTypes: {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
19
|
+
lineText: string;
|
|
20
|
+
asset: string;
|
|
21
|
+
multilineTextBullets: string;
|
|
22
|
+
money: string;
|
|
23
|
+
date: string;
|
|
24
|
+
time: string;
|
|
25
|
+
datetime: string;
|
|
26
|
+
number: string;
|
|
27
|
+
multilineText: string;
|
|
28
|
+
moneyText: string;
|
|
29
|
+
percentage: string;
|
|
30
|
+
statusBg: string;
|
|
31
|
+
progressIndicator: string;
|
|
32
|
+
timeUntilStarts: string;
|
|
33
|
+
timeUntilStartsStyled: string;
|
|
34
|
+
aiGeneratedSummary: string;
|
|
30
35
|
};
|
|
31
36
|
|
|
32
37
|
interface InputCallbackValues<T> {
|