@vchasno/ui-kit 0.2.6 → 0.2.7

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,22 @@
1
+ import React, { HTMLAttributes } from 'react';
2
+ import './PulseDot.css';
3
+ export interface PulseDotProps extends HTMLAttributes<HTMLDivElement> {
4
+ /**
5
+ * Color of the dot
6
+ */
7
+ color?: string;
8
+ /**
9
+ * CSS width/height values like 10em | 10px | 50%
10
+ */
11
+ size?: React.CSSProperties['width'];
12
+ /**
13
+ * CSS style object for overriding default styling
14
+ */
15
+ style?: React.CSSProperties;
16
+ /**
17
+ * className for overriding default styling
18
+ */
19
+ className?: string;
20
+ }
21
+ declare const PulseDot: React.FC<PulseDotProps>;
22
+ export default PulseDot;
@@ -0,0 +1,2 @@
1
+ export { default } from './PulseDot';
2
+ export type { PulseDotProps } from './PulseDot';
@@ -30,3 +30,5 @@ export { default as Tabs } from './Tabs';
30
30
  export type { TabsProps } from './Tabs';
31
31
  export { default as Checkbox } from './Checkbox';
32
32
  export type { CheckboxProps } from './Checkbox';
33
+ export { default as PulseDot } from './PulseDot';
34
+ export type { PulseDotProps } from './PulseDot';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vchasno/ui-kit",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "description": "React UI components for Vchasno applications",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",