@kubit-ui-web/react-components 1.0.0-beta.2 → 1.0.0-beta.3

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 (23) hide show
  1. package/README.md +23 -4
  2. package/dist/cjs/designSystem/kubit/assets/animations/loaderPrimary.json +2419 -250
  3. package/dist/cjs/designSystem/kubit/components/loadingState/styles.js +1 -1
  4. package/dist/cjs/designSystem/kubit/components/loadingState/styles.js.map +1 -1
  5. package/dist/cjs/designSystem/kubit/components/thirdPartyAnimation/styles.js +0 -4
  6. package/dist/cjs/designSystem/kubit/components/thirdPartyAnimation/styles.js.map +1 -1
  7. package/dist/cjs/designSystem/kubit/components/thirdPartyAnimation/variants.js +0 -1
  8. package/dist/cjs/designSystem/kubit/components/thirdPartyAnimation/variants.js.map +1 -1
  9. package/dist/cjs/designSystem/kubitWireframe/commons/assets/animations/loaderPrimary.js +2397 -197
  10. package/dist/cjs/designSystem/kubitWireframe/commons/assets/animations/loaderPrimary.js.map +1 -1
  11. package/dist/esm/designSystem/kubit/assets/animations/loaderPrimary.json +2419 -250
  12. package/dist/esm/designSystem/kubit/components/loadingState/styles.js +1 -1
  13. package/dist/esm/designSystem/kubit/components/loadingState/styles.js.map +1 -1
  14. package/dist/esm/designSystem/kubit/components/thirdPartyAnimation/styles.js +0 -4
  15. package/dist/esm/designSystem/kubit/components/thirdPartyAnimation/styles.js.map +1 -1
  16. package/dist/esm/designSystem/kubit/components/thirdPartyAnimation/variants.d.ts +1 -2
  17. package/dist/esm/designSystem/kubit/components/thirdPartyAnimation/variants.js +0 -1
  18. package/dist/esm/designSystem/kubit/components/thirdPartyAnimation/variants.js.map +1 -1
  19. package/dist/esm/designSystem/kubitWireframe/commons/assets/animations/loaderPrimary.js +2397 -197
  20. package/dist/esm/designSystem/kubitWireframe/commons/assets/animations/loaderPrimary.js.map +1 -1
  21. package/package.json +1 -1
  22. package/dist/cjs/designSystem/kubit/assets/animations/loaderSecondary.json +0 -1919
  23. package/dist/esm/designSystem/kubit/assets/animations/loaderSecondary.json +0 -1919
package/README.md CHANGED
@@ -1,13 +1,30 @@
1
1
  <p align="center">
2
2
  <a href="https://kubit-ui.com">
3
3
  <picture>
4
- <source media="(prefers-color-scheme: dark)" srcset="./assets/readme_logo.png">
5
- <img src="./assets/readme_logo.png" height="128">
4
+ <source media="(prefers-color-scheme: dark)" srcset="./assets/banner_kubit_readme.png">
5
+ <img src="./assets/banner_kubit_readme.png" width="70%">
6
6
  </picture>
7
- <h1 align="center">Kubit</h1>
8
7
  </a>
9
8
  </p>
10
9
 
10
+ <div align='center'>
11
+
12
+ <a href='#'>
13
+ <img src='./assets/version.png' width="150px">
14
+ </a>
15
+
16
+ <a href='#'>
17
+ <img src='./assets/license.png' width="230px">
18
+ </a>
19
+
20
+ </div>
21
+
22
+ <br />
23
+
24
+ ---
25
+
26
+ <br />
27
+
11
28
  # Getting Started
12
29
 
13
30
  ## Installation
@@ -39,7 +56,9 @@ import React from 'react';
39
56
  const App = () => {
40
57
  return (
41
58
  <KubitProvider>
42
- <Button>Click me</Button>
59
+ <Button variant="PRIMARY" size="MEDIUM">
60
+ Click me
61
+ </Button>
43
62
  </KubitProvider>
44
63
  );
45
64
  };