@mittwald/flow-react-components 0.1.0-alpha.350 → 0.1.0-alpha.351

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.
@@ -0,0 +1,6 @@
1
+ import { FC, PropsWithChildren } from 'react';
2
+ import { PropsWithClassName } from '../../lib/types/props';
3
+ export interface AlignProps extends PropsWithChildren, PropsWithClassName {
4
+ }
5
+ export declare const Align: FC<AlignProps>;
6
+ export default Align;
@@ -0,0 +1,3 @@
1
+ import { Align } from './Align';
2
+ export { type AlignProps, Align } from './Align';
3
+ export default Align;
@@ -0,0 +1,9 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Align } from '..';
3
+ declare const meta: Meta<typeof Align>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof Align>;
6
+ export declare const Default: Story;
7
+ export declare const Multiline: Story;
8
+ export declare const Singleline: Story;
9
+ export declare const WithoutBoldText: Story;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/flow-react-components",
3
- "version": "0.1.0-alpha.350",
3
+ "version": "0.1.0-alpha.351",
4
4
  "type": "module",
5
5
  "description": "A React implementation of Flow, mittwald’s design system",
6
6
  "homepage": "https://mittwald.github.io/flow",
@@ -39,6 +39,11 @@
39
39
  "types": "./dist/js/types/components/AlertIcon/index.d.ts",
40
40
  "import": "./dist/js/AlertIcon.js"
41
41
  },
42
+ "./Align/styles.css": "./dist/css/Align.css",
43
+ "./Align": {
44
+ "types": "./dist/js/types/components/Align/index.d.ts",
45
+ "import": "./dist/js/Align.js"
46
+ },
42
47
  "./Avatar/styles.css": "./dist/css/Avatar.css",
43
48
  "./Avatar": {
44
49
  "types": "./dist/js/types/components/Avatar/index.d.ts",
@@ -410,7 +415,7 @@
410
415
  "@chakra-ui/live-region": "^2.1.0",
411
416
  "@internationalized/date": "^3.5.6",
412
417
  "@internationalized/string-compiler": "^3.2.5",
413
- "@mittwald/react-tunnel": "^0.1.0-alpha.350",
418
+ "@mittwald/react-tunnel": "^0.1.0-alpha.351",
414
419
  "@mittwald/react-use-promise": "^2.5.0",
415
420
  "@react-aria/form": "^3.0.10",
416
421
  "@react-aria/utils": "^3.25.3",
@@ -440,7 +445,7 @@
440
445
  },
441
446
  "devDependencies": {
442
447
  "@faker-js/faker": "^9.0.3",
443
- "@mittwald/flow-design-tokens": "^0.1.0-alpha.350",
448
+ "@mittwald/flow-design-tokens": "^0.1.0-alpha.351",
444
449
  "@mittwald/react-use-promise": "^2.5.0",
445
450
  "@nx/storybook": "^20.0.0",
446
451
  "@storybook/addon-a11y": "^8.3.5",
@@ -535,5 +540,5 @@
535
540
  }
536
541
  }
537
542
  },
538
- "gitHead": "064a61d717077b0f2da5b05d3291555d3b1acfc4"
543
+ "gitHead": "08797fddb7d0ba116332f4b7f46a409e48b48af5"
539
544
  }