@storecraft/dashboard 1.0.3 → 1.0.5

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.
@@ -13,4 +13,4 @@ export type AttributesParams = import('./fields-view.jsx').FieldLeafViewParams<i
13
13
  *
14
14
  * @param {AttributesParams} params
15
15
  */
16
- declare function Attributes({ field, value, onChange, ...rest }: AttributesParams): import("react").JSX.Element;
16
+ declare function Attributes({ field, value, onChange, setError, ...rest }: AttributesParams): import("react").JSX.Element;
@@ -0,0 +1,32 @@
1
+ export default LoginLatestUpdates;
2
+ export type GithubCommit = {
3
+ sha: string;
4
+ node_id: string;
5
+ commit: {
6
+ author: {
7
+ name: string;
8
+ email: string;
9
+ date: string;
10
+ };
11
+ message: string;
12
+ url: string;
13
+ };
14
+ url: string;
15
+ html_url: string;
16
+ author: {
17
+ login: string;
18
+ id: string;
19
+ avatar_url: string;
20
+ url: string;
21
+ html_url: string;
22
+ };
23
+ };
24
+ export type GithubCommits = GithubCommit[];
25
+ export type CommitViewParams = {
26
+ commit: GithubCommit;
27
+ };
28
+ /**
29
+ *
30
+ * @param {React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>} params
31
+ */
32
+ declare function LoginLatestUpdates({ ...rest }: React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>): import("react").JSX.Element;
@@ -0,0 +1,2 @@
1
+ export function LogoText({ children, ...rest }: React.SVGProps<SVGSVGElement>): import("react").JSX.Element;
2
+ export function LogoGradient({ className }: React.SVGProps<SVGSVGElement>): import("react").JSX.Element;
@@ -19,4 +19,4 @@ export type ItemParams = {
19
19
  * } params
20
20
  *
21
21
  */
22
- declare function ProductDiscounts({ field, context, value, onChange, ...rest }: import('./fields-view.jsx').FieldLeafViewParams<import('@storecraft/core/v-api').ProductType["discounts"], import('../pages/product.jsx').Context> & React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>): import("react").JSX.Element;
22
+ declare function ProductDiscounts({ field, context, value, onChange, setError, ...rest }: import('./fields-view.jsx').FieldLeafViewParams<import('@storecraft/core/v-api').ProductType["discounts"], import('../pages/product.jsx').Context> & React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>): import("react").JSX.Element;
@@ -7,4 +7,4 @@ export default RelatedProducts;
7
7
  * } params
8
8
  *
9
9
  */
10
- declare function RelatedProducts({ field, context, value, onChange, ...rest }: import('./fields-view.jsx').FieldLeafViewParams<import('@storecraft/core/v-api').ProductType[]> & React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>): import("react").JSX.Element;
10
+ declare function RelatedProducts({ field, context, value, onChange, setError, ...rest }: import('./fields-view.jsx').FieldLeafViewParams<import('@storecraft/core/v-api').ProductType[]> & React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>): import("react").JSX.Element;
@@ -10,4 +10,4 @@ export type InternalManualTagParams = {
10
10
  * React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>
11
11
  * } param0
12
12
  */
13
- declare function TagsEdit({ field, context, value, onChange, ...rest }: import('./fields-view.jsx').FieldLeafViewParams<string[], import('../pages/index.jsx').BaseDocumentContext> & React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>): import("react").JSX.Element;
13
+ declare function TagsEdit({ field, context, value, onChange, setError, ...rest }: import('./fields-view.jsx').FieldLeafViewParams<string[], import('../pages/index.jsx').BaseDocumentContext> & React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>): import("react").JSX.Element;