@ulu/frontend-vue 0.1.0-beta.8 → 0.1.1-beta.1

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 (100) hide show
  1. package/README.md +7 -0
  2. package/dist/{breakpoints-D2CIgld-.js → breakpoints-DM-CBTtb.js} +1 -1
  3. package/dist/frontend-vue.css +1 -1
  4. package/dist/frontend-vue.js +79 -68
  5. package/dist/index-BNRZ3Apw.js +7541 -0
  6. package/lib/components/collapsible/UluAccordion.vue +71 -53
  7. package/lib/components/collapsible/UluAccordionGroup.vue +54 -0
  8. package/lib/components/collapsible/UluCollapsible.vue +144 -0
  9. package/lib/components/collapsible/UluDropdown.vue +29 -29
  10. package/lib/components/collapsible/UluOverflowPopover.vue +1 -1
  11. package/lib/components/elements/UluBadge.vue +51 -28
  12. package/lib/components/elements/UluBadgeStack.vue +8 -13
  13. package/lib/components/elements/UluButtonVerbose.vue +119 -0
  14. package/lib/components/elements/UluCard.vue +1 -1
  15. package/lib/components/elements/UluDefinitionList.vue +14 -17
  16. package/lib/components/elements/UluExternalLink.vue +21 -27
  17. package/lib/components/elements/UluIcon.vue +11 -1
  18. package/lib/components/elements/UluList.vue +53 -55
  19. package/lib/components/elements/UluSpokeSpinner.vue +12 -18
  20. package/lib/components/elements/UluTag.vue +35 -35
  21. package/lib/components/forms/UluFileDisplay.vue +49 -31
  22. package/lib/components/forms/UluFormFile.vue +37 -24
  23. package/lib/components/forms/UluFormMessage.vue +13 -10
  24. package/lib/components/forms/UluFormSelect.vue +28 -16
  25. package/lib/components/forms/UluFormText.vue +24 -15
  26. package/lib/components/forms/UluSearchForm.vue +11 -10
  27. package/lib/components/forms/UluSelectableMenu.vue +99 -0
  28. package/lib/components/index.js +4 -3
  29. package/lib/components/layout/UluTitleRail.vue +25 -1
  30. package/lib/components/layout/UluWhenBreakpoint.vue +9 -0
  31. package/lib/components/navigation/UluBreadcrumb.vue +9 -2
  32. package/lib/components/navigation/UluMenu.vue +8 -3
  33. package/lib/components/navigation/UluMenuStack.vue +3 -1
  34. package/lib/components/navigation/UluPager.vue +102 -0
  35. package/lib/components/systems/facets/ExampleFacetsWithPagination.vue +119 -0
  36. package/lib/components/systems/facets/UluFacetsFilterLists.vue +91 -0
  37. package/lib/components/systems/facets/UluFacetsFilterPopovers.vue +125 -0
  38. package/lib/components/systems/facets/UluFacetsFilterSelects.vue +71 -0
  39. package/lib/components/systems/facets/UluFacetsHeaderLayout.vue +24 -0
  40. package/lib/components/systems/facets/UluFacetsList.vue +62 -34
  41. package/lib/components/systems/facets/UluFacetsResults.vue +63 -0
  42. package/lib/components/systems/facets/UluFacetsSearch.vue +27 -50
  43. package/lib/components/systems/facets/UluFacetsSidebarLayout.vue +70 -0
  44. package/lib/components/systems/facets/UluFacetsSort.vue +45 -0
  45. package/lib/components/systems/facets/_facets.scss +2 -3
  46. package/lib/components/systems/facets/_mock-data.js +40 -0
  47. package/lib/components/systems/facets/useFacets.js +268 -0
  48. package/lib/components/systems/index.js +13 -2
  49. package/lib/components/systems/scroll-anchors/UluScrollAnchors.vue +2 -1
  50. package/lib/components/systems/skeleton/UluShowSkeleton.vue +9 -8
  51. package/lib/components/systems/skeleton/UluSkeletonContent.vue +39 -43
  52. package/lib/components/systems/skeleton/UluSkeletonMedia.vue +4 -6
  53. package/lib/components/systems/skeleton/UluSkeletonText.vue +27 -0
  54. package/lib/components/systems/slider/UluImageSlideShow.vue +1 -1
  55. package/lib/components/systems/slider/UluSlideShow.vue +8 -3
  56. package/lib/components/systems/table-sticky/UluTableSticky.vue +7 -7
  57. package/lib/components/systems/table-sticky/UluTableStickyTable.vue +3 -3
  58. package/lib/components/visualizations/UluAnimateNumber.vue +7 -1
  59. package/lib/components/visualizations/UluProgressBar.vue +99 -68
  60. package/lib/components/visualizations/UluProgressCircle.vue +146 -0
  61. package/lib/components/visualizations/progress-bar-examples.html +175 -0
  62. package/lib/composables/index.js +3 -1
  63. package/lib/composables/useDocumentTitle.js +61 -0
  64. package/lib/composables/usePagination.js +122 -0
  65. package/lib/index.js +1 -0
  66. package/lib/plugins/core/index.js +6 -1
  67. package/lib/plugins/popovers/UluPopover.vue +8 -3
  68. package/lib/plugins/toast/UluToast.vue +1 -1
  69. package/lib/plugins/toast/UluToastDisplay.vue +19 -2
  70. package/lib/utils/dom.js +12 -0
  71. package/lib/utils/index.js +2 -0
  72. package/lib/utils/{vue-router.js → router.js} +114 -30
  73. package/package.json +17 -11
  74. package/types/components/systems/facets/_mock-data.d.ts +18 -0
  75. package/types/components/systems/facets/_mock-data.d.ts.map +1 -0
  76. package/types/components/systems/facets/useFacets.d.ts +39 -0
  77. package/types/components/systems/facets/useFacets.d.ts.map +1 -0
  78. package/types/components/systems/index.d.ts +1 -1
  79. package/types/composables/index.d.ts +2 -0
  80. package/types/composables/useDocumentTitle.d.ts +22 -0
  81. package/types/composables/useDocumentTitle.d.ts.map +1 -0
  82. package/types/composables/usePageTitle.d.ts +19 -0
  83. package/types/composables/usePageTitle.d.ts.map +1 -0
  84. package/types/composables/usePagination.d.ts +25 -0
  85. package/types/composables/usePagination.d.ts.map +1 -0
  86. package/types/index.d.ts +1 -0
  87. package/types/plugins/core/index.d.ts.map +1 -1
  88. package/types/utils/dom.d.ts +1 -0
  89. package/types/utils/dom.d.ts.map +1 -1
  90. package/types/utils/index.d.ts +3 -0
  91. package/types/utils/index.d.ts.map +1 -0
  92. package/types/utils/router.d.ts +144 -0
  93. package/types/utils/router.d.ts.map +1 -0
  94. package/dist/index-BuKf_eWi.js +0 -6464
  95. package/lib/components/collapsible/UluCollapsibleRegion.vue +0 -278
  96. package/lib/components/forms/UluCheckboxMenu.vue +0 -36
  97. package/lib/components/systems/facets/UluFacets.vue +0 -380
  98. package/lib/components/systems/skeleton/UluSkeletonTextInline.vue +0 -9
  99. package/lib/components/visualizations/UluProgressDonut.vue +0 -97
  100. package/lib/utils/placeholder.js +0 -6

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.