@start9labs/start-sdk 0.3.6-beta.6 → 0.3.6-beta.7
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
import { Value } from "../../base/lib/actions/input/builder/value";
|
|
3
3
|
import { InputSpec, LazyBuild } from "../../base/lib/actions/input/builder/inputSpec";
|
|
4
|
-
import { DefaultString,
|
|
4
|
+
import { DefaultString, Pattern, RandomString, UniqueBy } from "../../base/lib/actions/input/inputSpecTypes";
|
|
5
5
|
import { Variants } from "../../base/lib/actions/input/builder/variants";
|
|
6
6
|
import { Action, Actions } from "../../base/lib/actions/setupActions";
|
|
7
7
|
import { SyncOptions, ServiceInterfaceId, PackageId, HealthReceipt, ServiceInterfaceType, Effects } from "../../base/lib/types";
|
|
@@ -551,74 +551,14 @@ export declare class StartSdk<Manifest extends T.SDKManifest, Store> {
|
|
|
551
551
|
*/
|
|
552
552
|
obj: <Type extends Record<string, any>>(a: {
|
|
553
553
|
name: string;
|
|
554
|
-
description?: string | null;
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
maxLength?: number | null;
|
|
554
|
+
description?: string | null | undefined;
|
|
555
|
+
warning?: string | null | undefined;
|
|
556
|
+
default?: [] | undefined;
|
|
557
|
+
minLength?: number | null | undefined;
|
|
558
|
+
maxLength?: number | null | undefined;
|
|
560
559
|
}, aSpec: {
|
|
561
560
|
spec: InputSpec<Type, Store>;
|
|
562
|
-
/**
|
|
563
|
-
* @description The ID of a required field on the inner object whose value will be used to display items in the list.
|
|
564
|
-
* @example
|
|
565
|
-
* In this example, we use the value of the `label` field to display members of the list.
|
|
566
|
-
*
|
|
567
|
-
* ```
|
|
568
|
-
spec: InputSpec.of({
|
|
569
|
-
label: Value.text({
|
|
570
|
-
name: 'Label',
|
|
571
|
-
required: false,
|
|
572
|
-
default: null,
|
|
573
|
-
})
|
|
574
|
-
})
|
|
575
|
-
displayAs: 'label',
|
|
576
|
-
uniqueBy: null,
|
|
577
|
-
* ```
|
|
578
|
-
*
|
|
579
|
-
*/
|
|
580
561
|
displayAs?: string | null | undefined;
|
|
581
|
-
/**
|
|
582
|
-
* @description The ID(s) of required fields on the inner object whose value(s) will be used to enforce uniqueness in the list.
|
|
583
|
-
* @example
|
|
584
|
-
* In this example, we use the `label` field to enforce uniqueness, meaning the label field must be unique from other entries.
|
|
585
|
-
*
|
|
586
|
-
* ```
|
|
587
|
-
spec: InputSpec.of({
|
|
588
|
-
label: Value.text({
|
|
589
|
-
name: 'Label',
|
|
590
|
-
required: true,
|
|
591
|
-
default: null,
|
|
592
|
-
})
|
|
593
|
-
pubkey: Value.text({
|
|
594
|
-
name: 'Pubkey',
|
|
595
|
-
required: true,
|
|
596
|
-
default: null,
|
|
597
|
-
})
|
|
598
|
-
})
|
|
599
|
-
displayAs: 'label',
|
|
600
|
-
uniqueBy: 'label',
|
|
601
|
-
* ```
|
|
602
|
-
* @example
|
|
603
|
-
* In this example, we use the `label` field AND the `pubkey` field to enforce uniqueness, meaning both these fields must be unique from other entries.
|
|
604
|
-
*
|
|
605
|
-
* ```
|
|
606
|
-
spec: InputSpec.of({
|
|
607
|
-
label: Value.text({
|
|
608
|
-
name: 'Label',
|
|
609
|
-
required: true,
|
|
610
|
-
default: null,
|
|
611
|
-
})
|
|
612
|
-
pubkey: Value.text({
|
|
613
|
-
name: 'Pubkey',
|
|
614
|
-
required: true,
|
|
615
|
-
default: null,
|
|
616
|
-
})
|
|
617
|
-
})
|
|
618
|
-
displayAs: 'label',
|
|
619
|
-
uniqueBy: { all: ['label', 'pubkey'] },
|
|
620
|
-
* ```
|
|
621
|
-
*/
|
|
622
562
|
uniqueBy?: UniqueBy | undefined;
|
|
623
563
|
}) => List<Type[], Store>;
|
|
624
564
|
/**
|
|
@@ -628,20 +568,20 @@ export declare class StartSdk<Manifest extends T.SDKManifest, Store> {
|
|
|
628
568
|
*/
|
|
629
569
|
dynamicText: (getA: LazyBuild<Store, {
|
|
630
570
|
name: string;
|
|
631
|
-
description?: string | null;
|
|
632
|
-
warning?: string | null;
|
|
633
|
-
default?: string[];
|
|
634
|
-
minLength?: number | null;
|
|
635
|
-
maxLength?: number | null;
|
|
636
|
-
disabled?: false |
|
|
637
|
-
generate?: null |
|
|
571
|
+
description?: string | null | undefined;
|
|
572
|
+
warning?: string | null | undefined;
|
|
573
|
+
default?: string[] | undefined;
|
|
574
|
+
minLength?: number | null | undefined;
|
|
575
|
+
maxLength?: number | null | undefined;
|
|
576
|
+
disabled?: string | false | undefined;
|
|
577
|
+
generate?: RandomString | null | undefined;
|
|
638
578
|
spec: {
|
|
639
|
-
masked?: boolean;
|
|
640
|
-
placeholder?: string | null;
|
|
641
|
-
minLength?: number | null;
|
|
642
|
-
maxLength?: number | null;
|
|
643
|
-
patterns
|
|
644
|
-
inputmode?:
|
|
579
|
+
masked?: boolean | undefined;
|
|
580
|
+
placeholder?: string | null | undefined;
|
|
581
|
+
minLength?: number | null | undefined;
|
|
582
|
+
maxLength?: number | null | undefined;
|
|
583
|
+
patterns?: Pattern[] | undefined;
|
|
584
|
+
inputmode?: "text" | "email" | "tel" | "url" | undefined;
|
|
645
585
|
};
|
|
646
586
|
}>) => List<string[], Store>;
|
|
647
587
|
};
|
|
@@ -934,208 +874,94 @@ export declare class StartSdk<Manifest extends T.SDKManifest, Store> {
|
|
|
934
874
|
hidden: typeof Value.hidden;
|
|
935
875
|
dynamicToggle: (a: LazyBuild<Store, {
|
|
936
876
|
name: string;
|
|
937
|
-
description?: string | null;
|
|
938
|
-
|
|
939
|
-
warning?: string | null;
|
|
877
|
+
description?: string | null | undefined;
|
|
878
|
+
warning?: string | null | undefined;
|
|
940
879
|
default: boolean;
|
|
941
|
-
disabled?: false |
|
|
880
|
+
disabled?: string | false | undefined;
|
|
942
881
|
}>) => Value<boolean, Store>;
|
|
943
882
|
dynamicText: (getA: LazyBuild<Store, {
|
|
944
883
|
name: string;
|
|
945
|
-
description?: string | null;
|
|
946
|
-
|
|
947
|
-
warning?: string | null;
|
|
948
|
-
/**
|
|
949
|
-
* @description optionally provide a default value.
|
|
950
|
-
* @type { string | RandomString | null }
|
|
951
|
-
* @example default: null
|
|
952
|
-
* @example default: 'World'
|
|
953
|
-
* @example default: { charset: 'abcdefg', len: 16 }
|
|
954
|
-
*/
|
|
884
|
+
description?: string | null | undefined;
|
|
885
|
+
warning?: string | null | undefined;
|
|
955
886
|
default: DefaultString | null;
|
|
956
887
|
required: boolean;
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
/**
|
|
966
|
-
* @description A list of regular expressions to which the text must conform to pass validation. A human readable description is provided in case the validation fails.
|
|
967
|
-
* @default []
|
|
968
|
-
* @example
|
|
969
|
-
* ```
|
|
970
|
-
[
|
|
971
|
-
{
|
|
972
|
-
regex: "[a-z]",
|
|
973
|
-
description: "May only contain lower case letters from the English alphabet."
|
|
974
|
-
}
|
|
975
|
-
]
|
|
976
|
-
* ```
|
|
977
|
-
*/
|
|
978
|
-
patterns?: Pattern[];
|
|
979
|
-
/**
|
|
980
|
-
* @description Informs the browser how to behave and which keyboard to display on mobile
|
|
981
|
-
* @default "text"
|
|
982
|
-
*/
|
|
983
|
-
inputmode?: ValueSpecText["inputmode"];
|
|
984
|
-
/**
|
|
985
|
-
* @description Displays a button that will generate a random string according to the provided charset and len attributes.
|
|
986
|
-
*/
|
|
987
|
-
generate?: null | RandomString;
|
|
888
|
+
masked?: boolean | undefined;
|
|
889
|
+
placeholder?: string | null | undefined;
|
|
890
|
+
minLength?: number | null | undefined;
|
|
891
|
+
maxLength?: number | null | undefined;
|
|
892
|
+
patterns?: Pattern[] | undefined;
|
|
893
|
+
inputmode?: "text" | "email" | "tel" | "url" | undefined;
|
|
894
|
+
disabled?: string | false | undefined;
|
|
895
|
+
generate?: RandomString | null | undefined;
|
|
988
896
|
}>) => Value<string | null, Store>;
|
|
989
897
|
dynamicTextarea: (getA: LazyBuild<Store, {
|
|
990
898
|
name: string;
|
|
991
|
-
description?: string | null;
|
|
992
|
-
|
|
993
|
-
warning?: string | null;
|
|
899
|
+
description?: string | null | undefined;
|
|
900
|
+
warning?: string | null | undefined;
|
|
994
901
|
default: string | null;
|
|
995
902
|
required: boolean;
|
|
996
|
-
minLength?: number | null;
|
|
997
|
-
maxLength?: number | null;
|
|
998
|
-
placeholder?: string | null;
|
|
999
|
-
disabled?: false |
|
|
903
|
+
minLength?: number | null | undefined;
|
|
904
|
+
maxLength?: number | null | undefined;
|
|
905
|
+
placeholder?: string | null | undefined;
|
|
906
|
+
disabled?: string | false | undefined;
|
|
1000
907
|
}>) => Value<string | null, Store>;
|
|
1001
908
|
dynamicNumber: (getA: LazyBuild<Store, {
|
|
1002
909
|
name: string;
|
|
1003
|
-
description?: string | null;
|
|
1004
|
-
|
|
1005
|
-
warning?: string | null;
|
|
1006
|
-
/**
|
|
1007
|
-
* @description optionally provide a default value.
|
|
1008
|
-
* @type { number | null }
|
|
1009
|
-
* @example default: null
|
|
1010
|
-
* @example default: 7
|
|
1011
|
-
*/
|
|
910
|
+
description?: string | null | undefined;
|
|
911
|
+
warning?: string | null | undefined;
|
|
1012
912
|
default: number | null;
|
|
1013
913
|
required: boolean;
|
|
1014
|
-
min?: number | null;
|
|
1015
|
-
max?: number | null;
|
|
1016
|
-
|
|
1017
|
-
* @description How much does the number increase/decrease when using the arrows provided by the browser.
|
|
1018
|
-
* @default 1
|
|
1019
|
-
*/
|
|
1020
|
-
step?: number | null;
|
|
1021
|
-
/**
|
|
1022
|
-
* @description Requires the number to be an integer.
|
|
1023
|
-
*/
|
|
914
|
+
min?: number | null | undefined;
|
|
915
|
+
max?: number | null | undefined;
|
|
916
|
+
step?: number | null | undefined;
|
|
1024
917
|
integer: boolean;
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
units?: string | null;
|
|
1029
|
-
placeholder?: string | null;
|
|
1030
|
-
disabled?: false | string;
|
|
918
|
+
units?: string | null | undefined;
|
|
919
|
+
placeholder?: string | null | undefined;
|
|
920
|
+
disabled?: string | false | undefined;
|
|
1031
921
|
}>) => Value<number | null, Store>;
|
|
1032
922
|
dynamicColor: (getA: LazyBuild<Store, {
|
|
1033
923
|
name: string;
|
|
1034
|
-
description?: string | null;
|
|
1035
|
-
|
|
1036
|
-
warning?: string | null;
|
|
1037
|
-
/**
|
|
1038
|
-
* @description optionally provide a default value.
|
|
1039
|
-
* @type { string | null }
|
|
1040
|
-
* @example default: null
|
|
1041
|
-
* @example default: 'ffffff'
|
|
1042
|
-
*/
|
|
924
|
+
description?: string | null | undefined;
|
|
925
|
+
warning?: string | null | undefined;
|
|
1043
926
|
default: string | null;
|
|
1044
927
|
required: boolean;
|
|
1045
|
-
disabled?: false |
|
|
928
|
+
disabled?: string | false | undefined;
|
|
1046
929
|
}>) => Value<string | null, Store>;
|
|
1047
930
|
dynamicDatetime: (getA: LazyBuild<Store, {
|
|
1048
931
|
name: string;
|
|
1049
|
-
description?: string | null;
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
/**
|
|
1053
|
-
* @description optionally provide a default value.
|
|
1054
|
-
* @type { string | null }
|
|
1055
|
-
* @example default: null
|
|
1056
|
-
* @example default: '1985-12-16 18:00:00.000'
|
|
1057
|
-
*/
|
|
1058
|
-
default: string;
|
|
932
|
+
description?: string | null | undefined;
|
|
933
|
+
warning?: string | null | undefined;
|
|
934
|
+
default: string | null;
|
|
1059
935
|
required: boolean;
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
inputmode?: ValueSpecDatetime["inputmode"];
|
|
1065
|
-
min?: string | null;
|
|
1066
|
-
max?: string | null;
|
|
1067
|
-
disabled?: false | string;
|
|
936
|
+
inputmode?: "date" | "time" | "datetime-local" | undefined;
|
|
937
|
+
min?: string | null | undefined;
|
|
938
|
+
max?: string | null | undefined;
|
|
939
|
+
disabled?: string | false | undefined;
|
|
1068
940
|
}>) => Value<string | null, Store>;
|
|
1069
|
-
dynamicSelect:
|
|
941
|
+
dynamicSelect: (getA: LazyBuild<Store, {
|
|
1070
942
|
name: string;
|
|
1071
943
|
description?: string | null | undefined;
|
|
1072
|
-
/** Presents a warning prompt before permitting the value to change. */
|
|
1073
944
|
warning?: string | null | undefined;
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
* @type { default: string }
|
|
1077
|
-
* @example default: 'radio1'
|
|
1078
|
-
*/
|
|
1079
|
-
default: keyof Variants_1 & string;
|
|
1080
|
-
/**
|
|
1081
|
-
* @description A mapping of unique radio options to their human readable display format.
|
|
1082
|
-
* @example
|
|
1083
|
-
* ```
|
|
1084
|
-
{
|
|
1085
|
-
radio1: "Radio 1"
|
|
1086
|
-
radio2: "Radio 2"
|
|
1087
|
-
radio3: "Radio 3"
|
|
1088
|
-
}
|
|
1089
|
-
* ```
|
|
1090
|
-
*/
|
|
1091
|
-
values: Variants_1;
|
|
1092
|
-
/**
|
|
1093
|
-
* @options
|
|
1094
|
-
* - false - The field can be modified.
|
|
1095
|
-
* - string - The field cannot be modified. The provided text explains why.
|
|
1096
|
-
* - string[] - The field can be modified, but the values contained in the array cannot be selected.
|
|
1097
|
-
* @default false
|
|
1098
|
-
*/
|
|
945
|
+
default: string;
|
|
946
|
+
values: Record<string, string>;
|
|
1099
947
|
disabled?: string | false | string[] | undefined;
|
|
1100
948
|
}>) => Value<string, Store>;
|
|
1101
949
|
dynamicMultiselect: (getA: LazyBuild<Store, {
|
|
1102
950
|
name: string;
|
|
1103
|
-
description?: string | null;
|
|
1104
|
-
|
|
1105
|
-
warning?: string | null;
|
|
1106
|
-
/**
|
|
1107
|
-
* @description A simple list of which options should be checked by default.
|
|
1108
|
-
*/
|
|
951
|
+
description?: string | null | undefined;
|
|
952
|
+
warning?: string | null | undefined;
|
|
1109
953
|
default: string[];
|
|
1110
|
-
/**
|
|
1111
|
-
* @description A mapping of checkbox options to their human readable display format.
|
|
1112
|
-
* @example
|
|
1113
|
-
* ```
|
|
1114
|
-
{
|
|
1115
|
-
option1: "Option 1"
|
|
1116
|
-
option2: "Option 2"
|
|
1117
|
-
option3: "Option 3"
|
|
1118
|
-
}
|
|
1119
|
-
* ```
|
|
1120
|
-
*/
|
|
1121
954
|
values: Record<string, string>;
|
|
1122
|
-
minLength?: number | null;
|
|
1123
|
-
maxLength?: number | null;
|
|
1124
|
-
|
|
1125
|
-
* @options
|
|
1126
|
-
* - false - The field can be modified.
|
|
1127
|
-
* - string - The field cannot be modified. The provided text explains why.
|
|
1128
|
-
* - string[] - The field can be modified, but the values contained in the array cannot be selected.
|
|
1129
|
-
* @default false
|
|
1130
|
-
*/
|
|
1131
|
-
disabled?: false | string | string[];
|
|
955
|
+
minLength?: number | null | undefined;
|
|
956
|
+
maxLength?: number | null | undefined;
|
|
957
|
+
disabled?: string | false | string[] | undefined;
|
|
1132
958
|
}>) => Value<string[], Store>;
|
|
1133
959
|
filteredUnion: <VariantValues extends {
|
|
1134
960
|
[x: string]: {
|
|
1135
961
|
name: string;
|
|
1136
962
|
spec: InputSpec<any, Store> | InputSpec<any, never>;
|
|
1137
963
|
};
|
|
1138
|
-
}>(getDisabledFn: LazyBuild<Store, string[]>, a: {
|
|
964
|
+
}>(getDisabledFn: LazyBuild<Store, string | false | string[]>, a: {
|
|
1139
965
|
name: string;
|
|
1140
966
|
description?: string | null | undefined;
|
|
1141
967
|
warning?: string | null | undefined;
|
|
@@ -1149,23 +975,9 @@ export declare class StartSdk<Manifest extends T.SDKManifest, Store> {
|
|
|
1149
975
|
}>(getA: LazyBuild<Store, {
|
|
1150
976
|
name: string;
|
|
1151
977
|
description?: string | null | undefined;
|
|
1152
|
-
/** Presents a warning prompt before permitting the value to change. */
|
|
1153
978
|
warning?: string | null | undefined;
|
|
1154
|
-
/**
|
|
1155
|
-
* @description provide a default value from the list of variants.
|
|
1156
|
-
* @type { string }
|
|
1157
|
-
* @example default: 'variant1'
|
|
1158
|
-
*/
|
|
1159
979
|
default: keyof VariantValues_1 & string;
|
|
1160
|
-
|
|
1161
|
-
/**
|
|
1162
|
-
* @options
|
|
1163
|
-
* - false - The field can be modified.
|
|
1164
|
-
* - string - The field cannot be modified. The provided text explains why.
|
|
1165
|
-
* - string[] - The field can be modified, but the values contained in the array cannot be selected.
|
|
1166
|
-
* @default false
|
|
1167
|
-
*/
|
|
1168
|
-
disabled: false | string | string[];
|
|
980
|
+
disabled: string | false | string[];
|
|
1169
981
|
}>, aVariants: Variants<VariantValues_1, Store> | Variants<VariantValues_1, never>) => Value<import("../../base/lib/actions/input/builder/variants").UnionRes<Store, VariantValues_1, keyof VariantValues_1 & string> | import("../../base/lib/actions/input/builder/variants").UnionRes<never, VariantValues_1, keyof VariantValues_1 & string>, Store>;
|
|
1170
982
|
};
|
|
1171
983
|
Variants: {
|
package/package/lib/StartSdk.js
CHANGED
|
@@ -538,7 +538,7 @@ class StartSdk {
|
|
|
538
538
|
* @param a - attributes of the list itself.
|
|
539
539
|
* @param aSpec - attributes describing each member of the list.
|
|
540
540
|
*/
|
|
541
|
-
dynamicText: (
|
|
541
|
+
dynamicText: (list_1.List.dynamicText),
|
|
542
542
|
},
|
|
543
543
|
StorePath: (0, PathBuilder_1.pathBuilder)(),
|
|
544
544
|
Value: {
|
|
@@ -827,14 +827,14 @@ class StartSdk {
|
|
|
827
827
|
*/
|
|
828
828
|
list: value_1.Value.list,
|
|
829
829
|
hidden: value_1.Value.hidden,
|
|
830
|
-
dynamicToggle: (
|
|
831
|
-
dynamicText: (
|
|
832
|
-
dynamicTextarea: (
|
|
833
|
-
dynamicNumber: (
|
|
834
|
-
dynamicColor: (
|
|
835
|
-
dynamicDatetime: (
|
|
836
|
-
dynamicSelect: (
|
|
837
|
-
dynamicMultiselect: (
|
|
830
|
+
dynamicToggle: (value_1.Value.dynamicToggle),
|
|
831
|
+
dynamicText: (value_1.Value.dynamicText),
|
|
832
|
+
dynamicTextarea: (value_1.Value.dynamicTextarea),
|
|
833
|
+
dynamicNumber: (value_1.Value.dynamicNumber),
|
|
834
|
+
dynamicColor: (value_1.Value.dynamicColor),
|
|
835
|
+
dynamicDatetime: (value_1.Value.dynamicDatetime),
|
|
836
|
+
dynamicSelect: (value_1.Value.dynamicSelect),
|
|
837
|
+
dynamicMultiselect: (value_1.Value.dynamicMultiselect),
|
|
838
838
|
filteredUnion: (getDisabledFn, a, aVariants) => value_1.Value.filteredUnion(getDisabledFn, a, aVariants),
|
|
839
839
|
dynamicUnion: (getA, aVariants) => value_1.Value.dynamicUnion(getA, aVariants),
|
|
840
840
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StartSdk.js","sourceRoot":"","sources":["../../../package/lib/StartSdk.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"StartSdk.js","sourceRoot":"","sources":["../../../package/lib/StartSdk.ts"],"names":[],"mappings":"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"}
|
|
@@ -849,7 +849,7 @@ export declare const sdk: {
|
|
|
849
849
|
placeholder?: string | null | undefined;
|
|
850
850
|
minLength?: number | null | undefined;
|
|
851
851
|
maxLength?: number | null | undefined;
|
|
852
|
-
patterns
|
|
852
|
+
patterns?: import("../../../base/lib/actions/input/inputSpecTypes").Pattern[] | undefined;
|
|
853
853
|
inputmode?: "text" | "email" | "tel" | "url" | undefined;
|
|
854
854
|
};
|
|
855
855
|
}>) => import("../../../base/lib/actions/input/builder").List<string[], {
|
|
@@ -911,6 +911,7 @@ export declare const sdk: {
|
|
|
911
911
|
maxLength?: number | null | undefined;
|
|
912
912
|
patterns?: import("../../../base/lib/actions/input/inputSpecTypes").Pattern[] | undefined;
|
|
913
913
|
inputmode?: "text" | "email" | "tel" | "url" | undefined;
|
|
914
|
+
disabled?: string | false | undefined;
|
|
914
915
|
generate?: import("../../../base/lib/actions/input/inputSpecTypes").RandomString | null | undefined;
|
|
915
916
|
}>) => import("../../../base/lib/actions/input/builder").Value<string | null, {
|
|
916
917
|
storeRoot: {
|
|
@@ -982,7 +983,7 @@ export declare const sdk: {
|
|
|
982
983
|
name: string;
|
|
983
984
|
description?: string | null | undefined;
|
|
984
985
|
warning?: string | null | undefined;
|
|
985
|
-
default: string;
|
|
986
|
+
default: string | null;
|
|
986
987
|
required: boolean;
|
|
987
988
|
inputmode?: "date" | "time" | "datetime-local" | undefined;
|
|
988
989
|
min?: string | null | undefined;
|
|
@@ -993,7 +994,7 @@ export declare const sdk: {
|
|
|
993
994
|
storeLeaf: "value";
|
|
994
995
|
};
|
|
995
996
|
}>;
|
|
996
|
-
dynamicSelect:
|
|
997
|
+
dynamicSelect: (getA: import("../../../base/lib/actions/input/builder/inputSpec").LazyBuild<{
|
|
997
998
|
storeRoot: {
|
|
998
999
|
storeLeaf: "value";
|
|
999
1000
|
};
|
|
@@ -1001,8 +1002,8 @@ export declare const sdk: {
|
|
|
1001
1002
|
name: string;
|
|
1002
1003
|
description?: string | null | undefined;
|
|
1003
1004
|
warning?: string | null | undefined;
|
|
1004
|
-
default:
|
|
1005
|
-
values:
|
|
1005
|
+
default: string;
|
|
1006
|
+
values: Record<string, string>;
|
|
1006
1007
|
disabled?: string | false | string[] | undefined;
|
|
1007
1008
|
}>) => import("../../../base/lib/actions/input/builder").Value<string, {
|
|
1008
1009
|
storeRoot: {
|
|
@@ -1040,7 +1041,7 @@ export declare const sdk: {
|
|
|
1040
1041
|
storeRoot: {
|
|
1041
1042
|
storeLeaf: "value";
|
|
1042
1043
|
};
|
|
1043
|
-
}, string[]>, a: {
|
|
1044
|
+
}, string | false | string[]>, a: {
|
|
1044
1045
|
name: string;
|
|
1045
1046
|
description?: string | null | undefined;
|
|
1046
1047
|
warning?: string | null | undefined;
|
|
@@ -1076,7 +1077,6 @@ export declare const sdk: {
|
|
|
1076
1077
|
description?: string | null | undefined;
|
|
1077
1078
|
warning?: string | null | undefined;
|
|
1078
1079
|
default: keyof VariantValues_1 & string;
|
|
1079
|
-
required: boolean;
|
|
1080
1080
|
disabled: string | false | string[];
|
|
1081
1081
|
}>, aVariants: import("../../../base/lib/actions/input/builder").Variants<VariantValues_1, {
|
|
1082
1082
|
storeRoot: {
|
package/package.json
CHANGED