agentation-vue 0.2.4 → 0.2.5
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/AgentationVue.vue +17 -17
- package/dist/components/AgentationToolbar.vue +2 -2
- package/dist/components/ElementHighlight.vue +1 -1
- package/dist/components/SettingsPanel.vue +1 -1
- package/dist/components/SettingsPopover.vue +1 -1
- package/dist/components/VaIcon.vue +1 -1
- package/dist/components/VaIconButton.vue +1 -1
- package/package.json +1 -1
package/dist/AgentationVue.vue
CHANGED
|
@@ -5,23 +5,23 @@ import AnnotationInput from "./components/AnnotationInput.vue";
|
|
|
5
5
|
import AnnotationMarker from "./components/AnnotationMarker.vue";
|
|
6
6
|
import ElementHighlight from "./components/ElementHighlight.vue";
|
|
7
7
|
import SettingsPopover from "./components/SettingsPopover.vue";
|
|
8
|
-
import { useAnimationPause } from "./composables/useAnimationPause";
|
|
9
|
-
import { useAnnotations } from "./composables/useAnnotations";
|
|
10
|
-
import { useAreaSelect } from "./composables/useAreaSelect";
|
|
11
|
-
import { useElementDetection } from "./composables/useElementDetection";
|
|
12
|
-
import { useInteractionMode } from "./composables/useInteractionMode";
|
|
13
|
-
import { DEFAULT_SHORTCUT_CONFIG, useKeyboardShortcuts } from "./composables/useKeyboardShortcuts";
|
|
14
|
-
import { useMarkerPositions } from "./composables/useMarkerPositions";
|
|
15
|
-
import { useMultiSelect } from "./composables/useMultiSelect";
|
|
16
|
-
import { useOutputFormatter } from "./composables/useOutputFormatter";
|
|
17
|
-
import { useSettings } from "./composables/useSettings";
|
|
18
|
-
import { useTextSelection } from "./composables/useTextSelection";
|
|
19
|
-
import { VA_DATA_ATTR_SELECTOR } from "./constants";
|
|
20
|
-
import { copyToClipboard } from "./utils/clipboard";
|
|
21
|
-
import { isFixed as checkIsFixed, detectVueComponents, getAccessibilityInfo, getComputedStylesSummary, getNearbyElements, getNearbyText, getRelevantComputedStyles } from "./utils/dom-inspector";
|
|
22
|
-
import { createPortalContainer, destroyPortalContainer } from "./utils/portal";
|
|
23
|
-
import { getElementName, getElementPath } from "./utils/selectors";
|
|
24
|
-
import { boundingBoxToStyle } from "./utils/style";
|
|
8
|
+
import { useAnimationPause } from "./composables/useAnimationPause.mjs";
|
|
9
|
+
import { useAnnotations } from "./composables/useAnnotations.mjs";
|
|
10
|
+
import { useAreaSelect } from "./composables/useAreaSelect.mjs";
|
|
11
|
+
import { useElementDetection } from "./composables/useElementDetection.mjs";
|
|
12
|
+
import { useInteractionMode } from "./composables/useInteractionMode.mjs";
|
|
13
|
+
import { DEFAULT_SHORTCUT_CONFIG, useKeyboardShortcuts } from "./composables/useKeyboardShortcuts.mjs";
|
|
14
|
+
import { useMarkerPositions } from "./composables/useMarkerPositions.mjs";
|
|
15
|
+
import { useMultiSelect } from "./composables/useMultiSelect.mjs";
|
|
16
|
+
import { useOutputFormatter } from "./composables/useOutputFormatter.mjs";
|
|
17
|
+
import { useSettings } from "./composables/useSettings.mjs";
|
|
18
|
+
import { useTextSelection } from "./composables/useTextSelection.mjs";
|
|
19
|
+
import { VA_DATA_ATTR_SELECTOR } from "./constants.mjs";
|
|
20
|
+
import { copyToClipboard } from "./utils/clipboard.mjs";
|
|
21
|
+
import { isFixed as checkIsFixed, detectVueComponents, getAccessibilityInfo, getComputedStylesSummary, getNearbyElements, getNearbyText, getRelevantComputedStyles } from "./utils/dom-inspector.mjs";
|
|
22
|
+
import { createPortalContainer, destroyPortalContainer } from "./utils/portal.mjs";
|
|
23
|
+
import { getElementName, getElementPath } from "./utils/selectors.mjs";
|
|
24
|
+
import { boundingBoxToStyle } from "./utils/style.mjs";
|
|
25
25
|
const props = defineProps({
|
|
26
26
|
outputDetail: { type: String, required: false },
|
|
27
27
|
markerColor: { type: String, required: false },
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { computed, onBeforeUnmount, ref, toRef, watch } from "vue-demi";
|
|
3
|
-
import { useToolbarAutoHide } from "../composables/useToolbarAutoHide";
|
|
4
|
-
import { useToolbarDragSnap } from "../composables/useToolbarDragSnap";
|
|
3
|
+
import { useToolbarAutoHide } from "../composables/useToolbarAutoHide.mjs";
|
|
4
|
+
import { useToolbarDragSnap } from "../composables/useToolbarDragSnap.mjs";
|
|
5
5
|
import VaIcon from "./VaIcon.vue";
|
|
6
6
|
import VaIconButton from "./VaIconButton.vue";
|
|
7
7
|
const props = defineProps({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { computed } from "vue-demi";
|
|
3
|
-
import { boundingBoxToStyle } from "../utils/style";
|
|
3
|
+
import { boundingBoxToStyle } from "../utils/style.mjs";
|
|
4
4
|
import ComponentChain from "./ComponentChain.vue";
|
|
5
5
|
const props = defineProps({
|
|
6
6
|
rect: { type: [Object, null], required: true },
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { computed, toRef } from "vue-demi";
|
|
3
|
-
import { vaTooltipDirective } from "../directives/vaTooltip";
|
|
3
|
+
import { vaTooltipDirective } from "../directives/vaTooltip.mjs";
|
|
4
4
|
import VaIcon from "./VaIcon.vue";
|
|
5
5
|
import VaToggle from "./VaToggle.vue";
|
|
6
6
|
const props = defineProps({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { nextTick, onBeforeUnmount, ref, watch } from "vue-demi";
|
|
3
|
-
import { clamp } from "../utils/math";
|
|
3
|
+
import { clamp } from "../utils/math.mjs";
|
|
4
4
|
import SettingsPanel from "./SettingsPanel.vue";
|
|
5
5
|
const props = defineProps({
|
|
6
6
|
open: { type: Boolean, required: true },
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { computed } from "vue-demi";
|
|
3
|
-
import { vaTooltipDirective } from "../directives/vaTooltip";
|
|
3
|
+
import { vaTooltipDirective } from "../directives/vaTooltip.mjs";
|
|
4
4
|
const props = defineProps({
|
|
5
5
|
active: { type: Boolean, required: false, default: false },
|
|
6
6
|
disabled: { type: Boolean, required: false, default: false },
|