@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 +25 -0
- package/build/index.js.map +1 -1
- package/build/theme/components/Input.d.ts +3 -0
- package/build/theme/components/Popover.d.ts +3 -0
- package/build/theme/components/index.d.ts +7 -0
- package/build/theme/foundations/blur.d.ts +12 -0
- package/build/theme/foundations/borders.d.ts +15 -0
- package/build/theme/foundations/breakpoints.d.ts +9 -0
- package/build/theme/foundations/colors.d.ts +197 -0
- package/build/theme/foundations/fontSizes.d.ts +17 -0
- package/build/theme/foundations/fontWeights.d.ts +13 -0
- package/build/theme/foundations/fonts.d.ts +7 -0
- package/build/theme/foundations/letterSpacings.d.ts +17 -0
- package/build/theme/foundations/lineHeights.d.ts +19 -0
- package/build/theme/foundations/palette.d.ts +23 -0
- package/build/theme/foundations/radii.d.ts +13 -0
- package/build/theme/foundations/shadows.d.ts +27 -0
- package/build/theme/foundations/sizes.d.ts +27 -0
- package/build/theme/foundations/space.d.ts +37 -0
- package/build/theme/foundations/transition.d.ts +28 -0
- package/build/theme/foundations/zIndeces.d.ts +17 -0
- package/build/theme/index.d.ts +17 -15
- package/package.json +1 -1
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
|
|