Skip to content

Commit 4caaa70

Browse files
committed
chore: update zod v3 imports to use standard
1 parent baed39f commit 4caaa70

File tree

28 files changed

+28
-28
lines changed

28 files changed

+28
-28
lines changed

apps/playground/src/instruments/examples/form/Form-Reference/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable perfectionist/sort-objects */
22

33
import { defineInstrument } from '/runtime/v1/@opendatacapture/runtime-core';
4-
import { z } from '/runtime/v1/zod@3.23.x';
4+
import { z } from '/runtime/v1/[email protected]';
55

66
export default defineInstrument({
77
kind: 'FORM',

apps/playground/src/instruments/examples/form/Form-With-Computed-Measures/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import { defineInstrument } from '/runtime/v1/@opendatacapture/runtime-core';
44
import { mean } from '/runtime/v1/[email protected]';
5-
import { z } from '/runtime/v1/zod@3.23.x';
5+
import { z } from '/runtime/v1/[email protected]';
66

77
const CURRENT_YEAR = new Date().getFullYear();
88
const LAST_YEAR = CURRENT_YEAR - 1;

apps/playground/src/instruments/examples/form/Form-With-Groups/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable perfectionist/sort-objects */
22

33
import { defineInstrument } from '/runtime/v1/@opendatacapture/runtime-core';
4-
import { z } from '/runtime/v1/zod@3.23.x';
4+
import { z } from '/runtime/v1/[email protected]';
55

66
export default defineInstrument({
77
kind: 'FORM',

apps/playground/src/instruments/examples/form/Multilingual-Form-With-Dynamic-Field/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable perfectionist/sort-objects */
22

33
import { defineInstrument } from '/runtime/v1/@opendatacapture/runtime-core';
4-
import { z } from '/runtime/v1/zod@3.23.x';
4+
import { z } from '/runtime/v1/[email protected]';
55

66
export default defineInstrument({
77
kind: 'FORM',

apps/playground/src/instruments/examples/interactive/Interactive-With-CSS/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable perfectionist/sort-objects */
22

33
import { defineInstrument } from '/runtime/v1/@opendatacapture/runtime-core';
4-
import { z } from '/runtime/v1/zod@3.23.x';
4+
import { z } from '/runtime/v1/[email protected]';
55

66
import logoSrc from './logo.png';
77

apps/playground/src/instruments/examples/interactive/Interactive-With-Embedded-Media/Task.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { useEffect, useState } from '/runtime/v1/[email protected]';
22
import { match } from '/runtime/v1/[email protected]';
3-
import { z } from '/runtime/v1/zod@3.23.x';
3+
import { z } from '/runtime/v1/[email protected]';
44

55
import { CatVideo } from './CatVideo.tsx';
66
import { CowAudio } from './CowAudio.tsx';

apps/playground/src/instruments/examples/interactive/Interactive-With-JSPsych/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import PreloadPlugin from '/runtime/v1/@jspsych/[email protected]';
44
import { defineInstrument } from '/runtime/v1/@opendatacapture/runtime-core';
55
import { initJsPsych } from '/runtime/v1/[email protected]';
66
import type { TimelineArray } from '/runtime/v1/[email protected]';
7-
import { z } from '/runtime/v1/zod@3.23.x';
7+
import { z } from '/runtime/v1/[email protected]';
88

99
import blue from './blue.png';
1010
import orange from './orange.png';

apps/playground/src/instruments/examples/interactive/Interactive-With-Legacy-Script/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable perfectionist/sort-objects */
22

33
import { defineInstrument } from '/runtime/v1/@opendatacapture/runtime-core';
4-
import { z } from '/runtime/v1/zod@3.23.x';
4+
import { z } from '/runtime/v1/[email protected]';
55

66
import './legacy.js';
77

apps/playground/src/instruments/examples/interactive/Interactive-With-React/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { defineInstrument } from '/runtime/v1/@opendatacapture/runtime-core';
22
import { createRoot } from '/runtime/v1/[email protected]/client.js';
3-
import { z } from '/runtime/v1/zod@3.23.x';
3+
import { z } from '/runtime/v1/[email protected]';
44

55
import { App } from './App.tsx';
66

apps/playground/src/instruments/examples/interactive/Interactive-With-Vanilla/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { defineInstrument } from '/runtime/v1/@opendatacapture/runtime-core';
2-
import { z } from '/runtime/v1/zod@3.23.x';
2+
import { z } from '/runtime/v1/[email protected]';
33

44
import './styles.css';
55

0 commit comments

Comments
 (0)