@hantera/design-system 20250930.0.0-2025.2.1 → 20251015.1.0
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/entry.d.ts +2 -1
- package/package.json +1 -1
package/dist/entry.d.ts
CHANGED
|
@@ -1496,7 +1496,7 @@ export declare interface InspectorProvider {
|
|
|
1496
1496
|
tabs: InspectorTab[];
|
|
1497
1497
|
}
|
|
1498
1498
|
|
|
1499
|
-
declare interface InspectorTab extends NavItemDefinition {
|
|
1499
|
+
export declare interface InspectorTab extends NavItemDefinition {
|
|
1500
1500
|
/**
|
|
1501
1501
|
* An HTML tag name, a Component name or Component class reference to render as tab's content.
|
|
1502
1502
|
*/
|
|
@@ -1505,6 +1505,7 @@ declare interface InspectorTab extends NavItemDefinition {
|
|
|
1505
1505
|
* An HTML tag name, a Component name or Component class reference to render as tab's toolbar.
|
|
1506
1506
|
*/
|
|
1507
1507
|
toolbar?: string | object;
|
|
1508
|
+
props?: any;
|
|
1508
1509
|
}
|
|
1509
1510
|
|
|
1510
1511
|
declare function isOpen(): boolean;
|