@arcanewizards/timecode-toolbox 0.1.0 → 0.1.2
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/LICENSE +21 -0
- package/README.md +77 -0
- package/dist/components/frontend/index.js +1035 -442
- package/dist/components/frontend/index.mjs +884 -291
- package/dist/entrypoint.css +163 -53
- package/dist/entrypoint.js +1769 -788
- package/dist/entrypoint.js.map +4 -4
- package/dist/frontend.js +1769 -788
- package/dist/frontend.js.map +4 -4
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +346 -76
- package/dist/index.mjs +348 -69
- package/dist/start.d.mts +1 -2
- package/dist/start.d.ts +1 -2
- package/dist/start.js +349 -77
- package/dist/start.mjs +351 -70
- package/package.json +12 -6
- package/.turbo/turbo-build.log +0 -58
- package/.turbo/turbo-lint.log +0 -4
- package/CHANGELOG.md +0 -40
- package/eslint.config.mjs +0 -49
- package/src/app.tsx +0 -147
- package/src/components/backend/index.ts +0 -6
- package/src/components/backend/toolbox-root.ts +0 -119
- package/src/components/frontend/constants.ts +0 -81
- package/src/components/frontend/entrypoint.ts +0 -12
- package/src/components/frontend/frontend.css +0 -108
- package/src/components/frontend/index.tsx +0 -46
- package/src/components/frontend/toolbox/content.tsx +0 -45
- package/src/components/frontend/toolbox/context.tsx +0 -63
- package/src/components/frontend/toolbox/core/size-aware-div.tsx +0 -51
- package/src/components/frontend/toolbox/core/timecode-display.tsx +0 -592
- package/src/components/frontend/toolbox/generators.tsx +0 -318
- package/src/components/frontend/toolbox/inputs.tsx +0 -484
- package/src/components/frontend/toolbox/outputs.tsx +0 -581
- package/src/components/frontend/toolbox/preferences.ts +0 -25
- package/src/components/frontend/toolbox/root.tsx +0 -335
- package/src/components/frontend/toolbox/settings.tsx +0 -54
- package/src/components/frontend/toolbox/types.ts +0 -28
- package/src/components/frontend/toolbox/util.tsx +0 -61
- package/src/components/proto.ts +0 -420
- package/src/config.ts +0 -7
- package/src/generators/clock.tsx +0 -206
- package/src/generators/index.tsx +0 -15
- package/src/index.ts +0 -38
- package/src/inputs/artnet.tsx +0 -305
- package/src/inputs/index.tsx +0 -13
- package/src/inputs/tcnet.tsx +0 -272
- package/src/outputs/artnet.tsx +0 -170
- package/src/outputs/index.tsx +0 -11
- package/src/start.ts +0 -47
- package/src/tree.ts +0 -133
- package/src/types.ts +0 -12
- package/src/urls.ts +0 -49
- package/src/util.ts +0 -82
- package/tailwind.config.cjs +0 -7
- package/tsconfig.json +0 -10
- package/tsup.config.ts +0 -10
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { SigilAppInstance } from '@arcanewizards/sigil';
|
|
2
2
|
import { ToolkitOptions } from '@arcanejs/toolkit';
|
|
3
3
|
import pino from 'pino';
|
|
4
|
+
import { AppEdition } from '@arcanewizards/apis';
|
|
4
5
|
import z from 'zod';
|
|
5
6
|
|
|
6
7
|
type AppApi = Record<never, never>;
|
|
@@ -51,7 +52,8 @@ type TimecodeToolboxOptions = {
|
|
|
51
52
|
appProps: TimecodeToolboxAppProps;
|
|
52
53
|
toolkitOptions?: Omit<Partial<ToolkitOptions>, 'logger'>;
|
|
53
54
|
title: string;
|
|
55
|
+
edition: AppEdition;
|
|
54
56
|
};
|
|
55
|
-
declare const runTimecodeToolboxServer: ({ logger, appProps, toolkitOptions, title, }: TimecodeToolboxOptions) => SigilAppInstance<AppApi>;
|
|
57
|
+
declare const runTimecodeToolboxServer: ({ logger, appProps, toolkitOptions, title, edition, }: TimecodeToolboxOptions) => SigilAppInstance<AppApi>;
|
|
56
58
|
|
|
57
59
|
export { type AppApi, type TimecodeToolboxOptions, runTimecodeToolboxServer, urls };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { SigilAppInstance } from '@arcanewizards/sigil';
|
|
2
2
|
import { ToolkitOptions } from '@arcanejs/toolkit';
|
|
3
3
|
import pino from 'pino';
|
|
4
|
+
import { AppEdition } from '@arcanewizards/apis';
|
|
4
5
|
import z from 'zod';
|
|
5
6
|
|
|
6
7
|
type AppApi = Record<never, never>;
|
|
@@ -51,7 +52,8 @@ type TimecodeToolboxOptions = {
|
|
|
51
52
|
appProps: TimecodeToolboxAppProps;
|
|
52
53
|
toolkitOptions?: Omit<Partial<ToolkitOptions>, 'logger'>;
|
|
53
54
|
title: string;
|
|
55
|
+
edition: AppEdition;
|
|
54
56
|
};
|
|
55
|
-
declare const runTimecodeToolboxServer: ({ logger, appProps, toolkitOptions, title, }: TimecodeToolboxOptions) => SigilAppInstance<AppApi>;
|
|
57
|
+
declare const runTimecodeToolboxServer: ({ logger, appProps, toolkitOptions, title, edition, }: TimecodeToolboxOptions) => SigilAppInstance<AppApi>;
|
|
56
58
|
|
|
57
59
|
export { type AppApi, type TimecodeToolboxOptions, runTimecodeToolboxServer, urls };
|