@ulu/frontend-vue 0.6.15 → 0.6.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.
@@ -269,7 +269,7 @@ const ue = ["aria-labelledby", "aria-describedby"], de = ["id"], fe = { class: "
269
269
  ], 6),
270
270
  l.$slots.footer ? (d(), C("div", {
271
271
  key: 1,
272
- class: r(["site-modal__footer", t.classes.footer])
272
+ class: r(["modal__footer", t.classes.footer])
273
273
  }, [
274
274
  m(l.$slots, "footer", { close: a })
275
275
  ], 2)) : g("", !0),
@@ -27,22 +27,6 @@
27
27
  "code": "<toast>Content</toast>"
28
28
  }
29
29
  ],
30
- "useTooltipFollow": [
31
- {
32
- "title": "Default",
33
- "description": "Default variation",
34
- "code": "<useTooltipFollow>Content</useTooltipFollow>"
35
- }
36
- ],
37
- "useTooltip": [],
38
- "tooltip": [
39
- {
40
- "title": "Basic",
41
- "description": "Basic variation",
42
- "code": "<tooltip>This is a basic tooltip!</tooltip>"
43
- }
44
- ],
45
- "UluPopover": [],
46
30
  "useModals": [],
47
31
  "modals": [
48
32
  {
@@ -76,6 +60,22 @@
76
60
  "code": "<template>\n <button @click=\"showSettingsModal\">My Settings</button>\n</template>\n\n<script setup>\n import { useModals } from \"./useModals\";\n\n const modals = useModals();\n const showSettingsModal = () => {\n console.log(\"This is opening via uluModals composable\");\n modals.open(\"settings\");\n };\n</script>"
77
61
  }
78
62
  ],
63
+ "useTooltipFollow": [
64
+ {
65
+ "title": "Default",
66
+ "description": "Default variation",
67
+ "code": "<useTooltipFollow>Content</useTooltipFollow>"
68
+ }
69
+ ],
70
+ "useTooltip": [],
71
+ "tooltip": [
72
+ {
73
+ "title": "Basic",
74
+ "description": "Basic variation",
75
+ "code": "<tooltip>This is a basic tooltip!</tooltip>"
76
+ }
77
+ ],
78
+ "UluPopover": [],
79
79
  "UluProgressCircle": [],
80
80
  "UluProgressBar": [],
81
81
  "UluAnimateNumber": [],
@@ -620,6 +620,7 @@
620
620
  "code": "<script setup>\n import { ref, computed, provide } from \"vue\";\n import { useBreakpointManager } from \"./useBreakpointManager.js\";\n\n const isMobile = ref(false);\n\n // Example using the onReady callback to set reactive value isMobile\n // - In this situation isMobile is being used as a primary change in \n // the applications layout \n const options = { \n onReady(manager) {\n manager.at(\"small\").max(() => isMobile.value = true);\n manager.at(\"large\").min(() => isMobile.value = false);\n }\n };\n\n // Composable returns the following\n const { \n /**\n * Reference to underlying BreakpointManager class\n */\n breakpointManager, \n /**\n * Active breakpoint name\n */\n breakpointActive, \n /**\n * Current resizeDirection (\"up\"|\"down\"|null)\n */\n breakpointDirection \n } = useBreakpointManager(options);\n\n\n // Allowing all components to access these values\n provide(\"uluBreakpointActive\", computed(() => breakpointActive));\n provide(\"uluBreakpointDirection\", computed(() => breakpointDirection));\n provide(\"uluBreakpointManager\", computed(() => breakpointManager));\n provide(\"uluIsMobile\", computed(() => isMobile));\n\n</script>"
621
621
  }
622
622
  ],
623
+ "forms": [],
623
624
  "core": [
624
625
  {
625
626
  "title": "core Example 1",
@@ -644,7 +645,6 @@
644
645
  "code": "<script>\nexport default {\n inject: ['uluIsMobile', 'uluBreakpointActive'],\n mounted() {\n console.log('Is mobile?', this.uluIsMobile);\n }\n}\n</script>"
645
646
  }
646
647
  ],
