@televet/kibble-ui 0.1.0-beta.13 → 0.1.0-beta.14

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/build/index.js CHANGED
@@ -2634,6 +2634,30 @@ var globalStyles = {
2634
2634
  },
2635
2635
  };
2636
2636
 
2637
+ var Input = {
2638
+ variants: {
2639
+ outline: {
2640
+ borderColor: colors.gray[200],
2641
+ },
2642
+ },
2643
+ defaultProps: {
2644
+ focusBorderColor: colors.teal[600],
2645
+ },
2646
+ };
2647
+
2648
+ var Popover = {
2649
+ baseStyle: {
2650
+ content: {
2651
+ borderColor: colors.gray[200],
2652
+ },
2653
+ },
2654
+ };
2655
+
2656
+ var components = {
2657
+ Input: Input,
2658
+ Popover: Popover,
2659
+ };
2660
+
2637
2661
  var config = {
2638
2662
  blur: blur,
2639
2663
  borders: borders,
@@ -2654,6 +2678,7 @@ var config = {
2654
2678
  styles: globalStyles,
2655
2679
  initialColorMode: 'light',
2656
2680
  useSystemColorMode: false,
2681
+ components: components,
2657
2682
  };
2658
2683
  var theme = react.extendTheme({ config: config });
2659
2684