@innovaccer/design-system 2.18.0 → 2.20.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.
Files changed (46) hide show
  1. package/CHANGELOG.md +83 -0
  2. package/css/dist/MaterialSymbolsOutlined.ttf +0 -0
  3. package/css/dist/MaterialSymbolsRounded.ttf +0 -0
  4. package/css/dist/index.css +134 -87
  5. package/css/dist/index.css.map +1 -1
  6. package/css/gulpfile.js +7 -11
  7. package/css/material-design-icons/iconfont/MaterialSymbolsOutlined.ttf +0 -0
  8. package/css/material-design-icons/iconfont/MaterialSymbolsRounded.ttf +0 -0
  9. package/css/material-design-icons/iconfont/material-icons.css +10 -88
  10. package/css/src/components/actionCard.css +40 -0
  11. package/css/src/components/calendar.css +33 -0
  12. package/css/src/components/chipInput.css +23 -0
  13. package/css/src/components/toast.css +2 -0
  14. package/css/src/utils/text.css +23 -0
  15. package/dist/.lib/tsconfig.type.tsbuildinfo +70 -24
  16. package/dist/core/common.type.d.ts +6 -0
  17. package/dist/core/components/atoms/actionCard/ActionCard.d.ts +13 -0
  18. package/dist/core/components/atoms/actionCard/index.d.ts +2 -0
  19. package/dist/core/components/atoms/button/Button.d.ts +3 -1
  20. package/dist/core/components/atoms/icon/Icon.d.ts +7 -0
  21. package/dist/core/components/atoms/icon/utils.d.ts +7 -0
  22. package/dist/core/components/atoms/input/actionButton/ActionButton.d.ts +3 -1
  23. package/dist/core/components/atoms/popperWrapper/PopperWrapper.d.ts +20 -20
  24. package/dist/core/components/molecules/chipInput/ChipInput.d.ts +1 -0
  25. package/dist/core/components/organisms/calendar/utility.d.ts +1 -0
  26. package/dist/core/components/organisms/timePicker/TimePickerWithInput.d.ts +1 -0
  27. package/dist/core/components/organisms/timePicker/TimePickerWithSearch.d.ts +1 -0
  28. package/dist/core/index.d.ts +1 -0
  29. package/dist/core/index.type.d.ts +1 -0
  30. package/dist/index.esm.js +346 -158
  31. package/dist/index.js +274 -86
  32. package/dist/index.js.map +1 -1
  33. package/dist/index.umd.js +1 -1
  34. package/dist/index.umd.js.br +0 -0
  35. package/dist/index.umd.js.gz +0 -0
  36. package/package.json +1 -1
  37. package/css/dist/MaterialIcons-Regular.ttf +0 -0
  38. package/css/dist/MaterialIconsOutlined-Regular.otf +0 -0
  39. package/css/dist/MaterialIconsRound-Regular.otf +0 -0
  40. package/css/dist/MaterialIconsSharp-Regular.otf +0 -0
  41. package/css/dist/MaterialIconsTwoTone-Regular.otf +0 -0
  42. package/css/material-design-icons/iconfont/MaterialIcons-Regular.ttf +0 -0
  43. package/css/material-design-icons/iconfont/MaterialIconsOutlined-Regular.otf +0 -0
  44. package/css/material-design-icons/iconfont/MaterialIconsRound-Regular.otf +0 -0
  45. package/css/material-design-icons/iconfont/MaterialIconsSharp-Regular.otf +0 -0
  46. package/css/material-design-icons/iconfont/MaterialIconsTwoTone-Regular.otf +0 -0
@@ -1,10 +1,12 @@
1
1
  import * as React from 'react';
2
2
  import { BaseProps } from "../../../../utils/types";