647
- "forms": [],
648
648
  "useScrollAnchors": [
649
649
  {
650
650
  "title": "useScrollAnchors Example 1",
@@ -12262,18 +12262,18 @@
12262
12262
  "useBreakpointManager": {
12263
12263
  "raw_markdown": "# useBreakpointManager\n\nComposable for adding breakpoint manager and related breakpoint info (via breakpoint manager from `@ulu/frontend/js/ui/breakpoints.js > BreakpointManager`).\n\n**Note:** Using the composable is only necessary for unique situations. For basic breakpoint setup use the `breakpointsPlugin`. Which uses this composable.\n\n## Options for this composable\n\n```js\nconst defaults = {\n /**\n * Set an initial value (value in mounted, SSR)\n */\n initialValue: null,\n /**\n * Function called after init (passed manager)\n */\n onReady: null,\n /**\n * Options sent to CssBreakpoints library (ulu/frontend/js/breakpoints <BreakpointManager>)\n */\n plugin: {\n customProperty: \"--breakpoint\"\n }\n}\n```\n\n## Example Usage\n\n```html\n<script setup>\n import { ref, computed, provide } from \"vue\";\n import { useBreakpointManager } from \"./useBreakpointManager.js\";\n\n const isMobile = ref(false);\n\n // Example using the onReady callback to set reactive value isMobile\n // - In this situation isMobile is being used as a primary change in \n // the applications layout \n const options = { \n onReady(manager) {\n manager.at(\"small\").max(() => isMobile.value = true);\n manager.at(\"large\").min(() => isMobile.value = false);\n }\n };\n\n // Composable returns the following\n const { \n /**\n * Reference to underlying BreakpointManager class\n */\n breakpointManager, \n /**\n * Active breakpoint name\n */\n breakpointActive, \n /**\n * Current resizeDirection (\"up\"|\"down\"|null)\n */\n breakpointDirection \n } = useBreakpointManager(options);\n\n\n // Allowing all components to access these values\n provide(\"uluBreakpointActive\", computed(() => breakpointActive));\n provide(\"uluBreakpointDirection\", computed(() => breakpointDirection));\n provide(\"uluBreakpointManager\", computed(() => breakpointManager));\n provide(\"uluIsMobile\", computed(() => isMobile));\n\n</script>\n```"
12264
12264
  },
12265
- "core": {
12266
- "raw_markdown": "# Core Plugin\n\n## Purpose\n\nThe Core Plugin is the central, **required** plugin for the `@ulu/frontend-vue` library. Its primary purpose is to establish a single, reactive source of truth for configuration settings that are shared across multiple components. \n\nBy using Vue's `provide`/`inject` system, this plugin ensures that all components within your application access the same configuration, preventing inconsistencies that can arise from separate module imports.\n\n## Installation\n\nTo use this library, you must register the `corePlugin` on your Vue app instance. You can also pass an options object to override the default settings.\n\n```javascript\n// src/main.js\nimport { createApp } from 'vue';\nimport App from './App.vue';\nimport { corePlugin } from '@ulu/frontend-vue';\n\nconst app = createApp(App);\n\n// Register the core plugin\napp.use(corePlugin, {\n // Optional: override general settings\n fontAwesomeStatic: true,\n\n // Optional: override specific icons safely\n iconsByType: {\n danger: 'my-custom-danger-icon',\n close: 'my-custom-close-icon'\n }\n});\n\napp.mount('#app');\n```\n\n## API Reference\n\nThe plugin provides its API to your application in two ways:\n\n- **Composition API:** `inject('uluCore')`\n- **Options API:** `this.$uluCore`\n\nThe API object contains the following methods:\n\n- `getSettings()`: Returns the full reactive settings object.\n- `getSetting(key)`: Retrieves a single setting by its key (e.g., `'fontAwesomeStatic'`).\n- `updateSetting(key, value)`: Updates a single setting.\n- `updateSettings(changes)`: Merges an object of changes into the settings.\n- `getDefaultSettings()`: Returns a non-reactive copy of the original default settings.\n- `getIcon(type)`: Retrieves a specific icon class string by its semantic type (e.g., `'danger'`, `'close'`).\n- `setIcon(type, definition)`: Safely sets or overrides a single icon definition.\n\n### Example Usage\n\n**Composition API (`<script setup>`)**\n```vue\n<script setup>\nimport { inject, onMounted } from 'vue';\n\nconst uluCore = inject('uluCore');\n\nonMounted(() => {\n const icons = uluCore.getSetting('iconsByType');\n console.log('Danger Icon:', icons.danger);\n\n // Example of updating a single icon dynamically\n uluCore.setIcon('success', 'my-awesome-success-icon');\n});\n</script>\n```\n\n**Options API**\n```vue\n<script>\nexport default {\n mounted() {\n const icons = this.$uluCore.getSetting('icons');\n console.log('Danger Icon:', icons.danger);\n }\n}\n</script>\n```\n\n"
12265
+ "forms": {
12266
+ "raw_markdown": "import { Meta, Canvas, Story } from '@storybook/addon-docs/blocks';\nimport * as FullFormDemoStories from './tests/FullFormDemo.stories.js';\n\n# Forms\n\nThis is a demonstration of a full form built with the `ulu-form` components.\n\n<Canvas of={FullFormDemoStories.Default} />\n"
12267
12267
  },
12268
12268
  "modals": {
12269
12269
  "raw_markdown": "import { Canvas } from '@storybook/addon-docs/blocks';\nimport * as ModalStories from '../../components/collapsible/UluModal.stories.js';\n\n# Modals\n\nModals plugin allows configuring app-wide modals that are triggered by the global API. Register your modals when you install the plugin then interact with them using the global API.\n\n## Registering your app-wide modals\n\nCreate the modal component file like:\n\n```html\n<template>\n <UluModal>\n User setting modal…\n </UluModal>\n</template>\n```\n\n\nExample ./scr/modals.js\n\n```js\nimport { defineAsyncComponent } from \"vue\";\n\nexport default [\n {\n name: \"settings\",\n component: defineAsyncComponent(() => import('./components/modals/UserSettingsModal.vue')),\n }\n]\n```\n\n## Installing the plugin\n\nExample ./src/main.js\n\n```js\nimport UluModals from \"@ulu/frontend-vue/plugins/modals/index.js\";\nimport modals from \"./src/modals.js\";\n\n//...\n\napp.use(UluModals, { modals });\n\n```\n\n## Using Global API\n\n```js\n\n// Open a app-wide modal\nthis.$uluModals.open({ exampleProp: value });\n\n// Close app-wide modal \nthis.$uluModals.close();\n\n// Add modals after post-install\nthis.$uluModals.add({\n name: \"settings\",\n component: defineAsyncComponent(() => import('./components/modals/UserSettingsModal.vue')),\n});\n\n// Remove a modal from the registry\nthis.$uluModals.remove(\"settings\");\n\n// Get Modal from registry (not usually needed)\nconst settingsModal = this.$uluModals.get(\"settings\");\n// console.log(settingsModal.name) ==> \"settings\"\n```\n\n## Using Composition API (via composable)\n\nComposable is used get access to modals API (through inject)\n\n```html\n\n<template>\n <button @click=\"showSettingsModal\">My Settings</button>\n</template>\n\n<script setup>\n import { useModals } from \"./useModals\";\n\n const modals = useModals();\n const showSettingsModal = () => {\n console.log(\"This is opening via uluModals composable\");\n modals.open(\"settings\");\n };\n</script>\n\n```\n\n## Standalone Modal Component\n\nThe `UluModal` **component is independent of this plugin.** The plugin is simply a convenient way to manage global modals (for things like a settings dialog) that need to be opened from anywhere in your application.\n\nYou can use `UluModal` as the component that the plugin displays, or you can use it on its own for any case where you are managing the state locally within a component and don't need a global API.\n\nHere is a demonstration of the standalone `UluModal` component:\n\n<Canvas of={ModalStories.Default} />"
12270
12270
  },
12271
+ "core": {
12272
+ "raw_markdown": "# Core Plugin\n\n## Purpose\n\nThe Core Plugin is the central, **required** plugin for the `@ulu/frontend-vue` library. Its primary purpose is to establish a single, reactive source of truth for configuration settings that are shared across multiple components. \n\nBy using Vue's `provide`/`inject` system, this plugin ensures that all components within your application access the same configuration, preventing inconsistencies that can arise from separate module imports.\n\n## Installation\n\nTo use this library, you must register the `corePlugin` on your Vue app instance. You can also pass an options object to override the default settings.\n\n```javascript\n// src/main.js\nimport { createApp } from 'vue';\nimport App from './App.vue';\nimport { corePlugin } from '@ulu/frontend-vue';\n\nconst app = createApp(App);\n\n// Register the core plugin\napp.use(corePlugin, {\n // Optional: override general settings\n fontAwesomeStatic: true,\n\n // Optional: override specific icons safely\n iconsByType: {\n danger: 'my-custom-danger-icon',\n close: 'my-custom-close-icon'\n }\n});\n\napp.mount('#app');\n```\n\n## API Reference\n\nThe plugin provides its API to your application in two ways:\n\n- **Composition API:** `inject('uluCore')`\n- **Options API:** `this.$uluCore`\n\nThe API object contains the following methods:\n\n- `getSettings()`: Returns the full reactive settings object.\n- `getSetting(key)`: Retrieves a single setting by its key (e.g., `'fontAwesomeStatic'`).\n- `updateSetting(key, value)`: Updates a single setting.\n- `updateSettings(changes)`: Merges an object of changes into the settings.\n- `getDefaultSettings()`: Returns a non-reactive copy of the original default settings.\n- `getIcon(type)`: Retrieves a specific icon class string by its semantic type (e.g., `'danger'`, `'close'`).\n- `setIcon(type, definition)`: Safely sets or overrides a single icon definition.\n\n### Example Usage\n\n**Composition API (`<script setup>`)**\n```vue\n<script setup>\nimport { inject, onMounted } from 'vue';\n\nconst uluCore = inject('uluCore');\n\nonMounted(() => {\n const icons = uluCore.getSetting('iconsByType');\n console.log('Danger Icon:', icons.danger);\n\n // Example of updating a single icon dynamically\n uluCore.setIcon('success', 'my-awesome-success-icon');\n});\n</script>\n```\n\n**Options API**\n```vue\n<script>\nexport default {\n mounted() {\n const icons = this.$uluCore.getSetting('icons');\n console.log('Danger Icon:', icons.danger);\n }\n}\n</script>\n```\n\n"
12273
+ },
12271
12274
  "breakpoints": {
12272
12275
  "raw_markdown": "# Breakpoints Plugin\n\n## Purpose\n\nThe Breakpoints Plugin provides app-wide, reactive breakpoint information to your Vue components. It is a lightweight wrapper around the `useBreakpointManager` composable, ensuring that resize events and active breakpoint states are tracked centrally and distributed efficiently via Vue's `provide`/`inject` system.\n\nBy installing this plugin, any component in your application can instantly know the current breakpoint, whether the device is considered \"mobile,\" and the direction the window was just resized.\n\n## Installation\n\nRegister the `breakpointsPlugin` on your Vue app instance.\n\n```javascript\n// src/main.js\nimport { createApp } from 'vue';\nimport App from './App.vue';\nimport { breakpointsPlugin } from '@ulu/frontend-vue';\n\nconst app = createApp(App);\n\n// Register the breakpoints plugin\napp.use(breakpointsPlugin, {\n // Optional: Change which breakpoint triggers the 'isMobile' flag (default is 'small')\n breakpointMobile: 'small',\n \n // Optional: Pass options directly to the underlying useBreakpointManager\n managerOptions: {\n // onReady(manager) { ... }\n }\n});\n\napp.mount('#app');\n```\n\n## Provided Injections\n\nThe plugin does not attach methods to the Vue instance. Instead, it provides reactive `computed` refs that you can inject into any component.\n\n- **`uluIsMobile`**: `ComputedRef<Boolean>` - True if the current active breakpoint is less than or equal to the configured `breakpointMobile` (defaults to `'small'`).\n- **`uluBreakpointActive`**: `ComputedRef<String>` - The name of the currently active breakpoint (e.g., `'small'`, `'medium'`, `'large'`).\n- **`uluBreakpointDirection`**: `ComputedRef<Number>` - Indicates the resize direction (`1` for growing larger, `-1` for shrinking smaller, `0` for initialization).\n- **`uluBreakpointManager`**: `ComputedRef<Object>` - The underlying vanilla JS BreakpointManager instance, allowing advanced programmatic subscriptions if needed.\n\n## Example Usage\n\n**Composition API (`<script setup>`)**\n```vue\n<script setup>\n import { inject } from 'vue';\n\n const isMobile = inject('uluIsMobile');\n const currentBreakpoint = inject('uluBreakpointActive');\n</script>\n\n<template>\n <div>\n <p v-if=\"isMobile\">You are on a mobile device!</p>\n <p>Current Breakpoint: {{ currentBreakpoint }}</p>\n </div>\n</template>\n```\n\n**Options API**\n```vue\n<script>\nexport default {\n inject: ['uluIsMobile', 'uluBreakpointActive'],\n mounted() {\n console.log('Is mobile?', this.uluIsMobile);\n }\n}\n</script>\n```\n\n## Why use the Plugin vs the Composable?\n\nWhile you can import and use `useBreakpointManager()` directly in individual components, registering the Breakpoints Plugin ensures that the vanilla JS `BreakpointManager` is only instantiated once. This centralizes the resize event listeners, significantly improving performance across large applications with many responsive components.\n"
12273
12276
  },
12274
- "forms": {
12275
- "raw_markdown": "import { Meta, Canvas, Story } from '@storybook/addon-docs/blocks';\nimport * as FullFormDemoStories from './tests/FullFormDemo.stories.js';\n\n# Forms\n\nThis is a demonstration of a full form built with the `ulu-form` components.\n\n<Canvas of={FullFormDemoStories.Default} />\n"
12276
- },
12277
12277
  "useScrollAnchors": {
12278
12278
  "raw_markdown": "# useScrollAnchors\n\nThe main composable that contains the core \"engine\" for the Scroll Anchors system.\nIt encapsulates the `IntersectionObserver` logic to track sections and manage their active state.\nThis is intended for advanced use cases where a developer needs to build a custom provider\ncomponent instead of using the default `UluScrollAnchors`.\n\n## Usage\n\nThis composable is used to power a custom provider component. You would use it to provide the context to child components via Vue's `provide` function, using string-based keys.\n\n```html\n<script setup>\n import { ref, computed, provide } from \"vue\";\n import { useScrollAnchors } from './useScrollAnchors.js';\n\n const props = defineProps({\n firstItemActive: Boolean,\n observerOptions: Object\n });\n const emit = defineEmits(['section-change']);\n const componentEl = ref(null);\n const sections = ref([]);\n\n // Use the composable to handle the core logic\n useScrollAnchors({ sections, props, emit, componentElRef: componentEl });\n\n // Provide the state and registration functions to children\n provide('uluScrollAnchorsSections', computed(() => sections.value));\n provide('uluScrollAnchorsRegister', (section) => sections.value.push(section));\n provide('uluScrollAnchorsUnregister', (sectionId) => {\n const index = sections.value.findIndex(r => r.id === sectionId);\n if (index > -1) sections.value.splice(index, 1);\n });\n</script>\n\n<template>\n <!-- Your custom wrapper, or no wrapper at all -->\n <div ref=\"componentEl\">\n <slot/>\n </div>\n</template>\n```\n\n## Parameters\n\nThe `useScrollAnchors` composable accepts a single object with the following properties:\n\n- `sections` (Ref): A `ref` to the array of section objects that will be tracked.\n- `props` (Object): A props object containing `observerOptions` and `firstItemActive`.\n- `emit` (Function): The `emit` function from the host component, used to emit the `section-change` event.\n- `componentElRef` (Ref): A `ref` to an element within the component, used to find the nearest scrollable ancestor. This is not needed if `observerOptions.root` is set.\n\n## Returns\n\nThis composable does not return any values. It manages the observer and mutates the `active` state on the items within the `sections` array directly.\n"
12279
12279
  },
@@ -12405,32 +12405,6 @@
12405
12405
  "order": 28,
12406
12406
  "level": 0
12407
12407
  },
12408
- {
12409
- "id": "module:components",
12410
- "longname": "module:components",
12411
- "name": "components",
12412
- "kind": "module",
12413
- "meta": {
12414
- "lineno": 1,
12415
- "filename": "index.js",
12416
- "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/components"
12417
- },
12418
- "order": 29,
12419
- "level": 0
12420
- },
12421
- {
12422
- "id": "components/index.js\nResponsible for exporting all components\n- Used in main plugin and bundle exportsmodule:",
12423
- "longname": "components/index.js\nResponsible for exporting all components\n- Used in main plugin and bundle exportsmodule:",
12424
- "name": "components/index.js\nResponsible for exporting all components\n- Used in main plugin and bundle exports",
12425
- "kind": "module",
12426
- "meta": {
12427
- "lineno": 4,
12428
- "filename": "index.js",
12429
- "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/components"
12430
- },
12431
- "order": 30,
12432
- "level": 0
12433
- },
12434
12408
  {
12435
12409
  "id": "module:useWindowResize",
12436
12410
  "longname": "module:useWindowResize",
@@ -12441,7 +12415,7 @@
12441
12415
  "filename": "useWindowResize.js",
12442
12416
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
12443
12417
  },
12444
- "order": 31,
12418
+ "order": 29,
12445
12419
  "level": 0
12446
12420
  },
12447
12421
  {
@@ -12454,7 +12428,7 @@
12454
12428
  "filename": "useUluFloating.js",
12455
12429
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
12456
12430
  },
12457
- "order": 34,
12431
+ "order": 32,
12458
12432
  "level": 0
12459
12433
  },
