td-stylekit 28.18.0 → 28.19.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 +7 -0
- package/dist/es/DataGrid/elements.d.ts +2 -2
- package/dist/es/DateControl/elements.d.ts +1 -1
- package/dist/es/Icon/staticTypes.d.ts +4 -0
- package/dist/es/Icon/types.js +10 -0
- package/dist/es/Input/Input.d.ts +1 -1
- package/dist/es/Input/Input.js +6 -6
- package/dist/es/Modal/components/MenuBody.js +10 -9
- package/dist/es/MultiSelect/MultiSelect.js +4 -0
- package/dist/es/MultiSelect/elements.d.ts +1 -1
- package/dist/es/NavigationBar/LogoItem.js +1 -0
- package/dist/es/Section/elements.d.ts +1 -1
- package/dist/es/Shuttle/Shuttle.js +2 -0
- package/dist/es/Slider/elements.d.ts +2 -2
- package/dist/es/Tagger/Tagger.d.ts +1 -1
- package/dist/es/Tagger/components/PopupSelectorElements.d.ts +3 -3
- package/dist/es/Tagger/components/PopupSelectorElements.js +17 -11
- package/dist/es/Tagger/variantProps.d.ts +1 -1
- package/dist/es/TimeControl/elements.d.ts +1 -1
- package/dist/es/TimeField/TimeField.d.ts +1 -1
- package/package.json +5 -7
- package/dist/es/utils/enzyme.d.ts +0 -3
- package/dist/es/utils/enzyme.js +0 -56
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [28.19.0](https://github.com/treasure-data/td-stylekit/compare/v28.18.0...v28.19.0) (2023-04-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **CON-12766:** Add new icons for ADH ([#1459](https://github.com/treasure-data/td-stylekit/issues/1459)) ([bdeff33](https://github.com/treasure-data/td-stylekit/commit/bdeff33))
|
|
7
|
+
|
|
1
8
|
# [28.18.0](https://github.com/treasure-data/td-stylekit/compare/v28.17.0...v28.18.0) (2023-03-20)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -105,7 +105,7 @@ export declare const InlineInput: StyledComponent<{
|
|
|
105
105
|
value?: string | number | undefined;
|
|
106
106
|
}) => void;
|
|
107
107
|
placeholder?: string | undefined;
|
|
108
|
-
type?: ("
|
|
108
|
+
type?: import("../Input/Input").InputTypes | undefined;
|
|
109
109
|
value: string | number;
|
|
110
110
|
variant?: ("primary" | "secondary" | {
|
|
111
111
|
borderBottomColor: string;
|
|
@@ -116,7 +116,7 @@ export declare const InlineInput: StyledComponent<{
|
|
|
116
116
|
} & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "onChange"> & Omit<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, "onChange"> & {
|
|
117
117
|
theme?: import("@emotion/react").Theme | undefined;
|
|
118
118
|
} & InlineInputProps, {}, {
|
|
119
|
-
ref?: import("react").Ref<Input<
|
|
119
|
+
ref?: import("react").Ref<Input<import("../Input/Input").InputTypes>> | undefined;
|
|
120
120
|
}>;
|
|
121
121
|
export declare const SelectWrapper: StyledComponent<{
|
|
122
122
|
theme?: import("@emotion/react").Theme | undefined;
|
|
@@ -210,7 +210,7 @@ export declare const DateFormControl: import("@emotion/styled").StyledComponent<
|
|
|
210
210
|
options?: any;
|
|
211
211
|
guessMenuWidth?: boolean | undefined;
|
|
212
212
|
optionRenderer?: ((option: import("../types").FormControlValue) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) | undefined;
|
|
213
|
-
} & Omit<import("../Input").InputProps<"number" | "textarea" | "text" | "url" | "email" | "datetime-local" | "password">, "label">, "form" | "style" | "title" | "pattern" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "lang" | "placeholder" | "slot" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "readOnly" | "checked" | "height" | "width" | "wrap" | "inline" | "rows" | "max" | "min" | "crossOrigin" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "
|
|
213
|
+
} & Omit<import("../Input").InputProps<"number" | "textarea" | "text" | "url" | "email" | "datetime-local" | "password">, "label">, "form" | "style" | "title" | "pattern" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "lang" | "placeholder" | "slot" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "readOnly" | "checked" | "height" | "width" | "wrap" | "inline" | "rows" | "max" | "min" | "crossOrigin" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "step" | "list" | "multiple" | "accept" | "alt" | "autoComplete" | "capture" | "maxLength" | "minLength" | "src" | "variant" | "cols" | "dirName" | "inputRef"> & Partial<Pick<{
|
|
214
214
|
addOnClassName?: string | undefined;
|
|
215
215
|
blockLabel?: boolean | undefined;
|
|
216
216
|
'data-gs-c'?: Function | undefined;
|
|
@@ -462,6 +462,8 @@ export type IconTypes = {
|
|
|
462
462
|
DatamodelIcon: React.ComponentType<JSX.IntrinsicElements['svg']>;
|
|
463
463
|
Dataset: React.ComponentType<JSX.IntrinsicElements['svg']>;
|
|
464
464
|
DatasetIcon: React.ComponentType<JSX.IntrinsicElements['svg']>;
|
|
465
|
+
Datasource: React.ComponentType<JSX.IntrinsicElements['svg']>;
|
|
466
|
+
DatasourceIcon: React.ComponentType<JSX.IntrinsicElements['svg']>;
|
|
465
467
|
Detail: React.ComponentType<JSX.IntrinsicElements['svg']>;
|
|
466
468
|
DetailIcon: React.ComponentType<JSX.IntrinsicElements['svg']>;
|
|
467
469
|
DetailNav: React.ComponentType<JSX.IntrinsicElements['svg']>;
|
|
@@ -518,6 +520,8 @@ export type IconTypes = {
|
|
|
518
520
|
IdServiceIcon: React.ComponentType<JSX.IntrinsicElements['svg']>;
|
|
519
521
|
IdServiceDraft: React.ComponentType<JSX.IntrinsicElements['svg']>;
|
|
520
522
|
IdServiceDraftIcon: React.ComponentType<JSX.IntrinsicElements['svg']>;
|
|
523
|
+
Integration: React.ComponentType<JSX.IntrinsicElements['svg']>;
|
|
524
|
+
IntegrationIcon: React.ComponentType<JSX.IntrinsicElements['svg']>;
|
|
521
525
|
Journey: React.ComponentType<JSX.IntrinsicElements['svg']>;
|
|
522
526
|
JourneyIcon: React.ComponentType<JSX.IntrinsicElements['svg']>;
|
|
523
527
|
JourneyDraft: React.ComponentType<JSX.IntrinsicElements['svg']>;
|
package/dist/es/Icon/types.js
CHANGED
|
@@ -895,6 +895,13 @@ React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
|
|
|
895
895
|
}), /*#__PURE__*/React.createElement("path", {
|
|
896
896
|
d: "M19.688 14.542a.263.263 0 00.007-.011c.137-.275.088-.671-.246-.841l-.614-.332-.007-.003c-.275-.138-.672-.088-.84.25a.135.135 0 00-.005.008l-.002.004c-.104.244-.35.427-.684.427-.328 0-.587-.178-.741-.447-.17-.33-.565-.379-.838-.242a.248.248 0 00-.021.012l-.513.327c-.357.185-.512.559-.323.854.153.273.182.603.002.892a.807.807 0 01-.749.46.613.613 0 00-.618.618v.714c0 .179.09.325.204.42.113.095.262.15.414.15.296 0 .596.146.79.45.154.316.146.655.001.908a.185.185 0 00-.006.011c-.137.275-.088.672.246.841l.606.327c.153.097.33.082.464.028a.665.665 0 00.34-.31c.153-.263.456-.446.742-.446.328 0 .586.178.741.446.17.331.564.38.838.242l.004-.002.526-.287a.77.77 0 00.348-.397.552.552 0 00-.072-.512c-.15-.27-.177-.594-.002-.88.193-.268.5-.418.8-.418.301 0 .617-.23.617-.619v-.714a.62.62 0 00-.188-.43.618.618 0 00-.459-.186c-.273.034-.565-.098-.76-.404-.154-.316-.146-.655-.002-.908zm-1.251 2.303a1.14 1.14 0 11-2.28 0 1.14 1.14 0 012.28 0z",
|
|
897
897
|
fillRule: "evenodd"
|
|
898
|
+
})),Datasource: /*#__PURE__*/
|
|
899
|
+
React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
|
|
900
|
+
d: "M10.75 3c4.038 0 6.75 1.496 6.75 2.893 0 1.397-2.712 2.893-6.75 2.893C6.713 8.786 4 7.29 4 5.893 4 4.496 6.713 3 10.75 3z"
|
|
901
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
902
|
+
d: "M9.814 13.959a5.141 5.141 0 017.216-1.81c.306-.325.47-.668.47-1.006V8.602c0-.09-.11-.137-.178-.077-1.246 1.116-3.69 1.885-6.572 1.885-2.881 0-5.326-.77-6.572-1.885C4.11 8.465 4 8.512 4 8.602v2.541c0 1.265 2.299 2.61 5.814 2.816zM9.255 15.425c-2.22-.215-4.053-.897-5.077-1.814-.067-.06-.178-.014-.178.076v2.542c0 1.265 2.3 2.61 5.815 2.816a5.165 5.165 0 01-.56-3.62z"
|
|
903
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
904
|
+
d: "M12.818 12.968a.643.643 0 011.13.021c.05.029.099.065.142.108l1.57 1.57a.643.643 0 11-.909.91l-.732-.732v4.87a.643.643 0 01-1.285 0v-4.91l-.779.78a.643.643 0 01-.91-.91l1.571-1.57a.641.641 0 01.202-.137zM17.87 13.286a.643.643 0 00-.643.643v4.876l-.77-.768a.643.643 0 10-.908.909l1.567 1.567a.643.643 0 00.175.124.643.643 0 001.172-.032.643.643 0 00.127-.1l1.569-1.567a.643.643 0 10-.91-.91l-.737.738v-4.837a.643.643 0 00-.643-.643z"
|
|
898
905
|
})),Detail: /*#__PURE__*/
|
|
899
906
|
React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
|
|
900
907
|
d: "M8.378 12.434a1 1 0 100-2 1 1 0 000 2zM11.47 10.434a1 1 0 100 2h4.152a1 1 0 100-2H11.47zM8.378 15.934a1 1 0 100-2 1 1 0 000 2zM11.47 13.934a1 1 0 100 2h4.152a1 1 0 100-2H11.47z"
|
|
@@ -1025,6 +1032,9 @@ React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
|
|
|
1025
1032
|
})),IdServiceDraft: /*#__PURE__*/
|
|
1026
1033
|
React.createElement("path", {
|
|
1027
1034
|
d: "M19.97 7.793c-.193-1.492-1.32-2.713-2.817-3.135a.27.27 0 00-.257.06l3.075 3.075zM12.435 4.5h1.061L15.2 6.204v1.06L12.435 4.5zM10.314 4.5h1.06L15.2 8.325v1.061L10.314 4.5zM8.193 4.5h1.06l5.947 5.947v1.06L8.193 4.5zM6.071 4.5h1.061L10.4 7.768a2.025 2.025 0 00-1.196-.136L6.07 4.5zM4.542 5.092c.178-.179.394-.324.635-.426L8.452 7.94c-.21.14-.391.319-.535.525L4.542 5.092zM4 6.671v-.296c0-.226.043-.443.12-.644l3.476 3.475a2.04 2.04 0 00-.044.423v.338c0 .093.006.184.018.274L4 6.671zM4 8.793V7.732l5.235 5.235a5.38 5.38 0 00-.896.164L4 8.793zM4 10.914v-1.06l3.544 3.544c-.257.104-.5.22-.717.343L4 10.914zM4 13.035v-1.06l2.2 2.2a1.65 1.65 0 00-.215.224c-.08.103-.119.284-.126.496L4 13.035zM4 15.156v-1.06L9.404 19.5h-1.06L4 15.156zM4 17.278v-1.06L7.283 19.5h-1.06L4 17.278zM4.36 18.699c.11.147.242.278.391.39l-.39-.39zM11.525 19.5h-1.06l-3.097-3.097h1.06l3.097 3.097zM13.647 19.5h-1.06l-3.098-3.097h1.06l3.098 3.097zM15.2 18.932v.268a.3.3 0 01-.3.3h-.193l-3.097-3.097h1.061l2.529 2.529zM18.871 18.36c-.18.175-.377.332-.59.47L16.8 17.35v-1.06l2.071 2.07zM19.733 17.1c-.1.243-.226.473-.374.687L16.83 15.26a.3.3 0 01.269-.166h.626l2.007 2.007zM20 13.125v.169a.3.3 0 01-.3.3h-.292L16.8 10.986v-.28a.3.3 0 01.3-.3h.181L20 13.126zM20 11.004v1.06l-1.658-1.658h1.06l.598.598zM19.924 8.806a.3.3 0 01-.224.1h-.737L16.8 6.743v-1.06l3.124 3.123zM16.8 7.804l1.102 1.102H17.1a.3.3 0 01-.3-.3v-.802zM15.2 5.143V4.8a.3.3 0 00-.3-.3h-.343l.643.643zM16.8 12.047l1.547 1.547h-1.06l-.487-.487v-1.06zM18.787 15.094h.913a.3.3 0 01.3.3v.356c0 .176-.013.35-.038.52l-1.175-1.176zM15.2 12.568l-3.756-3.756c.11.25.17.526.17.817V10.042L15.2 13.63v-1.061zM15.2 14.69l-3.804-3.805a2.04 2.04 0 01-.462.6L15.2 15.75v-1.06zM15.2 16.81v1.061l-2.037-2.037c.097-.284.15-.627.144-.917l1.893 1.894zM16.8 18.41v.652c0 .189.172.33.353.28.147-.042.291-.09.43-.147l-.783-.784zM11.914 13.524L10.27 11.88a2.029 2.029 0 01-.96.1l1.044 1.045a6.594 6.594 0 011.56.5z"
|
|
1035
|
+
}),Integration: /*#__PURE__*/
|
|
1036
|
+
React.createElement("path", {
|
|
1037
|
+
d: "M18.627 5.373a4.686 4.686 0 00-6.627 0l-1.506 1.506a.682.682 0 000 .964l.843.843-1.218 1.219a.937.937 0 101.325 1.325l1.219-1.218 1.325 1.325-1.218 1.219a.937.937 0 101.325 1.325l1.219-1.218.843.843a.682.682 0 00.964 0L18.627 12a4.686 4.686 0 000-6.627zM5.373 18.627a4.686 4.686 0 006.627 0l1.506-1.506a.682.682 0 000-.964l-5.663-5.663a.682.682 0 00-.964 0L5.373 12a4.686 4.686 0 000 6.627z"
|
|
1028
1038
|
}),Jobs: /*#__PURE__*/
|
|
1029
1039
|
React.createElement("path", {
|
|
1030
1040
|
d: "M2.11 6.688c0-2.015 1.426-3.89 3.461-3.89H18.43c2.035 0 3.461 1.875 3.461 3.89 0 2.014-1.426 3.89-3.461 3.89H5.57c-2.035 0-3.461-1.876-3.461-3.89zm16.319 2.11H16v-4.22h2.429c.804 0 1.68.81 1.68 2.11 0 1.298-.876 2.11-1.68 2.11zM2.11 17.313c0-2.015 1.426-3.89 3.461-3.89H18.43c2.035 0 3.461 1.875 3.461 3.89 0 2.014-1.426 3.89-3.461 3.89H5.57c-2.035 0-3.461-1.876-3.461-3.89zm16.319 2.11H9.5v-4.22h8.929c.804 0 1.68.81 1.68 2.11 0 1.298-.876 2.11-1.68 2.11z",
|
package/dist/es/Input/Input.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ export declare const InlineInputComponent: React.ForwardRefExoticComponent<React
|
|
|
30
30
|
type NumberTypes = 'number';
|
|
31
31
|
type TextAreaType = 'textarea';
|
|
32
32
|
type StringTypes = 'url' | 'datetime-local' | 'email' | 'password' | 'text' | TextAreaType;
|
|
33
|
-
type InputTypes = NumberTypes | StringTypes;
|
|
33
|
+
export type InputTypes = NumberTypes | StringTypes;
|
|
34
34
|
/**
|
|
35
35
|
* This uses a generic plus conditional types to adjust prop types based on the type prop.
|
|
36
36
|
*
|