sit-onyx 1.0.0-beta.210 → 1.0.0-beta.211

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,14 +1,33 @@
1
- import { type Slot } from "vue";
1
+ import { type HTMLAttributes, type Slot } from "vue";
2
2
  import { type InternalColumnConfig } from "..";
3
3
  import type { DataGridEntry } from "../../types";
4
+ import "./resizing.scss";
4
5
  import type { ResizingOptions } from "./types";
5
6
  export declare const RESIZING_FEATURE: unique symbol;
7
+ export declare const EMPTY_COLUMN: unique symbol;
6
8
  export declare const useResizing: <TEntry extends DataGridEntry>(options?: ResizingOptions<TEntry>) => {
7
9
  name: symbol;
8
- watch: never[];
10
+ watch: import("vue").Ref<boolean, boolean>[];
9
11
  modifyColumns: {
10
12
  func: (cols: Readonly<InternalColumnConfig<TEntry>[]>) => InternalColumnConfig<TEntry>[];
11
13
  };
14
+ scrollContainerAttributes: () => HTMLAttributes;
15
+ typeRenderer: {
16
+ [EMPTY_COLUMN]: {
17
+ header: {
18
+ thAttributes: {
19
+ class: string;
20
+ };
21
+ component: () => null;
22
+ };
23
+ cell: {
24
+ tdAttributes: {
25
+ class: string;
26
+ };
27
+ component: () => null;
28
+ };
29
+ };
30
+ };
12
31
  header: {
13
32
  wrapper: (cols: InternalColumnConfig<any, any, PropertyKey>, i: number, { length }: InternalColumnConfig<any, any, PropertyKey>[]) => (_: any, { slots }: Omit<{
14
33
  attrs: {