ui-beyable 1.0.34 → 1.0.35-beta.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,3 @@
1
+ /// <reference types="react" />
2
+ import { IKpiItem } from './types';
3
+ export declare function KpiItem({ name, value, unit, variation, }: IKpiItem): JSX.Element;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ interface IKpiItem {
3
+ name: React.ReactNode | string;
4
+ value: number;
5
+ unit?: string;
6
+ variation?: number;
7
+ }
8
+ export { IKpiItem };
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { IKpiItem } from './types';
3
+ export declare function KpiItem({ name, value, unit, variation, }: IKpiItem): JSX.Element;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ interface IKpiItem {
3
+ name: React.ReactNode | string;
4
+ value: number;
5
+ unit?: string;
6
+ variation?: number;
7
+ }
8
+ export { IKpiItem };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ui-beyable",
3
- "version": "1.0.34",
3
+ "version": "1.0.35-beta.0",
4
4
  "description": "Ui library of Beyable projets",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/esm/index.js",