kahuna-base-react-components 0.1.11 → 0.2.1

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.
Files changed (30) hide show
  1. package/dist/components/KButton/KButton.d.ts +1 -0
  2. package/dist/components/KInput/KInput.d.ts +1 -0
  3. package/dist/components/KSpan/KSpan.d.ts +2 -1
  4. package/dist/index.esm.js +2 -2
  5. package/dist/index.esm.js.map +1 -1
  6. package/dist/index.js +2 -2
  7. package/dist/index.js.map +1 -1
  8. package/dist/types.d.ts +4 -1
  9. package/package.json +1 -1
  10. package/src/assets/fonts/AeonikPro-Bold/AeonikPro-Bold.otf +0 -0
  11. package/src/assets/fonts/AeonikPro-Bold/CoType EULA Desktop.pdf +1388 -3
  12. package/src/assets/fonts/Inter/Inter-VariableFont_slnt,wght.ttf +0 -0
  13. package/src/assets/fonts/Inter/OFL.txt +93 -0
  14. package/src/assets/fonts/Inter/README.txt +72 -0
  15. package/src/assets/fonts/Inter/static/Inter-Black.ttf +0 -0
  16. package/src/assets/fonts/Inter/static/Inter-Bold.ttf +0 -0
  17. package/src/assets/fonts/Inter/static/Inter-ExtraBold.ttf +0 -0
  18. package/src/assets/fonts/Inter/static/Inter-ExtraLight.ttf +0 -0
  19. package/src/assets/fonts/Inter/static/Inter-Light.ttf +0 -0
  20. package/src/assets/fonts/Inter/static/Inter-Medium.ttf +0 -0
  21. package/src/assets/fonts/Inter/static/Inter-Regular.ttf +0 -0
  22. package/src/assets/fonts/Inter/static/Inter-SemiBold.ttf +0 -0
  23. package/src/assets/fonts/Inter/static/Inter-Thin.ttf +0 -0
  24. package/src/components/KButton/KButton.stories.tsx +2 -1
  25. package/src/components/KButton/KButton.tsx +21 -11
  26. package/src/components/KDropdown/KDropdown.tsx +18 -5
  27. package/src/components/KInput/KInput.stories.tsx +2 -1
  28. package/src/components/KInput/KInput.tsx +32 -13
  29. package/src/components/KSpan/KSpan.tsx +33 -21
  30. package/src/main.css +11 -0
@@ -14,6 +14,7 @@ export interface KButtonProps {
14
14
  textColor?: string;
15
15
  padding?: string;
16
16
  shadowDisabled?: boolean;
17
+ hoverBackground?: string;
17
18
  }
18
19
  declare const KButton: React.FC<KButtonProps>;
19
20
  export default KButton;
@@ -18,6 +18,7 @@ export interface KInputProps {
18
18
  leftIconClick?: () => void;
19
19
  rightIconClick?: () => void;
20
20
  accentColor?: string;
21
+ hoverBackground?: string;
21
22
  }
22
23
  declare const KInput: React.FC<KInputProps>;
23
24
  export default KInput;
@@ -1,4 +1,4 @@
1
- import React from "react";
1
+ import React, { CSSProperties } from "react";
2
2
  import "../../main.css";
3
3
  export interface KSpanProps {
4
4
  text: string;
@@ -10,6 +10,7 @@ export interface KSpanProps {
10
10
  letterSpacing?: string;
11
11
  hoverText?: string;
12
12
  hoverTextColor?: string;
13
+ hoverStyle?: CSSProperties;
13
14
  }
14
15
  declare const KSpan: React.FC<KSpanProps>;
15
16
  export default KSpan;