12460
12434
  {
@@ -12467,7 +12441,7 @@
12467
12441
  "filename": "useTableData.js",
12468
12442
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
12469
12443
  },
12470
- "order": 38,
12444
+ "order": 36,
12471
12445
  "level": 0
12472
12446
  },
12473
12447
  {
@@ -12480,7 +12454,7 @@
12480
12454
  "filename": "useRequiredInject.js",
12481
12455
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
12482
12456
  },
12483
- "order": 46,
12457
+ "order": 44,
12484
12458
  "level": 0
12485
12459
  },
12486
12460
  {
@@ -12493,7 +12467,7 @@
12493
12467
  "filename": "usePagination.js",
12494
12468
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
12495
12469
  },
12496
- "order": 48,
12470
+ "order": 46,
12497
12471
  "level": 0
12498
12472
  },
12499
12473
  {
@@ -12506,7 +12480,7 @@
12506
12480
  "filename": "useModifiers.js",
12507
12481
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
12508
12482
  },
12509
- "order": 50,
12483
+ "order": 48,
12510
12484
  "level": 0
12511
12485
  },
12512
12486
  {
@@ -12519,7 +12493,7 @@
12519
12493
  "filename": "useIcon.js",
12520
12494
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
12521
12495
  },
12522
- "order": 52,
12496
+ "order": 50,
12523
12497
  "level": 0
