@devtron-labs/devtron-fe-common-lib 1.11.0-beta-1 → 1.11.0-pre-1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtron-labs/devtron-fe-common-lib",
3
- "version": "1.11.0-beta-1",
3
+ "version": "1.11.0-pre-1",
4
4
  "description": "Supporting common component library",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,3 +0,0 @@
1
- import { AnimatedTimerProps } from './types';
2
- declare const AnimatedTimer: ({ duration, onComplete, size }: AnimatedTimerProps) => JSX.Element;
3
- export default AnimatedTimer;
@@ -1,5 +0,0 @@
1
- export declare const CX = 12;
2
- export declare const CY = 12;
3
- export declare const RADIUS = 6;
4
- export declare const START_ANGLE = 0;
5
- export declare const END_ANGLE = 360;
@@ -1 +0,0 @@
1
- export { default as AnimatedTimer } from './AnimatedTimer.component';
@@ -1,13 +0,0 @@
1
- import { animate } from 'framer-motion';
2
- import { IconBaseSizeType } from '../../index';
3
- export interface AnimatedTimerProps extends Pick<Parameters<typeof animate>[2], 'onComplete'> {
4
- /**
5
- * The time in seconds for the timer to animate.
6
- */
7
- duration: number;
8
- onComplete?: () => void;
9
- /**
10
- * @default 24
11
- */
12
- size?: IconBaseSizeType;
13
- }
@@ -1,3 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
- <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M16.516 9.348h4.5m0 0v-4.5m0 4.5-3.182-3.182a8.25 8.25 0 1 0 0 11.668" vector-effect="non-scaling-stroke"/>
3
- </svg>