@nulogy/components 8.14.1 → 8.14.3
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/dist/main.js +3 -6
- package/dist/main.module.js +3 -6
- package/dist/src/Link/Link.d.ts +3 -24
- package/dist/src/Toast/Toast.d.ts +1 -1
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -10090,9 +10090,6 @@
|
|
|
10090
10090
|
};
|
|
10091
10091
|
|
|
10092
10092
|
var StyledLink = styled__default["default"].a.withConfig({
|
|
10093
|
-
shouldForwardProp: function shouldForwardProp(prop, defaultValidatorFn) {
|
|
10094
|
-
return !["underline", "hover"].includes(prop) && defaultValidatorFn(prop);
|
|
10095
|
-
},
|
|
10096
10093
|
displayName: "Link__StyledLink",
|
|
10097
10094
|
componentId: "sc-1fcpbo4-0"
|
|
10098
10095
|
})(function (_a) {
|
|
@@ -10126,8 +10123,8 @@
|
|
|
10126
10123
|
|
|
10127
10124
|
var componentSize = useComponentSize(size);
|
|
10128
10125
|
return /*#__PURE__*/React__default["default"].createElement(StyledLink, Object.assign({
|
|
10129
|
-
|
|
10130
|
-
|
|
10126
|
+
ref: ref,
|
|
10127
|
+
size: componentSize
|
|
10131
10128
|
}, props));
|
|
10132
10129
|
});
|
|
10133
10130
|
Link.defaultProps = {
|
|
@@ -51271,7 +51268,7 @@
|
|
|
51271
51268
|
endAriaLabel: undefined
|
|
51272
51269
|
};
|
|
51273
51270
|
|
|
51274
|
-
var TOAST_SHOW_DURATION =
|
|
51271
|
+
var TOAST_SHOW_DURATION = 5000; // in ms
|
|
51275
51272
|
|
|
51276
51273
|
var ANIMATE_OUT_DURATION = 1000;
|
|
51277
51274
|
var toastAnimationConfig = {
|
package/dist/main.module.js
CHANGED
|
@@ -10067,9 +10067,6 @@ var getHoverColor = function getHoverColor(props) {
|
|
|
10067
10067
|
};
|
|
10068
10068
|
|
|
10069
10069
|
var StyledLink = styled.a.withConfig({
|
|
10070
|
-
shouldForwardProp: function shouldForwardProp(prop, defaultValidatorFn) {
|
|
10071
|
-
return !["underline", "hover"].includes(prop) && defaultValidatorFn(prop);
|
|
10072
|
-
},
|
|
10073
10070
|
displayName: "Link__StyledLink",
|
|
10074
10071
|
componentId: "sc-1fcpbo4-0"
|
|
10075
10072
|
})(function (_a) {
|
|
@@ -10103,8 +10100,8 @@ var Link = /*#__PURE__*/React__default.forwardRef(function (_a, ref) {
|
|
|
10103
10100
|
|
|
10104
10101
|
var componentSize = useComponentSize(size);
|
|
10105
10102
|
return /*#__PURE__*/React__default.createElement(StyledLink, Object.assign({
|
|
10106
|
-
|
|
10107
|
-
|
|
10103
|
+
ref: ref,
|
|
10104
|
+
size: componentSize
|
|
10108
10105
|
}, props));
|
|
10109
10106
|
});
|
|
10110
10107
|
Link.defaultProps = {
|
|
@@ -51248,7 +51245,7 @@ TimeRange.defaultProps = {
|
|
|
51248
51245
|
endAriaLabel: undefined
|
|
51249
51246
|
};
|
|
51250
51247
|
|
|
51251
|
-
var TOAST_SHOW_DURATION =
|
|
51248
|
+
var TOAST_SHOW_DURATION = 5000; // in ms
|
|
51252
51249
|
|
|
51253
51250
|
var ANIMATE_OUT_DURATION = 1000;
|
|
51254
51251
|
var toastAnimationConfig = {
|
package/dist/src/Link/Link.d.ts
CHANGED
|
@@ -1,33 +1,12 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import { DefaultNDSThemeType } from "../theme.type";
|
|
3
2
|
import { StyledProps } from "../StyledProps";
|
|
4
3
|
import { ComponentSize } from "../NDSProvider/ComponentSizeContext";
|
|
5
|
-
export type LinkProps = React.ComponentPropsWithRef<"a"> & StyledProps & {
|
|
6
|
-
className?: string;
|
|
4
|
+
export type LinkProps = React.ComponentPropsWithRef<"a"> & Partial<StyledProps> & {
|
|
7
5
|
underline?: boolean;
|
|
8
6
|
hover?: string;
|
|
9
|
-
as?: React.ElementType | string;
|
|
10
7
|
size?: ComponentSize;
|
|
11
8
|
to?: string;
|
|
12
|
-
color?: string;
|
|
13
|
-
fontSize?: string;
|
|
14
|
-
theme?: DefaultNDSThemeType;
|
|
15
|
-
children: JSX.Element | JSX.Element[] | React.ReactNode;
|
|
16
|
-
"aria-label"?: string;
|
|
17
|
-
};
|
|
18
|
-
declare const Link: React.ForwardRefExoticComponent<Pick<Pick<React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "key" | keyof React.AnchorHTMLAttributes<HTMLAnchorElement>> & {
|
|
19
|
-
ref?: React.Ref<HTMLAnchorElement>;
|
|
20
|
-
} & import("styled-system").BorderProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>, import("csstype").Property.Border<import("styled-system").TLengthStyledSystem>> & import("styled-system").BoxShadowProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> & import("styled-system").ColorProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>, string | number | symbol> & import("../StyledProps/cursor").CursorProps & import("styled-system").LayoutProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> & import("styled-system").OverflowProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> & import("styled-system").SpaceProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>, string | number | symbol> & import("../StyledProps/textOverflow").TextOverflowProps & import("../StyledProps/transform").TransformProps & import("../StyledProps/transition").TransitionProps & import("styled-system").TypographyProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> & import("../StyledProps/visibility").VisibilityProps & import("styled-system").FlexboxProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> & {
|
|
21
|
-
className?: string;
|
|
22
|
-
underline?: boolean;
|
|
23
|
-
hover?: string;
|
|
24
9
|
as?: React.ElementType | string;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
color?: string;
|
|
28
|
-
fontSize?: string;
|
|
29
|
-
theme?: DefaultNDSThemeType;
|
|
30
|
-
children: JSX.Element | JSX.Element[] | React.ReactNode;
|
|
31
|
-
"aria-label"?: string;
|
|
32
|
-
}, "p" | "slot" | "style" | "title" | "key" | "download" | "href" | "hrefLang" | "media" | "ping" | "rel" | "target" | "type" | "referrerPolicy" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "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" | "onChange" | "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" | "theme" | "border" | "borderX" | "borderY" | "borderWidth" | "borderTopWidth" | "borderBottomWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStyle" | "borderTopStyle" | "borderBottomStyle" | "borderLeftStyle" | "borderRightStyle" | "borderColor" | "borderTopColor" | "borderBottomColor" | "borderLeftColor" | "borderRightColor" | "borderRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTop" | "borderRight" | "borderBottom" | "borderLeft" | "boxShadow" | "bg" | "backgroundColor" | "opacity" | "cursor" | "width" | "height" | "minWidth" | "minHeight" | "maxWidth" | "maxHeight" | "display" | "verticalAlign" | "size" | "overflow" | "overflowX" | "overflowY" | "m" | "margin" | "mt" | "marginTop" | "mr" | "marginRight" | "mb" | "marginBottom" | "ml" | "marginLeft" | "mx" | "marginX" | "my" | "marginY" | "padding" | "pt" | "paddingTop" | "pr" | "paddingRight" | "pb" | "paddingBottom" | "pl" | "paddingLeft" | "px" | "paddingX" | "py" | "paddingY" | "whiteSpace" | "textOverflow" | "transform" | "transition" | "transitionProperty" | "transitonDuration" | "transitionTimingFunction" | "transitionDelay" | "fontFamily" | "fontSize" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontStyle" | "textAlign" | "visibility" | "alignItems" | "alignContent" | "justifyItems" | "justifyContent" | "flexWrap" | "flexDirection" | "flex" | "flexGrow" | "flexShrink" | "flexBasis" | "justifySelf" | "alignSelf" | "order" | "underline" | "hover" | "as" | "to"> & React.RefAttributes<unknown>>;
|
|
10
|
+
};
|
|
11
|
+
declare const Link: React.ForwardRefExoticComponent<Pick<LinkProps, "p" | "key" | keyof React.AnchorHTMLAttributes<HTMLAnchorElement> | "border" | "borderX" | "borderY" | "borderWidth" | "borderTopWidth" | "borderBottomWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStyle" | "borderTopStyle" | "borderBottomStyle" | "borderLeftStyle" | "borderRightStyle" | "borderColor" | "borderTopColor" | "borderBottomColor" | "borderLeftColor" | "borderRightColor" | "borderRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTop" | "borderRight" | "borderBottom" | "borderLeft" | "boxShadow" | "bg" | "backgroundColor" | "opacity" | "cursor" | "width" | "height" | "minWidth" | "minHeight" | "maxWidth" | "maxHeight" | "display" | "verticalAlign" | "size" | "overflow" | "overflowX" | "overflowY" | "m" | "margin" | "mt" | "marginTop" | "mr" | "marginRight" | "mb" | "marginBottom" | "ml" | "marginLeft" | "mx" | "marginX" | "my" | "marginY" | "padding" | "pt" | "paddingTop" | "pr" | "paddingRight" | "pb" | "paddingBottom" | "pl" | "paddingLeft" | "px" | "paddingX" | "py" | "paddingY" | "whiteSpace" | "textOverflow" | "transform" | "transition" | "transitionProperty" | "transitonDuration" | "transitionTimingFunction" | "transitionDelay" | "fontFamily" | "fontSize" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontStyle" | "textAlign" | "visibility" | "alignItems" | "alignContent" | "justifyItems" | "justifyContent" | "flexWrap" | "flexDirection" | "flex" | "flexGrow" | "flexShrink" | "flexBasis" | "justifySelf" | "alignSelf" | "order" | "underline" | "as" | "hover" | "to"> & React.RefAttributes<HTMLLinkElement>>;
|
|
33
12
|
export default Link;
|
|
@@ -7,7 +7,7 @@ type ToastProps = AlertProps & {
|
|
|
7
7
|
onHide?: () => void;
|
|
8
8
|
onHidden?: () => void;
|
|
9
9
|
};
|
|
10
|
-
export declare const TOAST_SHOW_DURATION =
|
|
10
|
+
export declare const TOAST_SHOW_DURATION = 5000;
|
|
11
11
|
export declare const toastAnimationConfig: {
|
|
12
12
|
initial: {
|
|
13
13
|
opacity: number;
|