@maas/vue-equipment 1.0.0-beta.41 → 1.0.0-beta.42

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@maas/vue-equipment/nuxt",
3
3
  "configKey": "vueEquipment",
4
- "version": "1.0.0-beta.40",
4
+ "version": "1.0.0-beta.41",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "unknown"
@@ -141,7 +141,7 @@ functions.map((f) => f.name);
141
141
  const plugins = functions.filter((p) => p.package === "plugins");
142
142
  const composables = functions.filter((p) => p.package === "composables");
143
143
 
144
- const module = defineNuxtModule({
144
+ const module$1 = defineNuxtModule({
145
145
  meta: {
146
146
  name: "@maas/vue-equipment/nuxt",
147
147
  configKey: "vueEquipment"
@@ -194,4 +194,4 @@ const module = defineNuxtModule({
194
194
  }
195
195
  });
196
196
 
197
- export { module as default };
197
+ export { module$1 as default };
@@ -19,9 +19,9 @@
19
19
  @leave="onLeave"
20
20
  @after-leave="onAfterLeave"
21
21
  >
22
- <primitive v-show="view?.active" :as-child="asChild">
22
+ <vue-primitive v-show="view?.active" :as-child="asChild">
23
23
  <slot :view-active="view?.active" />
24
- </primitive>
24
+ </vue-primitive>
25
25
  </transition>
26
26
  </auto-size>
27
27
  </div>
@@ -31,7 +31,7 @@
31
31
  import { inject, computed } from "vue";
32
32
  import { defu } from "defu";
33
33
  import { AutoSize } from "@maas/vue-autosize";
34
- import { Primitive } from "@maas/vue-primitive";
34
+ import { VuePrimitive } from "@maas/vue-primitive";
35
35
  import {
36
36
  useMagicError
37
37
  } from "@maas/vue-equipment/plugins/MagicError";
@@ -1,12 +1,16 @@
1
1
  <template>
2
- <primitive :data-id="id" :as-child="asChild" class="magic-accordion-provider">
2
+ <vue-primitive
3
+ :data-id="id"
4
+ :as-child="asChild"
5
+ class="magic-accordion-provider"
6
+ >
3
7
  <slot />
4
- </primitive>
8
+ </vue-primitive>
5
9
  </template>
6
10
 
7
11
  <script setup>
8
12
  import { onBeforeUnmount, provide } from "vue";
9
- import { Primitive } from "@maas/vue-primitive";
13
+ import { VuePrimitive } from "@maas/vue-primitive";
10
14
  import { useAccordionState } from "../composables/private/useAccordionState";
11
15
  import { MagicAccordionInstanceId } from "../symbols";
12
16
  const { id, asChild, options } = defineProps({
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <primitive
2
+ <vue-primitive
3
3
  ref="el"
4
4
  :as-child="asChild"
5
5
  :data-id="`${mappedViewId}-trigger`"
@@ -10,12 +10,12 @@
10
10
  @click="onClick"
11
11
  >
12
12
  <slot :view-active="view?.active" />
13
- </primitive>
13
+ </vue-primitive>
14
14
  </template>
15
15
 
16
16
  <script setup>
17
17
  import { useTemplateRef, inject, computed, toValue } from "vue";
18
- import { Primitive } from "@maas/vue-primitive";
18
+ import { VuePrimitive } from "@maas/vue-primitive";
19
19
  import { onKeyStroke } from "@vueuse/core";
20
20
  import {
21
21
  useMagicError
@@ -1,17 +1,17 @@
1
1
  <template>
2
- <primitive
2
+ <vue-primitive
3
3
  :as-child="asChild"
4
4
  :data-id="mappedId"
5
5
  :data-active="mappedActive"
6
6
  class="magic-accordion-view"
7
7
  >
8
8
  <slot :view-active="mappedActive" />
9
- </primitive>
9
+ </vue-primitive>
10
10
  </template>
11
11
 
12
12
  <script setup>
13
13
  import { computed, inject, onBeforeUnmount, provide, useId } from "vue";
14
- import { Primitive } from "@maas/vue-primitive";
14
+ import { VuePrimitive } from "@maas/vue-primitive";
15
15
  import {
16
16
  useMagicError
17
17
  } from "@maas/vue-equipment/plugins/MagicError";
@@ -1,12 +1,12 @@
1
1
  import { type ComputedRef, type MaybeRef, type Ref } from 'vue';
2
- import { Primitive } from '@maas/vue-primitive';
2
+ import { VuePrimitive } from '@maas/vue-primitive';
3
3
  import type { Interaction } from '../../types/index.js';
4
4
  interface UseAccordionTriggerArgs {
5
5
  instanceId: MaybeRef<string>;
6
6
  viewId: string;
7
7
  trigger: Interaction;
8
8
  mappedDisabled: ComputedRef<boolean>;
9
- elRef: Ref<InstanceType<typeof Primitive> | null>;
9
+ elRef: Ref<InstanceType<typeof VuePrimitive> | null>;
10
10
  }
11
11
  export declare function useAccordionTrigger(args: UseAccordionTriggerArgs): {
12
12
  onMouseenter: () => void;
@@ -1,5 +1,5 @@
1
1
  import {} from "vue";
2
- import { Primitive } from "@maas/vue-primitive";
2
+ import { VuePrimitive } from "@maas/vue-primitive";
3
3
  import { useFocus } from "@vueuse/core";
4
4
  import { useAccordionView } from "./useAccordionView.mjs";
5
5
  export function useAccordionTrigger(args) {
@@ -1,13 +1,17 @@
1
1
  <template>
2
- <primitive :data-id="id" :as-child="asChild" class="magic-command-provider">
2
+ <vue-primitive
3
+ :data-id="id"
4
+ :as-child="asChild"
5
+ class="magic-command-provider"
6
+ >
3
7
  <slot />
4
- </primitive>
8
+ </vue-primitive>
5
9
  </template>
6
10
 
7
11
  <script setup>
8
12
  import { shallowRef, provide, watch, onBeforeUnmount } from "vue";
9
13
  import { useMagicKeys, usePointer } from "@vueuse/core";
10
- import { Primitive } from "@maas/vue-primitive";
14
+ import { VuePrimitive } from "@maas/vue-primitive";
11
15
  import { useMagicError } from "@maas/vue-equipment/plugins/MagicError";
12
16
  import { createDefu } from "defu";
13
17
  import { useCommandState } from "../composables/private/useCommandState";
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <primitive
2
+ <vue-primitive
3
3
  ref="el"
4
4
  :data-id="`${mappedViewId}-trigger`"
5
5
  :data-active="mappedActive"
@@ -10,12 +10,12 @@
10
10
  @mouseenter="onMouseenter"
11
11
  >
12
12
  <slot :view-active="view?.active" :trigger-disabled="mappedDisabled" />
13
- </primitive>
13
+ </vue-primitive>
14
14
  </template>
15
15
 
16
16
  <script setup>
17
17
  import { computed, inject, useTemplateRef, toValue, watch } from "vue";
18
- import { Primitive } from "@maas/vue-primitive";
18
+ import { VuePrimitive } from "@maas/vue-primitive";
19
19
  import {
20
20
  useMagicError
21
21
  } from "@maas/vue-equipment/plugins/MagicError";
@@ -1,5 +1,5 @@
1
1
  import { type ComputedRef, type MaybeRef, type Ref } from 'vue';
2
- import { Primitive } from '@maas/vue-primitive';
2
+ import { VuePrimitive } from '@maas/vue-primitive';
3
3
  import type { Action, Interaction } from '../../types/index.js';
4
4
  type UseCommandTriggerArgs = {
5
5
  instanceId: MaybeRef<string>;
@@ -8,7 +8,7 @@ type UseCommandTriggerArgs = {
8
8
  mappedActive?: ComputedRef<boolean>;
9
9
  trigger: Interaction[];
10
10
  action: Action;
11
- elRef: Ref<InstanceType<typeof Primitive> | null>;
11
+ elRef: Ref<InstanceType<typeof VuePrimitive> | null>;
12
12
  };
13
13
  export declare function useCommandTrigger(args: UseCommandTriggerArgs): {
14
14
  onMouseenter: () => Promise<void>;
@@ -1,5 +1,5 @@
1
1
  import { nextTick } from "vue";
2
- import { Primitive } from "@maas/vue-primitive";
2
+ import { VuePrimitive } from "@maas/vue-primitive";
3
3
  import { useFocus } from "@vueuse/core";
4
4
  import { useCommandView } from "./useCommandView.mjs";
5
5
  import { useCommandState } from "./useCommandState.mjs";
@@ -74,26 +74,26 @@ export declare function useMagicEmitter(): {
74
74
  } & Omit<{
75
75
  beforeSnap: {
76
76
  id: string;
77
- snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
77
+ snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
78
78
  } | {
79
79
  id: string;
80
- snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
80
+ snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
81
81
  };
82
82
  snapTo: {
83
83
  id: string;
84
- snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
84
+ snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
85
85
  duration?: number;
86
86
  } | {
87
87
  id: string;
88
- snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
88
+ snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
89
89
  duration?: number;
90
90
  };
91
91
  afterSnap: {
92
92
  id: string;
93
- snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
93
+ snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
94
94
  } | {
95
95
  id: string;
96
- snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
96
+ snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
97
97
  };
98
98
  beforeDrag: {
99
99
  id: string;
@@ -341,26 +341,26 @@ export declare function useMagicEmitter(): {
341
341
  } & Omit<{
342
342
  beforeSnap: {
343
343
  id: string;
344
- snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
344
+ snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
345
345
  } | {
346
346
  id: string;
347
- snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
347
+ snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
348
348
  };
349
349
  snapTo: {
350
350
  id: string;
351
- snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
351
+ snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
352
352
  duration?: number;
353
353
  } | {
354
354
  id: string;
355
- snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
355
+ snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
356
356
  duration?: number;
357
357
  };
358
358
  afterSnap: {
359
359
  id: string;
360
- snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
360
+ snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
361
361
  } | {
362
362
  id: string;
363
- snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
363
+ snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
364
364
  };
365
365
  beforeDrag: {
366
366
  id: string;
@@ -610,26 +610,26 @@ export declare function useMagicEmitter(): {
610
610
  } & Omit<{
611
611
  beforeSnap: {
612
612
  id: string;
613
- snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
613
+ snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
614
614
  } | {
615
615
  id: string;
616
- snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
616
+ snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
617
617
  };
618
618
  snapTo: {
619
619
  id: string;
620
- snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
620
+ snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
621
621
  duration?: number;
622
622
  } | {
623
623
  id: string;
624
- snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
624
+ snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
625
625
  duration?: number;
626
626
  };
627
627
  afterSnap: {
628
628
  id: string;
629
- snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
629
+ snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
630
630
  } | {
631
631
  id: string;
632
- snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
632
+ snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
633
633
  };
634
634
  beforeDrag: {
635
635
  id: string;
@@ -877,26 +877,26 @@ export declare function useMagicEmitter(): {
877
877
  } & Omit<{
878
878
  beforeSnap: {
879
879
  id: string;
880
- snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
880
+ snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
881
881
  } | {
882
882
  id: string;
883
- snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
883
+ snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
884
884
  };
885
885
  snapTo: {
886
886
  id: string;
887
- snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
887
+ snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
888
888
  duration?: number;
889
889
  } | {
890
890
  id: string;
891
- snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
891
+ snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
892
892
  duration?: number;
893
893
  };
894
894
  afterSnap: {
895
895
  id: string;
896
- snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
896
+ snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
897
897
  } | {
898
898
  id: string;
899
- snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
899
+ snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
900
900
  };
901
901
  beforeDrag: {
902
902
  id: string;
@@ -1146,26 +1146,26 @@ export declare function useMagicEmitter(): {
1146
1146
  } & Omit<{
1147
1147
  beforeSnap: {
1148
1148
  id: string;
1149
- snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
1149
+ snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
1150
1150
  } | {
1151
1151
  id: string;
1152
- snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
1152
+ snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
1153
1153
  };
1154
1154
  snapTo: {
1155
1155
  id: string;
1156
- snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
1156
+ snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
1157
1157
  duration?: number;
1158
1158
  } | {
1159
1159
  id: string;
1160
- snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
1160
+ snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
1161
1161
  duration?: number;
1162
1162
  };
1163
1163
  afterSnap: {
1164
1164
  id: string;
1165
- snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
1165
+ snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
1166
1166
  } | {
1167
1167
  id: string;
1168
- snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
1168
+ snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
1169
1169
  };
1170
1170
  beforeDrag: {
1171
1171
  id: string;
@@ -1413,26 +1413,26 @@ export declare function useMagicEmitter(): {
1413
1413
  } & Omit<{
1414
1414
  beforeSnap: {
1415
1415
  id: string;
1416
- snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
1416
+ snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
1417
1417
  } | {
1418
1418
  id: string;
1419
- snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
1419
+ snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
1420
1420
  };
1421
1421
  snapTo: {
1422
1422
  id: string;
1423
- snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
1423
+ snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
1424
1424
  duration?: number;
1425
1425
  } | {
1426
1426
  id: string;
1427
- snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
1427
+ snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
1428
1428
  duration?: number;
1429
1429
  };
1430
1430
  afterSnap: {
1431
1431
  id: string;
1432
- snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
1432
+ snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
1433
1433
  } | {
1434
1434
  id: string;
1435
- snapPoint: import("../../../MagicDrawer/src/types/index.js").DrawerSnapPoint;
1435
+ snapPoint: import("../../../MagicDraggable/src/types/index.js").DraggableSnapPoint;
1436
1436
  };
1437
1437
  beforeDrag: {
1438
1438
  id: string;
@@ -1,12 +1,12 @@
1
1
  <template>
2
- <primitive
2
+ <vue-primitive
3
3
  ref="el"
4
4
  :as-child="asChild"
5
5
  :data-id="id"
6
6
  class="magic-menu-provider"
7
7
  >
8
8
  <slot />
9
- </primitive>
9
+ </vue-primitive>
10
10
  </template>
11
11
 
12
12
  <script setup>
@@ -19,7 +19,7 @@ import {
19
19
  onBeforeUnmount
20
20
  } from "vue";
21
21
  import { onClickOutside, onKeyStroke, usePointer } from "@vueuse/core";
22
- import { Primitive } from "@maas/vue-primitive";
22
+ import { VuePrimitive } from "@maas/vue-primitive";
23
23
  import { defu } from "defu";
24
24
  import { useMenuState } from "../composables/private/useMenuState";
25
25
  import { useMenuView } from "../composables/private/useMenuView";
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <primitive
2
+ <vue-primitive
3
3
  class="magic-menu-remote"
4
4
  :data-id="`${channelId}-remote`"
5
5
  :data-disabled="disabled"
@@ -9,12 +9,12 @@
9
9
  @mouseenter="onMouseenter"
10
10
  >
11
11
  <slot :channel-active="channel?.active" :remote-disabled="disabled" />
12
- </primitive>
12
+ </vue-primitive>
13
13
  </template>
14
14
 
15
15
  <script setup>
16
16
  import { computed, inject, watch } from "vue";
17
- import { Primitive } from "@maas/vue-primitive";
17
+ import { VuePrimitive } from "@maas/vue-primitive";
18
18
  import {
19
19
  useMagicError
20
20
  } from "@maas/vue-equipment/plugins/MagicError";
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <primitive
2
+ <vue-primitive
3
3
  ref="el"
4
4
  :data-id="`${mappedViewId}-trigger`"
5
5
  :data-active="view?.active"
@@ -12,12 +12,12 @@
12
12
  @mouseenter="onMouseenter"
13
13
  >
14
14
  <slot :view-active="view?.active" :trigger-disabled="mappedDisabled" />
15
- </primitive>
15
+ </vue-primitive>
16
16
  </template>
17
17
 
18
18
  <script setup>
19
19
  import { computed, inject, useTemplateRef, toValue, watch } from "vue";
20
- import { Primitive } from "@maas/vue-primitive";
20
+ import { VuePrimitive } from "@maas/vue-primitive";
21
21
  import {
22
22
  useMagicError
23
23
  } from "@maas/vue-equipment/plugins/MagicError";
@@ -1,5 +1,5 @@
1
1
  import { type ComputedRef, type MaybeRef, type Ref } from 'vue';
2
- import { Primitive } from '@maas/vue-primitive';
2
+ import { VuePrimitive } from '@maas/vue-primitive';
3
3
  import type { Interaction } from '../../types/index.js';
4
4
  type UseMenuTriggerArgs = {
5
5
  instanceId: MaybeRef<string>;
@@ -7,7 +7,7 @@ type UseMenuTriggerArgs = {
7
7
  itemId?: string;
8
8
  mappedDisabled: ComputedRef<boolean>;
9
9
  mappedTrigger: ComputedRef<Interaction[]>;
10
- elRef: Ref<InstanceType<typeof Primitive> | null>;
10
+ elRef: Ref<InstanceType<typeof VuePrimitive> | null>;
11
11
  };
12
12
  export declare function useMenuTrigger(args: UseMenuTriggerArgs): {
13
13
  onMouseenter: () => void;
@@ -1,5 +1,5 @@
1
1
  import {} from "vue";
2
- import { Primitive } from "@maas/vue-primitive";
2
+ import { VuePrimitive } from "@maas/vue-primitive";
3
3
  import { useMagicKeys, useFocus } from "@vueuse/core";
4
4
  import { useMenuView } from "./useMenuView.mjs";
5
5
  import { useMenuState } from "./useMenuState.mjs";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@maas/vue-equipment",
3
3
  "description": "Our Frontend Toolkit, Free and Open Source",
4
- "version": "1.0.0-beta.41",
4
+ "version": "1.0.0-beta.42",
5
5
  "contributors": [
6
6
  {
7
7
  "name": "Robin Scholz",
@@ -60,7 +60,7 @@
60
60
  "@floating-ui/vue": "^1",
61
61
  "@maas/magic-timer": "^1",
62
62
  "@maas/vue-autosize": "^1",
63
- "@maas/vue-primitive": "^1",
63
+ "@maas/vue-primitive": "^1.4",
64
64
  "@nuxt/kit": ">=3",
65
65
  "@vueuse/core": ">=12",
66
66
  "@vueuse/integrations": ">=12",