@nar-bus/lena-ui-shared 1.3.5 → 1.3.6
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 -2
- package/dist/index.js +627 -603
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -72,7 +72,7 @@ export declare interface ActiveFiltersBarProps {
|
|
|
72
72
|
onFiltersChange: (filters: FilterState[]) => void;
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
-
export declare function AdvancedJsonEditor({ value, onChange, onSave, title, icon: Icon, defaultOpen, maxViewHeight, rows, placeholder, defaultMode, allowModeSwitch, schema, editable, disabled, disabledReason, isSaving, showLineNumbers, showValidation, showStats, }: AdvancedJsonEditorProps): JSX.Element;
|
|
75
|
+
export declare function AdvancedJsonEditor({ value, onChange, onSave, title, icon: Icon, defaultOpen, maxViewHeight, rows, placeholder, defaultMode, allowModeSwitch, schema, editable, disabled, disabledReason, isSaving, showLineNumbers, showValidation, showStats, showToolbarActions, }: AdvancedJsonEditorProps): JSX.Element;
|
|
76
76
|
|
|
77
77
|
export declare interface AdvancedJsonEditorProps {
|
|
78
78
|
value: string;
|
|
@@ -94,6 +94,7 @@ export declare interface AdvancedJsonEditorProps {
|
|
|
94
94
|
showLineNumbers?: boolean;
|
|
95
95
|
showValidation?: boolean;
|
|
96
96
|
showStats?: boolean;
|
|
97
|
+
showToolbarActions?: boolean;
|
|
97
98
|
}
|
|
98
99
|
|
|
99
100
|
export declare function Alert({ className, variant, ...props }: React_2.ComponentProps<"div"> & VariantProps<typeof alertVariants>): JSX.Element;
|
|
@@ -1798,7 +1799,7 @@ export declare interface JsonTextEditorProps {
|
|
|
1798
1799
|
disabled?: boolean;
|
|
1799
1800
|
}
|
|
1800
1801
|
|
|
1801
|
-
export declare function JsonToolbar({ mode, onModeChange, onFormat, onCopy, isValid, allowModeSwitch, copied, }: JsonToolbarProps): JSX.Element;
|
|
1802
|
+
export declare function JsonToolbar({ mode, onModeChange, onFormat, onCopy, isValid, allowModeSwitch, copied, showActions, }: JsonToolbarProps): JSX.Element;
|
|
1802
1803
|
|
|
1803
1804
|
export declare interface JsonToolbarProps {
|
|
1804
1805
|
mode: EditorMode;
|
|
@@ -1808,6 +1809,7 @@ export declare interface JsonToolbarProps {
|
|
|
1808
1809
|
isValid: boolean;
|
|
1809
1810
|
allowModeSwitch?: boolean;
|
|
1810
1811
|
copied?: boolean;
|
|
1812
|
+
showActions?: boolean;
|
|
1811
1813
|
}
|
|
1812
1814
|
|
|
1813
1815
|
export declare function JsonTreeEditor({ value, onChange, maxHeight, disabled, }: JsonTreeEditorProps): JSX.Element;
|