@dev-blinq/ui-systems 1.0.97 → 1.0.99

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.
@@ -8,7 +8,7 @@ export declare const isParam: (text: string) => boolean;
8
8
  export declare const preventedKeys: string[];
9
9
  export declare const stepKeywords: readonly ["Given", "When", "Then"];
10
10
  export declare const fullStepKeywords: readonly ["Given", "When", "Then", "And", "But"];
11
- export interface Step {
11
+ export interface StepProps {
12
12
  keyword: string;
13
13
  text: string;
14
14
  type: "step" | "comment";
@@ -27,7 +27,7 @@ export interface ParamDataset {
27
27
  export interface GherkinObject {
28
28
  featureName: string;
29
29
  scenarioName: string;
30
- steps: Step[];
30
+ steps: StepProps[];
31
31
  params: ParamDataset[];
32
32
  }
33
33
  export declare function parseGherkin(gherkinString: string): GherkinObject;
@@ -1 +1,9 @@
1
- export * from './Steps';
1
+ export * from './Steps/DataPanel/DataPanel';
2
+ export * from './Steps/Header';
3
+ export * from './Steps/StepIcon';
4
+ export * from './Steps/StepKeyword';
5
+ export * from './Steps/StepTitle';
6
+ export * from './Steps/StepTitleEditInput';
7
+ export * from './Steps/Step';
8
+ export * from './Steps/index.style';
9
+ export * from './Steps/util';