@mittwald/flow-react-components 0.1.0-alpha.352 → 0.1.0-alpha.353
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,19 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.1.0-alpha.353](https://github.com/mittwald/flow/compare/0.1.0-alpha.352...0.1.0-alpha.353) (2024-11-25)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **NotificationProvider:** export NotificationController types
|
|
11
|
+
([#998](https://github.com/mittwald/flow/issues/998))
|
|
12
|
+
([f1618ce](https://github.com/mittwald/flow/commit/f1618ced26fa5fafb73e344fa856651e4fd92f9d))
|
|
13
|
+
|
|
14
|
+
# Change Log
|
|
15
|
+
|
|
16
|
+
All notable changes to this project will be documented in this file. See
|
|
17
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
18
|
+
|
|
6
19
|
# [0.1.0-alpha.352](https://github.com/mittwald/flow/compare/0.1.0-alpha.351...0.1.0-alpha.352) (2024-11-19)
|
|
7
20
|
|
|
8
21
|
### Features
|
|
@@ -140,6 +140,7 @@ const S = "flow--notification-provider--notification-container", B = "flow--noti
|
|
|
140
140
|
return /* @__PURE__ */ s.createElement(f.Provider, { value: i }, /* @__PURE__ */ s.createElement(z, { ...e }), t);
|
|
141
141
|
};
|
|
142
142
|
export {
|
|
143
|
+
r as NotificationController,
|
|
143
144
|
W as NotificationProvider,
|
|
144
145
|
W as default,
|
|
145
146
|
F as useNotificationController
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { default as NotificationProvider } from './NotificationProvider';
|
|
2
2
|
export { useNotificationController, NotificationProvider, } from './NotificationProvider';
|
|
3
|
+
export { NotificationController } from './NotificationController';
|
|
3
4
|
export default NotificationProvider;
|
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.353",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A React implementation of Flow, mittwald’s design system",
|
|
6
6
|
"homepage": "https://mittwald.github.io/flow",
|
|
@@ -420,7 +420,7 @@
|
|
|
420
420
|
"@chakra-ui/live-region": "^2.1.0",
|
|
421
421
|
"@internationalized/date": "^3.5.6",
|
|
422
422
|
"@internationalized/string-compiler": "^3.2.5",
|
|
423
|
-
"@mittwald/react-tunnel": "^0.1.0-alpha.
|
|
423
|
+
"@mittwald/react-tunnel": "^0.1.0-alpha.353",
|
|
424
424
|
"@mittwald/react-use-promise": "^2.5.0",
|
|
425
425
|
"@react-aria/form": "^3.0.10",
|
|
426
426
|
"@react-aria/utils": "^3.25.3",
|
|
@@ -451,7 +451,7 @@
|
|
|
451
451
|
},
|
|
452
452
|
"devDependencies": {
|
|
453
453
|
"@faker-js/faker": "^9.0.3",
|
|
454
|
-
"@mittwald/flow-design-tokens": "^0.1.0-alpha.
|
|
454
|
+
"@mittwald/flow-design-tokens": "^0.1.0-alpha.353",
|
|
455
455
|
"@mittwald/react-use-promise": "^2.5.0",
|
|
456
456
|
"@nx/storybook": "^20.0.0",
|
|
457
457
|
"@storybook/addon-a11y": "^8.3.5",
|
|
@@ -546,5 +546,5 @@
|
|
|
546
546
|
}
|
|
547
547
|
}
|
|
548
548
|
},
|
|
549
|
-
"gitHead": "
|
|
549
|
+
"gitHead": "11fe256c041db02c658fb31dd410f710c67da6db"
|
|
550
550
|
}
|