@cleen/ui 0.1.20 → 0.1.22
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 +4 -0
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1215,6 +1215,7 @@ type EditableTextProps = Omit<ComponentProps<'div'>, 'onChange'> & {
|
|
|
1215
1215
|
saveOnBlur?: boolean;
|
|
1216
1216
|
isLoading?: boolean;
|
|
1217
1217
|
customLoader?: ReactNode;
|
|
1218
|
+
renderText?: (value: string) => ReactNode | ReactNode;
|
|
1218
1219
|
classNames?: {
|
|
1219
1220
|
container?: string;
|
|
1220
1221
|
input?: ComponentClassnames<InputProps>;
|
|
@@ -1279,6 +1280,7 @@ type EditableTextAreaProps = Omit<ComponentProps<'div'>, 'onChange'> & {
|
|
|
1279
1280
|
saveOnBlur?: boolean;
|
|
1280
1281
|
isLoading?: boolean;
|
|
1281
1282
|
customLoader?: ReactNode;
|
|
1283
|
+
renderText?: (value: string) => ReactNode | ReactNode;
|
|
1282
1284
|
classNames?: {
|
|
1283
1285
|
container?: string;
|
|
1284
1286
|
textArea?: ComponentClassnames<TextAreaProps>;
|
|
@@ -2766,6 +2768,7 @@ interface SidebarProps {
|
|
|
2766
2768
|
/** Additional CSS classes for the sections inside the component */
|
|
2767
2769
|
classNames?: {
|
|
2768
2770
|
navigation?: string;
|
|
2771
|
+
navigationItems?: string;
|
|
2769
2772
|
drawer?: string;
|
|
2770
2773
|
};
|
|
2771
2774
|
/** Additional inline styles for the sidebar container */
|
|
@@ -2773,6 +2776,7 @@ interface SidebarProps {
|
|
|
2773
2776
|
/** Additional inline styles for the sections inside the component */
|
|
2774
2777
|
styles?: {
|
|
2775
2778
|
navigation?: CSSProperties;
|
|
2779
|
+
navigationItems?: CSSProperties;
|
|
2776
2780
|
drawer?: CSSProperties;
|
|
2777
2781
|
};
|
|
2778
2782
|
/** Custom render function for sidebar items */
|