12524
12498
  },
12525
12499
  {
@@ -12532,7 +12506,7 @@
12532
12506
  "filename": "useDocumentTitle.js",
12533
12507
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
12534
12508
  },
12535
- "order": 55,
12509
+ "order": 53,
12536
12510
  "level": 0
12537
12511
  },
12538
12512
  {
@@ -12545,7 +12519,7 @@
12545
12519
  "filename": "useBreakpointManager.js",
12546
12520
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
12547
12521
  },
12548
- "order": 57,
12522
+ "order": 55,
12549
12523
  "level": 0
12550
12524
  },
12551
12525
  {
@@ -12558,6 +12532,32 @@
12558
12532
  "filename": "index.js",
12559
12533
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
12560
12534
  },
12535
+ "order": 60,
12536
+ "level": 0
12537
+ },
12538
+ {
12539
+ "id": "module:components",
12540
+ "longname": "module:components",
12541
+ "name": "components",
12542
+ "kind": "module",
12543
+ "meta": {
12544
+ "lineno": 1,
12545
+ "filename": "index.js",
12546
+ "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/components"
12547
+ },
12548
+ "order": 61,
12549
+ "level": 0
12550
+ },
12551
+ {
12552
+ "id": "components/index.js\nResponsible for exporting all components\n- Used in main plugin and bundle exportsmodule:",
12553
+ "longname": "components/index.js\nResponsible for exporting all components\n- Used in main plugin and bundle exportsmodule:",
12554
+ "name": "components/index.js\nResponsible for exporting all components\n- Used in main plugin and bundle exports",
12555
+ "kind": "module",
12556
+ "meta": {
12557
+ "lineno": 4,
12558
+ "filename": "index.js",
12559
+ "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/components"
12560
+ },
12561
12561
  "order": 62,
12562
12562
  "level": 0
12563
12563
  },
@@ -12613,46 +12613,6 @@
12613
12613
  "order": 74,
12614
12614
  "level": 0
12615
12615
  },
12616
- {
12617
- "id": "module:useModals",
12618
- "longname": "module:useModals",
12619
- "name": "useModals",
12620
- "kind": "module",
12621
- "meta": {
12622
- "lineno": 1,
12623
- "filename": "useModals.js",
12624
- "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
12625
- },
12626
- "order": 80,
12627
- "level": 0
12628
- },
12629
- {
12630
- "id": "module:modalsPlugin",
12631
- "longname": "module:modalsPlugin",
12632
- "name": "modalsPlugin",
12633
- "kind": "module",
12634
- "description": "Modals plugin (adds components, global registry, etc)\n- Updated version handles both independent and global registered/triggered modals",
12635
- "meta": {
12636
- "lineno": 1,
12637
- "filename": "index.js",
12638
- "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
12639
- },
12640
- "order": 82,
12641
- "level": 0
12642
- },
12643
- {
12644
- "id": "modals.module:api",
12645
- "longname": "modals.module:api",
12646
- "name": "api",
12647
- "kind": "module",
12648
- "meta": {
12649
- "lineno": 1,
12650
- "filename": "api.js",
12651
- "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
12652
- },
12653
- "order": 85,
12654
- "level": 0
12655
- },
12656
12616
  {
12657
12617
  "id": "module:useTooltipFollow",
12658
12618
  "longname": "module:useTooltipFollow",
@@ -12663,7 +12623,7 @@
12663
12623
  "filename": "useTooltipFollow.js",
12664
12624
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
12665
12625
  },
12666
- "order": 94,
12626
+ "order": 80,
12667
12627
  "level": 0
12668
12628
  },
12669
12629
  {
@@ -12676,7 +12636,7 @@
12676
12636
  "filename": "useTooltip.js",
12677
12637
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
12678
12638
  },
12679
- "order": 95,
12639
+ "order": 81,
12680
12640
  "level": 0
12681
12641
  },
12682
12642
  {
@@ -12689,7 +12649,7 @@
12689
12649
  "filename": "index.js",
12690
12650
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
12691
12651
  },
12692
- "order": 97,
12652
+ "order": 83,
12693
12653
  "level": 0
12694
12654
  },
12695
12655
  {
@@ -12702,20 +12662,46 @@
12702
12662
  "filename": "defaults.js",
12703
12663
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
12704
12664
  },
12705
- "order": 103
12665
+ "order": 89
12706
12666
  },
