@unifiedsoftware/react-components 2.0.0-alpha.12 → 2.0.0-alpha.13
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/index.d.ts +9 -9
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1523,6 +1523,15 @@ declare const ItemLinkSidebar: styled_components.IStyledComponent<"web", {
|
|
|
1523
1523
|
className?: string | undefined;
|
|
1524
1524
|
id?: string | undefined;
|
|
1525
1525
|
style?: react.CSSProperties | undefined;
|
|
1526
|
+
children?: react.ReactNode | undefined;
|
|
1527
|
+
href: string;
|
|
1528
|
+
download?: any;
|
|
1529
|
+
hrefLang?: string | undefined;
|
|
1530
|
+
media?: string | undefined;
|
|
1531
|
+
ping?: string | undefined;
|
|
1532
|
+
target?: react.HTMLAttributeAnchorTarget | undefined;
|
|
1533
|
+
type?: string | undefined;
|
|
1534
|
+
referrerPolicy?: react.HTMLAttributeReferrerPolicy | undefined;
|
|
1526
1535
|
defaultChecked?: boolean | undefined;
|
|
1527
1536
|
suppressContentEditableWarning?: boolean | undefined;
|
|
1528
1537
|
suppressHydrationWarning?: boolean | undefined;
|
|
@@ -1620,7 +1629,6 @@ declare const ItemLinkSidebar: styled_components.IStyledComponent<"web", {
|
|
|
1620
1629
|
"aria-valuemin"?: number | undefined;
|
|
1621
1630
|
"aria-valuenow"?: number | undefined;
|
|
1622
1631
|
"aria-valuetext"?: string | undefined;
|
|
1623
|
-
children?: react.ReactNode | undefined;
|
|
1624
1632
|
dangerouslySetInnerHTML?: {
|
|
1625
1633
|
__html: string | TrustedHTML;
|
|
1626
1634
|
} | undefined;
|
|
@@ -1783,14 +1791,6 @@ declare const ItemLinkSidebar: styled_components.IStyledComponent<"web", {
|
|
|
1783
1791
|
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
1784
1792
|
onTransitionEnd?: react.TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
1785
1793
|
onTransitionEndCapture?: react.TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
1786
|
-
media?: string | undefined;
|
|
1787
|
-
target?: react.HTMLAttributeAnchorTarget | undefined;
|
|
1788
|
-
type?: string | undefined;
|
|
1789
|
-
href: string;
|
|
1790
|
-
download?: any;
|
|
1791
|
-
hrefLang?: string | undefined;
|
|
1792
|
-
referrerPolicy?: react.HTMLAttributeReferrerPolicy | undefined;
|
|
1793
|
-
ping?: string | undefined;
|
|
1794
1794
|
asChild?: boolean;
|
|
1795
1795
|
ref?: ((instance: HTMLAnchorElement | null) => void | react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | react.RefObject<HTMLAnchorElement> | null | undefined;
|
|
1796
1796
|
}>;
|