@up42/up-components 0.10.9 → 0.10.10
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.
|
@@ -21,4 +21,4 @@ export declare type EmptyStateProps<C extends React.ElementType = 'div'> = BaseP
|
|
|
21
21
|
/**
|
|
22
22
|
* Documentation: https://up-components.up42.dev/?path=/docs/patterns-emptystate
|
|
23
23
|
*/
|
|
24
|
-
export declare const EmptyState: <C extends React.ElementType<any>>({ icon: Icon, title, subTitle, action, ...props }: EmptyStateProps<C>) => JSX.Element;
|
|
24
|
+
export declare const EmptyState: <C extends React.ElementType<any>>({ icon: Icon, title, subTitle, action, sx, ...props }: EmptyStateProps<C>) => JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -374,7 +374,7 @@ declare type EmptyStateProps<C extends React__default.ElementType = 'div'> = Bas
|
|
|
374
374
|
/**
|
|
375
375
|
* Documentation: https://up-components.up42.dev/?path=/docs/patterns-emptystate
|
|
376
376
|
*/
|
|
377
|
-
declare const EmptyState: <C extends React__default.ElementType<any>>({ icon: Icon, title, subTitle, action, ...props }: EmptyStateProps<C>) => JSX.Element;
|
|
377
|
+
declare const EmptyState: <C extends React__default.ElementType<any>>({ icon: Icon, title, subTitle, action, sx, ...props }: EmptyStateProps<C>) => JSX.Element;
|
|
378
378
|
|
|
379
379
|
declare type ModalProps = MUIGlobalOmit<ModalProps$1>;
|
|
380
380
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@up42/up-components",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.10",
|
|
4
4
|
"description": "UP42 Component Library",
|
|
5
5
|
"author": "Axel Fuhrmann axel.fuhrmann@up42.com",
|
|
6
6
|
"license": "ISC",
|
|
@@ -21,7 +21,8 @@
|
|
|
21
21
|
"storybook:build": "build-storybook",
|
|
22
22
|
"lint": "eslint src/. --fix",
|
|
23
23
|
"release": "standard-version",
|
|
24
|
-
"prepare": "husky install"
|
|
24
|
+
"prepare": "husky install",
|
|
25
|
+
"format": "prettier --write ./**/*.mdx"
|
|
25
26
|
},
|
|
26
27
|
"dependencies": {
|
|
27
28
|
"@up42/design-system-tokens": "^3.0.1",
|
|
@@ -94,7 +95,8 @@
|
|
|
94
95
|
"react-dom": "^17.0.2"
|
|
95
96
|
},
|
|
96
97
|
"lint-staged": {
|
|
97
|
-
"*.{js,tsx,ts}": "eslint --cache --fix"
|
|
98
|
+
"*.{js,tsx,ts}": "eslint --cache --fix",
|
|
99
|
+
"*.mdx": "prettier --write"
|
|
98
100
|
},
|
|
99
101
|
"homepage": "https://github.com/up42/up-components#readme",
|
|
100
102
|
"access": "private",
|