@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.
- package/README.md +23 -4
- package/dist/cjs/designSystem/kubit/assets/animations/loaderPrimary.json +2419 -250
- package/dist/cjs/designSystem/kubit/components/loadingState/styles.js +1 -1
- package/dist/cjs/designSystem/kubit/components/loadingState/styles.js.map +1 -1
- package/dist/cjs/designSystem/kubit/components/thirdPartyAnimation/styles.js +0 -4
- package/dist/cjs/designSystem/kubit/components/thirdPartyAnimation/styles.js.map +1 -1
- package/dist/cjs/designSystem/kubit/components/thirdPartyAnimation/variants.js +0 -1
- package/dist/cjs/designSystem/kubit/components/thirdPartyAnimation/variants.js.map +1 -1
- package/dist/cjs/designSystem/kubitWireframe/commons/assets/animations/loaderPrimary.js +2397 -197
- package/dist/cjs/designSystem/kubitWireframe/commons/assets/animations/loaderPrimary.js.map +1 -1
- package/dist/esm/designSystem/kubit/assets/animations/loaderPrimary.json +2419 -250
- package/dist/esm/designSystem/kubit/components/loadingState/styles.js +1 -1
- package/dist/esm/designSystem/kubit/components/loadingState/styles.js.map +1 -1
- package/dist/esm/designSystem/kubit/components/thirdPartyAnimation/styles.js +0 -4
- package/dist/esm/designSystem/kubit/components/thirdPartyAnimation/styles.js.map +1 -1
- package/dist/esm/designSystem/kubit/components/thirdPartyAnimation/variants.d.ts +1 -2
- package/dist/esm/designSystem/kubit/components/thirdPartyAnimation/variants.js +0 -1
- package/dist/esm/designSystem/kubit/components/thirdPartyAnimation/variants.js.map +1 -1
- package/dist/esm/designSystem/kubitWireframe/commons/assets/animations/loaderPrimary.js +2397 -197
- package/dist/esm/designSystem/kubitWireframe/commons/assets/animations/loaderPrimary.js.map +1 -1
- package/package.json +1 -1
- package/dist/cjs/designSystem/kubit/assets/animations/loaderSecondary.json +0 -1919
- 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/
|
|
5
|
-
<img src="./assets/
|
|
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
|
|
59
|
+
<Button variant="PRIMARY" size="MEDIUM">
|
|
60
|
+
Click me
|
|
61
|
+
</Button>
|
|
43
62
|
</KubitProvider>
|
|
44
63
|
);
|
|
45
64
|
};
|