@emeraldemperaur/vector-sigma 1.4.33 → 1.4.35
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.
|
@@ -90,11 +90,11 @@ export interface ConditionalProps {
|
|
|
90
90
|
* * Required inputOptions{} for the Conditional Trigger input field.
|
|
91
91
|
* * @example
|
|
92
92
|
* inputOptions={
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
93
|
+
* [
|
|
94
|
+
* {optionid: 1, optionvalue: "Kaiju", optionurl:"https://github.com/emeraldemperaur", text: "Kaiju"},
|
|
95
|
+
* {optionid: 2, optionvalue: "MekaGodzilla", optionurl:"https://github.com/emeraldemperaur", text: "MekaGodzilla"},
|
|
96
|
+
* {optionid: 3, optionvalue: "Zaibatsu", optionurl:"https://github.com/emeraldemperaur", text: "Zaibatsu"},
|
|
97
|
+
* ]}
|
|
98
98
|
*/
|
|
99
99
|
inputOptions?: InputOption[];
|
|
100
100
|
/**
|
|
@@ -68,12 +68,12 @@ interface RadioGroupProps {
|
|
|
68
68
|
* * Required inputOptions{} for the Radio Group input field.
|
|
69
69
|
* * @example
|
|
70
70
|
* inputOptions={
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
71
|
+
* [
|
|
72
|
+
* {optionid: 1, optionvalue: "Kaiju", optionurl:"https://github.com/emeraldemperaur", text: "Kaiju"},
|
|
73
|
+
* {optionid: 2, optionvalue: "MekaGodzilla", optionurl:"https://github.com/emeraldemperaur", text: "MekaGodzilla"},
|
|
74
|
+
* {optionid: 3, optionvalue: "Zaibatsu", optionurl:"https://github.com/emeraldemperaur", text: "Zaibatsu"},
|
|
75
|
+
* ]}
|
|
76
|
+
*/
|
|
77
77
|
inputOptions: InputOption[];
|
|
78
78
|
/**
|
|
79
79
|
* * Option to specify CSS layout direction for the Radio Group input field.
|
|
@@ -107,9 +107,9 @@ interface RadioGroupProps {
|
|
|
107
107
|
*/
|
|
108
108
|
style?: React.CSSProperties;
|
|
109
109
|
/**
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
110
|
+
* * Optional explicit Formik context. Useful when bypassing duplicate
|
|
111
|
+
* context issues in monorepos or bundled npm packages.
|
|
112
|
+
*/
|
|
113
113
|
formikContext?: FormikContextType<any>;
|
|
114
114
|
}
|
|
115
115
|
export declare const RadioGroupInput: ({ inputtype, alias, readOnly, width, inputLabel, newRow, isHinted, hintText, hintUrl, errorText, style, inputOptions, direction, columns, className, formikContext, ...props }: RadioGroupProps) => React.JSX.Element | null;
|