@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 CHANGED
@@ -1,3 +1,3 @@
1
1
  {
2
- "cleanDist": 0.9483910757295941
2
+ "cleanDist": 0.6468207089370563
3
3
  }
package/dist/index.d.ts CHANGED
@@ -1078,7 +1078,12 @@ type TToolDefinition = {
1078
1078
  */
1079
1079
  toggled?: boolean;
1080
1080
  };
1081
- type TTool = TToolDefinition | TSeparator;
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