vueless 0.0.497 → 0.0.498
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/package.json +1 -1
- package/types.ts +2 -0
- package/ui.data-table/UTable.vue +415 -458
- package/ui.data-table/UTableRow.vue +234 -253
- package/ui.data-table/{config.js → config.ts} +3 -10
- package/ui.data-table/storybook/Docs.mdx +2 -2
- package/ui.data-table/storybook/{stories.js → stories.ts} +65 -50
- package/ui.data-table/types.ts +142 -0
- package/ui.data-table/{useAttrs.js → useAttrs.ts} +32 -14
- package/ui.data-table/{utilTable.js → utilTable.ts} +24 -18
- package/ui.form-calendar/UCalendar.vue +1 -1
- package/web-types.json +36 -21
- /package/ui.data-table/{constants.js → constants.ts} +0 -0
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -7,6 +7,7 @@ import UBadgeDefaultConfig from "./ui.text-badge/config.ts";
|
|
|
7
7
|
import UCalendarDefaultConfig from "./ui.form-calendar/config.ts";
|
|
8
8
|
import UDatePickerConfig from "./ui.form-date-picker/config.ts";
|
|
9
9
|
import UDatePickerRangeConfig from "./ui.form-date-picker-range/config.ts";
|
|
10
|
+
import UDataTableConfig from "./ui.data-table/config.ts";
|
|
10
11
|
|
|
11
12
|
import type { ComputedRef, MaybeRef, Ref } from "vue";
|
|
12
13
|
import type { Props } from "tippy.js";
|
|
@@ -119,6 +120,7 @@ export interface Components {
|
|
|
119
120
|
UCalendar?: Partial<typeof UCalendarDefaultConfig>;
|
|
120
121
|
UDatePicker?: Partial<typeof UDatePickerConfig>;
|
|
121
122
|
UDatePickerRange?: Partial<typeof UDatePickerRangeConfig>;
|
|
123
|
+
UTable?: Partial<typeof UDataTableConfig>;
|
|
122
124
|
}
|
|
123
125
|
|
|
124
126
|
export interface Directives {
|