@mittwald/flow-react-components 0.2.0-alpha.11 → 0.2.0-alpha.13

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 CHANGED
@@ -3,6 +3,18 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.2.0-alpha.13](https://github.com/mittwald/flow/compare/0.2.0-alpha.12...0.2.0-alpha.13) (2025-01-21)
7
+
8
+ ### Bug Fixes
9
+
10
+ * re-export remote types to fix TS builds ([161dd58](https://github.com/mittwald/flow/commit/161dd587b430f040293b4f9fccfabd6fcbec97b3))
11
+
12
+ # [0.2.0-alpha.12](https://github.com/mittwald/flow/compare/0.2.0-alpha.11...0.2.0-alpha.12) (2025-01-21)
13
+
14
+ ### Bug Fixes
15
+
16
+ * add missing remote exports ([8c02c4b](https://github.com/mittwald/flow/commit/8c02c4b7375efed70c3786d690b4ffbfc12f6ba7))
17
+
6
18
  # [0.2.0-alpha.11](https://github.com/mittwald/flow/compare/0.2.0-alpha.10...0.2.0-alpha.11) (2025-01-20)
7
19
 
8
20
  **Note:** Version bump only for package @mittwald/flow-react-components
@@ -2,6 +2,7 @@ import { PropsWithChildren, default as React } from 'react';
2
2
  import { FlowComponentProps } from '../../../../lib/componentFactory/flowComponent';
3
3
  export interface ListSummaryProps extends FlowComponentProps, PropsWithChildren {
4
4
  }
5
+ /** @flr-generate all */
5
6
  export declare const ListSummary: React.FunctionComponent<ListSummaryProps & React.RefAttributes<HTMLDivElement>>;
6
7
  export default ListSummary;
7
8
  //# sourceMappingURL=ListSummary.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ListSummary.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/List/components/ListSummary/ListSummary.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAC/C,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sCAAsC,CAAC;AAG/E,MAAM,WAAW,gBACf,SAAQ,kBAAkB,EACxB,iBAAiB;CAAG;AAExB,eAAO,MAAM,WAAW,iFAQtB,CAAC;AAEH,eAAe,WAAW,CAAC"}
1
+ {"version":3,"file":"ListSummary.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/List/components/ListSummary/ListSummary.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAC/C,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sCAAsC,CAAC;AAG/E,MAAM,WAAW,gBACf,SAAQ,kBAAkB,EACxB,iBAAiB;CAAG;AAExB,wBAAwB;AACxB,eAAO,MAAM,WAAW,iFAQtB,CAAC;AAEH,eAAe,WAAW,CAAC"}
@@ -1,4 +1,5 @@
1
1
  import { ListSummary } from './ListSummary';
2
- export { ListSummary } from './ListSummary';
2
+ export * from './view';
3
+ export { ListSummary, type ListSummaryProps } from './ListSummary';
3
4
  export default ListSummary;
4
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/List/components/ListSummary/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAE5C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,eAAe,WAAW,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/List/components/ListSummary/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAE5C,OAAO,EAAE,WAAW,EAAE,KAAK,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACnE,eAAe,WAAW,CAAC"}
@@ -0,0 +1,8 @@
1
+ import { ListSummary } from './ListSummary';
2
+ import { ViewComponent } from '../../../../lib/viewComponentContext';
3
+ declare global {
4
+ interface FlowViewComponents {
5
+ ListSummary: ViewComponent<typeof ListSummary>;
6
+ }
7
+ }
8
+ //# sourceMappingURL=view.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"view.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/List/components/ListSummary/view.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAEhE,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,kBAAkB;QAC1B,WAAW,EAAE,aAAa,CAAC,OAAO,WAAW,CAAC,CAAC;KAChD;CACF"}
@@ -0,0 +1,5 @@
1
+ import { FC } from 'react';
2
+ import { ListSummaryProps } from '../components/List';
3
+ declare const ListSummaryView: FC<ListSummaryProps>;
4
+ export default ListSummaryView;
5
+ //# sourceMappingURL=ListSummaryView.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ListSummaryView.d.ts","sourceRoot":"","sources":["../../../../src/views/ListSummaryView.tsx"],"names":[],"mappings":"AAEA,OAAc,EAAE,KAAK,EAAE,EAAc,MAAM,OAAO,CAAC;AACnD,OAAO,EAAe,KAAK,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAGvE,QAAA,MAAM,eAAe,EAAE,EAAE,CAAC,gBAAgB,CAGzC,CAAC;AAEF,eAAe,eAAe,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/flow-react-components",
3
- "version": "0.2.0-alpha.11",
3
+ "version": "0.2.0-alpha.13",
4
4
  "type": "module",
5
5
  "description": "A React implementation of Flow, mittwald’s design system",
6
6
  "homepage": "https://mittwald.github.io/flow",
@@ -376,7 +376,7 @@
376
376
  "@chakra-ui/live-region": "^2.1.0",
377
377
  "@internationalized/date": "^3.7.0",
378
378
  "@internationalized/string-compiler": "^3.2.6",
379
- "@mittwald/react-tunnel": "0.2.0-alpha.11",
379
+ "@mittwald/react-tunnel": "0.2.0-alpha.13",
380
380
  "@mittwald/react-use-promise": "^2.6.0",
381
381
  "@react-aria/form": "^3.0.12",
382
382
  "@react-aria/utils": "^3.27.0",
@@ -408,7 +408,7 @@
408
408
  },
409
409
  "devDependencies": {
410
410
  "@faker-js/faker": "^9.4.0",
411
- "@mittwald/flow-design-tokens": "0.2.0-alpha.11",
411
+ "@mittwald/flow-design-tokens": "0.2.0-alpha.13",
412
412
  "@mittwald/react-use-promise": "^2.6.0",
413
413
  "@mittwald/typescript-config": "",
414
414
  "@nx/storybook": "^20.3.2",
@@ -492,5 +492,5 @@
492
492
  "optional": true
493
493
  }
494
494
  },
495
- "gitHead": "f6d587a22f532d575d699a5ff6f41e571af9454d"
495
+ "gitHead": "4e633b1249aeee70e37ea18ed377fdff1ec6d429"
496
496
  }