@mittwald/flow-react-components 0.1.0-alpha.182 → 0.1.0-alpha.183

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,7 +1,7 @@
1
1
  import { ComponentType } from 'react';
2
2
 
3
3
  type Props<T> = {} & {
4
- data: T[];
4
+ data: T[] | readonly T[];
5
5
  };
6
6
  export declare const ListStaticData: <T>(ignoredProps: Props<T>) => null;
7
7
  export declare const TypedListStaticData: <T>() => ComponentType<Props<T>>;
@@ -263,7 +263,7 @@ export declare const typedList: <T>() => {
263
263
  children?: import('react').ReactNode | undefined;
264
264
  } & import('../../lib/types/props').PropsWithClassName & import('../../lib/types/props').PropsWithContainerBreakpointSize) => import("react").JSX.Element;
265
265
  StaticData: import('react').ComponentType<{
266
- data: T[];
266
+ data: T[] | readonly T[];
267
267
  }>;
268
268
  LoaderAsync: import('react').ComponentType<Omit<import('./model/loading/types').AsyncDataLoaderShape<T>, "asyncLoader"> & {
269
269
  children: import('./model/loading/types').AsyncDataLoader<T>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/flow-react-components",
3
- "version": "0.1.0-alpha.182",
3
+ "version": "0.1.0-alpha.183",
4
4
  "type": "module",
5
5
  "description": "A React implementation of Flow, mittwald’s design system",
6
6
  "homepage": "https://mittwald.github.io/flow",
@@ -280,7 +280,7 @@
280
280
  "dependencies": {
281
281
  "@chakra-ui/live-region": "^2.1.0",
282
282
  "@internationalized/string-compiler": "^3.2.4",
283
- "@mittwald/react-tunnel": "^0.1.0-alpha.182",
283
+ "@mittwald/react-tunnel": "^0.1.0-alpha.183",
284
284
  "@mittwald/react-use-promise": "^2.3.13",
285
285
  "@react-aria/utils": "^3.24.1",
286
286
  "@react-types/shared": "^3.23.1",
@@ -307,7 +307,7 @@
307
307
  },
308
308
  "devDependencies": {
309
309
  "@faker-js/faker": "^8.4.1",
310
- "@mittwald/flow-design-tokens": "^0.1.0-alpha.182",
310
+ "@mittwald/flow-design-tokens": "^0.1.0-alpha.183",
311
311
  "@mittwald/react-use-promise": "^2.3.13",
312
312
  "@nx/storybook": "^19.5.0",
313
313
  "@storybook/addon-a11y": "^8.2.4",
@@ -384,5 +384,5 @@
384
384
  "optional": true
385
385
  }
386
386
  },
387
- "gitHead": "26a322268272808d4d19f6fe887a2478a9100e37"
387
+ "gitHead": "3cb9e8febea284d02970e087f9fb468c99b49455"
388
388
  }