@ebertjendustries/cswrapper 1.0.13 → 1.0.15
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.cts → index.d.mts} +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +293 -170
- package/dist/{index.cjs → index.mjs} +183 -282
- package/package.json +1 -2
|
@@ -296,6 +296,7 @@ interface CSReadOnlyFormProps {
|
|
|
296
296
|
* this with the localiser prop.
|
|
297
297
|
*/
|
|
298
298
|
formField?: FormFieldProps;
|
|
299
|
+
secondaryControl?: React.ReactNode;
|
|
299
300
|
customRef?: any;
|
|
300
301
|
}
|
|
301
302
|
/**
|
|
@@ -677,7 +678,8 @@ interface CSToggleProps extends CSFormProps, ToggleProps {
|
|
|
677
678
|
*/
|
|
678
679
|
declare function CSToggle(props: CSToggleProps): react_jsx_runtime.JSX.Element;
|
|
679
680
|
|
|
680
|
-
interface CSCopyToClipboardProps extends CSReadOnlyFormProps, CopyToClipboardProps {
|
|
681
|
+
interface CSCopyToClipboardProps extends CSReadOnlyFormProps, Partial<CopyToClipboardProps> {
|
|
682
|
+
textToCopy: string;
|
|
681
683
|
}
|
|
682
684
|
/**
|
|
683
685
|
* Represents a {@link CopyToClipboard} with extra features.
|
package/dist/index.d.ts
CHANGED
|
@@ -296,6 +296,7 @@ interface CSReadOnlyFormProps {
|
|
|
296
296
|
* this with the localiser prop.
|
|
297
297
|
*/
|
|
298
298
|
formField?: FormFieldProps;
|
|
299
|
+
secondaryControl?: React.ReactNode;
|
|
299
300
|
customRef?: any;
|
|
300
301
|
}
|
|
301
302
|
/**
|
|
@@ -677,7 +678,8 @@ interface CSToggleProps extends CSFormProps, ToggleProps {
|
|
|
677
678
|
*/
|
|
678
679
|
declare function CSToggle(props: CSToggleProps): react_jsx_runtime.JSX.Element;
|
|
679
680
|
|
|
680
|
-
interface CSCopyToClipboardProps extends CSReadOnlyFormProps, CopyToClipboardProps {
|
|
681
|
+
interface CSCopyToClipboardProps extends CSReadOnlyFormProps, Partial<CopyToClipboardProps> {
|
|
682
|
+
textToCopy: string;
|
|
681
683
|
}
|
|
682
684
|
/**
|
|
683
685
|
* Represents a {@link CopyToClipboard} with extra features.
|