@datapos/datapos-shared 0.3.314 → 0.3.315

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,11 +1,11 @@
1
- import { InferInput } from 'valibot';
1
+ import { InferOutput } from 'valibot';
2
2
  import { componentConfigSchema } from './componentConfig.schema';
3
3
  import { LocaleCode, LocalisedString, StatusColorId } from '../index';
4
4
  export interface Component {
5
5
  readonly config: ComponentConfig;
6
6
  }
7
7
  export { componentConfigSchema };
8
- export type ComponentConfig = InferInput<typeof componentConfigSchema>;
8
+ export type ComponentConfig = InferOutput<typeof componentConfigSchema>;
9
9
  export interface ComponentConfig1 {
10
10
  id: string;
11
11
  label: Partial<LocalisedString>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-shared",
3
- "version": "0.3.314",
3
+ "version": "0.3.315",
4
4
  "description": "A library containing common constants, types and utilities used across all Data Positioning projects.",
5
5
  "license": "MIT",
6
6
  "author": "Jonathan Terrell <terrell.jm@gmail.com>",