vueless 0.0.551 → 0.0.552
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
CHANGED
|
@@ -9,14 +9,14 @@ import type { UseAttrs } from "../types.ts";
|
|
|
9
9
|
import type { UDatePickerProps, Config } from "./types.ts";
|
|
10
10
|
import type { Config as UCalendarConfig } from "../ui.form-calendar/types.ts";
|
|
11
11
|
|
|
12
|
-
interface
|
|
12
|
+
interface ComponentState {
|
|
13
13
|
isTop: Ref<boolean>;
|
|
14
14
|
isRight: Ref<boolean>;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
export default function useAttrs(
|
|
18
18
|
props: UDatePickerProps<unknown>,
|
|
19
|
-
{ isTop, isRight }:
|
|
19
|
+
{ isTop, isRight }: ComponentState,
|
|
20
20
|
): UseAttrs<Config> {
|
|
21
21
|
const { config, getKeysAttrs, hasSlotContent } = useUI(defaultConfig, () => props.config);
|
|
22
22
|
|
|
@@ -202,8 +202,8 @@ export default /*tw*/ {
|
|
|
202
202
|
dateFormat: undefined,
|
|
203
203
|
maxDate: undefined,
|
|
204
204
|
minDate: undefined,
|
|
205
|
-
rightIcon: "calendar_month-fill",
|
|
206
205
|
/* icons */
|
|
206
|
+
rightIcon: "calendar_month-fill",
|
|
207
207
|
nextIcon: "keyboard_arrow_right",
|
|
208
208
|
prevIcon: "keyboard_arrow_left",
|
|
209
209
|
ownRangeIcon: "apps",
|
package/ui.form-radio/URadio.vue
CHANGED