@mittwald/flow-react-components 0.1.0-alpha.149 → 0.1.0-alpha.150
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/dist/Popover.js +23 -0
- package/package.json +8 -4
package/dist/Popover.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
/* */
|
|
3
|
+
import { P as m } from "./Popover-Me79N9-3.js";
|
|
4
|
+
import * as t from "react-aria-components";
|
|
5
|
+
import a from "react";
|
|
6
|
+
import { O as i } from "./OverlayTrigger-Bdb65OEJ.js";
|
|
7
|
+
const s = (r) => {
|
|
8
|
+
const { children: o, ...e } = r;
|
|
9
|
+
return /* @__PURE__ */ a.createElement(
|
|
10
|
+
i,
|
|
11
|
+
{
|
|
12
|
+
overlayType: "Popover",
|
|
13
|
+
...e,
|
|
14
|
+
component: t.DialogTrigger
|
|
15
|
+
},
|
|
16
|
+
o
|
|
17
|
+
);
|
|
18
|
+
};
|
|
19
|
+
export {
|
|
20
|
+
m as Popover,
|
|
21
|
+
s as PopoverTrigger,
|
|
22
|
+
m as default
|
|
23
|
+
};
|
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.150",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A React implementation of Flow, mittwald’s design system",
|
|
6
6
|
"homepage": "https://mittwald.github.io/flow",
|
|
@@ -174,6 +174,10 @@
|
|
|
174
174
|
"types": "./dist/types/components/OffCanvas/index.d.ts",
|
|
175
175
|
"import": "./dist/OffCanvas.js"
|
|
176
176
|
},
|
|
177
|
+
"./Popover": {
|
|
178
|
+
"types": "./dist/types/components/Popover/index.d.ts",
|
|
179
|
+
"import": "./dist/Popover.js"
|
|
180
|
+
},
|
|
177
181
|
"./ProgressBar": {
|
|
178
182
|
"types": "./dist/types/components/ProgressBar/index.d.ts",
|
|
179
183
|
"import": "./dist/ProgressBar.js"
|
|
@@ -276,7 +280,7 @@
|
|
|
276
280
|
"dependencies": {
|
|
277
281
|
"@chakra-ui/live-region": "^2.1.0",
|
|
278
282
|
"@internationalized/string-compiler": "^3.2.4",
|
|
279
|
-
"@mittwald/react-tunnel": "^0.1.0-alpha.
|
|
283
|
+
"@mittwald/react-tunnel": "^0.1.0-alpha.150",
|
|
280
284
|
"@mittwald/react-use-promise": "^2.3.13",
|
|
281
285
|
"@react-aria/utils": "^3.24.1",
|
|
282
286
|
"@react-types/shared": "^3.23.1",
|
|
@@ -303,7 +307,7 @@
|
|
|
303
307
|
},
|
|
304
308
|
"devDependencies": {
|
|
305
309
|
"@faker-js/faker": "^8.4.1",
|
|
306
|
-
"@mittwald/flow-design-tokens": "^0.1.0-alpha.
|
|
310
|
+
"@mittwald/flow-design-tokens": "^0.1.0-alpha.150",
|
|
307
311
|
"@mittwald/react-use-promise": "^2.3.13",
|
|
308
312
|
"@nx/storybook": "^19.3.0",
|
|
309
313
|
"@storybook/addon-a11y": "^8.1.10",
|
|
@@ -379,5 +383,5 @@
|
|
|
379
383
|
"optional": true
|
|
380
384
|
}
|
|
381
385
|
},
|
|
382
|
-
"gitHead": "
|
|
386
|
+
"gitHead": "b45b447865dc70052c0d6b85c99f689ca6d1fdf0"
|
|
383
387
|
}
|