prlg-ui 1.8.189 → 1.8.191
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 +2 -1
- package/dist/icons.d.ts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/prlg-ui.cjs.js +2 -2
- package/dist/prlg-ui.css +1 -1
- package/dist/prlg-ui.es.js +367 -363
- package/dist/types.d.ts +2 -1
- package/dist/utils.d.ts +2 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
package/dist/utils.d.ts
CHANGED
|
@@ -147,7 +147,8 @@ export { }
|
|
|
147
147
|
|
|
148
148
|
declare module "@tanstack/vue-table" {
|
|
149
149
|
interface ColumnMeta<TData extends RowData, TValue> {
|
|
150
|
-
align?:
|
|
150
|
+
align?: "left" | "center" | "right";
|
|
151
|
+
verticalAlign?: "top" | "middle" | "bottom";
|
|
151
152
|
autoSize?: boolean;
|
|
152
153
|
}
|
|
153
154
|
}
|