nuance-ui 0.2.34 → 0.2.36

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.
Files changed (67) hide show
  1. package/LICENSE.md +1 -1
  2. package/dist/module.json +1 -1
  3. package/dist/module.mjs +1 -2
  4. package/dist/runtime/components/accordion.d.vue.ts +79 -0
  5. package/dist/runtime/components/accordion.vue +44 -0
  6. package/dist/runtime/components/accordion.vue.d.ts +79 -0
  7. package/dist/runtime/components/collapsible/collapsible-content.d.vue.ts +18 -0
  8. package/dist/runtime/components/collapsible/collapsible-content.vue +76 -0
  9. package/dist/runtime/components/collapsible/collapsible-content.vue.d.ts +18 -0
  10. package/dist/runtime/components/collapsible/collapsible-root.d.vue.ts +42 -0
  11. package/dist/runtime/components/collapsible/collapsible-root.vue +41 -0
  12. package/dist/runtime/components/collapsible/collapsible-root.vue.d.ts +42 -0
  13. package/dist/runtime/components/collapsible/collapsible-trigger.d.vue.ts +13 -0
  14. package/dist/runtime/components/collapsible/collapsible-trigger.vue +20 -0
  15. package/dist/runtime/components/collapsible/collapsible-trigger.vue.d.ts +13 -0
  16. package/dist/runtime/components/collapsible/index.d.ts +3 -0
  17. package/dist/runtime/components/collapsible/index.js +1 -0
  18. package/dist/runtime/components/dialog/ui/dialog-close-button.d.vue.ts +2 -2
  19. package/dist/runtime/components/dialog/ui/dialog-close-button.vue +9 -11
  20. package/dist/runtime/components/dialog/ui/dialog-close-button.vue.d.ts +2 -2
  21. package/dist/runtime/components/dialog/ui/dialog-footer.d.vue.ts +2 -2
  22. package/dist/runtime/components/dialog/ui/dialog-footer.vue +3 -5
  23. package/dist/runtime/components/dialog/ui/dialog-footer.vue.d.ts +2 -2
  24. package/dist/runtime/components/dialog/ui/dialog-header.d.vue.ts +2 -2
  25. package/dist/runtime/components/dialog/ui/dialog-header.vue +3 -5
  26. package/dist/runtime/components/dialog/ui/dialog-header.vue.d.ts +2 -2
  27. package/dist/runtime/components/dialog/ui/dialog-root.d.vue.ts +2 -2
  28. package/dist/runtime/components/dialog/ui/dialog-root.vue +23 -25
  29. package/dist/runtime/components/dialog/ui/dialog-root.vue.d.ts +2 -2
  30. package/dist/runtime/components/dialog/ui/dialog-section.d.vue.ts +2 -2
  31. package/dist/runtime/components/dialog/ui/dialog-section.vue +3 -5
  32. package/dist/runtime/components/dialog/ui/dialog-section.vue.d.ts +2 -2
  33. package/dist/runtime/components/dialog/ui/dialog-title.d.vue.ts +2 -2
  34. package/dist/runtime/components/dialog/ui/dialog-title.vue +3 -5
  35. package/dist/runtime/components/dialog/ui/dialog-title.vue.d.ts +2 -2
  36. package/dist/runtime/components/index.d.ts +2 -0
  37. package/dist/runtime/components/index.js +1 -0
  38. package/dist/runtime/components/link/lib.d.ts +2 -2
  39. package/dist/runtime/components/scroll-area.vue +2 -1
  40. package/dist/runtime/components/select.d.vue.ts +2 -2
  41. package/dist/runtime/components/select.vue.d.ts +2 -2
  42. package/dist/runtime/components/table/ui/table.vue +1 -1
  43. package/dist/runtime/components/tabs/tabs-root.d.vue.ts +1 -1
  44. package/dist/runtime/components/tabs/tabs-root.vue.d.ts +1 -1
  45. package/dist/runtime/components/timeline.d.vue.ts +3 -1
  46. package/dist/runtime/components/timeline.vue +6 -3
  47. package/dist/runtime/components/timeline.vue.d.ts +3 -1
  48. package/dist/runtime/components/transition.d.vue.ts +10 -0
  49. package/dist/runtime/components/transition.vue +14 -3
  50. package/dist/runtime/components/transition.vue.d.ts +10 -0
  51. package/dist/runtime/modals/modals-provider.vue +8 -10
  52. package/dist/runtime/utils/color/get-gradient.js +1 -1
  53. package/dist/runtime/utils/color/index.d.ts +0 -1
  54. package/dist/runtime/utils/color/index.js +0 -1
  55. package/dist/runtime/utils/const/icons.js +33 -0
  56. package/dist/runtime/utils/const/index.d.ts +2 -0
  57. package/dist/runtime/utils/const/index.js +2 -0
  58. package/dist/runtime/utils/index.d.ts +1 -1
  59. package/dist/runtime/utils/index.js +1 -1
  60. package/dist/runtime/utils/style/create-variant-color-resolver.js +1 -1
  61. package/package.json +4 -3
  62. package/dist/runtime/utils/icons/default-icons.js +0 -33
  63. package/dist/runtime/utils/icons/index.d.ts +0 -1
  64. package/dist/runtime/utils/icons/index.js +0 -1
  65. /package/dist/runtime/utils/{color/const.d.ts → const/gradient.d.ts} +0 -0
  66. /package/dist/runtime/utils/{color/const.js → const/gradient.js} +0 -0
  67. /package/dist/runtime/utils/{icons/default-icons.d.ts → const/icons.d.ts} +0 -0
@@ -1,33 +0,0 @@
1
- export const DEFAULT_ICONS = {
2
- // ─── Actions ───
3
- close: "gravity-ui:xmark",
4
- check: "gravity-ui:check",
5
- minus: "gravity-ui:minus",
6
- plus: "gravity-ui:plus",
7
- // ─── Chevrons ───
8
- chevronRight: "gravity-ui:chevron-right",
9
- chevronLeft: "gravity-ui:chevron-left",
10
- chevronDown: "gravity-ui:chevron-down",
11
- chevronUp: "gravity-ui:chevron-up",
12
- selectExpand: "gravity-ui:chevrons-expand-vertical",
13
- // ─── Inputs ───
14
- email: "gravity-ui:at",
15
- passwordShow: "gravity-ui:eye",
16
- passwordHide: "gravity-ui:eye-slash",
17
- calendar: "gravity-ui:calendar",
18
- clock: "gravity-ui:clock",
19
- // ─── User ───
20
- person: "gravity-ui:person",
21
- // ─── Theme ───
22
- sun: "gravity-ui:sun",
23
- moon: "gravity-ui:moon",
24
- // ─── Files & tree ───
25
- upload: "gravity-ui:arrow-shape-up-from-line",
26
- file: "gravity-ui:file",
27
- folder: "gravity-ui:folder",
28
- folderOpen: "gravity-ui:folder-open",
29
- // ─── Table sort ───
30
- sortAsc: "gravity-ui:bars-descending-align-left-arrow-up",
31
- sortDesc: "gravity-ui:bars-descending-align-left-arrow-down",
32
- sortOff: "gravity-ui:bars-descending-align-left"
33
- };
@@ -1 +0,0 @@
1
- export * from './default-icons.js';
@@ -1 +0,0 @@
1
- export * from "./default-icons.js";