digitinary-ui 1.0.272 → 1.0.274

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.
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
2
  import './style.scss';
3
- declare const TextArea: React.ForwardRefExoticComponent<Omit<any, "ref"> & React.RefAttributes<"symbol" | "object" | "text" | React.ComponentClass<any, any> | React.FunctionComponent<any> | "search" | "big" | "link" | "small" | "sub" | "sup" | "html" | "title" | "input" | "progress" | "select" | "button" | "view" | "style" | "label" | "center" | "data" | "header" | "image" | "time" | "clipPath" | "filter" | "mask" | "path" | "menu" | "dialog" | "map" | "circle" | "line" | "rect" | "a" | "p" | "meter" | "textarea" | "ruby" | "table" | "embed" | "pre" | "caption" | "menuitem" | "div" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "blockquote" | "body" | "br" | "canvas" | "cite" | "code" | "col" | "colgroup" | "datalist" | "dd" | "del" | "details" | "dfn" | "dl" | "dt" | "em" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "hgroup" | "hr" | "i" | "iframe" | "img" | "ins" | "kbd" | "legend" | "li" | "main" | "mark" | "meta" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "picture" | "q" | "rp" | "rt" | "s" | "samp" | "script" | "section" | "slot" | "source" | "span" | "strong" | "summary" | "tbody" | "td" | "template" | "tfoot" | "th" | "thead" | "tr" | "track" | "u" | "ul" | "var" | "video" | "wbr" | "switch" | "SVG" | "keygen" | "noindex" | "param" | "webview" | "svg" | "animate" | "animateMotion" | "animateTransform" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "foreignObject" | "g" | "linearGradient" | "marker" | "metadata" | "mpath" | "pattern" | "polygon" | "polyline" | "radialGradient" | "set" | "stop" | "textPath" | "tspan" | "use">>;
3
+ declare const TextArea: React.ForwardRefExoticComponent<Omit<any, "ref"> & React.RefAttributes<"symbol" | "object" | "text" | React.ComponentClass<any, any> | React.FunctionComponent<any> | "search" | "big" | "link" | "small" | "sub" | "sup" | "html" | "title" | "input" | "progress" | "select" | "button" | "view" | "style" | "label" | "center" | "data" | "video" | "image" | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "blockquote" | "body" | "br" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "i" | "iframe" | "img" | "ins" | "kbd" | "legend" | "li" | "main" | "map" | "mark" | "menu" | "meta" | "meter" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "picture" | "pre" | "q" | "rp" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "slot" | "source" | "span" | "strong" | "summary" | "table" | "tbody" | "td" | "template" | "textarea" | "tfoot" | "th" | "thead" | "time" | "tr" | "track" | "u" | "ul" | "var" | "wbr" | "clipPath" | "filter" | "mask" | "path" | "circle" | "line" | "rect" | "menuitem" | "switch" | "SVG" | "keygen" | "noindex" | "param" | "webview" | "svg" | "animate" | "animateMotion" | "animateTransform" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "foreignObject" | "g" | "linearGradient" | "marker" | "metadata" | "mpath" | "pattern" | "polygon" | "polyline" | "radialGradient" | "set" | "stop" | "textPath" | "tspan" | "use">>;
4
4
  export default TextArea;
@@ -1,4 +1,5 @@
1
+ /// <reference types="react" />
1
2
  import './style.scss';
2
- import { TimeTrackerProps } from '../../types';
3
- declare const TimeTracker: ({ data, className, title, statusTypes, }: TimeTrackerProps) => import("react/jsx-runtime").JSX.Element;
3
+ import { TimeTrackerProps } from './helper';
4
+ declare const TimeTracker: React.FC<TimeTrackerProps>;
4
5
  export default TimeTracker;
@@ -0,0 +1,26 @@
1
+ /// <reference types="react" />
2
+ export interface TimeTrackerFile {
3
+ type: string;
4
+ size: number;
5
+ name?: string;
6
+ lastModified?: number;
7
+ [key: string]: any;
8
+ }
9
+ export interface TimeTrackerItem {
10
+ status?: string;
11
+ date?: string;
12
+ userName?: string;
13
+ comment?: string;
14
+ isHighlighted?: boolean;
15
+ files?: File[] | TimeTrackerFile[];
16
+ details?: React.ReactNode;
17
+ }
18
+ export interface StatusTypes {
19
+ [key: string]: string;
20
+ }
21
+ export interface TimeTrackerProps {
22
+ data: TimeTrackerItem[];
23
+ className?: string;
24
+ title?: string;
25
+ statusTypes?: StatusTypes;
26
+ }