@risalabs_frontend_org/oasis-ui-kit 0.12.0 → 0.14.0

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.
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ interface ThreeDotIconProps {
3
+ fill?: string;
4
+ }
5
+ declare function ThreeDotIcon(props: ThreeDotIconProps): React.JSX.Element;
6
+ export default ThreeDotIcon;
@@ -0,0 +1,13 @@
1
+ import React from "react";
2
+ import "./three-dot-button.scss";
3
+ export interface ThreeDotOption {
4
+ id: string;
5
+ text: string;
6
+ }
7
+ interface ThreeDotButtonProps {
8
+ options: ThreeDotOption[];
9
+ onOptionClick: (optionId: string) => void;
10
+ className?: string;
11
+ }
12
+ export declare function ThreeDotButton(props: ThreeDotButtonProps): React.JSX.Element;
13
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@risalabs_frontend_org/oasis-ui-kit",
3
- "version": "0.12.0",
3
+ "version": "0.14.0",
4
4
  "description": "RISA Oasis UI",
5
5
  "private": false,
6
6
  "main": "dist/index.js",