@plasmicapp/react-web 0.2.366 → 0.2.368

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,5 +1,5 @@
1
1
  import React from "react";
2
2
  import "../styles/plasmic.css";
3
- export declare const Base: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, import("../render/PlasmicImg").PlasmicImgProps & React.RefAttributes<HTMLElement>>;
4
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0a347bb9").R, import("../render/PlasmicImg").PlasmicImgProps & React.RefAttributes<HTMLElement>>;
3
+ export declare const Base: any;
4
+ declare const _default: ComponentMeta<React.ForwardRefExoticComponent<import("../render/PlasmicImg").PlasmicImgProps & React.RefAttributes<HTMLElement>>>;
5
5
  export default _default;
@@ -1,78 +1,27 @@
1
- import React from "react";
2
1
  declare const _default: {
3
2
  title: string;
4
3
  };
5
4
  export default _default;
6
- interface CounterArgs {
7
- stateType?: "private" | "readonly" | "writable";
8
- showCount?: boolean;
9
- onChange?: (val: number) => void;
10
- initCount?: number;
11
- useInitalFunction?: boolean;
12
- "data-testid"?: string;
13
- title?: React.ReactNode;
14
- }
15
- export declare const PrivateCounter: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, CounterArgs>;
16
- export declare const ReadonlyCounter: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, {
17
- counterStateType?: "readonly" | "writable" | undefined;
18
- }>;
19
- export declare const WritableCounter: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, {
20
- counterStateType?: "readonly" | "writable" | undefined;
21
- }>;
22
- export declare const DynamicInitCount: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, import("@storybook/types").Args>;
23
- export declare const ResetInput: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, {
24
- peopleList: {
25
- firstName: string;
26
- lastName: string;
27
- }[];
28
- }>;
29
- export declare const RepeatedStates: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, {
30
- size: number;
31
- }>;
32
- export declare const NestedRepeatedCounter: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, {}>;
33
- export declare const MatrixRepeatedCounter: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, {}>;
34
- export declare const InitFuncFromInternalContextData: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, {
35
- products: {
36
- price: number;
37
- name: string;
38
- }[];
39
- }>;
40
- export declare const InitFuncFromRootContextData: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, {
41
- products: {
42
- price: number;
43
- name: string;
44
- }[];
45
- }>;
46
- export declare const InitFuncFromInternalContextDataWithDelay: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, {
47
- products: {
48
- price: number;
49
- name: string;
50
- }[];
51
- }>;
52
- export declare const RepeatedImplicitState: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, {}>;
53
- interface Person {
54
- firstName: string;
55
- lastName: string;
56
- nicknames: string[];
57
- }
58
- export declare const FormBuilder: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, {
59
- people: Person[];
60
- }>;
61
- export declare const FormBuilderImplicitStates: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, {
62
- people: Person[];
63
- }>;
64
- export declare const StateCellIsArray: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, {
65
- people: Person[];
66
- }>;
67
- export declare const StateCellIsMatrix: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, {
68
- board: number[][];
69
- }>;
70
- export declare const IsOnChangePropImmediatelyFired: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, {}>;
71
- export declare const IsOnChangeFiredWithCorrectInitialValue: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, {}>;
72
- export declare const ImmutableStateCells: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, {
73
- people: Person[];
74
- }>;
75
- export declare const InCanvasDollarState: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, {}>;
76
- export declare const AddDeleteSpecsInCanvas: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, {}>;
77
- export declare const TodoApp: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, {}>;
78
- export declare const CycleInStateInitialization: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, {}>;
5
+ export declare const PrivateCounter: any;
6
+ export declare const ReadonlyCounter: any;
7
+ export declare const WritableCounter: any;
8
+ export declare const DynamicInitCount: any;
9
+ export declare const ResetInput: any;
10
+ export declare const RepeatedStates: any;
11
+ export declare const NestedRepeatedCounter: any;
12
+ export declare const MatrixRepeatedCounter: any;
13
+ export declare const InitFuncFromInternalContextData: any;
14
+ export declare const InitFuncFromRootContextData: any;
15
+ export declare const InitFuncFromInternalContextDataWithDelay: any;
16
+ export declare const RepeatedImplicitState: any;
17
+ export declare const FormBuilder: any;
18
+ export declare const FormBuilderImplicitStates: any;
19
+ export declare const StateCellIsArray: any;
20
+ export declare const StateCellIsMatrix: any;
21
+ export declare const IsOnChangePropImmediatelyFired: any;
22
+ export declare const IsOnChangeFiredWithCorrectInitialValue: any;
23
+ export declare const ImmutableStateCells: any;
24
+ export declare const InCanvasDollarState: any;
25
+ export declare const AddDeleteSpecsInCanvas: any;
26
+ export declare const TodoApp: any;
27
+ export declare const CycleInStateInitialization: any;