@hantera/design-system 20250602.0.0-develop.1 → 20250714.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 -2
- package/package.json +1 -1
package/dist/entry.d.ts
CHANGED
|
@@ -17,7 +17,6 @@ import { nextTick } from 'vue';
|
|
|
17
17
|
import { OnCleanup } from '@vue/reactivity';
|
|
18
18
|
import { Plugin as Plugin_2 } from 'vue';
|
|
19
19
|
import { PublicProps } from 'vue';
|
|
20
|
-
import { Ref } from 'vue';
|
|
21
20
|
import { ShallowUnwrapRef } from 'vue';
|
|
22
21
|
import { Slot } from 'vue';
|
|
23
22
|
import { VNodeProps } from 'vue';
|
|
@@ -1020,6 +1019,7 @@ export declare interface DataProvider {
|
|
|
1020
1019
|
removeColumn?: (columnOption: DataColumnOption) => void;
|
|
1021
1020
|
setColumnOrder?: (column: DataColumn, newIndex: number) => void;
|
|
1022
1021
|
setColumnSize?: (columnKey: string, size?: number) => void;
|
|
1022
|
+
isLoading: ComputedRef<boolean>;
|
|
1023
1023
|
allLoaded: ComputedRef<boolean>;
|
|
1024
1024
|
rows: ComputedRef<DataRow[]>;
|
|
1025
1025
|
columns: ComputedRef<DataColumn[]>;
|
|
@@ -1274,7 +1274,7 @@ export declare interface InspectorProvider {
|
|
|
1274
1274
|
* The currently selected tab. 0 means select first tab which is summary
|
|
1275
1275
|
* or first tab depending on viewport size.
|
|
1276
1276
|
*/
|
|
1277
|
-
selectedTab:
|
|
1277
|
+
selectedTab: string | number;
|
|
1278
1278
|
tabs: {
|
|
1279
1279
|
key: string;
|
|
1280
1280
|
label: string;
|