@defaultusr/dai-ui 1.1.15 → 1.1.16

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/main.js CHANGED
@@ -1353,7 +1353,9 @@ export {
1353
1353
  kt as ComboboxInput,
1354
1354
  je as ComboboxOption,
1355
1355
  Pe as ComboboxOptions,
1356
+ D as Hint,
1356
1357
  $t as Input,
1358
+ F as Label,
1357
1359
  Ut as Menu,
1358
1360
  qt as MenuItem,
1359
1361
  Lt as MenuItems,
package/dist/nuxt.js CHANGED
@@ -1,16 +1,20 @@
1
1
  import { defineNuxtModule as n, addComponent as a } from "@nuxt/kit";
2
- const p = n({
2
+ const b = n({
3
3
  defaults: {
4
4
  prefix: "Dai"
5
5
  },
6
6
  setup(e, o) {
7
7
  o.options.build ||= {}, o.options.build.transpile ||= [], o.options.build.transpile.push("@defaultusr/dai-ui");
8
8
  const i = [
9
- "Popover",
10
- "Menu",
11
- "TabContainer",
12
- "TabPanel",
13
9
  "Btn",
10
+ // Input Controls
11
+ "Label",
12
+ "Hint",
13
+ "Combobox",
14
+ "ComboboxInput",
15
+ "ComboboxButton",
16
+ "ComboboxOptions",
17
+ "ComboboxOption",
14
18
  "Input",
15
19
  "Textarea",
16
20
  "Select",
@@ -18,16 +22,15 @@ const p = n({
18
22
  "Checkbox",
19
23
  "Radio",
20
24
  "Switch",
25
+ "Popover",
21
26
  "PopoverDialog",
22
- "Combobox",
23
- "ComboboxInput",
24
- "ComboboxButton",
25
- "ComboboxOptions",
26
- "ComboboxOption",
27
+ "Menu",
27
28
  "MenuItems",
28
29
  "MenuItem",
29
- "Tab",
30
+ "TabContainer",
30
31
  "TabList",
32
+ "Tab",
33
+ "TabPanel",
31
34
  "Offcanvas",
32
35
  "Notification",
33
36
  "NotificationQueue",
@@ -43,5 +46,5 @@ const p = n({
43
46
  }
44
47
  });
45
48
  export {
46
- p as default
49
+ b as default
47
50
  };
@@ -0,0 +1,2 @@
1
+ export { default as Label } from "./label.vue";
2
+ export { default as Hint } from "./hint.vue";
@@ -1,3 +1,4 @@
1
+ export * from "./common";
1
2
  export * from "./combobox";
2
3
  export { default as Input } from "./input/input.vue";
3
4
  export { default as Select } from "./select/select.vue";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defaultusr/dai-ui",
3
- "version": "1.1.15",
3
+ "version": "1.1.16",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"