sit-onyx 1.0.0-beta.98 → 1.0.0-beta.99
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/components/OnyxAlertDialog/OnyxAlertDialog.vue.d.ts +2 -0
- package/dist/components/OnyxDataGrid/features/index.d.ts +2 -2
- package/dist/components/OnyxModalDialog/OnyxModalDialog.vue.d.ts +6 -4
- package/dist/index.cjs +2 -2
- package/dist/index.js +551 -541
- package/dist/style.css +1 -1
- package/package.json +3 -3
|
@@ -8,6 +8,7 @@ declare function __VLS_template(): {
|
|
|
8
8
|
default(): unknown;
|
|
9
9
|
/**
|
|
10
10
|
* Optional slot to override the headline with custom content.
|
|
11
|
+
* If unset, the `label` property will be shown.
|
|
11
12
|
*/
|
|
12
13
|
headline?(bindings: Pick<OnyxAlertDialogProps, "label">): unknown;
|
|
13
14
|
/**
|
|
@@ -27,6 +28,7 @@ declare function __VLS_template(): {
|
|
|
27
28
|
default(): unknown;
|
|
28
29
|
/**
|
|
29
30
|
* Optional slot to override the headline with custom content.
|
|
31
|
+
* If unset, the `label` property will be shown.
|
|
30
32
|
*/
|
|
31
33
|
headline?(bindings: Pick<OnyxAlertDialogProps, "label">): unknown;
|
|
32
34
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Component, type
|
|
1
|
+
import { type Component, type WatchSource } from "vue";
|
|
2
2
|
import OnyxListItem from "../../OnyxListItem/OnyxListItem.vue";
|
|
3
3
|
import type { DataGridRendererColumn, DataGridRendererRow } from "../OnyxDataGridRenderer/types";
|
|
4
4
|
import type { DataGridEntry, DataGridMetadata } from "../types";
|
|
@@ -28,7 +28,7 @@ export type DataGridFeature<TEntry extends DataGridEntry, TFeatureName extends s
|
|
|
28
28
|
*/
|
|
29
29
|
actions?: (column: keyof TEntry) => {
|
|
30
30
|
iconComponent: Component;
|
|
31
|
-
listItems
|
|
31
|
+
listItems: Component<typeof OnyxListItem>[];
|
|
32
32
|
}[];
|
|
33
33
|
};
|
|
34
34
|
};
|
|
@@ -8,12 +8,13 @@ declare function __VLS_template(): {
|
|
|
8
8
|
default(): unknown;
|
|
9
9
|
/**
|
|
10
10
|
* Optional slot to override the headline with custom content.
|
|
11
|
+
* If unset, the `label` property will be shown.
|
|
11
12
|
*/
|
|
12
13
|
headline?(bindings: Pick<OnyxModalDialogProps, "label">): unknown;
|
|
13
14
|
/**
|
|
14
|
-
* Optional slot to add custom content to the dialog header (below the headline).
|
|
15
|
+
* Optional slot to add custom content, e.g. a description to the dialog header (below the headline).
|
|
15
16
|
*/
|
|
16
|
-
|
|
17
|
+
description?(): unknown;
|
|
17
18
|
}> & {
|
|
18
19
|
/**
|
|
19
20
|
* Dialog content.
|
|
@@ -21,12 +22,13 @@ declare function __VLS_template(): {
|
|
|
21
22
|
default(): unknown;
|
|
22
23
|
/**
|
|
23
24
|
* Optional slot to override the headline with custom content.
|
|
25
|
+
* If unset, the `label` property will be shown.
|
|
24
26
|
*/
|
|
25
27
|
headline?(bindings: Pick<OnyxModalDialogProps, "label">): unknown;
|
|
26
28
|
/**
|
|
27
|
-
* Optional slot to add custom content to the dialog header (below the headline).
|
|
29
|
+
* Optional slot to add custom content, e.g. a description to the dialog header (below the headline).
|
|
28
30
|
*/
|
|
29
|
-
|
|
31
|
+
description?(): unknown;
|
|
30
32
|
};
|
|
31
33
|
refs: {};
|
|
32
34
|
rootEl: any;
|