@texturehq/edges 1.6.1 → 1.6.2
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/components.manifest.json +2 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js.map +1 -1
- package/dist/server.cjs.map +1 -1
- package/dist/server.js.map +1 -1
- package/dist/styles.css +6 -0
- package/dist/utilities.manifest.json +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1698,7 +1698,7 @@ interface ResultsCountProps {
|
|
|
1698
1698
|
* // Renders: loading skeleton
|
|
1699
1699
|
* ```
|
|
1700
1700
|
*/
|
|
1701
|
-
declare function ResultsCount({ count, label, isLoading, className }: ResultsCountProps): react_jsx_runtime.JSX.Element;
|
|
1701
|
+
declare function ResultsCount({ count, label, isLoading, className, }: ResultsCountProps): react_jsx_runtime.JSX.Element;
|
|
1702
1702
|
|
|
1703
1703
|
interface SearchControlProps {
|
|
1704
1704
|
/** Current search value */
|
|
@@ -2163,7 +2163,7 @@ declare function useInputFocus(): {
|
|
|
2163
2163
|
/**
|
|
2164
2164
|
* Wrapper component for input containers
|
|
2165
2165
|
*/
|
|
2166
|
-
declare function InputWrapper({ children, className }: {
|
|
2166
|
+
declare function InputWrapper({ children, className, }: {
|
|
2167
2167
|
children: React__default.ReactNode;
|
|
2168
2168
|
className?: string;
|
|
2169
2169
|
}): react_jsx_runtime.JSX.Element;
|
|
@@ -2244,7 +2244,7 @@ declare function getFieldGroupStyles(props: FieldGroupProps): string;
|
|
|
2244
2244
|
* </Label>
|
|
2245
2245
|
* ```
|
|
2246
2246
|
*/
|
|
2247
|
-
declare function Label({ children, size, tooltip, isRequired, className, htmlFor }: LabelProps): react_jsx_runtime.JSX.Element;
|
|
2247
|
+
declare function Label({ children, size, tooltip, isRequired, className, htmlFor, }: LabelProps): react_jsx_runtime.JSX.Element;
|
|
2248
2248
|
/**
|
|
2249
2249
|
* Description component for providing additional context about a form field.
|
|
2250
2250
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -1698,7 +1698,7 @@ interface ResultsCountProps {
|
|
|
1698
1698
|
* // Renders: loading skeleton
|
|
1699
1699
|
* ```
|
|
1700
1700
|
*/
|
|
1701
|
-
declare function ResultsCount({ count, label, isLoading, className }: ResultsCountProps): react_jsx_runtime.JSX.Element;
|
|
1701
|
+
declare function ResultsCount({ count, label, isLoading, className, }: ResultsCountProps): react_jsx_runtime.JSX.Element;
|
|
1702
1702
|
|
|
1703
1703
|
interface SearchControlProps {
|
|
1704
1704
|
/** Current search value */
|
|
@@ -2163,7 +2163,7 @@ declare function useInputFocus(): {
|
|
|
2163
2163
|
/**
|
|
2164
2164
|
* Wrapper component for input containers
|
|
2165
2165
|
*/
|
|
2166
|
-
declare function InputWrapper({ children, className }: {
|
|
2166
|
+
declare function InputWrapper({ children, className, }: {
|
|
2167
2167
|
children: React__default.ReactNode;
|
|
2168
2168
|
className?: string;
|
|
2169
2169
|
}): react_jsx_runtime.JSX.Element;
|
|
@@ -2244,7 +2244,7 @@ declare function getFieldGroupStyles(props: FieldGroupProps): string;
|
|
|
2244
2244
|
* </Label>
|
|
2245
2245
|
* ```
|
|
2246
2246
|
*/
|
|
2247
|
-
declare function Label({ children, size, tooltip, isRequired, className, htmlFor }: LabelProps): react_jsx_runtime.JSX.Element;
|
|
2247
|
+
declare function Label({ children, size, tooltip, isRequired, className, htmlFor, }: LabelProps): react_jsx_runtime.JSX.Element;
|
|
2248
2248
|
/**
|
|
2249
2249
|
* Description component for providing additional context about a form field.
|
|
2250
2250
|
*
|