12707
12667
  {
12708
- "id": "module:corePlugin",
12709
- "longname": "module:corePlugin",
12710
- "name": "corePlugin",
12668
+ "id": "module:useModals",
12669
+ "longname": "module:useModals",
12670
+ "name": "useModals",
12711
12671
  "kind": "module",
12712
- "description": "Core plugin for managing shared configuration for the library.",
12672
+ "meta": {
12673
+ "lineno": 1,
12674
+ "filename": "useModals.js",
12675
+ "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
12676
+ },
12677
+ "order": 111,
12678
+ "level": 0
12679
+ },
12680
+ {
12681
+ "id": "module:modalsPlugin",
12682
+ "longname": "module:modalsPlugin",
12683
+ "name": "modalsPlugin",
12684
+ "kind": "module",
12685
+ "description": "Modals plugin (adds components, global registry, etc)\n- Updated version handles both independent and global registered/triggered modals",
12713
12686
  "meta": {
12714
12687
  "lineno": 1,
12715
12688
  "filename": "index.js",
12716
- "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/core"
12689
+ "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
12717
12690
  },
12718
- "order": 125,
12691
+ "order": 113,
12692
+ "level": 0
12693
+ },
12694
+ {
12695
+ "id": "modals.module:api",
12696
+ "longname": "modals.module:api",
12697
+ "name": "api",
12698
+ "kind": "module",
12699
+ "meta": {
12700
+ "lineno": 1,
12701
+ "filename": "api.js",
12702
+ "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
12703
+ },
12704
+ "order": 116,
12719
12705
  "level": 0
12720
12706
  },
12721
12707
  {
@@ -12728,7 +12714,21 @@
12728
12714
  "filename": "index.js",
12729
12715
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/breakpoints"
12730
12716
  },
12731
- "order": 127,
12717
+ "order": 125,
12718
+ "level": 0
12719
+ },
12720
+ {
12721
+ "id": "module:corePlugin",
12722
+ "longname": "module:corePlugin",
12723
+ "name": "corePlugin",
12724
+ "kind": "module",
12725
+ "description": "Core plugin for managing shared configuration for the library.",
12726
+ "meta": {
12727
+ "lineno": 1,
12728
+ "filename": "index.js",
12729
+ "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/core"
12730
+ },
12731
+ "order": 130,
12732
12732
  "level": 0
12733
12733
  },
12734
12734
  {
@@ -12812,6 +12812,42 @@
12812
12812
  "order": 73,
12813
12813
  "level": 0
12814
12814
  },
12815
+ {
12816
+ "id": "module:popoversPlugin--module.exports",
12817
+ "longname": "module:popoversPlugin",
12818
+ "name": "module.exports",
12819
+ "kind": "function",
12820
+ "isExported": true,
12821
+ "description": "Install the UluPopovers plugin.",
12822
+ "memberof": "module:popoversPlugin",
12823
+ "params": [
12824
+ {
12825
+ "type": {
12826
+ "names": [
12827
+ "object"
12828
+ ]
12829
+ },
12830
+ "description": "The Vue app instance.",
12831
+ "name": "app"
12832
+ },
12833
+ {
12834
+ "type": {
12835
+ "names": [
12836
+ "object"
12837
+ ]
12838
+ },
12839
+ "description": "User-defined options to override defaults.",
12840
+ "name": "userOptions"
12841
+ }
12842
+ ],
12843
+ "meta": {
12844
+ "lineno": 58,
12845
+ "filename": "index.js",
12846
+ "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
12847
+ },
12848
+ "order": 88,
12849
+ "level": 0
12850
+ },
12815
12851
  {
12816
12852
  "id": "module:modalsPlugin--module.exports",
12817
12853
  "longname": "module:modalsPlugin",
@@ -12845,17 +12881,17 @@
12845
12881
  "filename": "index.js",
12846
12882
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
12847
12883
  },
12848
- "order": 84,
12884
+ "order": 115,
12849
12885
  "level": 0
12850
12886
  },
12851
12887
  {
12852
- "id": "module:popoversPlugin--module.exports",
12853
- "longname": "module:popoversPlugin",
12888
+ "id": "module:breakpointsPlugin--module.exports",
12889
+ "longname": "module:breakpointsPlugin",
12854
12890
  "name": "module.exports",
12855
12891
  "kind": "function",
12856
12892
  "isExported": true,
12857
- "description": "Install the UluPopovers plugin.",
12858
- "memberof": "module:popoversPlugin",
12893
+ "description": "Installs the breakpoints plugin, providing app-wide reactive breakpoint information.\nIt uses `useBreakpointManager` internally and provides `uluIsMobile`,\n`uluBreakpointActive`, `uluBreakpointDirection`, and `uluBreakpointManager` to all components.",
12894
+ "memberof": "module:breakpointsPlugin",
12859
12895
  "params": [
12860
12896
  {
12861
12897
  "type": {
@@ -12872,16 +12908,37 @@
12872
12908
  "object"
12873
12909
  ]
12874
12910
  },
12875
- "description": "User-defined options to override defaults.",
12911
+ "description": "User-defined options.",
12876
12912
  "name": "userOptions"
12913
+ },
12914
+ {
12915
+ "type": {
12916
+ "names": [
12917
+ "string"
12918
+ ]
12919
+ },
12920
+ "optional": true,
12921
+ "defaultvalue": "\"small\"",
12922
+ "description": "The breakpoint name to use for `isMobile` detection.",
12923
+ "name": "userOptions.breakpointMobile"
12924
+ },
12925
+ {
12926
+ "type": {
12927
+ "names": [
12928
+ "object"
12929
+ ]
12930
+ },
12931
+ "optional": true,
12932
+ "description": "Options to pass to the underlying `useBreakpointManager`.",
12933
+ "name": "userOptions.managerOptions"
12877
12934
  }
12878
12935
  ],
12879
12936
  "meta": {
12880
- "lineno": 58,
12937
+ "lineno": 31,
12881
12938
  "filename": "index.js",
12882
- "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
12939
+ "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/breakpoints"
12883
12940
  },
12884
- "order": 102,
12941
+ "order": 129,
12885
12942
  "level": 0
12886
12943
  },
12887
12944
  {
@@ -12958,63 +13015,6 @@
12958
13015
  "filename": "index.js",
12959
13016
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/core"
12960
13017
  },
12961
- "order": 126,
12962
- "level": 0
12963
- },
12964
- {
12965
- "id": "module:breakpointsPlugin--module.exports",
12966
- "longname": "module:breakpointsPlugin",
12967
- "name": "module.exports",
12968
- "kind": "function",
12969
- "isExported": true,
12970
- "description": "Installs the breakpoints plugin, providing app-wide reactive breakpoint information.\nIt uses `useBreakpointManager` internally and provides `uluIsMobile`,\n`uluBreakpointActive`, `uluBreakpointDirection`, and `uluBreakpointManager` to all components.",
12971
- "memberof": "module:breakpointsPlugin",
12972
- "params": [
12973
- {
12974
- "type": {
12975
- "names": [
12976
- "object"
12977
- ]
12978
- },
12979
- "description": "The Vue app instance.",
12980
- "name": "app"
12981
- },
12982
- {
12983
- "type": {
12984
- "names": [
12985
- "object"
12986
- ]
12987
- },
12988
- "description": "User-defined options.",
12989
- "name": "userOptions"
12990
- },
12991
- {
12992
- "type": {
12993
- "names": [
12994
- "string"
12995
- ]
12996
- },
12997
- "optional": true,
12998
- "defaultvalue": "\"small\"",
12999
- "description": "The breakpoint name to use for `isMobile` detection.",
13000
- "name": "userOptions.breakpointMobile"
13001
- },
13002
- {
13003
- "type": {
13004
- "names": [
13005
- "object"
13006
- ]
13007
- },
13008
- "optional": true,
13009
- "description": "Options to pass to the underlying `useBreakpointManager`.",
13010
- "name": "userOptions.managerOptions"
13011
- }
13012
- ],
13013
- "meta": {
13014
- "lineno": 31,
13015
- "filename": "index.js",
13016
- "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/breakpoints"
13017
- },
13018
13018
  "order": 131,
13019
13019
  "level": 0
13020
13020
  },
