@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 +30 -3
- 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 +20 -16
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -2634,8 +2634,31 @@ var globalStyles = {
|
|
|
2634
2634
|
},
|
|
2635
2635
|
};
|
|
2636
2636
|
|
|
2637
|
-
|
|
2638
|
-
|
|
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;
|