@julseb-lib/react 0.0.40 → 0.0.42
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/lib/index.ts
CHANGED
|
@@ -423,12 +423,12 @@ export interface LibMarkdownEditorOptions {
|
|
|
423
423
|
* @prop className?: string
|
|
424
424
|
* @prop id?: string
|
|
425
425
|
* @prop ref?: ForwardedRef<HTMLAnchorElement & HTMLButtonElement>
|
|
426
|
-
* @prop text:
|
|
426
|
+
* @prop text: ReactChildren
|
|
427
427
|
* @prop end?: boolean => prop from react-router, to render the active class only if path is not further
|
|
428
428
|
*/
|
|
429
429
|
export type LibHeaderLink = LibButtonLinkBlankRequired &
|
|
430
430
|
LibComponentItemBase<HTMLAnchorElement & HTMLButtonElement> & {
|
|
431
|
-
text:
|
|
431
|
+
text: ReactChildren
|
|
432
432
|
end?: boolean
|
|
433
433
|
}
|
|
434
434
|
|
|
@@ -461,11 +461,11 @@ export type LibIconMenuItem = LibButtonLinkBlankRequired &
|
|
|
461
461
|
* @prop className?: string
|
|
462
462
|
* @prop id?: string
|
|
463
463
|
* @prop ref?: ForwardedRef<HTMLAnchorElement & HTMLButtonElement>
|
|
464
|
-
* @prop text:
|
|
464
|
+
* @prop text: ReactChildren
|
|
465
465
|
*/
|
|
466
466
|
export type LibFooterLink = LibButtonLinkBlankRequired &
|
|
467
467
|
LibComponentItemBase<HTMLAnchorElement & HTMLButtonElement> & {
|
|
468
|
-
text:
|
|
468
|
+
text: ReactChildren
|
|
469
469
|
}
|
|
470
470
|
|
|
471
471
|
/*====================== DragListItem ======================*/
|