@mittwald/flow-react-components 0.1.0-alpha.383 → 0.1.0-alpha.385
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.
- package/CHANGELOG.md +26 -0
- package/dist/css/List.css +1 -1
- package/dist/js/List.js +545 -548
- package/dist/js/SegmentedControl.js +31 -32
- package/dist/js/all.css +1 -1
- package/dist/js/types/components/List/components/Items/components/Item/components/View/View.d.ts +2 -2
- package/dist/js/types/components/List/stories/ListItem.stories.d.ts +1 -1
- package/dist/js/types/components/List/typedList.d.ts +1 -1
- package/package.json +4 -4
- package/dist/js/getContainerBreakpointSizeClassName-BrcFDcCY.js +0 -6
package/dist/js/types/components/List/components/Items/components/Item/components/View/View.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PropsWithChildren, default as React } from 'react';
|
|
2
|
-
import { PropsWithClassName
|
|
3
|
-
type Props = PropsWithChildren & PropsWithClassName
|
|
2
|
+
import { PropsWithClassName } from '../../../../../../../../lib/types/props';
|
|
3
|
+
type Props = PropsWithChildren & PropsWithClassName;
|
|
4
4
|
export declare const View: (props: Props) => React.JSX.Element;
|
|
5
5
|
export default View;
|
|
@@ -7,5 +7,5 @@ export declare const Default: Story;
|
|
|
7
7
|
export declare const WithTopContent: Story;
|
|
8
8
|
export declare const WithContent: Story;
|
|
9
9
|
export declare const SmallSpace: Story;
|
|
10
|
-
export declare const CustomContainerBreakpoint: Story;
|
|
11
10
|
export declare const WithActionGroup: Story;
|
|
11
|
+
export declare const WithMultipleTexts: Story;
|
|
@@ -20,7 +20,7 @@ export declare const typedList: <T>() => {
|
|
|
20
20
|
}>;
|
|
21
21
|
ItemView: (props: {
|
|
22
22
|
children?: import('react').ReactNode | undefined;
|
|
23
|
-
} & import('../../lib/types/props').PropsWithClassName
|
|
23
|
+
} & import('../../lib/types/props').PropsWithClassName) => import("react").JSX.Element;
|
|
24
24
|
TableHeader: (ignoredProps: import('./model/table/types').TableHeaderShape) => null;
|
|
25
25
|
TableColumn: (ignoredProps: import('react-aria-components').ColumnProps) => null;
|
|
26
26
|
TableBody: (ignoredProps: import('./model/table/types').TableBodyShape<T>) => null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/flow-react-components",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.385",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A React implementation of Flow, mittwald’s design system",
|
|
6
6
|
"homepage": "https://mittwald.github.io/flow",
|
|
@@ -425,7 +425,7 @@
|
|
|
425
425
|
"@chakra-ui/live-region": "^2.1.0",
|
|
426
426
|
"@internationalized/date": "^3.6.0",
|
|
427
427
|
"@internationalized/string-compiler": "^3.2.6",
|
|
428
|
-
"@mittwald/react-tunnel": "^0.1.0-alpha.
|
|
428
|
+
"@mittwald/react-tunnel": "^0.1.0-alpha.385",
|
|
429
429
|
"@mittwald/react-use-promise": "^2.6.0",
|
|
430
430
|
"@react-aria/form": "^3.0.11",
|
|
431
431
|
"@react-aria/utils": "^3.26.0",
|
|
@@ -456,7 +456,7 @@
|
|
|
456
456
|
},
|
|
457
457
|
"devDependencies": {
|
|
458
458
|
"@faker-js/faker": "^9.2.0",
|
|
459
|
-
"@mittwald/flow-design-tokens": "^0.1.0-alpha.
|
|
459
|
+
"@mittwald/flow-design-tokens": "^0.1.0-alpha.385",
|
|
460
460
|
"@mittwald/react-use-promise": "^2.6.0",
|
|
461
461
|
"@nx/storybook": "^20.1.3",
|
|
462
462
|
"@storybook/addon-a11y": "^8.4.5",
|
|
@@ -551,5 +551,5 @@
|
|
|
551
551
|
}
|
|
552
552
|
}
|
|
553
553
|
},
|
|
554
|
-
"gitHead": "
|
|
554
|
+
"gitHead": "d7403d3e3b401bea51f3e1c609d0c430fe168d4e"
|
|
555
555
|
}
|