prlg-ui 1.8.188 → 1.8.190
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/blocks.d.ts +10 -0
- package/dist/icons.d.ts +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/prlg-ui.cjs.js +3 -3
- package/dist/prlg-ui.css +1 -1
- package/dist/prlg-ui.es.js +87 -82
- package/dist/types.d.ts +10 -0
- package/dist/utils.d.ts +10 -0
- package/package.json +1 -1
package/dist/blocks.d.ts
CHANGED
|
@@ -33,3 +33,13 @@ onSendMessage?: (() => any) | undefined;
|
|
|
33
33
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
34
34
|
|
|
35
35
|
export { }
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
declare module "@tanstack/vue-table" {
|
|
40
|
+
interface ColumnMeta<TData extends RowData, TValue> {
|
|
41
|
+
align?: "left" | "center" | "right";
|
|
42
|
+
verticalAlign?: "top" | "middle" | "bottom";
|
|
43
|
+
autoSize?: boolean;
|
|
44
|
+
}
|
|
45
|
+
}
|
package/dist/icons.d.ts
CHANGED
|
@@ -230,3 +230,13 @@ export declare const WarningIcon: DefineComponent< {}, {}, {}, {}, {}, Compon
|
|
|
230
230
|
export declare const WordIcon: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
231
231
|
|
|
232
232
|
export { }
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
declare module "@tanstack/vue-table" {
|
|
237
|
+
interface ColumnMeta<TData extends RowData, TValue> {
|
|
238
|
+
align?: "left" | "center" | "right";
|
|
239
|
+
verticalAlign?: "top" | "middle" | "bottom";
|
|
240
|
+
autoSize?: boolean;
|
|
241
|
+
}
|
|
242
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -2186,3 +2186,13 @@ export declare const useConfirmPopup: () => ConfirmPopupService;
|
|
|
2186
2186
|
export declare function useToast(): ToastServiceMethods;
|
|
2187
2187
|
|
|
2188
2188
|
export { }
|
|
2189
|
+
|
|
2190
|
+
|
|
2191
|
+
|
|
2192
|
+
declare module "@tanstack/vue-table" {
|
|
2193
|
+
interface ColumnMeta<TData extends RowData, TValue> {
|
|
2194
|
+
align?: "left" | "center" | "right";
|
|
2195
|
+
verticalAlign?: "top" | "middle" | "bottom";
|
|
2196
|
+
autoSize?: boolean;
|
|
2197
|
+
}
|
|
2198
|
+
}
|