3
- export declare type ActionButtonType = 'filled' | 'outlined' | 'round' | 'two-tone' | 'sharp';
3
+ import { FontVariationType } from "../../../../common.type";
4
+ export declare type ActionButtonType = 'outlined' | 'rounded';
4
5
  export interface ActionButtonProps extends BaseProps {
5
6
  name?: string;
6
7
  size: number;
7
8
  type?: ActionButtonType;
9
+ iconVariations?: FontVariationType;
8
10
  onClick?: (e: React.MouseEvent<HTMLElement>) => void;
9
11
  onKeyDown?: (e: React.KeyboardEvent<HTMLElement>) => void;
10
12
  children?: React.ReactNode;
@@ -91,7 +91,7 @@ export declare class PopperWrapper extends React.Component<PopperWrapperProps, P
91
91
  backgroundOrigin?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "border-box" | "content-box" | "padding-box" | undefined;
92
92
  backgroundPositionX?: string | number | (string & {}) | undefined;
93
93
  backgroundPositionY?: string | number | (string & {}) | undefined;
94
- backgroundRepeat?: "repeat" | "round" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "no-repeat" | "repeat-x" | "repeat-y" | "space" | undefined;
94
+ backgroundRepeat?: "repeat" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "round" | "no-repeat" | "repeat-x" | "repeat-y" | "space" | undefined;
95
95
  backgroundSize?: string | number | (string & {}) | undefined;
96
96
  blockOverflow?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "clip" | "ellipsis" | undefined;
97
97
  blockSize?: string | number | (string & {}) | undefined;
@@ -113,7 +113,7 @@ export declare class PopperWrapper extends React.Component<PopperWrapperProps, P
113
113
  borderEndEndRadius?: string | number | (string & {}) | undefined;
114
114
  borderEndStartRadius?: string | number | (string & {}) | undefined;
115
115
  borderImageOutset?: string | number | (string & {}) | (number & {}) | undefined;
116
- borderImageRepeat?: "repeat" | "round" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "space" | "stretch" | undefined;
116
+ borderImageRepeat?: "repeat" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "round" | "space" | "stretch" | undefined;
117
117
  borderImageSlice?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | (number & {}) | undefined;
118
118
  borderImageSource?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | undefined;
119
119
  borderImageWidth?: string | number | (string & {}) | (number & {}) | undefined;
@@ -249,7 +249,7 @@ export declare class PopperWrapper extends React.Component<PopperWrapperProps, P
249
249
  marginTop?: string | number | (string & {}) | undefined;
250
250
  maskBorderMode?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "alpha" | "luminance" | undefined;
251
251
  maskBorderOutset?: string | number | (string & {}) | (number & {}) | undefined;
252
- maskBorderRepeat?: "repeat" | "round" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "space" | "stretch" | undefined;
252
+ maskBorderRepeat?: "repeat" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "round" | "space" | "stretch" | undefined;
253
253
  maskBorderSlice?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | (number & {}) | undefined;
254
254
  maskBorderSource?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | undefined;
255
255
  maskBorderWidth?: string | number | (string & {}) | (number & {}) | undefined;
@@ -259,7 +259,7 @@ export declare class PopperWrapper extends React.Component<PopperWrapperProps, P
259
259
  maskMode?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "alpha" | "luminance" | "match-source" | undefined;
260
260
  maskOrigin?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "border-box" | "content-box" | "padding-box" | "fill-box" | "margin-box" | "stroke-box" | "view-box" | undefined;
261
261
  maskPosition?: string | number | (string & {}) | undefined;
262
- maskRepeat?: "repeat" | "round" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "no-repeat" | "repeat-x" | "repeat-y" | "space" | undefined;
262
+ maskRepeat?: "repeat" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "round" | "no-repeat" | "repeat-x" | "repeat-y" | "space" | undefined;
263
263
  maskSize?: string | number | (string & {}) | undefined;
264
264
  maskType?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "alpha" | "luminance" | undefined;
265
265
  mathStyle?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "normal" | "compact" | undefined;
@@ -276,7 +276,7 @@ export declare class PopperWrapper extends React.Component<PopperWrapperProps, P
276
276
  motionDistance?: string | number | (string & {}) | undefined;
277
277
  motionPath?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | "border-box" | "content-box" | "padding-box" | "fill-box" | "margin-box" | "stroke-box" | "view-box" | undefined;
278
278
  motionRotation?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "auto" | "reverse" | undefined;
279
- objectFit?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | "contain" | "cover" | "fill" | "scale-down" | undefined;
279
+ objectFit?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | "fill" | "contain" | "cover" | "scale-down" | undefined;
280
280
  objectPosition?: string | number | (string & {}) | undefined;
281
281
  offsetAnchor?: string | number | (string & {}) | undefined;
282
282
  offsetDistance?: string | number | (string & {}) | undefined;
@@ -315,11 +315,11 @@ export declare class PopperWrapper extends React.Component<PopperWrapperProps, P
315
315
  pageBreakAfter?: "left" | "right" | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "auto" | "always" | "avoid" | "recto" | "verso" | undefined;
316
316
  pageBreakBefore?: "left" | "right" | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "auto" | "always" | "avoid" | "recto" | "verso" | undefined;
317
317
  pageBreakInside?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "auto" | "avoid" | undefined;
318
- paintOrder?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "normal" | "fill" | "markers" | "stroke" | undefined;
318
+ paintOrder?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "fill" | "normal" | "markers" | "stroke" | undefined;
319
319
  perspective?: string | number | undefined;
320
320
  perspectiveOrigin?: string | number | (string & {}) | undefined;
321
321
  placeContent?: "start" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "center" | "end" | "space-around" | "space-between" | "space-evenly" | "stretch" | "flex-end" | "flex-start" | "baseline" | "normal" | undefined;
322
- pointerEvents?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | "auto" | "all" | "visible" | "fill" | "stroke" | "painted" | "visibleFill" | "visiblePainted" | "visibleStroke" | undefined;
322
+ pointerEvents?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | "auto" | "all" | "fill" | "visible" | "stroke" | "painted" | "visibleFill" | "visiblePainted" | "visibleStroke" | undefined;
323
323
  position?: "fixed" | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "-webkit-sticky" | "absolute" | "relative" | "static" | "sticky" | undefined;
324
324
  quotes?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | "auto" | undefined;
325
325
  resize?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | "inline" | "both" | "horizontal" | "vertical" | "block" | undefined;
@@ -427,7 +427,7 @@ export declare class PopperWrapper extends React.Component<PopperWrapperProps, P
427
427
  borderBlockStart?: string | number | (string & {}) | undefined;
428
428
  borderBottom?: string | number | (string & {}) | undefined;
429
429
  borderColor?: "white" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "transparent" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | undefined;
430
- borderImage?: "repeat" | "round" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | (number & {}) | "space" | "stretch" | undefined;
430
+ borderImage?: "repeat" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | (number & {}) | "round" | "space" | "stretch" | undefined;
431
431
  borderInline?: string | number | (string & {}) | undefined;
432
432
  borderInlineEnd?: string | number | (string & {}) | undefined;
433
433
  borderInlineStart?: string | number | (string & {}) | undefined;
@@ -452,7 +452,7 @@ export declare class PopperWrapper extends React.Component<PopperWrapperProps, P
452
452
  listStyle?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | "inside" | "outside" | undefined;
453
453
  margin?: string | number | (string & {}) | undefined;
454
454
  mask?: string | number | (string & {}) | undefined;
455
- maskBorder?: "repeat" | "round" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | (number & {}) | "space" | "stretch" | "alpha" | "luminance" | undefined;
455
+ maskBorder?: "repeat" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | (number & {}) | "round" | "space" | "stretch" | "alpha" | "luminance" | undefined;
456
456
  motion?: string | number | (string & {}) | undefined;
457
457
  offset?: string | number | (string & {}) | undefined;
458
458
  outline?: string | number | (string & {}) | undefined;
@@ -638,7 +638,7 @@ export declare class PopperWrapper extends React.Component<PopperWrapperProps, P
638
638
  WebkitMarginStart?: string | number | (string & {}) | undefined;
639
639
  WebkitMaskAttachment?: "fixed" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "scroll" | "local" | undefined;
640
640
  WebkitMaskBoxImageOutset?: string | number | (string & {}) | (number & {}) | undefined;
641
- WebkitMaskBoxImageRepeat?: "repeat" | "round" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "space" | "stretch" | undefined;
641
+ WebkitMaskBoxImageRepeat?: "repeat" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "round" | "space" | "stretch" | undefined;
642
642
  WebkitMaskBoxImageSlice?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | (number & {}) | undefined;
643
643
  WebkitMaskBoxImageSource?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | undefined;
644
644
  WebkitMaskBoxImageWidth?: string | number | (string & {}) | (number & {}) | undefined;
@@ -649,9 +649,9 @@ export declare class PopperWrapper extends React.Component<PopperWrapperProps, P
649
649
  WebkitMaskPosition?: string | number | (string & {}) | undefined;
650
650
  WebkitMaskPositionX?: string | number | (string & {}) | undefined;
651
651
  WebkitMaskPositionY?: string | number | (string & {}) | undefined;
652
- WebkitMaskRepeat?: "repeat" | "round" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "no-repeat" | "repeat-x" | "repeat-y" | "space" | undefined;
653
- WebkitMaskRepeatX?: "repeat" | "round" | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "no-repeat" | "space" | undefined;
654
- WebkitMaskRepeatY?: "repeat" | "round" | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "no-repeat" | "space" | undefined;
652
+ WebkitMaskRepeat?: "repeat" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "round" | "no-repeat" | "repeat-x" | "repeat-y" | "space" | undefined;
653
+ WebkitMaskRepeatX?: "repeat" | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "round" | "no-repeat" | "space" | undefined;
654
+ WebkitMaskRepeatY?: "repeat" | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "round" | "no-repeat" | "space" | undefined;
655
655
  WebkitMaskSize?: string | number | (string & {}) | undefined;
656
656
  WebkitMaxInlineSize?: string | number | (string & {}) | undefined;
657
657
  WebkitOrder?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | (number & {}) | undefined;
@@ -691,7 +691,7 @@ export declare class PopperWrapper extends React.Component<PopperWrapperProps, P
691
691
  WebkitUserSelect?: "text" | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | "auto" | "all" | "contain" | "-moz-none" | "element" | undefined;
692
692
  WebkitWritingMode?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "horizontal-tb" | "sideways-lr" | "sideways-rl" | "vertical-lr" | "vertical-rl" | undefined;
693
693
  MozAnimation?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | (number & {}) | "both" | "normal" | "alternate" | "alternate-reverse" | "reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | undefined;
694
- MozBorderImage?: "repeat" | "round" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | (number & {}) | "space" | "stretch" | undefined;
694
+ MozBorderImage?: "repeat" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | (number & {}) | "round" | "space" | "stretch" | undefined;
695
695
  MozColumnRule?: string | number | (string & {}) | undefined;
696
696
  MozColumns?: string | number | (string & {}) | (number & {}) | undefined;
697
697
  MozTransition?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | "all" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | undefined;
@@ -704,14 +704,14 @@ export declare class PopperWrapper extends React.Component<PopperWrapperProps, P
704
704
  msTransition?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | "all" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | undefined;
705
705
  WebkitAnimation?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | (number & {}) | "both" | "normal" | "alternate" | "alternate-reverse" | "reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | undefined;
706
706
  WebkitBorderBefore?: string | number | (string & {}) | undefined;
707
- WebkitBorderImage?: "repeat" | "round" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | (number & {}) | "space" | "stretch" | undefined;
707
+ WebkitBorderImage?: "repeat" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | (number & {}) | "round" | "space" | "stretch" | undefined;
708
708
  WebkitBorderRadius?: string | number | (string & {}) | undefined;
709
709
  WebkitColumnRule?: string | number | (string & {}) | undefined;
710
710
  WebkitColumns?: string | number | (string & {}) | (number & {}) | undefined;
711
711
  WebkitFlex?: string | number | (string & {}) | (number & {}) | undefined;
712
712
  WebkitFlexFlow?: "wrap" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "row" | "column" | "column-reverse" | "row-reverse" | "nowrap" | "wrap-reverse" | undefined;
713
713
  WebkitMask?: string | number | (string & {}) | undefined;
714
- WebkitMaskBoxImage?: "repeat" | "round" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | (number & {}) | "space" | "stretch" | "alpha" | "luminance" | undefined;
714
+ WebkitMaskBoxImage?: "repeat" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | (number & {}) | "round" | "space" | "stretch" | "alpha" | "luminance" | undefined;
715
715
  WebkitTextEmphasis?: "open" | "circle" | "white" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | "transparent" | "filled" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "dot" | "double-circle" | "sesame" | "triangle" | undefined;
716
716
  WebkitTextStroke?: string | number | (string & {}) | undefined;
717
717
  WebkitTransition?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | "all" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | undefined;
@@ -800,8 +800,8 @@ export declare class PopperWrapper extends React.Component<PopperWrapperProps, P
800
800
  OAnimationPlayState?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "paused" | "running" | undefined;
801
801
  OAnimationTimingFunction?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | undefined;
802
802
  OBackgroundSize?: string | number | (string & {}) | undefined;
803
- OBorderImage?: "repeat" | "round" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | (number & {}) | "space" | "stretch" | undefined;
804
- OObjectFit?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | "contain" | "cover" | "fill" | "scale-down" | undefined;
803
+ OBorderImage?: "repeat" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | (number & {}) | "round" | "space" | "stretch" | undefined;
804
+ OObjectFit?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | "fill" | "contain" | "cover" | "scale-down" | undefined;
805
805
  OObjectPosition?: string | number | (string & {}) | undefined;
806
806
  OTabSize?: string | number | (string & {}) | (number & {}) | undefined;
807
807
  OTextOverflow?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "clip" | "ellipsis" | undefined;
@@ -845,8 +845,8 @@ export declare class PopperWrapper extends React.Component<PopperWrapperProps, P
845
845
  stroke?: "white" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | "transparent" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "child" | "context-fill" | "context-stroke" | undefined;
846
846
  strokeDasharray?: string | number | (string & {}) | (number & {}) | undefined;
847
847
  strokeDashoffset?: string | number | (string & {}) | undefined;
848
- strokeLinecap?: "round" | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "butt" | "square" | undefined;
849
- strokeLinejoin?: "round" | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "bevel" | "miter" | undefined;
848
+ strokeLinecap?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "round" | "butt" | "square" | undefined;
849
+ strokeLinejoin?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "round" | "bevel" | "miter" | undefined;
850
850
  strokeMiterlimit?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | (number & {}) | undefined;
851
851
  strokeOpacity?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | (number & {}) | undefined;
852
852
  strokeWidth?: string | number | (string & {}) | undefined;
@@ -11,6 +11,7 @@ export interface ChipInputProps extends BaseProps {
11
11
  allowDuplicates: boolean;
12
12
  chipOptions: ChipOptions;
13
13
  disabled?: boolean;
14
+ error?: boolean;
14
15
  placeholder?: string;
15
16
  value?: string[];
16
17
  defaultValue: string[];
@@ -11,4 +11,5 @@ export declare const compareYearBlock: (d: DateType | undefined, operator: Opera
11
11
  export declare const compareDate: (d: DateType | undefined, operator: Operator, currYear: number, currMonth?: number | undefined, currDate?: number | undefined) => boolean;
12
12
  export declare const translateToString: (format: string, d?: Date | undefined) => string;
13
13
  export declare const translateToDate: (format: string, val: string, validators?: Validators) => Date | undefined;
14
+ export declare const dateComparison: (date: Date | undefined, operator: Operator, currDate: string, currMonth: string, currYear: string) => boolean;
14
15
  export {};
@@ -10,6 +10,7 @@ export interface TimePickerInputProps {
10
10
  outputFormat: InputFormat;
11
11
  validators: Validators;
12
12
  onTimeChange?: (timeVal?: string) => void;
13
+ error?: boolean;
13
14
  }
14
15
  export declare const TimePickerWithInput: {
15
16
  (props: TimePickerInputProps): JSX.Element;
@@ -20,6 +20,7 @@ export interface TimePickerDropdownProps extends BaseProps {
20
20
  onChange?: (selected: any[] | any, name?: string | number) => void;
21
21
  fetchTimeOptions?: fetchOptionsFunction;
22
22
  id?: string;
23
+ error?: boolean;
23
24
  }
24
25
  export declare const TimePickerWithSearch: {
25
26
  (props: TimePickerDropdownProps): JSX.Element;
@@ -84,4 +84,5 @@ export { ChoiceList } from "./components/organisms/choiceList";
84
84
  export { Divider } from "./components/atoms/divider";
85
85
  export { HelpText } from "./components/atoms/helpText";
86
86
  export { LinkButton } from "./components/atoms/linkButton";
87
+ export { ActionCard } from "./components/atoms/actionCard";
87
88
  export { version } from "../package.json";
@@ -82,3 +82,4 @@ export { ChoiceListProps } from "./components/organisms/choiceList";
82
82
  export { DividerProps } from "./components/atoms/divider";
83
83
  export { HelpTextProps } from "./components/atoms/helpText";
84
84
  export { LinkButtonProps } from "./components/atoms/linkButton";
85
+ export { ActionCardProps } from "./components/atoms/actionCard";