@kubit-ui-web/react-components 1.0.0-beta.1 → 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 +26 -7
  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
@@ -17,13 +34,13 @@ To install the package, run the following command:
17
34
  ### npm
18
35
 
19
36
  ```bash
20
- npm install @kubit-ui/react-components
37
+ npm install @kubit-ui-web/react-components
21
38
  ```
22
39
 
23
40
  ### yarn
24
41
 
25
42
  ```bash
26
- yarn add @kubit-ui/react-components
43
+ yarn add @kubit-ui-web/react-components
27
44
  ```
28
45
 
29
46
  This will install the package and its dependencies. Now you can import the components and use them in your application.
@@ -33,13 +50,15 @@ This will install the package and its dependencies. Now you can import the compo
33
50
  To use the components, import them from the package and use them in your application.
34
51
 
35
52
  ```tsx
36
- import { Button, KubitProvider } from '@kubit-ui/react-components';
53
+ import { Button, KubitProvider } from '@kubit-ui-web/react-components';
37
54
  import React from 'react';
38
55
 
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
  };