sit-onyx 1.0.0-beta.86 → 1.0.0-beta.88

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.
@@ -1,4 +1,5 @@
1
- import { type Component, type WatchSource } from "vue";
1
+ import { type Component, type ComponentInstance, type WatchSource } from "vue";
2
+ import OnyxListItem from "../../OnyxListItem/OnyxListItem.vue";
2
3
  import type { DataGridRendererColumn, DataGridRendererRow } from "../OnyxDataGridRenderer/types";
3
4
  import type { DataGridEntry, DataGridMetadata } from "../types";
4
5
  export type DataGridFeature<TEntry extends DataGridEntry, TFeatureName extends symbol> = {
@@ -27,7 +28,7 @@ export type DataGridFeature<TEntry extends DataGridEntry, TFeatureName extends s
27
28
  */
28
29
  actions?: (column: keyof TEntry) => {
29
30
  iconComponent: Component;
30
- listComponent?: never;
31
+ listItems?: ComponentInstance<typeof OnyxListItem>[];
31
32
  }[];
32
33
  };
33
34
  };
@@ -1,5 +1,6 @@
1
1
  import type { OnyxSystemButtonProps } from "./types";
2
2
  declare const _default: import("vue").DefineComponent<OnyxSystemButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<OnyxSystemButtonProps> & Readonly<{}>, {
3
+ color: import("./types").SystemButtonColor;
3
4
  autofocus: boolean;
4
5
  disabled: import("../OnyxForm/OnyxForm.core").FormInjected<boolean>;
5
6
  skeleton: import("../../composables/useSkeletonState").SkeletonInjected;
@@ -1,5 +1,5 @@
1
1
  import type { OnyxButtonProps } from "../OnyxButton/types";
2
- export type OnyxSystemButtonProps = Pick<OnyxButtonProps, "density" | "disabled" | "autofocus" | "skeleton"> & {
2
+ export type OnyxSystemButtonProps = Pick<OnyxButtonProps, "disabled" | "autofocus" | "skeleton"> & {
3
3
  /**
4
4
  * Button label / text to show. Is always required (even if `icon` is set) for screen readers / accessibility.
5
5
  */
@@ -8,4 +8,10 @@ export type OnyxSystemButtonProps = Pick<OnyxButtonProps, "density" | "disabled"
8
8
  * Icon to show. Will visually hide the label if set.
9
9
  */
10
10
  icon?: string;
11
+ /**
12
+ * Button color.
13
+ */
14
+ color?: SystemButtonColor;
11
15
  };
16
+ export declare const SYSTEM_BUTTON_COLORS: readonly ["intense", "soft", "medium"];
17
+ export type SystemButtonColor = (typeof SYSTEM_BUTTON_COLORS)[number];
@@ -90,7 +90,9 @@
90
90
  "userMenuLabel": "Benutzeroptionen",
91
91
  "toggleBurgerMenu": "Burger-Menü umschalten",
92
92
  "toggleContextMenu": "Kontext-Menü umschalten",
93
- "navigationHeadline": "Navigation"
93
+ "navigationHeadline": "Navigation",
94
+ "moreActionsFlyout": "Wähle eine Aktion für die Spalte \"{column}\"",
95
+ "moreActionsTrigger": "Spaltenaktionen umschalten"
94
96
  },
95
97
  "tooltip": {
96
98
  "neutral": "Info-Tooltip Sichtbarkeit umschalten",
@@ -99,7 +99,9 @@
99
99
  "userMenuLabel": "User options",
100
100
  "toggleBurgerMenu": "Toggle burger menu",
101
101
  "toggleContextMenu": "Toggle context menu",
102
- "navigationHeadline": "Navigation"
102
+ "navigationHeadline": "Navigation",
103
+ "moreActionsFlyout": "Choose an action for the column \"{column}\"",
104
+ "moreActionsTrigger": "Toggle column actions"
103
105
  },
104
106
  "tooltip": {
105
107
  "neutral": "Toggle info tooltip",