@@ -13031,7 +13031,7 @@
13031
13031
  "filename": "useBreakpointManager.js",
13032
13032
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
13033
13033
  },
13034
- "order": 58
13034
+ "order": 56
13035
13035
  },
13036
13036
  {
13037
13037
  "id": "module:useBreakpointManager~defaults.onReady",
@@ -13046,7 +13046,7 @@
13046
13046
  "filename": "useBreakpointManager.js",
13047
13047
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
13048
13048
  },
13049
- "order": 59
13049
+ "order": 57
13050
13050
  },
13051
13051
  {
13052
13052
  "id": "module:useBreakpointManager~defaults.plugin",
@@ -13061,7 +13061,7 @@
13061
13061
  "filename": "useBreakpointManager.js",
13062
13062
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
13063
13063
  },
13064
- "order": 60
13064
+ "order": 58
13065
13065
  },
13066
13066
  {
13067
13067
  "id": "toast.module:defaults--module.exports",
@@ -13158,7 +13158,7 @@
13158
13158
  "filename": "defaults.js",
13159
13159
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13160
13160
  },
13161
- "order": 104
13161
+ "order": 90
13162
13162
  },
13163
13163
  {
13164
13164
  "id": "popovers.module:defaults.plugin.directiveName",
@@ -13178,7 +13178,7 @@
13178
13178
  "filename": "defaults.js",
13179
13179
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13180
13180
  },
13181
- "order": 105
13181
+ "order": 91
13182
13182
  },
13183
13183
  {
13184
13184
  "id": "popovers.module:defaults.popover",
@@ -13193,7 +13193,7 @@
13193
13193
  "filename": "defaults.js",
13194
13194
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13195
13195
  },
13196
- "order": 106
13196
+ "order": 92
13197
13197
  },
13198
13198
  {
13199
13199
  "id": "popovers.module:defaults.popover.inline",
@@ -13213,7 +13213,7 @@
13213
13213
  "filename": "defaults.js",
13214
13214
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13215
13215
  },
13216
- "order": 107
13216
+ "order": 93
13217
13217
  },
13218
13218
  {
13219
13219
  "id": "popovers.module:defaults.popover.delay",
@@ -13233,7 +13233,7 @@
13233
13233
  "filename": "defaults.js",
13234
13234
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13235
13235
  },
13236
- "order": 108
13236
+ "order": 94
13237
13237
  },
13238
13238
  {
13239
13239
  "id": "popovers.module:defaults.popover.placement",
@@ -13253,7 +13253,7 @@
13253
13253
  "filename": "defaults.js",
13254
13254
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13255
13255
  },
13256
- "order": 109
13256
+ "order": 95
13257
13257
  },
13258
13258
  {
13259
13259
  "id": "popovers.module:defaults.popover.strategy",
@@ -13273,7 +13273,7 @@
13273
13273
  "filename": "defaults.js",
13274
13274
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13275
13275
  },
13276
- "order": 110
13276
+ "order": 96
13277
13277
  },
13278
13278
  {
13279
13279
  "id": "popovers.module:defaults.popover.offset",
@@ -13293,7 +13293,7 @@
13293
13293
  "filename": "defaults.js",
13294
13294
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13295
13295
  },
13296
- "order": 111
13296
+ "order": 97
13297
13297
  },
13298
13298
  {
13299
13299
  "id": "popovers.module:defaults.popover.arrow",
@@ -13313,7 +13313,7 @@
13313
13313
  "filename": "defaults.js",
13314
13314
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13315
13315
  },
13316
- "order": 112
13316
+ "order": 98
13317
13317
  },
13318
13318
  {
13319
13319
  "id": "popovers.module:defaults.tooltip",
@@ -13333,7 +13333,7 @@
13333
13333
  "filename": "defaults.js",
13334
13334
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13335
13335
  },
13336
- "order": 113
13336
+ "order": 99
13337
13337
  },
13338
13338
  {
13339
13339
  "id": "popovers.module:defaults.tooltip.teleportTo",
@@ -13353,7 +13353,7 @@
13353
13353
  "filename": "defaults.js",
13354
13354
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13355
13355
  },
13356
- "order": 114
13356
+ "order": 100
13357
13357
  },
13358
13358
  {
13359
13359
  "id": "popovers.module:defaults.tooltip.class",
@@ -13375,7 +13375,7 @@
13375
13375
  "filename": "defaults.js",
13376
13376
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13377
13377
  },
13378
- "order": 115
13378
+ "order": 101
13379
13379
  },
13380
13380
  {
13381
13381
  "id": "popovers.module:defaults.tooltip.showEvents",
@@ -13395,7 +13395,7 @@
13395
13395
  "filename": "defaults.js",
13396
13396
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13397
13397
  },
13398
- "order": 116
13398
+ "order": 102
13399
13399
  },
13400
13400
  {
13401
13401
  "id": "popovers.module:defaults.tooltip.hideEvents",
@@ -13415,7 +13415,7 @@
13415
13415
  "filename": "defaults.js",
13416
13416
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13417
13417
  },
13418
- "order": 117
13418
+ "order": 103
13419
13419
  },
13420
13420
  {
13421
13421
  "id": "popovers.module:defaults.tooltip.isHtml",
@@ -13435,7 +13435,7 @@
13435
13435
  "filename": "defaults.js",
13436
13436
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13437
13437
  },
13438
- "order": 118
13438
+ "order": 104
13439
13439
  },
13440
13440
  {
13441
13441
  "id": "popovers.module:defaults.tooltip.trigger",
@@ -13456,7 +13456,7 @@
13456
13456
  "filename": "defaults.js",
13457
13457
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13458
13458
  },
13459
- "order": 119
13459
+ "order": 105
13460
13460
  },
13461
13461
  {
13462
13462
  "id": "popovers.module:defaults.tooltip.content",
@@ -13477,7 +13477,7 @@
13477
13477
  "filename": "defaults.js",
13478
13478
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13479
13479
  },
13480
- "order": 120
13480
+ "order": 106
13481
13481
  },
13482
13482
  {
13483
13483
  "id": "popovers.module:defaults.tooltip.delay",
@@ -13497,7 +13497,7 @@
13497
13497
  "filename": "defaults.js",
13498
13498
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13499
13499
  },
13500
- "order": 121
13500
+ "order": 107
13501
13501
  },
