@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.
- package/CHANGELOG.md +83 -0
- package/css/dist/MaterialSymbolsOutlined.ttf +0 -0
- package/css/dist/MaterialSymbolsRounded.ttf +0 -0
- package/css/dist/index.css +134 -87
- package/css/dist/index.css.map +1 -1
- package/css/gulpfile.js +7 -11
- package/css/material-design-icons/iconfont/MaterialSymbolsOutlined.ttf +0 -0
- package/css/material-design-icons/iconfont/MaterialSymbolsRounded.ttf +0 -0
- package/css/material-design-icons/iconfont/material-icons.css +10 -88
- package/css/src/components/actionCard.css +40 -0
- package/css/src/components/calendar.css +33 -0
- package/css/src/components/chipInput.css +23 -0
- package/css/src/components/toast.css +2 -0
- package/css/src/utils/text.css +23 -0
- package/dist/.lib/tsconfig.type.tsbuildinfo +70 -24
- package/dist/core/common.type.d.ts +6 -0
- package/dist/core/components/atoms/actionCard/ActionCard.d.ts +13 -0
- package/dist/core/components/atoms/actionCard/index.d.ts +2 -0
- package/dist/core/components/atoms/button/Button.d.ts +3 -1
- package/dist/core/components/atoms/icon/Icon.d.ts +7 -0
- package/dist/core/components/atoms/icon/utils.d.ts +7 -0
- package/dist/core/components/atoms/input/actionButton/ActionButton.d.ts +3 -1
- package/dist/core/components/atoms/popperWrapper/PopperWrapper.d.ts +20 -20
- package/dist/core/components/molecules/chipInput/ChipInput.d.ts +1 -0
- package/dist/core/components/organisms/calendar/utility.d.ts +1 -0
- package/dist/core/components/organisms/timePicker/TimePickerWithInput.d.ts +1 -0
- package/dist/core/components/organisms/timePicker/TimePickerWithSearch.d.ts +1 -0
- package/dist/core/index.d.ts +1 -0
- package/dist/core/index.type.d.ts +1 -0
- package/dist/index.esm.js +346 -158
- package/dist/index.js +274 -86
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.br +0 -0
- package/dist/index.umd.js.gz +0 -0
- package/package.json +1 -1
- package/css/dist/MaterialIcons-Regular.ttf +0 -0
- package/css/dist/MaterialIconsOutlined-Regular.otf +0 -0
- package/css/dist/MaterialIconsRound-Regular.otf +0 -0
- package/css/dist/MaterialIconsSharp-Regular.otf +0 -0
- package/css/dist/MaterialIconsTwoTone-Regular.otf +0 -0
- package/css/material-design-icons/iconfont/MaterialIcons-Regular.ttf +0 -0
- package/css/material-design-icons/iconfont/MaterialIconsOutlined-Regular.otf +0 -0
- package/css/material-design-icons/iconfont/MaterialIconsRound-Regular.otf +0 -0
- package/css/material-design-icons/iconfont/MaterialIconsSharp-Regular.otf +0 -0
- 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
|
-
|
|
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" |
|
|
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" |
|
|
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" |
|
|
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" |
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
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" |
|
|
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" |
|
|
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" |
|
|
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" |
|
|
653
|
-
WebkitMaskRepeatX?: "repeat" | "
|
|
654
|
-
WebkitMaskRepeatY?: "repeat" | "
|
|
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" |
|
|
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" |
|
|
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" |
|
|
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" |
|
|
804
|
-
OObjectFit?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | "
|
|
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?: "
|
|
849
|
-
strokeLinejoin?: "
|
|
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,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 {};
|
|
@@ -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;
|
package/dist/core/index.d.ts
CHANGED
|
@@ -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";
|