@televet/kibble-ui 0.1.0-beta.12 → 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,8 +2634,31 @@ var globalStyles = {
2634
2634
  },
2635
2635
  };
2636
2636
 
2637
- // @ts-ignore
2638
- var theme = react.extendTheme({
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
+
2661
+ var config = {
2639
2662
  blur: blur,
2640
2663
  borders: borders,
2641
2664
  breakpoints: breakpoints,
@@ -2653,7 +2676,11 @@ var theme = react.extendTheme({
2653
2676
  palette: palette,
2654
2677
  semanticTokens: semanticTokens,
2655
2678
  styles: globalStyles,
2656
- });
2679
+ initialColorMode: 'light',
2680
+ useSystemColorMode: false,
2681
+ components: components,
2682
+ };
2683
+ var theme = react.extendTheme({ config: config });
2657
2684
 
2658
2685
  var KibbleThemeProvider = function (_a) {
2659
2686
  var children = _a.children;