hamzus-ui 0.0.135 → 0.0.136
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/index.d.ts +9 -1
- package/index.js +9 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -20,13 +20,21 @@ export { default as Dialog } from "./src/components/hamzus-ui/Dialog/Dialog.svel
|
|
|
20
20
|
// form
|
|
21
21
|
export { default as Form } from "./src/components/hamzus-ui/Form/Form.svelte"
|
|
22
22
|
export { default as Input } from "./src/components/hamzus-ui/Input/Input.svelte"
|
|
23
|
-
export { default as DatePicker } from "./src/components/hamzus-ui/DatePicker/DatePicker.svelte"
|
|
24
23
|
export { default as TextArea } from "./src/components/hamzus-ui/TextArea/TextArea.svelte"
|
|
25
24
|
export { default as Checkbox } from "./src/components/hamzus-ui/Checkboxes/Checkbox/Checkbox.svelte"
|
|
26
25
|
export { default as Switch } from "./src/components/hamzus-ui/Switch/Switch.svelte"
|
|
27
26
|
export { default as InputFile } from "./src/components/hamzus-ui/InputFile/InputFile.svelte"
|
|
28
27
|
export { default as Slider } from "./src/components/hamzus-ui/Slider/Slider.svelte"
|
|
29
28
|
export { default as SoundTrack } from "./src/components/hamzus-ui/SoundTrack/SoundTrack.svelte"
|
|
29
|
+
// time
|
|
30
|
+
export { default as DateTimePicker } from "./src/components/hamzus-ui/DateTimePicker/DateTimePicker.svelte"
|
|
31
|
+
export { default as DatePicker } from "./src/components/hamzus-ui/DatePicker/DatePicker.svelte"
|
|
32
|
+
export { default as YearPicker } from "./src/components/hamzus-ui/YearPicker/YearPicker.svelte"
|
|
33
|
+
export { default as MonthOfYear } from "./src/components/hamzus-ui/MonthOfYear/MonthOfYear.svelte"
|
|
34
|
+
export { default as Month } from "./src/components/hamzus-ui/Month/Month.svelte"
|
|
35
|
+
export { default as Day } from "./src/components/hamzus-ui/Day/Day.svelte"
|
|
36
|
+
export { default as Day } from "./src/components/hamzus-ui/Day/Day.svelte"
|
|
37
|
+
export { default as TimePicker } from "./src/components/hamzus-ui/TimePicker/TimePicker.svelte"
|
|
30
38
|
|
|
31
39
|
// navigation
|
|
32
40
|
export * as Tabs from "./src/components/hamzus-ui/Tabs"
|
package/index.js
CHANGED
|
@@ -17,13 +17,21 @@ export { default as Dialog } from "./src/components/hamzus-ui/Dialog/Dialog.svel
|
|
|
17
17
|
export { default as Form } from "./src/components/hamzus-ui/Form/Form.svelte"
|
|
18
18
|
export { default as Input } from "./src/components/hamzus-ui/Input/Input.svelte"
|
|
19
19
|
export { default as InputSelector } from "./src/components/hamzus-ui/InputSelector/InputSelector.svelte"
|
|
20
|
-
export { default as DatePicker } from "./src/components/hamzus-ui/DatePicker/DatePicker.svelte"
|
|
21
20
|
export { default as TextArea } from "./src/components/hamzus-ui/TextArea/TextArea.svelte"
|
|
22
21
|
export { default as Checkbox } from "./src/components/hamzus-ui/Checkboxes/Checkbox/Checkbox.svelte"
|
|
23
22
|
export { default as Switch } from "./src/components/hamzus-ui/Switch/Switch.svelte"
|
|
24
23
|
export { default as InputFile } from "./src/components/hamzus-ui/InputFile/InputFile.svelte"
|
|
25
24
|
export { default as Slider } from "./src/components/hamzus-ui/Slider/Slider.svelte"
|
|
26
25
|
export { default as SoundTrack } from "./src/components/hamzus-ui/SoundTrack/SoundTrack.svelte"
|
|
26
|
+
// time
|
|
27
|
+
export { default as DateTimePicker } from "./src/components/hamzus-ui/DateTimePicker/DateTimePicker.svelte"
|
|
28
|
+
export { default as DatePicker } from "./src/components/hamzus-ui/DatePicker/DatePicker.svelte"
|
|
29
|
+
export { default as YearPicker } from "./src/components/hamzus-ui/YearPicker/YearPicker.svelte"
|
|
30
|
+
export { default as MonthOfYear } from "./src/components/hamzus-ui/MonthOfYear/MonthOfYear.svelte"
|
|
31
|
+
export { default as Month } from "./src/components/hamzus-ui/Month/Month.svelte"
|
|
32
|
+
export { default as Day } from "./src/components/hamzus-ui/Day/Day.svelte"
|
|
33
|
+
export { default as Day } from "./src/components/hamzus-ui/Day/Day.svelte"
|
|
34
|
+
export { default as TimePicker } from "./src/components/hamzus-ui/TimePicker/TimePicker.svelte"
|
|
27
35
|
|
|
28
36
|
// navigation
|
|
29
37
|
export * as Tabs from "./src/components/hamzus-ui/Tabs"
|