test-stpr-ui-kit 0.4.1 → 0.4.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 CHANGED
@@ -16,23 +16,7 @@ $ npm install --save test-stpr-ui-kit
16
16
 
17
17
  # Getting set up
18
18
 
19
- To start using the components, please follow these steps:
20
-
21
- 1. Import styles in main react file (main.jsx or app.jsx) provded by **test-stpr-ui-kit**
22
-
23
- ```jsx
24
- import "test-stpr-ui-kit/styles";
25
-
26
- createRoot(document.getElementById("root")).render(
27
- <StrictMode>
28
- <App/>
29
- </StrictMode>
30
- );
31
- ```
32
-
33
- `import "test-stpr-ui-kit/styles"` is a temporary solution needed to style components.
34
-
35
- 2. Now you can start using components like so!:
19
+ Just use the components like this:
36
20
 
37
21
  ```jsx
38
22
  import { Button } from "test-stpr-ui-kit";
@@ -143,6 +143,7 @@ export declare enum EIconName {
143
143
  Copy = "copy",
144
144
  Close = "close",
145
145
  PlusSquare = "plusSquare",
146
+ PlusCircle = "plusCircle",
146
147
  WarningColor = "warningColor",
147
148
  Dots = "dots",
148
149
  HistoryClock = "historyClock",
@@ -370,7 +371,7 @@ declare type TButtonType = "submit" | "reset" | "button";
370
371
 
371
372
  declare type TButtonVariant = "primary" | "secondary" | "link";
372
373
 
373
- declare type TContextMenuOption = {
374
+ export declare type TContextMenuOption = {
374
375
  key?: string;
375
376
  value?: string;
376
377
  label?: string;