@open-xamu-co/ui-components-vue 4.0.0-next.26 → 4.0.0-next.27

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/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  Xamu UI
2
2
 
3
+ # [@open-xamu-co/ui-components-vue-v4.0.0-next.27](https://github.com/xamu-co/ui/compare/@open-xamu-co/ui-components-vue-v4.0.0-next.26...@open-xamu-co/ui-components-vue-v4.0.0-next.27) (2026-06-16)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **vue:** add missing theme to input n values ([d4d8911](https://github.com/xamu-co/ui/commit/d4d891189836af2f0aae78a039eeda65436b1b9b))
9
+
10
+
11
+ ### Features
12
+
13
+ * **vue:** support date, datetime & time inputs ([a115eca](https://github.com/xamu-co/ui/commit/a115ecae09dfd895cf73d99eaeaea5b792832cd4))
14
+
15
+
16
+
17
+
18
+
19
+ Updating dependant packages with "@open-xamu-co/ui-components-vue" version "4.0.0-next.27"
20
+ Updating "nuxt"
21
+ Succesfully updated "nuxt" package
22
+
3
23
  # [@open-xamu-co/ui-components-vue-v4.0.0-next.26](https://github.com/xamu-co/ui/compare/@open-xamu-co/ui-components-vue-v4.0.0-next.25...@open-xamu-co/ui-components-vue-v4.0.0-next.26) (2026-06-16)
4
24
 
5
25
 
@@ -5,4 +5,7 @@ type Story = StoryObj<typeof meta>;
5
5
  export declare const Sample: Story;
6
6
  export declare const Code: Story;
7
7
  export declare const AsyncOptions: Story;
8
+ export declare const DateInput: Story;
9
+ export declare const DatetimeInput: Story;
10
+ export declare const TimeInput: Story;
8
11
  export default meta;
@@ -1,4 +1,5 @@
1
- export interface iFormInputNValues<Ti> {
1
+ import type { iUseThemeProps } from "../../types/props";
2
+ export interface iFormInputNValues<Ti> extends iUseThemeProps {
2
3
  model: Ti[];
3
4
  /** Expected model lengths */
4
5
  values: number[];
@@ -0,0 +1,8 @@
1
+ import type { Meta, StoryObj } from "@storybook/vue3-vite";
2
+ import InputTime from "./Time.vue";
3
+ declare const meta: Meta<typeof InputTime>;
4
+ type Story = StoryObj<typeof meta>;
5
+ export declare const DateSample: Story;
6
+ export declare const DateTimeSample: Story;
7
+ export declare const TimeSample: Story;
8
+ export default meta;
@@ -0,0 +1,20 @@
1
+ import type { IconName } from "@fortawesome/fontawesome-common-types";
2
+ import type { iFormIconProps, tTextInputType } from "@open-xamu-co/ui-common-types";
3
+ import type { iUseModifiersProps, iUseStateProps, iUseThemeProps, iInputProps } from "../../types/props";
4
+ interface iInputTimeProps extends iInputProps, iUseModifiersProps, iUseStateProps, iUseThemeProps {
5
+ type?: tTextInputType;
6
+ placeholder?: string;
7
+ icon?: IconName;
8
+ iconProps?: iFormIconProps;
9
+ /**
10
+ * @private
11
+ */
12
+ modelValue?: number | string;
13
+ }
14
+ declare const __VLS_export: import("vue").DefineComponent<iInputTimeProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
15
+ "update:model-value": (...args: any[]) => void;
16
+ }, string, import("vue").PublicProps, Readonly<iInputTimeProps> & Readonly<{
17
+ "onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
18
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
+ declare const _default: typeof __VLS_export;
20
+ export default _default;