@woven-planet/lakefront 6.22.2 → 6.27.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/index.cjs.d.ts +4 -4
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.d.ts +4 -4
- package/dist/index.esm.js +1 -1
- package/package.json +1 -1
package/dist/index.esm.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import React from "react";
|
|
3
|
-
import { ComponentPropsWithoutRef, FC, RefAttributes, ReactNode, ElementType, ReactElement, ComponentPropsWithRef,
|
|
3
|
+
import { ComponentPropsWithoutRef, FC, RefAttributes, ReactNode, ElementType, ReactElement, ComponentPropsWithRef, ComponentProps, ChangeEvent, Dispatch, MouseEventHandler, SetStateAction, MouseEvent } from "react";
|
|
4
4
|
import { LinkProps } from "react-router-dom";
|
|
5
5
|
import { Theme } from "@emotion/react";
|
|
6
6
|
import { GetStyles, GroupBase } from "react-select/dist/declarations/src/types";
|
|
@@ -286,7 +286,7 @@ interface CardProps {
|
|
|
286
286
|
/**
|
|
287
287
|
* The Card Component is used to render a single Card, or a collection of Cards.
|
|
288
288
|
*/
|
|
289
|
-
declare const Card: FC<CardProps
|
|
289
|
+
declare const Card: FC<CardProps & ComponentProps<"div">>;
|
|
290
290
|
interface CheckboxProps {
|
|
291
291
|
/**
|
|
292
292
|
* The value to control whether the checkbox should be checked or not.
|
|
@@ -1865,7 +1865,7 @@ interface PageProps {
|
|
|
1865
1865
|
*
|
|
1866
1866
|
* The Page Component can be used to render other child components.
|
|
1867
1867
|
*/
|
|
1868
|
-
declare const Page: FC<PageProps
|
|
1868
|
+
declare const Page: FC<PageProps & ComponentProps<"div">>;
|
|
1869
1869
|
/**
|
|
1870
1870
|
* This is the structure for Highlights.
|
|
1871
1871
|
*/
|
|
@@ -2750,7 +2750,7 @@ interface TabProps {
|
|
|
2750
2750
|
* The Tab Component is used to render multiple tabs. The onChange event is called whenever the user clicks a different tab.
|
|
2751
2751
|
* The value will set the selection of the tab by default.
|
|
2752
2752
|
*/
|
|
2753
|
-
declare const Tabs: FC<TabProps
|
|
2753
|
+
declare const Tabs: FC<TabProps & ComponentProps<"div">>;
|
|
2754
2754
|
interface TextAreaProps {
|
|
2755
2755
|
/**
|
|
2756
2756
|
* This shows a label above the TextArea when provided.
|