@mittwald/mstudio-ext-react-components 0.2.0-alpha.782 → 0.2.0-alpha.784
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/js/components/Actions/Actions.mjs +6 -19
- package/dist/js/components/Actions/Actions.mjs.map +1 -1
- package/dist/js/components/Breadcrumb/Breadcrumb.mjs +6 -19
- package/dist/js/components/Breadcrumb/Breadcrumb.mjs.map +1 -1
- package/dist/js/components/Title/Title.mjs +6 -16
- package/dist/js/components/Title/Title.mjs.map +1 -1
- package/dist/js/index.mjs +5 -5
- package/dist/js/index.mjs.map +1 -0
- package/package.json +5 -5
- package/dist/js/components/Actions/index.mjs +0 -1
- package/dist/js/components/Breadcrumb/index.mjs +0 -1
- package/dist/js/components/Title/index.mjs +0 -1
- package/dist/js/components/index.mjs +0 -8
|
@@ -1,22 +1,9 @@
|
|
|
1
1
|
"use client"
|
|
2
2
|
/* */
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
//#region src/components/Actions/Actions.tsx
|
|
6
|
-
/**
|
|
7
|
-
* Use <MenuItem> children to add items to the actions menu.
|
|
8
|
-
*
|
|
9
|
-
* @example
|
|
10
|
-
* <Actions>
|
|
11
|
-
* <MenuItem onAction={onRename}>Rename</MenuItem>
|
|
12
|
-
* <MenuItem onAction={onDelete}>Delete</MenuItem>
|
|
13
|
-
* </Actions>;
|
|
14
|
-
*/
|
|
15
|
-
var Actions = (props) => /* @__PURE__ */ jsx(TunnelEntry, {
|
|
16
|
-
id: "@mstudio-ext/actions",
|
|
17
|
-
children: props.children
|
|
18
|
-
});
|
|
19
|
-
//#endregion
|
|
20
|
-
export { Actions as default };
|
|
3
|
+
import { jsx } from 'react/jsx-runtime';
|
|
4
|
+
import { TunnelEntry } from '@mittwald/flow-remote-react-components';
|
|
21
5
|
|
|
22
|
-
|
|
6
|
+
const Actions = (props) => /* @__PURE__ */ jsx(TunnelEntry, { id: "@mstudio-ext/actions", children: props.children });
|
|
7
|
+
|
|
8
|
+
export { Actions };
|
|
9
|
+
//# sourceMappingURL=Actions.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Actions.mjs","
|
|
1
|
+
{"version":3,"file":"Actions.mjs","sources":["../../../../src/components/Actions/Actions.tsx"],"sourcesContent":["import { TunnelEntry } from \"@mittwald/flow-remote-react-components\";\nimport type { FC, PropsWithChildren } from \"react\";\n\n/**\n * Use <MenuItem> children to add items to the actions menu.\n *\n * @example\n * <Actions>\n * <MenuItem onAction={onRename}>Rename</MenuItem>\n * <MenuItem onAction={onDelete}>Delete</MenuItem>\n * </Actions>;\n */\nexport const Actions: FC<PropsWithChildren> = (props) => (\n <TunnelEntry id=\"@mstudio-ext/actions\">{props.children}</TunnelEntry>\n);\n\nexport default Actions;\n"],"names":[],"mappings":";;;AAYO,MAAM,OAAA,GAAiC,CAAC,KAAA,qBAC7C,GAAA,CAAC,eAAY,EAAA,EAAG,sBAAA,EAAwB,gBAAM,QAAA,EAAS;;;;"}
|
|
@@ -1,22 +1,9 @@
|
|
|
1
1
|
"use client"
|
|
2
2
|
/* */
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
//#region src/components/Breadcrumb/Breadcrumb.tsx
|
|
6
|
-
/**
|
|
7
|
-
* Use <Link> children to add items to the breadcrumb.
|
|
8
|
-
*
|
|
9
|
-
* @example
|
|
10
|
-
* <Breadcrumb>
|
|
11
|
-
* <Link href="/profiles">Profiles</Link>
|
|
12
|
-
* <Link href="/profiles/5">Profile</Link>
|
|
13
|
-
* </Breadcrumb>;
|
|
14
|
-
*/
|
|
15
|
-
var Breadcrumb = (props) => /* @__PURE__ */ jsx(TunnelEntry, {
|
|
16
|
-
id: "@mstudio-ext/breadcrumb",
|
|
17
|
-
children: props.children
|
|
18
|
-
});
|
|
19
|
-
//#endregion
|
|
20
|
-
export { Breadcrumb as default };
|
|
3
|
+
import { jsx } from 'react/jsx-runtime';
|
|
4
|
+
import { TunnelEntry } from '@mittwald/flow-remote-react-components';
|
|
21
5
|
|
|
22
|
-
|
|
6
|
+
const Breadcrumb = (props) => /* @__PURE__ */ jsx(TunnelEntry, { id: "@mstudio-ext/breadcrumb", children: props.children });
|
|
7
|
+
|
|
8
|
+
export { Breadcrumb };
|
|
9
|
+
//# sourceMappingURL=Breadcrumb.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Breadcrumb.mjs","
|
|
1
|
+
{"version":3,"file":"Breadcrumb.mjs","sources":["../../../../src/components/Breadcrumb/Breadcrumb.tsx"],"sourcesContent":["import { TunnelEntry } from \"@mittwald/flow-remote-react-components\";\nimport type { FC, PropsWithChildren } from \"react\";\n\n/**\n * Use <Link> children to add items to the breadcrumb.\n *\n * @example\n * <Breadcrumb>\n * <Link href=\"/profiles\">Profiles</Link>\n * <Link href=\"/profiles/5\">Profile</Link>\n * </Breadcrumb>;\n */\nexport const Breadcrumb: FC<PropsWithChildren> = (props) => (\n <TunnelEntry id=\"@mstudio-ext/breadcrumb\">{props.children}</TunnelEntry>\n);\n\nexport default Breadcrumb;\n"],"names":[],"mappings":";;;AAYO,MAAM,UAAA,GAAoC,CAAC,KAAA,qBAChD,GAAA,CAAC,eAAY,EAAA,EAAG,yBAAA,EAA2B,gBAAM,QAAA,EAAS;;;;"}
|
|
@@ -1,19 +1,9 @@
|
|
|
1
1
|
"use client"
|
|
2
2
|
/* */
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
//#region src/components/Title/Title.tsx
|
|
6
|
-
/**
|
|
7
|
-
* Overwrite the title of the current page.
|
|
8
|
-
*
|
|
9
|
-
* @example
|
|
10
|
-
* <Title>My title</Title>;
|
|
11
|
-
*/
|
|
12
|
-
var Title = (props) => /* @__PURE__ */ jsx(TunnelEntry, {
|
|
13
|
-
id: "@mstudio-ext/title",
|
|
14
|
-
children: props.children
|
|
15
|
-
});
|
|
16
|
-
//#endregion
|
|
17
|
-
export { Title as default };
|
|
3
|
+
import { jsx } from 'react/jsx-runtime';
|
|
4
|
+
import { TunnelEntry } from '@mittwald/flow-remote-react-components';
|
|
18
5
|
|
|
19
|
-
|
|
6
|
+
const Title = (props) => /* @__PURE__ */ jsx(TunnelEntry, { id: "@mstudio-ext/title", children: props.children });
|
|
7
|
+
|
|
8
|
+
export { Title };
|
|
9
|
+
//# sourceMappingURL=Title.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Title.mjs","
|
|
1
|
+
{"version":3,"file":"Title.mjs","sources":["../../../../src/components/Title/Title.tsx"],"sourcesContent":["import { TunnelEntry } from \"@mittwald/flow-remote-react-components\";\nimport type { FC, PropsWithChildren } from \"react\";\n\n/**\n * Overwrite the title of the current page.\n *\n * @example\n * <Title>My title</Title>;\n */\nexport const Title: FC<PropsWithChildren> = (props) => (\n <TunnelEntry id=\"@mstudio-ext/title\">{props.children}</TunnelEntry>\n);\n\nexport default Title;\n"],"names":[],"mappings":";;;AASO,MAAM,KAAA,GAA+B,CAAC,KAAA,qBAC3C,GAAA,CAAC,eAAY,EAAA,EAAG,oBAAA,EAAsB,gBAAM,QAAA,EAAS;;;;"}
|
package/dist/js/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
export { Title } from './components/Title/Title.mjs';
|
|
2
|
+
export { Actions } from './components/Actions/Actions.mjs';
|
|
3
|
+
export { Breadcrumb } from './components/Breadcrumb/Breadcrumb.mjs';
|
|
4
|
+
export { LoadingFallbackTrigger as LoadingIndicator } from '@mittwald/flow-remote-react-components';
|
|
5
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/mstudio-ext-react-components",
|
|
3
|
-
"version": "0.2.0-alpha.
|
|
3
|
+
"version": "0.2.0-alpha.784",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "React components that can be used by mStudio extension developers",
|
|
6
6
|
"homepage": "https://mittwald.github.io/flow",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@types/react": "^19.2"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@mittwald/flow-remote-react-components": "0.2.0-alpha.
|
|
29
|
+
"@mittwald/flow-remote-react-components": "0.2.0-alpha.784",
|
|
30
30
|
"@mittwald/typescript-config": "",
|
|
31
31
|
"@types/node": "^24.10.9",
|
|
32
32
|
"nx": "^22.4.4",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"rollup-plugin-auto-named-exports": "1.0.0-beta.3",
|
|
37
37
|
"rollup-preserve-directives": "^1.1.3",
|
|
38
38
|
"typescript": "^5.9.3",
|
|
39
|
-
"vite": "^
|
|
39
|
+
"vite": "^7.3.1",
|
|
40
40
|
"vite-plugin-banner": "^0.8.1",
|
|
41
41
|
"vite-plugin-checker": "^0.12.0",
|
|
42
42
|
"vite-plugin-dts": "^4.5.4",
|
|
43
43
|
"vite-plugin-externalize-deps": "^0.10.0"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
|
-
"@mittwald/flow-remote-react-components": "0.2.0-alpha.
|
|
46
|
+
"@mittwald/flow-remote-react-components": "0.2.0-alpha.783",
|
|
47
47
|
"react": "^19.2.0"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "38762a66c3e86e5d5613dc18dc111cbeb5b402b4"
|
|
50
50
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import "./Actions.mjs";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import "./Breadcrumb.mjs";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import "./Title.mjs";
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import "./Title/Title.mjs";
|
|
2
|
-
import "./Title/index.mjs";
|
|
3
|
-
import "./Actions/Actions.mjs";
|
|
4
|
-
import "./Actions/index.mjs";
|
|
5
|
-
import "./Breadcrumb/Breadcrumb.mjs";
|
|
6
|
-
import "./Breadcrumb/index.mjs";
|
|
7
|
-
import { LoadingFallbackTrigger as LoadingIndicator } from "@mittwald/flow-remote-react-components";
|
|
8
|
-
export { LoadingIndicator };
|