@dpuse/dpuse-shared 0.3.640 → 0.3.642

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,8 +1,5 @@
1
- import { InferOutput } from 'valibot';
2
1
  import { ComponentConfig } from '../../..';
3
- import { presenterConfigSchema } from '../presenterConfig.schema';
4
- export type PresentationConfig = InferOutput<typeof presenterConfigSchema>;
5
- export interface PresentationConfig1 extends ComponentConfig {
2
+ export interface PresentationConfig extends ComponentConfig {
6
3
  content: string;
7
4
  order: number;
8
5
  typeId: 'presenterPresentation';
@@ -12,7 +9,7 @@ export interface PresentationVisualConfig {
12
9
  views: PresentationVisualViewConfig[];
13
10
  }
14
11
  export interface PresentationVisualContentConfig {
15
- title?: {
12
+ title: {
16
13
  text: string;
17
14
  };
18
15
  data: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dpuse/dpuse-shared",
3
- "version": "0.3.640",
3
+ "version": "0.3.642",
4
4
  "description": "Common constants, types and utilities used across all DPUse projects.",
5
5
  "license": "MIT",
6
6
  "author": "Jonathan Terrell <terrell.jm@gmail.com>",