@wix/zero-config-implementation 1.19.0 → 1.21.0

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,8 @@
1
+ import { DataItem } from '@wix/zero-config-schema';
1
2
  import { Result } from 'neverthrow';
2
3
  import { ParseError } from '../errors';
3
4
  import { TrackingStores } from '../information-extractors/react';
4
5
  import { PropInfo } from '../information-extractors/ts/types';
5
- import { DataItem } from '../schema';
6
6
  type ParseErrorInstance = InstanceType<typeof ParseError>;
7
7
  /**
8
8
  * Converts a single PropInfo to a DataItem for the Wix Editor component schema.
@@ -1,3 +1,3 @@
1
+ import { EditorReactComponent } from '@wix/zero-config-schema';
1
2
  import { ComponentInfoWithCss } from '../index';
2
- import { EditorReactComponent } from '../schema';
3
3
  export declare function toEditorReactComponent(component: ComponentInfoWithCss): EditorReactComponent;
package/dist/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
+ import { EditorReactComponent } from '@wix/zero-config-schema';
1
2
  import { ResultAsync } from 'neverthrow';
2
- import { EditorReactComponent } from './schema';
3
3
  import { NotFoundError, ParseError } from './errors';
4
4
  import { RunExtractorsOptions } from './information-extractors/react';
5
5
  export type { ComponentInfoWithCss, ExtractedCssInfo, ExtractionWarning, ProcessComponentResult, } from './manifest-pipeline';
6
- export type { EditorReactComponent } from './schema';
6
+ export type { EditorReactComponent } from '@wix/zero-config-schema';
7
7
  export interface ManifestResult {
8
8
  component: EditorReactComponent;
9
9
  errors: ExtractionError[];