13502
13502
  {
13503
13503
  "id": "popovers.module:defaults.tooltip.onReady",
@@ -13512,7 +13512,7 @@
13512
13512
  "filename": "defaults.js",
13513
13513
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13514
13514
  },
13515
- "order": 122
13515
+ "order": 108
13516
13516
  },
13517
13517
  {
13518
13518
  "id": "popovers.module:defaults.tooltip.component",
@@ -13527,7 +13527,7 @@
13527
13527
  "filename": "defaults.js",
13528
13528
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13529
13529
  },
13530
- "order": 123
13530
+ "order": 109
13531
13531
  },
13532
13532
  {
13533
13533
  "id": "popovers.module:defaults.tooltip.componentProps",
@@ -13542,7 +13542,7 @@
13542
13542
  "filename": "defaults.js",
13543
13543
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13544
13544
  },
13545
- "order": 124
13545
+ "order": 110
13546
13546
  },
13547
13547
  {
13548
13548
  "id": "module:breakpointsPlugin--module.exports~defaults.breakpointMobile",
@@ -13557,7 +13557,7 @@
13557
13557
  "filename": "index.js",
13558
13558
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/breakpoints"
13559
13559
  },
13560
- "order": 129,
13560
+ "order": 127,
13561
13561
  "level": 0
13562
13562
  },
13563
13563
  {
@@ -13573,7 +13573,7 @@
13573
13573
  "filename": "index.js",
13574
13574
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/breakpoints"
13575
13575
  },
13576
- "order": 130,
13576
+ "order": 128,
13577
13577
  "level": 0
13578
13578
  },
13579
13579
  {
@@ -13647,42 +13647,6 @@
13647
13647
  "order": 68,
13648
13648
  "level": 0
13649
13649
  },
13650
- {
13651
- "id": "module:useModals.useModals",
13652
- "longname": "module:useModals.useModals",
13653
- "name": "useModals",
13654
- "kind": "constant",
13655
- "scope": "static",
13656
- "description": "A composable to access the global modals API.\nThis is a simple wrapper around `inject('uluModals')` and throws an error if the plugin is not installed.",
13657
- "memberof": "module:useModals",
13658
- "returns": [
13659
- {
13660
- "type": {
13661
- "names": [
13662
- "object"
13663
- ]
13664
- },
13665
- "description": "The modals API with methods like `open`, `close`, `add`, `remove`, and `get`."
13666
- }
13667
- ],
13668
- "exceptions": [
13669
- {
13670
- "type": {
13671
- "names": [
13672
- "Error"
13673
- ]
13674
- },
13675
- "description": "If the modals plugin is not installed."
13676
- }
13677
- ],
13678
- "meta": {
13679
- "lineno": 13,
13680
- "filename": "useModals.js",
13681
- "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
13682
- },
13683
- "order": 81,
13684
- "level": 0
13685
- },
13686
13650
  {
13687
13651
  "id": "module:popoversPlugin--module.exports.POPOVER_OPTIONS_KEY",
13688
13652
  "longname": "module:popoversPlugin.POPOVER_OPTIONS_KEY",
@@ -13696,7 +13660,7 @@
13696
13660
  "filename": "index.js",
13697
13661
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13698
13662
  },
13699
- "order": 98,
13663
+ "order": 84,
13700
13664
  "level": 0
13701
13665
  },
13702
13666
  {
@@ -13712,7 +13676,7 @@
13712
13676
  "filename": "index.js",
13713
13677
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13714
13678
  },
13715
- "order": 99,
13679
+ "order": 85,
13716
13680
  "level": 0
13717
13681
  },
13718
13682
  {
@@ -13728,7 +13692,7 @@
13728
13692
  "filename": "index.js",
13729
13693
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13730
13694
  },
13731
- "order": 100,
13695
+ "order": 86,
13732
13696
  "level": 0
13733
13697
  },
13734
13698
  {
@@ -13775,7 +13739,43 @@
13775
13739
  "filename": "index.js",
13776
13740
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
13777
13741
  },
13778
- "order": 101,
13742
+ "order": 87,
13743
+ "level": 0
13744
+ },
13745
+ {
13746
+ "id": "module:useModals.useModals",
13747
+ "longname": "module:useModals.useModals",
13748
+ "name": "useModals",
13749
+ "kind": "constant",
13750
+ "scope": "static",
13751
+ "description": "A composable to access the global modals API.\nThis is a simple wrapper around `inject('uluModals')` and throws an error if the plugin is not installed.",
13752
+ "memberof": "module:useModals",
13753
+ "returns": [
13754
+ {
13755
+ "type": {
13756
+ "names": [
13757
+ "object"
13758
+ ]
13759
+ },
13760
+ "description": "The modals API with methods like `open`, `close`, `add`, `remove`, and `get`."
13761
+ }
13762
+ ],
13763
+ "exceptions": [
13764
+ {
13765
+ "type": {
13766
+ "names": [
13767
+ "Error"
13768
+ ]
13769
+ },
13770
+ "description": "If the modals plugin is not installed."
13771
+ }
13772
+ ],
13773
+ "meta": {
13774
+ "lineno": 13,
13775
+ "filename": "useModals.js",
13776
+ "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
13777
+ },
13778
+ "order": 112,
13779
13779
  "level": 0
13780
13780
  },
13781
13781
  {
@@ -14641,7 +14641,7 @@
14641
14641
  "filename": "useWindowResize.js",
14642
14642
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
14643
14643
  },
14644
- "order": 33,
14644
+ "order": 31,
14645
14645
  "level": 0
14646
14646
  },
14647
14647
  {
@@ -14695,7 +14695,7 @@
14695
14695
  "filename": "useUluFloating.js",
14696
14696
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
14697
14697
  },
14698
- "order": 37,
14698
+ "order": 35,
14699
14699
  "level": 0
14700
14700
  },
14701
14701
  {
@@ -14732,7 +14732,7 @@
14732
14732
  "filename": "useTableData.js",
14733
14733
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
14734
14734
  },
14735
- "order": 39,
14735
+ "order": 37,
14736
14736
  "level": 0
14737
14737
  },
14738
14738
  {
@@ -14764,7 +14764,7 @@
14764
14764
  "filename": "useRequiredInject.js",
14765
14765
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
14766
14766
  },
14767
- "order": 47,
14767
+ "order": 45,
14768
14768
  "level": 0
14769
14769
  },
14770
14770
  {
@@ -14810,7 +14810,7 @@
14810
14810
  "filename": "usePagination.js",
14811
14811
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
14812
14812
  },
14813
- "order": 49,
14813
+ "order": 47,
14814
14814
  "level": 0
14815
14815
  },
14816
14816
  {
@@ -14883,7 +14883,7 @@
14883
14883
  "filename": "useModifiers.js",
14884
14884
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
14885
14885
  },
14886
- "order": 51,
14886
+ "order": 49,
14887
14887
  "level": 0
14888
14888
  },
14889
14889
  {
@@ -14909,7 +14909,7 @@
14909
14909
  "filename": "useIcon.js",
14910
14910
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
14911
14911
  },
