* Added Circular Porgress Widget * Updated the svg icon for the widget. * Added strokeLineCap prop to the widget. * Added Rounding for percent values. * Review Changes completed. Removed un-necessary props, added Default Values. * App crashes when a modal has a filepicker? (#10376) (cherry picked from commitf646eeafc1) * Revert "chore: Don't take client subscription into account for fork application (#10220)" (#10375) This reverts commit814a7d57f9. * Added widget entries in TernServer files. * Added Radial Separators. * Removed Steps Functionality. * Added isJSConvertible to progress property. * Resovled eslint error under EntityDefinition.ts Co-authored-by: Pawan Kumar <pawan.stardust@gmail.com> Co-authored-by: Arpit Mohan <mohanarpit@users.noreply.github.com> Co-authored-by: Abhijeet <41686026+abhvsn@users.noreply.github.com>
13 lines
383 B
TypeScript
13 lines
383 B
TypeScript
/*
|
|
This file contains common constants which can be used across the
|
|
widget configuration file (index.ts), widget and component folders.
|
|
*/
|
|
|
|
export const VIEWBOX_WIDTH = 100;
|
|
export const VIEWBOX_HEIGHT = 100;
|
|
export const VIEWBOX_HEIGHT_HALF = 50;
|
|
export const VIEWBOX_CENTER_X = 50;
|
|
export const VIEWBOX_CENTER_Y = 50;
|
|
export const STROKE_WIDTH = 8;
|
|
export const MAX_VALUE = 100;
|