@mittwald/flow-react-components 0.2.0-alpha.171 → 0.2.0-alpha.173

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.173](https://github.com/mittwald/flow/compare/0.2.0-alpha.172...0.2.0-alpha.173) (2025-05-07)
7
+
8
+ ### Bug Fixes
9
+
10
+ * **Flex:** default values for align and justify ([#1435](https://github.com/mittwald/flow/issues/1435)) ([a81563a](https://github.com/mittwald/flow/commit/a81563aa034da98f25ed0e1be2777bc4be0bd146))
11
+
12
+ # [0.2.0-alpha.172](https://github.com/mittwald/flow/compare/0.2.0-alpha.171...0.2.0-alpha.172) (2025-05-07)
13
+
14
+ ### Features
15
+
16
+ * **Remote:** add RemoteTunnelEntry ([ce63c57](https://github.com/mittwald/flow/commit/ce63c57f5194b4d7acae34aa993d209bebe7cfcf))
17
+
6
18
  # [0.2.0-alpha.171](https://github.com/mittwald/flow/compare/0.2.0-alpha.170...0.2.0-alpha.171) (2025-05-07)
7
19
 
8
20
  **Note:** Version bump only for package @mittwald/flow-react-components
@@ -491,6 +491,75 @@
491
491
  }
492
492
  }
493
493
  },
494
+ {
495
+ "tags": {
496
+ "flr-generate": "all",
497
+ "flr-clear-props-context": ""
498
+ },
499
+ "filePath": "src/components/TunnelEntry/TunnelEntry.tsx",
500
+ "description": "",
501
+ "displayName": "TunnelEntry",
502
+ "methods": [],
503
+ "props": {
504
+ "id": {
505
+ "defaultValue": null,
506
+ "description": "",
507
+ "name": "id",
508
+ "parent": {
509
+ "fileName": "packages/react-tunnel/dist/types/components/TunnelEntry.d.ts",
510
+ "name": "Props"
511
+ },
512
+ "declarations": [
513
+ {
514
+ "fileName": "packages/react-tunnel/dist/types/components/TunnelEntry.d.ts",
515
+ "name": "Props"
516
+ }
517
+ ],
518
+ "required": false,
519
+ "type": {
520
+ "name": "string"
521
+ }
522
+ },
523
+ "children": {
524
+ "defaultValue": null,
525
+ "description": "",
526
+ "name": "children",
527
+ "parent": {
528
+ "fileName": "packages/react-tunnel/dist/types/components/TunnelEntry.d.ts",
529
+ "name": "Props"
530
+ },
531
+ "declarations": [
532
+ {
533
+ "fileName": "packages/react-tunnel/dist/types/components/TunnelEntry.d.ts",
534
+ "name": "Props"
535
+ }
536
+ ],
537
+ "required": false,
538
+ "type": {
539
+ "name": "TunnelChildren"
540
+ }
541
+ },
542
+ "staticEntryId": {
543
+ "defaultValue": null,
544
+ "description": "Static entry ID instead of generated ID by `useId`",
545
+ "name": "staticEntryId",
546
+ "parent": {
547
+ "fileName": "packages/react-tunnel/dist/types/components/TunnelEntry.d.ts",
548
+ "name": "Props"
549
+ },
550
+ "declarations": [
551
+ {
552
+ "fileName": "packages/react-tunnel/dist/types/components/TunnelEntry.d.ts",
553
+ "name": "Props"
554
+ }
555
+ ],
556
+ "required": false,
557
+ "type": {
558
+ "name": "string"
559
+ }
560
+ }
561
+ }
562
+ },
494
563
  {
495
564
  "tags": {
496
565
  "flr-generate": "all"
@@ -9,8 +9,8 @@ const Flex = (props) => {
9
9
  children,
10
10
  className,
11
11
  direction = "row",
12
- align = "start",
13
- justify = "start",
12
+ align,
13
+ justify,
14
14
  gap,
15
15
  columnGap,
16
16
  rowGap,
@@ -1 +1 @@
1
- {"version":3,"file":"Flex.mjs","sources":["../../../../../../src/components/Flex/Flex.tsx"],"sourcesContent":["import type { CSSProperties, FC, PropsWithChildren } from \"react\";\nimport type {\n PropsWithClassName,\n PropsWithElementType,\n} from \"@/lib/types/props\";\nimport clsx from \"clsx\";\nimport styles from \"./Flex.module.scss\";\n\nexport interface FlexProps\n extends PropsWithChildren,\n PropsWithClassName,\n PropsWithElementType<\n | \"div\"\n | \"aside\"\n | \"ul\"\n | \"li\"\n | \"ol\"\n | \"section\"\n | \"main\"\n | \"span\"\n | \"p\"\n | \"footer\"\n | \"header\"\n > {\n /** The flexDirection value of the element. @default \"row\" */\n direction?: CSSProperties[\"flexDirection\"];\n /** The alignItems value of the element. @default \"start\" */\n align?: \"start\" | \"end\" | \"center\";\n /** The justifyContent value of the element. @default \"start\" */\n justify?: \"start\" | \"end\" | \"center\";\n /** The gap size of the element. */\n gap?: \"xs\" | \"s\" | \"m\" | \"l\" | \"xl\";\n /** The columnGap size of the element. */\n columnGap?: \"xs\" | \"s\" | \"m\" | \"l\" | \"xl\";\n /** The rowGap size of the element. */\n rowGap?: \"xs\" | \"s\" | \"m\" | \"l\" | \"xl\";\n /** Whether the element should grow. */\n grow?: boolean;\n /** The flexWrap value of the element. @default \"nowrap\" */\n wrap?: CSSProperties[\"flexWrap\"];\n /** The padding of the element. */\n padding?: \"xs\" | \"s\" | \"m\" | \"l\" | \"xl\";\n /** The padding top of the element. */\n paddingTop?: \"xs\" | \"s\" | \"m\" | \"l\" | \"xl\";\n /** The padding bottom of the element. */\n paddingBottom?: \"xs\" | \"s\" | \"m\" | \"l\" | \"xl\";\n /** The padding left of the element. */\n paddingLeft?: \"xs\" | \"s\" | \"m\" | \"l\" | \"xl\";\n /** The padding right of the element. */\n paddingRight?: \"xs\" | \"s\" | \"m\" | \"l\" | \"xl\";\n}\n\n/** @flr-generate all */\nexport const Flex: FC<FlexProps> = (props) => {\n const {\n children,\n className,\n direction = \"row\",\n align = \"start\",\n justify = \"start\",\n gap,\n columnGap,\n rowGap,\n grow,\n wrap = \"nowrap\",\n padding,\n paddingTop,\n paddingBottom,\n paddingLeft,\n paddingRight,\n elementType = \"div\",\n } = props;\n\n const rootClassName = clsx(styles.flex, className);\n\n const Element = elementType;\n\n return (\n <Element\n className={rootClassName}\n style={{\n flexDirection: direction,\n alignItems:\n align === \"end\"\n ? \"flex-end\"\n : align === \"start\"\n ? \"flex-start\"\n : align,\n justifyContent:\n justify === \"end\"\n ? \"flex-end\"\n : justify === \"start\"\n ? \"flex-start\"\n : justify,\n\n columnGap: columnGap\n ? `var(--size-px--${columnGap})`\n : gap\n ? `var(--size-px--${gap})`\n : undefined,\n rowGap: rowGap\n ? `var(--size-px--${rowGap})`\n : gap\n ? `var(--size-px--${gap})`\n : undefined,\n flexGrow: grow ? 1 : undefined,\n flexWrap: wrap,\n paddingTop: paddingTop\n ? `var(--size-px--${paddingTop})`\n : padding\n ? `var(--size-px--${padding})`\n : undefined,\n paddingBottom: paddingBottom\n ? `var(--size-px--${paddingBottom})`\n : padding\n ? `var(--size-px--${padding})`\n : undefined,\n paddingLeft: paddingLeft\n ? `var(--size-px--${paddingLeft})`\n : padding\n ? `var(--size-px--${padding})`\n : undefined,\n paddingRight: paddingRight\n ? `var(--size-px--${paddingRight})`\n : padding\n ? `var(--size-px--${padding})`\n : undefined,\n }}\n >\n {children}\n </Element>\n );\n};\nexport default Flex;\n"],"names":[],"mappings":";;;;AAqDa,MAAA,IAAA,GAAsB,CAAC,KAAU,KAAA;AAC5C,EAAM,MAAA;AAAA,IACJ,QAAA;AAAA,IACA,SAAA;AAAA,IACA,SAAY,GAAA,KAAA;AAAA,IACZ,KAAQ,GAAA,OAAA;AAAA,IACR,OAAU,GAAA,OAAA;AAAA,IACV,GAAA;AAAA,IACA,SAAA;AAAA,IACA,MAAA;AAAA,IACA,IAAA;AAAA,IACA,IAAO,GAAA,QAAA;AAAA,IACP,OAAA;AAAA,IACA,UAAA;AAAA,IACA,aAAA;AAAA,IACA,WAAA;AAAA,IACA,YAAA;AAAA,IACA,WAAc,GAAA;AAAA,GACZ,GAAA,KAAA;AAEJ,EAAA,MAAM,aAAgB,GAAA,IAAA,CAAK,MAAO,CAAA,IAAA,EAAM,SAAS,CAAA;AAEjD,EAAA,MAAM,OAAU,GAAA,WAAA;AAEhB,EACE,uBAAA,GAAA;AAAA,IAAC,OAAA;AAAA,IAAA;AAAA,MACC,SAAW,EAAA,aAAA;AAAA,MACX,KAAO,EAAA;AAAA,QACL,aAAe,EAAA,SAAA;AAAA,QACf,YACE,KAAU,KAAA,KAAA,GACN,UACA,GAAA,KAAA,KAAU,UACR,YACA,GAAA,KAAA;AAAA,QACR,gBACE,OAAY,KAAA,KAAA,GACR,UACA,GAAA,OAAA,KAAY,UACV,YACA,GAAA,OAAA;AAAA,QAER,SAAA,EAAW,YACP,CAAkB,eAAA,EAAA,SAAS,MAC3B,GACE,GAAA,CAAA,eAAA,EAAkB,GAAG,CACrB,CAAA,CAAA,GAAA,MAAA;AAAA,QACN,MAAA,EAAQ,SACJ,CAAkB,eAAA,EAAA,MAAM,MACxB,GACE,GAAA,CAAA,eAAA,EAAkB,GAAG,CACrB,CAAA,CAAA,GAAA,MAAA;AAAA,QACN,QAAA,EAAU,OAAO,CAAI,GAAA,MAAA;AAAA,QACrB,QAAU,EAAA,IAAA;AAAA,QACV,UAAA,EAAY,aACR,CAAkB,eAAA,EAAA,UAAU,MAC5B,OACE,GAAA,CAAA,eAAA,EAAkB,OAAO,CACzB,CAAA,CAAA,GAAA,MAAA;AAAA,QACN,aAAA,EAAe,gBACX,CAAkB,eAAA,EAAA,aAAa,MAC/B,OACE,GAAA,CAAA,eAAA,EAAkB,OAAO,CACzB,CAAA,CAAA,GAAA,MAAA;AAAA,QACN,WAAA,EAAa,cACT,CAAkB,eAAA,EAAA,WAAW,MAC7B,OACE,GAAA,CAAA,eAAA,EAAkB,OAAO,CACzB,CAAA,CAAA,GAAA,MAAA;AAAA,QACN,YAAA,EAAc,eACV,CAAkB,eAAA,EAAA,YAAY,MAC9B,OACE,GAAA,CAAA,eAAA,EAAkB,OAAO,CACzB,CAAA,CAAA,GAAA;AAAA,OACR;AAAA,MAEC;AAAA;AAAA,GACH;AAEJ;;;;"}
1
+ {"version":3,"file":"Flex.mjs","sources":["../../../../../../src/components/Flex/Flex.tsx"],"sourcesContent":["import type { CSSProperties, FC, PropsWithChildren } from \"react\";\nimport type {\n PropsWithClassName,\n PropsWithElementType,\n} from \"@/lib/types/props\";\nimport clsx from \"clsx\";\nimport styles from \"./Flex.module.scss\";\n\nexport interface FlexProps\n extends PropsWithChildren,\n PropsWithClassName,\n PropsWithElementType<\n | \"div\"\n | \"aside\"\n | \"ul\"\n | \"li\"\n | \"ol\"\n | \"section\"\n | \"main\"\n | \"span\"\n | \"p\"\n | \"footer\"\n | \"header\"\n > {\n /** The flexDirection value of the element. @default \"row\" */\n direction?: CSSProperties[\"flexDirection\"];\n /** The alignItems value of the element. @default \"start\" */\n align?: \"start\" | \"end\" | \"center\";\n /** The justifyContent value of the element. @default \"start\" */\n justify?: \"start\" | \"end\" | \"center\";\n /** The gap size of the element. */\n gap?: \"xs\" | \"s\" | \"m\" | \"l\" | \"xl\";\n /** The columnGap size of the element. */\n columnGap?: \"xs\" | \"s\" | \"m\" | \"l\" | \"xl\";\n /** The rowGap size of the element. */\n rowGap?: \"xs\" | \"s\" | \"m\" | \"l\" | \"xl\";\n /** Whether the element should grow. */\n grow?: boolean;\n /** The flexWrap value of the element. @default \"nowrap\" */\n wrap?: CSSProperties[\"flexWrap\"];\n /** The padding of the element. */\n padding?: \"xs\" | \"s\" | \"m\" | \"l\" | \"xl\";\n /** The padding top of the element. */\n paddingTop?: \"xs\" | \"s\" | \"m\" | \"l\" | \"xl\";\n /** The padding bottom of the element. */\n paddingBottom?: \"xs\" | \"s\" | \"m\" | \"l\" | \"xl\";\n /** The padding left of the element. */\n paddingLeft?: \"xs\" | \"s\" | \"m\" | \"l\" | \"xl\";\n /** The padding right of the element. */\n paddingRight?: \"xs\" | \"s\" | \"m\" | \"l\" | \"xl\";\n}\n\n/** @flr-generate all */\nexport const Flex: FC<FlexProps> = (props) => {\n const {\n children,\n className,\n direction = \"row\",\n align,\n justify,\n gap,\n columnGap,\n rowGap,\n grow,\n wrap = \"nowrap\",\n padding,\n paddingTop,\n paddingBottom,\n paddingLeft,\n paddingRight,\n elementType = \"div\",\n } = props;\n\n const rootClassName = clsx(styles.flex, className);\n\n const Element = elementType;\n\n return (\n <Element\n className={rootClassName}\n style={{\n flexDirection: direction,\n alignItems:\n align === \"end\"\n ? \"flex-end\"\n : align === \"start\"\n ? \"flex-start\"\n : align,\n justifyContent:\n justify === \"end\"\n ? \"flex-end\"\n : justify === \"start\"\n ? \"flex-start\"\n : justify,\n\n columnGap: columnGap\n ? `var(--size-px--${columnGap})`\n : gap\n ? `var(--size-px--${gap})`\n : undefined,\n rowGap: rowGap\n ? `var(--size-px--${rowGap})`\n : gap\n ? `var(--size-px--${gap})`\n : undefined,\n flexGrow: grow ? 1 : undefined,\n flexWrap: wrap,\n paddingTop: paddingTop\n ? `var(--size-px--${paddingTop})`\n : padding\n ? `var(--size-px--${padding})`\n : undefined,\n paddingBottom: paddingBottom\n ? `var(--size-px--${paddingBottom})`\n : padding\n ? `var(--size-px--${padding})`\n : undefined,\n paddingLeft: paddingLeft\n ? `var(--size-px--${paddingLeft})`\n : padding\n ? `var(--size-px--${padding})`\n : undefined,\n paddingRight: paddingRight\n ? `var(--size-px--${paddingRight})`\n : padding\n ? `var(--size-px--${padding})`\n : undefined,\n }}\n >\n {children}\n </Element>\n );\n};\nexport default Flex;\n"],"names":[],"mappings":";;;;AAqDa,MAAA,IAAA,GAAsB,CAAC,KAAU,KAAA;AAC5C,EAAM,MAAA;AAAA,IACJ,QAAA;AAAA,IACA,SAAA;AAAA,IACA,SAAY,GAAA,KAAA;AAAA,IACZ,KAAA;AAAA,IACA,OAAA;AAAA,IACA,GAAA;AAAA,IACA,SAAA;AAAA,IACA,MAAA;AAAA,IACA,IAAA;AAAA,IACA,IAAO,GAAA,QAAA;AAAA,IACP,OAAA;AAAA,IACA,UAAA;AAAA,IACA,aAAA;AAAA,IACA,WAAA;AAAA,IACA,YAAA;AAAA,IACA,WAAc,GAAA;AAAA,GACZ,GAAA,KAAA;AAEJ,EAAA,MAAM,aAAgB,GAAA,IAAA,CAAK,MAAO,CAAA,IAAA,EAAM,SAAS,CAAA;AAEjD,EAAA,MAAM,OAAU,GAAA,WAAA;AAEhB,EACE,uBAAA,GAAA;AAAA,IAAC,OAAA;AAAA,IAAA;AAAA,MACC,SAAW,EAAA,aAAA;AAAA,MACX,KAAO,EAAA;AAAA,QACL,aAAe,EAAA,SAAA;AAAA,QACf,YACE,KAAU,KAAA,KAAA,GACN,UACA,GAAA,KAAA,KAAU,UACR,YACA,GAAA,KAAA;AAAA,QACR,gBACE,OAAY,KAAA,KAAA,GACR,UACA,GAAA,OAAA,KAAY,UACV,YACA,GAAA,OAAA;AAAA,QAER,SAAA,EAAW,YACP,CAAkB,eAAA,EAAA,SAAS,MAC3B,GACE,GAAA,CAAA,eAAA,EAAkB,GAAG,CACrB,CAAA,CAAA,GAAA,MAAA;AAAA,QACN,MAAA,EAAQ,SACJ,CAAkB,eAAA,EAAA,MAAM,MACxB,GACE,GAAA,CAAA,eAAA,EAAkB,GAAG,CACrB,CAAA,CAAA,GAAA,MAAA;AAAA,QACN,QAAA,EAAU,OAAO,CAAI,GAAA,MAAA;AAAA,QACrB,QAAU,EAAA,IAAA;AAAA,QACV,UAAA,EAAY,aACR,CAAkB,eAAA,EAAA,UAAU,MAC5B,OACE,GAAA,CAAA,eAAA,EAAkB,OAAO,CACzB,CAAA,CAAA,GAAA,MAAA;AAAA,QACN,aAAA,EAAe,gBACX,CAAkB,eAAA,EAAA,aAAa,MAC/B,OACE,GAAA,CAAA,eAAA,EAAkB,OAAO,CACzB,CAAA,CAAA,GAAA,MAAA;AAAA,QACN,WAAA,EAAa,cACT,CAAkB,eAAA,EAAA,WAAW,MAC7B,OACE,GAAA,CAAA,eAAA,EAAkB,OAAO,CACzB,CAAA,CAAA,GAAA,MAAA;AAAA,QACN,YAAA,EAAc,eACV,CAAkB,eAAA,EAAA,YAAY,MAC9B,OACE,GAAA,CAAA,eAAA,EAAkB,OAAO,CACzB,CAAA,CAAA,GAAA;AAAA,OACR;AAAA,MAEC;AAAA;AAAA,GACH;AAEJ;;;;"}
@@ -0,0 +1,9 @@
1
+ "use client"
2
+ /* */
3
+ import { jsx } from 'react/jsx-runtime';
4
+ import { TunnelEntry as TunnelEntry$1 } from '@mittwald/react-tunnel';
5
+
6
+ const TunnelEntry = (props) => /* @__PURE__ */ jsx(TunnelEntry$1, { ...props });
7
+
8
+ export { TunnelEntry, TunnelEntry as default };
9
+ //# sourceMappingURL=TunnelEntry.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TunnelEntry.mjs","sources":["../../../../../../src/components/TunnelEntry/TunnelEntry.tsx"],"sourcesContent":["import type { ComponentProps, FC } from \"react\";\nimport { TunnelEntry as ReactTunnelEntry } from \"@mittwald/react-tunnel\";\n\nexport type TunnelEntryProps = ComponentProps<typeof ReactTunnelEntry>;\n\n/**\n * @flr-generate all\n * @flr-clear-props-context\n */\nexport const TunnelEntry: FC<TunnelEntryProps> = (props) => (\n <ReactTunnelEntry {...props} />\n);\n\nexport default TunnelEntry;\n"],"names":["ReactTunnelEntry"],"mappings":";;;AASO,MAAM,cAAoC,CAAC,KAAA,qBAC/C,GAAA,CAAAA,aAAA,EAAA,EAAkB,GAAG,KAAO,EAAA;;;;"}
package/dist/js/index.mjs CHANGED
@@ -244,6 +244,7 @@ export { TextField } from './components/src/components/TextField/TextField.mjs';
244
244
  export { TimeField } from './components/src/components/TimeField/TimeField.mjs';
245
245
  export { TooltipTrigger } from './components/src/components/Tooltip/components/TooltipTrigger/TooltipTrigger.mjs';
246
246
  export { Tooltip } from './components/src/components/Tooltip/Tooltip.mjs';
247
+ export { TunnelEntry } from './components/src/components/TunnelEntry/TunnelEntry.mjs';
247
248
  export { Wrap } from './components/src/components/Wrap/Wrap.mjs';
248
249
  export { XAxis } from './components/src/components/XAxis/XAxis.mjs';
249
250
  export { YAxis } from './components/src/components/YAxis/YAxis.mjs';
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,10 @@
1
+ import { ComponentProps, FC } from 'react';
2
+ import { TunnelEntry as ReactTunnelEntry } from '@mittwald/react-tunnel';
3
+ export type TunnelEntryProps = ComponentProps<typeof ReactTunnelEntry>;
4
+ /**
5
+ * @flr-generate all
6
+ * @flr-clear-props-context
7
+ */
8
+ export declare const TunnelEntry: FC<TunnelEntryProps>;
9
+ export default TunnelEntry;
10
+ //# sourceMappingURL=TunnelEntry.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TunnelEntry.d.ts","sourceRoot":"","sources":["../../../../src/components/TunnelEntry/TunnelEntry.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAChD,OAAO,EAAE,WAAW,IAAI,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAEzE,MAAM,MAAM,gBAAgB,GAAG,cAAc,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEvE;;;GAGG;AACH,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC,gBAAgB,CAE5C,CAAC;AAEF,eAAe,WAAW,CAAC"}
@@ -0,0 +1,4 @@
1
+ export * from './view';
2
+ export { type TunnelEntryProps, TunnelEntry } from './TunnelEntry';
3
+ export { default } from './TunnelEntry';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/TunnelEntry/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AAEvB,OAAO,EAAE,KAAK,gBAAgB,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACnE,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC"}
@@ -0,0 +1,8 @@
1
+ import { TunnelEntry } from './TunnelEntry';
2
+ import { ViewComponent } from '../../lib/viewComponentContext';
3
+ declare global {
4
+ interface FlowViewComponents {
5
+ TunnelEntry: ViewComponent<typeof TunnelEntry>;
6
+ }
7
+ }
8
+ //# sourceMappingURL=view.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"view.d.ts","sourceRoot":"","sources":["../../../../src/components/TunnelEntry/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"}
@@ -92,6 +92,7 @@ export * from './TextArea';
92
92
  export * from './TextField';
93
93
  export * from './TimeField';
94
94
  export * from './Tooltip';
95
+ export * from './TunnelEntry';
95
96
  export * from './Wrap';
96
97
  export * from './XAxis';
97
98
  export * from './YAxis';
@@ -1 +1 @@
1
- {"version":3,"file":"public.d.ts","sourceRoot":"","sources":["../../../src/components/public.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"public.d.ts","sourceRoot":"","sources":["../../../src/components/public.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,5 @@
1
+ import { FC } from 'react';
2
+ import { TunnelEntryProps } from '../components/TunnelEntry';
3
+ declare const TunnelEntryView: FC<TunnelEntryProps>;
4
+ export default TunnelEntryView;
5
+ //# sourceMappingURL=TunnelEntryView.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TunnelEntryView.d.ts","sourceRoot":"","sources":["../../../src/views/TunnelEntryView.tsx"],"names":[],"mappings":"AAEA,OAAc,EAAE,KAAK,EAAE,EAAc,MAAM,OAAO,CAAC;AACnD,OAAO,EAAe,KAAK,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAG9E,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.171",
3
+ "version": "0.2.0-alpha.173",
4
4
  "type": "module",
5
5
  "description": "A React implementation of Flow, mittwald’s design system",
6
6
  "homepage": "https://mittwald.github.io/flow",
@@ -53,7 +53,7 @@
53
53
  "dependencies": {
54
54
  "@chakra-ui/live-region": "^2.1.0",
55
55
  "@internationalized/string-compiler": "^3.2.6",
56
- "@mittwald/react-tunnel": "0.2.0-alpha.171",
56
+ "@mittwald/react-tunnel": "0.2.0-alpha.173",
57
57
  "@mittwald/react-use-promise": "^3.0.4",
58
58
  "@react-aria/form": "^3.0.14",
59
59
  "@react-aria/utils": "^3.28.1",
@@ -92,7 +92,7 @@
92
92
  "devDependencies": {
93
93
  "@faker-js/faker": "^9.6.0",
94
94
  "@internationalized/date": "^3.7.0",
95
- "@mittwald/flow-design-tokens": "0.2.0-alpha.171",
95
+ "@mittwald/flow-design-tokens": "0.2.0-alpha.173",
96
96
  "@mittwald/react-use-promise": "^2.6.0",
97
97
  "@mittwald/remote-dom-react": "1.2.2-mittwald.3",
98
98
  "@mittwald/typescript-config": "",
@@ -173,5 +173,5 @@
173
173
  "optional": true
174
174
  }
175
175
  },
176
- "gitHead": "34e7b3a92f8324e9915b076a2aa8b1a212d5035f"
176
+ "gitHead": "46eaeb137e386d7eb27b871265e6a25af4de000a"
177
177
  }