@apia/components 1.0.0 → 1.0.2
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/cleanDist.json +1 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +960 -934
- package/dist/index.js.map +1 -1
- package/package.json +8 -8
package/cleanDist.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1078,7 +1078,12 @@ type TToolDefinition = {
|
|
|
1078
1078
|
*/
|
|
1079
1079
|
toggled?: boolean;
|
|
1080
1080
|
};
|
|
1081
|
-
type
|
|
1081
|
+
type TToolInput = {
|
|
1082
|
+
inputProps?: InputProps;
|
|
1083
|
+
label?: string;
|
|
1084
|
+
type: 'input';
|
|
1085
|
+
};
|
|
1086
|
+
type TTool = TToolDefinition | TSeparator | TToolInput;
|
|
1082
1087
|
|
|
1083
1088
|
declare const ToolbarItem: (props: TTool) => React$1.JSX.Element;
|
|
1084
1089
|
|