14912
- "order": 53,
14912
+ "order": 51,
14913
14913
  "level": 0
14914
14914
  },
14915
14915
  {
@@ -14979,7 +14979,7 @@
14979
14979
  "filename": "useDocumentTitle.js",
14980
14980
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
14981
14981
  },
14982
- "order": 56,
14982
+ "order": 54,
14983
14983
  "level": 0
14984
14984
  },
14985
14985
  {
@@ -15047,7 +15047,7 @@
15047
15047
  "filename": "useBreakpointManager.js",
15048
15048
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
15049
15049
  },
15050
- "order": 61,
15050
+ "order": 59,
15051
15051
  "level": 0
15052
15052
  },
15053
15053
  {
@@ -15142,7 +15142,7 @@
15142
15142
  "filename": "useTooltip.js",
15143
15143
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/popovers"
15144
15144
  },
15145
- "order": 96,
15145
+ "order": 82,
15146
15146
  "level": 0
15147
15147
  },
15148
15148
  {
@@ -15435,7 +15435,7 @@
15435
15435
  "filename": "api.js",
15436
15436
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
15437
15437
  },
15438
- "order": 87,
15438
+ "order": 118,
15439
15439
  "level": 0
15440
15440
  },
15441
15441
  {
@@ -15451,7 +15451,7 @@
15451
15451
  "filename": "api.js",
15452
15452
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
15453
15453
  },
15454
- "order": 88,
15454
+ "order": 119,
15455
15455
  "level": 0
15456
15456
  },
15457
15457
  {
@@ -15485,7 +15485,7 @@
15485
15485
  "filename": "useTableData.js",
15486
15486
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
15487
15487
  },
15488
- "order": 45,
15488
+ "order": 43,
15489
15489
  "level": 0
15490
15490
  },
15491
15491
  {
@@ -15502,7 +15502,7 @@
15502
15502
  "filename": "api.js",
15503
15503
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
15504
15504
  },
15505
- "order": 86,
15505
+ "order": 117,
15506
15506
  "level": 0
15507
15507
  },
15508
15508
  {
@@ -15519,7 +15519,7 @@
15519
15519
  "filename": "api.js",
15520
15520
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
15521
15521
  },
15522
- "order": 89,
15522
+ "order": 120,
15523
15523
  "level": 0
15524
15524
  },
15525
15525
  {
@@ -15536,7 +15536,7 @@
15536
15536
  "filename": "index.js",
15537
15537
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/breakpoints"
15538
15538
  },
15539
- "order": 128,
15539
+ "order": 126,
15540
15540
  "level": 0
15541
15541
  },
15542
15542
  {
@@ -15598,7 +15598,7 @@
15598
15598
  "filename": "useWindowResize.js",
15599
15599
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
15600
15600
  },
15601
- "order": 32,
15601
+ "order": 30,
15602
15602
  "level": 0
15603
15603
  },
15604
15604
  {
@@ -15615,7 +15615,7 @@
15615
15615
  "filename": "useTableData.js",
15616
15616
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
15617
15617
  },
15618
- "order": 40,
15618
+ "order": 38,
15619
15619
  "level": 0
15620
15620
  },
15621
15621
  {
@@ -15632,7 +15632,7 @@
15632
15632
  "filename": "useTableData.js",
15633
15633
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
15634
15634
  },
15635
- "order": 41,
15635
+ "order": 39,
15636
15636
  "level": 0
15637
15637
  },
15638
15638
  {
@@ -15649,7 +15649,7 @@
15649
15649
  "filename": "useTableData.js",
15650
15650
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
15651
15651
  },
15652
- "order": 42,
15652
+ "order": 40,
15653
15653
  "level": 0
15654
15654
  },
15655
15655
  {
@@ -15666,7 +15666,7 @@
15666
15666
  "filename": "useTableData.js",
15667
15667
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
15668
15668
  },
15669
- "order": 43,
15669
+ "order": 41,
15670
15670
  "level": 0
15671
15671
  },
15672
15672
  {
@@ -15683,7 +15683,7 @@
15683
15683
  "filename": "useTableData.js",
15684
15684
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
15685
15685
  },
15686
- "order": 44,
15686
+ "order": 42,
15687
15687
  "level": 0
15688
15688
  },
15689
15689
  {
@@ -15723,7 +15723,7 @@
15723
15723
  "filename": "useIcon.js",
15724
15724
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
15725
15725
  },
15726
- "order": 54,
15726
+ "order": 52,
15727
15727
  "level": 0
15728
15728
  },
15729
15729
  {
@@ -15754,7 +15754,7 @@
15754
15754
  "filename": "api.js",
15755
15755
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
15756
15756
  },
15757
- "order": 90,
15757
+ "order": 121,
15758
15758
  "level": 0
15759
15759
  },
15760
15760
  {
@@ -15780,7 +15780,7 @@
15780
15780
  "filename": "api.js",
15781
15781
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
15782
15782
  },
15783
- "order": 91,
15783
+ "order": 122,
15784
15784
  "level": 0
15785
15785
  },
15786
15786
  {
@@ -15796,7 +15796,7 @@
15796
15796
  "filename": "api.js",
15797
15797
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
15798
15798
  },
15799
- "order": 92,
15799
+ "order": 123,
15800
15800
  "level": 0
15801
15801
  },
15802
15802
  {
@@ -15822,7 +15822,7 @@
15822
15822
  "filename": "api.js",
15823
15823
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
15824
15824
  },
15825
- "order": 93,
15825
+ "order": 124,
15826
15826
  "level": 0
15827
15827
  },
15828
15828
  {
@@ -16177,7 +16177,7 @@
16177
16177
  "filename": "useUluFloating.js",
16178
16178
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
16179
16179
  },
16180
- "order": 35,
16180
+ "order": 33,
16181
16181
  "level": 0
16182
16182
  },
16183
16183
  {
@@ -16264,7 +16264,7 @@
16264
16264
  "filename": "useUluFloating.js",
16265
16265
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/composables"
16266
16266
  },
16267
- "order": 36,
16267
+ "order": 34,
16268
16268
  "level": 0
16269
16269
  },
16270
16270
  {
@@ -16305,7 +16305,7 @@
16305
16305
  "filename": "index.js",
16306
16306
  "path": "/Users/joescherben/Personal/Projects/ULU/frontend-vue/lib/plugins/modals"
16307
16307
  },
16308
- "order": 83,
16308
+ "order": 114,
16309
16309
  "level": 0
16310
16310
  }
16311
16311
  ],
@@ -55,7 +55,7 @@
55
55
  </div>
56
56
  <div
57
57
  v-if="$slots.footer"
58
- class="site-modal__footer"
58
+ class="modal__footer"
59
59
  :class="classes.footer"
60
60
  >
61
61
  <slot name="footer" :close="close"/>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ulu/frontend-vue",
3
- "version": "0.6.15",
3
+ "version": "0.6.16",
4
4
  "description": "A modular, tree-shakeable Vue 3 component library for the Ulu Frontend theming system, plus general utilities for Vue development",
5
5
  "type": "module",
6
6
  "files": [