@mittwald/flow-react-components 0.2.0-alpha.333 → 0.2.0-alpha.334

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,12 @@
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.334](https://github.com/mittwald/flow/compare/0.2.0-alpha.333...0.2.0-alpha.334) (2025-07-10)
7
+
8
+ ### Bug Fixes
9
+
10
+ * password rule translation for min and max of 0 ([#1735](https://github.com/mittwald/flow/issues/1735)) ([9636cf5](https://github.com/mittwald/flow/commit/9636cf5be1e4a1f2aee46b7303f938e658660bb1))
11
+
6
12
  # [0.2.0-alpha.333](https://github.com/mittwald/flow/compare/0.2.0-alpha.332...0.2.0-alpha.333) (2025-07-10)
7
13
 
8
14
  **Note:** Version bump only for package @mittwald/flow-react-components
@@ -47097,6 +47097,243 @@
47097
47097
  }
47098
47098
  }
47099
47099
  },
47100
+ {
47101
+ "tags": {},
47102
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/Modal.tsx",
47103
+ "description": "",
47104
+ "displayName": "Modal",
47105
+ "methods": [],
47106
+ "props": {
47107
+ "size": {
47108
+ "defaultValue": {
47109
+ "value": "\"s\""
47110
+ },
47111
+ "description": "The size of the modal.",
47112
+ "name": "size",
47113
+ "parent": {
47114
+ "fileName": "components/src/components/Modal/Modal.tsx",
47115
+ "name": "ModalProps"
47116
+ },
47117
+ "declarations": [
47118
+ {
47119
+ "fileName": "components/src/components/Modal/Modal.tsx",
47120
+ "name": "ModalProps"
47121
+ }
47122
+ ],
47123
+ "required": false,
47124
+ "type": {
47125
+ "name": "\"s\" | \"m\" | \"l\""
47126
+ }
47127
+ },
47128
+ "offCanvas": {
47129
+ "defaultValue": null,
47130
+ "description": "Whether the modal should be displayed as an off canvas.",
47131
+ "name": "offCanvas",
47132
+ "parent": {
47133
+ "fileName": "components/src/components/Modal/Modal.tsx",
47134
+ "name": "ModalProps"
47135
+ },
47136
+ "declarations": [
47137
+ {
47138
+ "fileName": "components/src/components/Modal/Modal.tsx",
47139
+ "name": "ModalProps"
47140
+ }
47141
+ ],
47142
+ "required": false,
47143
+ "type": {
47144
+ "name": "boolean"
47145
+ }
47146
+ },
47147
+ "offCanvasOrientation": {
47148
+ "defaultValue": {
47149
+ "value": "\"right\""
47150
+ },
47151
+ "description": "Whether the off canvas should be displayed on the right or left side of the\nscreen.",
47152
+ "name": "offCanvasOrientation",
47153
+ "parent": {
47154
+ "fileName": "components/src/components/Modal/Modal.tsx",
47155
+ "name": "ModalProps"
47156
+ },
47157
+ "declarations": [
47158
+ {
47159
+ "fileName": "components/src/components/Modal/Modal.tsx",
47160
+ "name": "ModalProps"
47161
+ }
47162
+ ],
47163
+ "required": false,
47164
+ "type": {
47165
+ "name": "\"left\" | \"right\""
47166
+ }
47167
+ },
47168
+ "controller": {
47169
+ "defaultValue": null,
47170
+ "description": "An overlay controller to control the modal state.",
47171
+ "name": "controller",
47172
+ "parent": {
47173
+ "fileName": "components/src/components/Modal/Modal.tsx",
47174
+ "name": "ModalProps"
47175
+ },
47176
+ "declarations": [
47177
+ {
47178
+ "fileName": "components/src/components/Modal/Modal.tsx",
47179
+ "name": "ModalProps"
47180
+ }
47181
+ ],
47182
+ "required": false,
47183
+ "type": {
47184
+ "name": "OverlayController"
47185
+ }
47186
+ },
47187
+ "slot": {
47188
+ "defaultValue": null,
47189
+ "description": "Accepts \"actionConfirm\" to use the modal as a confirmation modal for an\naction.",
47190
+ "name": "slot",
47191
+ "parent": {
47192
+ "fileName": "components/src/components/Modal/Modal.tsx",
47193
+ "name": "ModalProps"
47194
+ },
47195
+ "declarations": [
47196
+ {
47197
+ "fileName": "components/src/components/Modal/Modal.tsx",
47198
+ "name": "ModalProps"
47199
+ }
47200
+ ],
47201
+ "required": false,
47202
+ "type": {
47203
+ "name": "string"
47204
+ }
47205
+ },
47206
+ "isDismissable": {
47207
+ "defaultValue": null,
47208
+ "description": "Whether the modal can be closed by clicking outside of it.",
47209
+ "name": "isDismissable",
47210
+ "parent": {
47211
+ "fileName": "components/src/components/Modal/Modal.tsx",
47212
+ "name": "ModalProps"
47213
+ },
47214
+ "declarations": [
47215
+ {
47216
+ "fileName": "components/src/components/Modal/Modal.tsx",
47217
+ "name": "ModalProps"
47218
+ }
47219
+ ],
47220
+ "required": false,
47221
+ "type": {
47222
+ "name": "boolean"
47223
+ }
47224
+ },
47225
+ "children": {
47226
+ "defaultValue": null,
47227
+ "description": "",
47228
+ "name": "children",
47229
+ "declarations": [
47230
+ {
47231
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
47232
+ "name": "TypeLiteral"
47233
+ }
47234
+ ],
47235
+ "required": false,
47236
+ "type": {
47237
+ "name": "ReactNode"
47238
+ }
47239
+ },
47240
+ "wrapWith": {
47241
+ "defaultValue": null,
47242
+ "description": "",
47243
+ "name": "wrapWith",
47244
+ "parent": {
47245
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
47246
+ "name": "FlowComponentProps"
47247
+ },
47248
+ "declarations": [
47249
+ {
47250
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
47251
+ "name": "FlowComponentProps"
47252
+ }
47253
+ ],
47254
+ "required": false,
47255
+ "type": {
47256
+ "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
47257
+ }
47258
+ },
47259
+ "tunnelId": {
47260
+ "defaultValue": null,
47261
+ "description": "@internal",
47262
+ "name": "tunnelId",
47263
+ "parent": {
47264
+ "fileName": "components/src/lib/types/props.ts",
47265
+ "name": "PropsWithTunnel"
47266
+ },
47267
+ "declarations": [
47268
+ {
47269
+ "fileName": "components/src/lib/types/props.ts",
47270
+ "name": "PropsWithTunnel"
47271
+ }
47272
+ ],
47273
+ "required": false,
47274
+ "type": {
47275
+ "name": "string | null"
47276
+ }
47277
+ },
47278
+ "ref": {
47279
+ "defaultValue": null,
47280
+ "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}",
47281
+ "name": "ref",
47282
+ "parent": {
47283
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
47284
+ "name": "RefAttributes"
47285
+ },
47286
+ "declarations": [
47287
+ {
47288
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
47289
+ "name": "RefAttributes"
47290
+ }
47291
+ ],
47292
+ "required": false,
47293
+ "type": {
47294
+ "name": "Ref<HTMLInputElement>"
47295
+ }
47296
+ },
47297
+ "key": {
47298
+ "defaultValue": null,
47299
+ "description": "",
47300
+ "name": "key",
47301
+ "parent": {
47302
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
47303
+ "name": "Attributes"
47304
+ },
47305
+ "declarations": [
47306
+ {
47307
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
47308
+ "name": "Attributes"
47309
+ }
47310
+ ],
47311
+ "required": false,
47312
+ "type": {
47313
+ "name": "Key | null"
47314
+ }
47315
+ },
47316
+ "className": {
47317
+ "defaultValue": null,
47318
+ "description": "The elements class name.",
47319
+ "name": "className",
47320
+ "parent": {
47321
+ "fileName": "components/src/lib/types/props.ts",
47322
+ "name": "PropsWithClassName"
47323
+ },
47324
+ "declarations": [
47325
+ {
47326
+ "fileName": "components/src/lib/types/props.ts",
47327
+ "name": "PropsWithClassName"
47328
+ }
47329
+ ],
47330
+ "required": false,
47331
+ "type": {
47332
+ "name": "string"
47333
+ }
47334
+ }
47335
+ }
47336
+ },
47100
47337
  {
47101
47338
  "tags": {
47102
47339
  "flr-generate": "all"
@@ -52470,243 +52707,6 @@
52470
52707
  }
52471
52708
  }
52472
52709
  },
52473
- {
52474
- "tags": {},
52475
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/Modal.tsx",
52476
- "description": "",
52477
- "displayName": "Modal",
52478
- "methods": [],
52479
- "props": {
52480
- "size": {
52481
- "defaultValue": {
52482
- "value": "\"s\""
52483
- },
52484
- "description": "The size of the modal.",
52485
- "name": "size",
52486
- "parent": {
52487
- "fileName": "components/src/components/Modal/Modal.tsx",
52488
- "name": "ModalProps"
52489
- },
52490
- "declarations": [
52491
- {
52492
- "fileName": "components/src/components/Modal/Modal.tsx",
52493
- "name": "ModalProps"
52494
- }
52495
- ],
52496
- "required": false,
52497
- "type": {
52498
- "name": "\"s\" | \"m\" | \"l\""
52499
- }
52500
- },
52501
- "offCanvas": {
52502
- "defaultValue": null,
52503
- "description": "Whether the modal should be displayed as an off canvas.",
52504
- "name": "offCanvas",
52505
- "parent": {
52506
- "fileName": "components/src/components/Modal/Modal.tsx",
52507
- "name": "ModalProps"
52508
- },
52509
- "declarations": [
52510
- {
52511
- "fileName": "components/src/components/Modal/Modal.tsx",
52512
- "name": "ModalProps"
52513
- }
52514
- ],
52515
- "required": false,
52516
- "type": {
52517
- "name": "boolean"
52518
- }
52519
- },
52520
- "offCanvasOrientation": {
52521
- "defaultValue": {
52522
- "value": "\"right\""
52523
- },
52524
- "description": "Whether the off canvas should be displayed on the right or left side of the\nscreen.",
52525
- "name": "offCanvasOrientation",
52526
- "parent": {
52527
- "fileName": "components/src/components/Modal/Modal.tsx",
52528
- "name": "ModalProps"
52529
- },
52530
- "declarations": [
52531
- {
52532
- "fileName": "components/src/components/Modal/Modal.tsx",
52533
- "name": "ModalProps"
52534
- }
52535
- ],
52536
- "required": false,
52537
- "type": {
52538
- "name": "\"left\" | \"right\""
52539
- }
52540
- },
52541
- "controller": {
52542
- "defaultValue": null,
52543
- "description": "An overlay controller to control the modal state.",
52544
- "name": "controller",
52545
- "parent": {
52546
- "fileName": "components/src/components/Modal/Modal.tsx",
52547
- "name": "ModalProps"
52548
- },
52549
- "declarations": [
52550
- {
52551
- "fileName": "components/src/components/Modal/Modal.tsx",
52552
- "name": "ModalProps"
52553
- }
52554
- ],
52555
- "required": false,
52556
- "type": {
52557
- "name": "OverlayController"
52558
- }
52559
- },
52560
- "slot": {
52561
- "defaultValue": null,
52562
- "description": "Accepts \"actionConfirm\" to use the modal as a confirmation modal for an\naction.",
52563
- "name": "slot",
52564
- "parent": {
52565
- "fileName": "components/src/components/Modal/Modal.tsx",
52566
- "name": "ModalProps"
52567
- },
52568
- "declarations": [
52569
- {
52570
- "fileName": "components/src/components/Modal/Modal.tsx",
52571
- "name": "ModalProps"
52572
- }
52573
- ],
52574
- "required": false,
52575
- "type": {
52576
- "name": "string"
52577
- }
52578
- },
52579
- "isDismissable": {
52580
- "defaultValue": null,
52581
- "description": "Whether the modal can be closed by clicking outside of it.",
52582
- "name": "isDismissable",
52583
- "parent": {
52584
- "fileName": "components/src/components/Modal/Modal.tsx",
52585
- "name": "ModalProps"
52586
- },
52587
- "declarations": [
52588
- {
52589
- "fileName": "components/src/components/Modal/Modal.tsx",
52590
- "name": "ModalProps"
52591
- }
52592
- ],
52593
- "required": false,
52594
- "type": {
52595
- "name": "boolean"
52596
- }
52597
- },
52598
- "children": {
52599
- "defaultValue": null,
52600
- "description": "",
52601
- "name": "children",
52602
- "declarations": [
52603
- {
52604
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
52605
- "name": "TypeLiteral"
52606
- }
52607
- ],
52608
- "required": false,
52609
- "type": {
52610
- "name": "ReactNode"
52611
- }
52612
- },
52613
- "wrapWith": {
52614
- "defaultValue": null,
52615
- "description": "",
52616
- "name": "wrapWith",
52617
- "parent": {
52618
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
52619
- "name": "FlowComponentProps"
52620
- },
52621
- "declarations": [
52622
- {
52623
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
52624
- "name": "FlowComponentProps"
52625
- }
52626
- ],
52627
- "required": false,
52628
- "type": {
52629
- "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
52630
- }
52631
- },
52632
- "tunnelId": {
52633
- "defaultValue": null,
52634
- "description": "@internal",
52635
- "name": "tunnelId",
52636
- "parent": {
52637
- "fileName": "components/src/lib/types/props.ts",
52638
- "name": "PropsWithTunnel"
52639
- },
52640
- "declarations": [
52641
- {
52642
- "fileName": "components/src/lib/types/props.ts",
52643
- "name": "PropsWithTunnel"
52644
- }
52645
- ],
52646
- "required": false,
52647
- "type": {
52648
- "name": "string | null"
52649
- }
52650
- },
52651
- "ref": {
52652
- "defaultValue": null,
52653
- "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}",
52654
- "name": "ref",
52655
- "parent": {
52656
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
52657
- "name": "RefAttributes"
52658
- },
52659
- "declarations": [
52660
- {
52661
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
52662
- "name": "RefAttributes"
52663
- }
52664
- ],
52665
- "required": false,
52666
- "type": {
52667
- "name": "Ref<HTMLInputElement>"
52668
- }
52669
- },
52670
- "key": {
52671
- "defaultValue": null,
52672
- "description": "",
52673
- "name": "key",
52674
- "parent": {
52675
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
52676
- "name": "Attributes"
52677
- },
52678
- "declarations": [
52679
- {
52680
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
52681
- "name": "Attributes"
52682
- }
52683
- ],
52684
- "required": false,
52685
- "type": {
52686
- "name": "Key | null"
52687
- }
52688
- },
52689
- "className": {
52690
- "defaultValue": null,
52691
- "description": "The elements class name.",
52692
- "name": "className",
52693
- "parent": {
52694
- "fileName": "components/src/lib/types/props.ts",
52695
- "name": "PropsWithClassName"
52696
- },
52697
- "declarations": [
52698
- {
52699
- "fileName": "components/src/lib/types/props.ts",
52700
- "name": "PropsWithClassName"
52701
- }
52702
- ],
52703
- "required": false,
52704
- "type": {
52705
- "name": "string"
52706
- }
52707
- }
52708
- }
52709
- },
52710
52710
  {
52711
52711
  "tags": {
52712
52712
  "flr-generate": "all",
@@ -167404,6 +167404,30 @@
167404
167404
  }
167405
167405
  }
167406
167406
  },
167407
+ {
167408
+ "tags": {},
167409
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/ClearPropsContext/ClearPropsContext.tsx",
167410
+ "description": "",
167411
+ "displayName": "ClearPropsContext",
167412
+ "methods": [],
167413
+ "props": {
167414
+ "children": {
167415
+ "defaultValue": null,
167416
+ "description": "",
167417
+ "name": "children",
167418
+ "declarations": [
167419
+ {
167420
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
167421
+ "name": "TypeLiteral"
167422
+ }
167423
+ ],
167424
+ "required": false,
167425
+ "type": {
167426
+ "name": "ReactNode"
167427
+ }
167428
+ }
167429
+ }
167430
+ },
167407
167431
  {
167408
167432
  "tags": {
167409
167433
  "flr-generate": "all"
@@ -167493,30 +167517,6 @@
167493
167517
  }
167494
167518
  }
167495
167519
  },
167496
- {
167497
- "tags": {},
167498
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/ClearPropsContext/ClearPropsContext.tsx",
167499
- "description": "",
167500
- "displayName": "ClearPropsContext",
167501
- "methods": [],
167502
- "props": {
167503
- "children": {
167504
- "defaultValue": null,
167505
- "description": "",
167506
- "name": "children",
167507
- "declarations": [
167508
- {
167509
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
167510
- "name": "TypeLiteral"
167511
- }
167512
- ],
167513
- "required": false,
167514
- "type": {
167515
- "name": "ReactNode"
167516
- }
167517
- }
167518
- }
167519
- },
167520
167520
  {
167521
167521
  "tags": {
167522
167522
  "flr-generate": "all",
@@ -225556,93 +225556,231 @@
225556
225556
  "type": {
225557
225557
  "name": "Key | null"
225558
225558
  }
225559
- }
225560
- }
225561
- },
225562
- {
225563
- "tags": {
225564
- "flr-generate": "all"
225565
- },
225566
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/OverlayTrigger/components/DialogTrigger/DialogTrigger.tsx",
225567
- "description": "",
225568
- "displayName": "DialogTrigger",
225569
- "methods": [],
225570
- "props": {
225559
+ }
225560
+ }
225561
+ },
225562
+ {
225563
+ "tags": {
225564
+ "flr-generate": "all"
225565
+ },
225566
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/OverlayTrigger/components/DialogTrigger/DialogTrigger.tsx",
225567
+ "description": "",
225568
+ "displayName": "DialogTrigger",
225569
+ "methods": [],
225570
+ "props": {
225571
+ "children": {
225572
+ "defaultValue": null,
225573
+ "description": "The elements that make up the table. Includes the TableHeader, TableBody, Columns, and Rows.",
225574
+ "name": "children",
225575
+ "parent": {
225576
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.10.1_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/react-aria-components/dist/types.d.ts",
225577
+ "name": "TableProps"
225578
+ },
225579
+ "declarations": [
225580
+ {
225581
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.10.1_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/react-aria-components/dist/types.d.ts",
225582
+ "name": "TableProps"
225583
+ }
225584
+ ],
225585
+ "required": false,
225586
+ "type": {
225587
+ "name": "ReactNode"
225588
+ }
225589
+ },
225590
+ "isOpen": {
225591
+ "defaultValue": null,
225592
+ "description": "Whether the element is rendered.",
225593
+ "name": "isOpen",
225594
+ "parent": {
225595
+ "fileName": "flow/node_modules/.pnpm/@react-types+overlays@3.8.16_react@19.1.0/node_modules/@react-types/overlays/src/index.d.ts",
225596
+ "name": "PositionProps"
225597
+ },
225598
+ "declarations": [
225599
+ {
225600
+ "fileName": "flow/node_modules/.pnpm/@react-types+overlays@3.8.16_react@19.1.0/node_modules/@react-types/overlays/src/index.d.ts",
225601
+ "name": "PositionProps"
225602
+ }
225603
+ ],
225604
+ "required": false,
225605
+ "type": {
225606
+ "name": "boolean"
225607
+ }
225608
+ },
225609
+ "defaultOpen": {
225610
+ "defaultValue": null,
225611
+ "description": "Whether the overlay is open by default (uncontrolled).",
225612
+ "name": "defaultOpen",
225613
+ "parent": {
225614
+ "fileName": "flow/node_modules/.pnpm/@react-types+overlays@3.8.16_react@19.1.0/node_modules/@react-types/overlays/src/index.d.ts",
225615
+ "name": "OverlayTriggerProps"
225616
+ },
225617
+ "declarations": [
225618
+ {
225619
+ "fileName": "flow/node_modules/.pnpm/@react-types+overlays@3.8.16_react@19.1.0/node_modules/@react-types/overlays/src/index.d.ts",
225620
+ "name": "OverlayTriggerProps"
225621
+ }
225622
+ ],
225623
+ "required": false,
225624
+ "type": {
225625
+ "name": "boolean"
225626
+ }
225627
+ },
225628
+ "onOpenChange": {
225629
+ "defaultValue": null,
225630
+ "description": "Handler that is called when the overlay's open state changes.",
225631
+ "name": "onOpenChange",
225632
+ "parent": {
225633
+ "fileName": "flow/node_modules/.pnpm/@react-types+overlays@3.8.16_react@19.1.0/node_modules/@react-types/overlays/src/index.d.ts",
225634
+ "name": "OverlayTriggerProps"
225635
+ },
225636
+ "declarations": [
225637
+ {
225638
+ "fileName": "flow/node_modules/.pnpm/@react-types+overlays@3.8.16_react@19.1.0/node_modules/@react-types/overlays/src/index.d.ts",
225639
+ "name": "OverlayTriggerProps"
225640
+ }
225641
+ ],
225642
+ "required": false,
225643
+ "type": {
225644
+ "name": "((isOpen: boolean) => void)"
225645
+ }
225646
+ }
225647
+ }
225648
+ },
225649
+ {
225650
+ "tags": {},
225651
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/ModalTrigger/ModalTrigger.tsx",
225652
+ "description": "",
225653
+ "displayName": "ModalTrigger",
225654
+ "methods": [],
225655
+ "props": {
225656
+ "isDefaultOpen": {
225657
+ "defaultValue": null,
225658
+ "description": "Whether the overlay should be open initially.",
225659
+ "name": "isDefaultOpen",
225660
+ "parent": {
225661
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
225662
+ "name": "OverlayTriggerProps"
225663
+ },
225664
+ "declarations": [
225665
+ {
225666
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
225667
+ "name": "OverlayTriggerProps"
225668
+ }
225669
+ ],
225670
+ "required": false,
225671
+ "type": {
225672
+ "name": "boolean"
225673
+ }
225674
+ },
225675
+ "controller": {
225676
+ "defaultValue": null,
225677
+ "description": "A controller to control the state of the overlay.",
225678
+ "name": "controller",
225679
+ "parent": {
225680
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
225681
+ "name": "OverlayTriggerProps"
225682
+ },
225683
+ "declarations": [
225684
+ {
225685
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
225686
+ "name": "OverlayTriggerProps"
225687
+ }
225688
+ ],
225689
+ "required": false,
225690
+ "type": {
225691
+ "name": "OverlayController"
225692
+ }
225693
+ },
225694
+ "wrapWith": {
225695
+ "defaultValue": null,
225696
+ "description": "",
225697
+ "name": "wrapWith",
225698
+ "parent": {
225699
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
225700
+ "name": "FlowComponentProps"
225701
+ },
225702
+ "declarations": [
225703
+ {
225704
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
225705
+ "name": "FlowComponentProps"
225706
+ }
225707
+ ],
225708
+ "required": false,
225709
+ "type": {
225710
+ "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
225711
+ }
225712
+ },
225713
+ "tunnelId": {
225714
+ "defaultValue": null,
225715
+ "description": "@internal",
225716
+ "name": "tunnelId",
225717
+ "parent": {
225718
+ "fileName": "components/src/lib/types/props.ts",
225719
+ "name": "PropsWithTunnel"
225720
+ },
225721
+ "declarations": [
225722
+ {
225723
+ "fileName": "components/src/lib/types/props.ts",
225724
+ "name": "PropsWithTunnel"
225725
+ }
225726
+ ],
225727
+ "required": false,
225728
+ "type": {
225729
+ "name": "string | null"
225730
+ }
225731
+ },
225732
+ "ref": {
225733
+ "defaultValue": null,
225734
+ "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}",
225735
+ "name": "ref",
225736
+ "parent": {
225737
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
225738
+ "name": "RefAttributes"
225739
+ },
225740
+ "declarations": [
225741
+ {
225742
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
225743
+ "name": "RefAttributes"
225744
+ }
225745
+ ],
225746
+ "required": false,
225747
+ "type": {
225748
+ "name": "Ref<HTMLInputElement>"
225749
+ }
225750
+ },
225751
+ "key": {
225752
+ "defaultValue": null,
225753
+ "description": "",
225754
+ "name": "key",
225755
+ "parent": {
225756
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
225757
+ "name": "Attributes"
225758
+ },
225759
+ "declarations": [
225760
+ {
225761
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
225762
+ "name": "Attributes"
225763
+ }
225764
+ ],
225765
+ "required": false,
225766
+ "type": {
225767
+ "name": "Key | null"
225768
+ }
225769
+ },
225571
225770
  "children": {
225572
225771
  "defaultValue": null,
225573
- "description": "The elements that make up the table. Includes the TableHeader, TableBody, Columns, and Rows.",
225772
+ "description": "",
225574
225773
  "name": "children",
225575
- "parent": {
225576
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.10.1_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/react-aria-components/dist/types.d.ts",
225577
- "name": "TableProps"
225578
- },
225579
225774
  "declarations": [
225580
225775
  {
225581
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.10.1_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/react-aria-components/dist/types.d.ts",
225582
- "name": "TableProps"
225776
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
225777
+ "name": "TypeLiteral"
225583
225778
  }
225584
225779
  ],
225585
225780
  "required": false,
225586
225781
  "type": {
225587
225782
  "name": "ReactNode"
225588
225783
  }
225589
- },
225590
- "isOpen": {
225591
- "defaultValue": null,
225592
- "description": "Whether the element is rendered.",
225593
- "name": "isOpen",
225594
- "parent": {
225595
- "fileName": "flow/node_modules/.pnpm/@react-types+overlays@3.8.16_react@19.1.0/node_modules/@react-types/overlays/src/index.d.ts",
225596
- "name": "PositionProps"
225597
- },
225598
- "declarations": [
225599
- {
225600
- "fileName": "flow/node_modules/.pnpm/@react-types+overlays@3.8.16_react@19.1.0/node_modules/@react-types/overlays/src/index.d.ts",
225601
- "name": "PositionProps"
225602
- }
225603
- ],
225604
- "required": false,
225605
- "type": {
225606
- "name": "boolean"
225607
- }
225608
- },
225609
- "defaultOpen": {
225610
- "defaultValue": null,
225611
- "description": "Whether the overlay is open by default (uncontrolled).",
225612
- "name": "defaultOpen",
225613
- "parent": {
225614
- "fileName": "flow/node_modules/.pnpm/@react-types+overlays@3.8.16_react@19.1.0/node_modules/@react-types/overlays/src/index.d.ts",
225615
- "name": "OverlayTriggerProps"
225616
- },
225617
- "declarations": [
225618
- {
225619
- "fileName": "flow/node_modules/.pnpm/@react-types+overlays@3.8.16_react@19.1.0/node_modules/@react-types/overlays/src/index.d.ts",
225620
- "name": "OverlayTriggerProps"
225621
- }
225622
- ],
225623
- "required": false,
225624
- "type": {
225625
- "name": "boolean"
225626
- }
225627
- },
225628
- "onOpenChange": {
225629
- "defaultValue": null,
225630
- "description": "Handler that is called when the overlay's open state changes.",
225631
- "name": "onOpenChange",
225632
- "parent": {
225633
- "fileName": "flow/node_modules/.pnpm/@react-types+overlays@3.8.16_react@19.1.0/node_modules/@react-types/overlays/src/index.d.ts",
225634
- "name": "OverlayTriggerProps"
225635
- },
225636
- "declarations": [
225637
- {
225638
- "fileName": "flow/node_modules/.pnpm/@react-types+overlays@3.8.16_react@19.1.0/node_modules/@react-types/overlays/src/index.d.ts",
225639
- "name": "OverlayTriggerProps"
225640
- }
225641
- ],
225642
- "required": false,
225643
- "type": {
225644
- "name": "((isOpen: boolean) => void)"
225645
- }
225646
225784
  }
225647
225785
  }
225648
225786
  },
@@ -231038,144 +231176,6 @@
231038
231176
  }
231039
231177
  }
231040
231178
  },
231041
- {
231042
- "tags": {},
231043
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/ModalTrigger/ModalTrigger.tsx",
231044
- "description": "",
231045
- "displayName": "ModalTrigger",
231046
- "methods": [],
231047
- "props": {
231048
- "isDefaultOpen": {
231049
- "defaultValue": null,
231050
- "description": "Whether the overlay should be open initially.",
231051
- "name": "isDefaultOpen",
231052
- "parent": {
231053
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
231054
- "name": "OverlayTriggerProps"
231055
- },
231056
- "declarations": [
231057
- {
231058
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
231059
- "name": "OverlayTriggerProps"
231060
- }
231061
- ],
231062
- "required": false,
231063
- "type": {
231064
- "name": "boolean"
231065
- }
231066
- },
231067
- "controller": {
231068
- "defaultValue": null,
231069
- "description": "A controller to control the state of the overlay.",
231070
- "name": "controller",
231071
- "parent": {
231072
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
231073
- "name": "OverlayTriggerProps"
231074
- },
231075
- "declarations": [
231076
- {
231077
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
231078
- "name": "OverlayTriggerProps"
231079
- }
231080
- ],
231081
- "required": false,
231082
- "type": {
231083
- "name": "OverlayController"
231084
- }
231085
- },
231086
- "wrapWith": {
231087
- "defaultValue": null,
231088
- "description": "",
231089
- "name": "wrapWith",
231090
- "parent": {
231091
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
231092
- "name": "FlowComponentProps"
231093
- },
231094
- "declarations": [
231095
- {
231096
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
231097
- "name": "FlowComponentProps"
231098
- }
231099
- ],
231100
- "required": false,
231101
- "type": {
231102
- "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
231103
- }
231104
- },
231105
- "tunnelId": {
231106
- "defaultValue": null,
231107
- "description": "@internal",
231108
- "name": "tunnelId",
231109
- "parent": {
231110
- "fileName": "components/src/lib/types/props.ts",
231111
- "name": "PropsWithTunnel"
231112
- },
231113
- "declarations": [
231114
- {
231115
- "fileName": "components/src/lib/types/props.ts",
231116
- "name": "PropsWithTunnel"
231117
- }
231118
- ],
231119
- "required": false,
231120
- "type": {
231121
- "name": "string | null"
231122
- }
231123
- },
231124
- "ref": {
231125
- "defaultValue": null,
231126
- "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}",
231127
- "name": "ref",
231128
- "parent": {
231129
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
231130
- "name": "RefAttributes"
231131
- },
231132
- "declarations": [
231133
- {
231134
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
231135
- "name": "RefAttributes"
231136
- }
231137
- ],
231138
- "required": false,
231139
- "type": {
231140
- "name": "Ref<HTMLInputElement>"
231141
- }
231142
- },
231143
- "key": {
231144
- "defaultValue": null,
231145
- "description": "",
231146
- "name": "key",
231147
- "parent": {
231148
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
231149
- "name": "Attributes"
231150
- },
231151
- "declarations": [
231152
- {
231153
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
231154
- "name": "Attributes"
231155
- }
231156
- ],
231157
- "required": false,
231158
- "type": {
231159
- "name": "Key | null"
231160
- }
231161
- },
231162
- "children": {
231163
- "defaultValue": null,
231164
- "description": "",
231165
- "name": "children",
231166
- "declarations": [
231167
- {
231168
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
231169
- "name": "TypeLiteral"
231170
- }
231171
- ],
231172
- "required": false,
231173
- "type": {
231174
- "name": "ReactNode"
231175
- }
231176
- }
231177
- }
231178
- },
231179
231179
  {
231180
231180
  "tags": {},
231181
231181
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/MenuItem/components/MenuItemContent/MenuItemContent.tsx",
@@ -8,7 +8,7 @@ const generateTranslationString = (rule, shortVersion = false) => {
8
8
  }
9
9
  const translateString = `validation.${rule.ruleType ?? "general"}`;
10
10
  let finalTranslationString = "";
11
- if ("min" in rule && rule.min || "max" in rule && rule.max) {
11
+ if ("min" in rule && rule.min !== void 0 || "max" in rule && rule.max !== void 0) {
12
12
  const breakingBoundaryProperty = rule.failingBoundary ? rule.failingBoundary : rule.min ? "min" : "max";
13
13
  if (rule.identifier) {
14
14
  finalTranslationString = `${translateString}.${rule.identifier}.${breakingBoundaryProperty}`;
@@ -1 +1 @@
1
- {"version":3,"file":"generateValidationTranslation.mjs","sources":["../../../../../../../src/components/PasswordCreationField/lib/generateValidationTranslation.ts"],"sourcesContent":["import {\n RuleType,\n type RuleValidationResult,\n} from \"@mittwald/password-tools-js/rules\";\n\nconst generateTranslationString = (\n rule: Partial<RuleValidationResult> & { translationKey?: string },\n shortVersion = false,\n): string => {\n if (rule.translationKey) {\n return `validation.${rule.translationKey}`;\n }\n const translateString = `validation.${rule.ruleType ?? \"general\"}`;\n let finalTranslationString = \"\";\n\n if ((\"min\" in rule && rule.min) || (\"max\" in rule && rule.max)) {\n const breakingBoundaryProperty = rule.failingBoundary\n ? rule.failingBoundary\n : rule.min\n ? \"min\"\n : \"max\";\n\n if (rule.identifier) {\n finalTranslationString = `${translateString}.${rule.identifier}.${breakingBoundaryProperty}`;\n } else {\n finalTranslationString = `${translateString}.${breakingBoundaryProperty}`;\n }\n } else if (rule.identifier) {\n finalTranslationString = `${translateString}.${rule.identifier}`;\n } else {\n finalTranslationString = translateString;\n }\n\n return shortVersion\n ? `${finalTranslationString}.short`\n : finalTranslationString;\n};\n\nexport const generateValidationTranslation = (\n r: Partial<RuleValidationResult>,\n shotVersion = false,\n): [string, Record<string, string | number | boolean> | undefined] => {\n const translationKey = generateTranslationString(r, shotVersion);\n\n if (r.ruleType === RuleType.char && r.chars) {\n return [\n translationKey,\n { ...r, chars: r.chars.map((c) => c.char).join(\"\") },\n ];\n }\n\n return [\n translationKey,\n r as unknown as Record<string, string | number | boolean> | undefined,\n ];\n};\n\nexport default generateValidationTranslation;\n"],"names":[],"mappings":";;AAKA,MAAM,yBAA4B,GAAA,CAChC,IACA,EAAA,YAAA,GAAe,KACJ,KAAA;AACX,EAAA,IAAI,KAAK,cAAgB,EAAA;AACvB,IAAO,OAAA,CAAA,WAAA,EAAc,KAAK,cAAc,CAAA,CAAA;AAAA;AAE1C,EAAA,MAAM,eAAkB,GAAA,CAAA,WAAA,EAAc,IAAK,CAAA,QAAA,IAAY,SAAS,CAAA,CAAA;AAChE,EAAA,IAAI,sBAAyB,GAAA,EAAA;AAE7B,EAAA,IAAK,SAAS,IAAQ,IAAA,IAAA,CAAK,OAAS,KAAS,IAAA,IAAA,IAAQ,KAAK,GAAM,EAAA;AAC9D,IAAA,MAAM,2BAA2B,IAAK,CAAA,eAAA,GAClC,KAAK,eACL,GAAA,IAAA,CAAK,MACH,KACA,GAAA,KAAA;AAEN,IAAA,IAAI,KAAK,UAAY,EAAA;AACnB,MAAA,sBAAA,GAAyB,GAAG,eAAe,CAAA,CAAA,EAAI,IAAK,CAAA,UAAU,IAAI,wBAAwB,CAAA,CAAA;AAAA,KACrF,MAAA;AACL,MAAyB,sBAAA,GAAA,CAAA,EAAG,eAAe,CAAA,CAAA,EAAI,wBAAwB,CAAA,CAAA;AAAA;AACzE,GACF,MAAA,IAAW,KAAK,UAAY,EAAA;AAC1B,IAAA,sBAAA,GAAyB,CAAG,EAAA,eAAe,CAAI,CAAA,EAAA,IAAA,CAAK,UAAU,CAAA,CAAA;AAAA,GACzD,MAAA;AACL,IAAyB,sBAAA,GAAA,eAAA;AAAA;AAG3B,EAAO,OAAA,YAAA,GACH,CAAG,EAAA,sBAAsB,CACzB,MAAA,CAAA,GAAA,sBAAA;AACN,CAAA;AAEO,MAAM,6BAAgC,GAAA,CAC3C,CACA,EAAA,WAAA,GAAc,KACsD,KAAA;AACpE,EAAM,MAAA,cAAA,GAAiB,yBAA0B,CAAA,CAAA,EAAG,WAAW,CAAA;AAE/D,EAAA,IAAI,CAAE,CAAA,QAAA,KAAa,QAAS,CAAA,IAAA,IAAQ,EAAE,KAAO,EAAA;AAC3C,IAAO,OAAA;AAAA,MACL,cAAA;AAAA,MACA,EAAE,GAAG,CAAG,EAAA,KAAA,EAAO,EAAE,KAAM,CAAA,GAAA,CAAI,CAAC,CAAA,KAAM,CAAE,CAAA,IAAI,CAAE,CAAA,IAAA,CAAK,EAAE,CAAE;AAAA,KACrD;AAAA;AAGF,EAAO,OAAA;AAAA,IACL,cAAA;AAAA,IACA;AAAA,GACF;AACF;;;;"}
1
+ {"version":3,"file":"generateValidationTranslation.mjs","sources":["../../../../../../../src/components/PasswordCreationField/lib/generateValidationTranslation.ts"],"sourcesContent":["import {\n RuleType,\n type RuleValidationResult,\n} from \"@mittwald/password-tools-js/rules\";\n\nconst generateTranslationString = (\n rule: Partial<RuleValidationResult> & { translationKey?: string },\n shortVersion = false,\n): string => {\n if (rule.translationKey) {\n return `validation.${rule.translationKey}`;\n }\n const translateString = `validation.${rule.ruleType ?? \"general\"}`;\n let finalTranslationString = \"\";\n\n if (\n (\"min\" in rule && rule.min !== undefined) ||\n (\"max\" in rule && rule.max !== undefined)\n ) {\n const breakingBoundaryProperty = rule.failingBoundary\n ? rule.failingBoundary\n : rule.min\n ? \"min\"\n : \"max\";\n\n if (rule.identifier) {\n finalTranslationString = `${translateString}.${rule.identifier}.${breakingBoundaryProperty}`;\n } else {\n finalTranslationString = `${translateString}.${breakingBoundaryProperty}`;\n }\n } else if (rule.identifier) {\n finalTranslationString = `${translateString}.${rule.identifier}`;\n } else {\n finalTranslationString = translateString;\n }\n\n return shortVersion\n ? `${finalTranslationString}.short`\n : finalTranslationString;\n};\n\nexport const generateValidationTranslation = (\n r: Partial<RuleValidationResult>,\n shotVersion = false,\n): [string, Record<string, string | number | boolean> | undefined] => {\n const translationKey = generateTranslationString(r, shotVersion);\n\n if (r.ruleType === RuleType.char && r.chars) {\n return [\n translationKey,\n { ...r, chars: r.chars.map((c) => c.char).join(\"\") },\n ];\n }\n\n return [\n translationKey,\n r as unknown as Record<string, string | number | boolean> | undefined,\n ];\n};\n\nexport default generateValidationTranslation;\n"],"names":[],"mappings":";;AAKA,MAAM,yBAA4B,GAAA,CAChC,IACA,EAAA,YAAA,GAAe,KACJ,KAAA;AACX,EAAA,IAAI,KAAK,cAAgB,EAAA;AACvB,IAAO,OAAA,CAAA,WAAA,EAAc,KAAK,cAAc,CAAA,CAAA;AAAA;AAE1C,EAAA,MAAM,eAAkB,GAAA,CAAA,WAAA,EAAc,IAAK,CAAA,QAAA,IAAY,SAAS,CAAA,CAAA;AAChE,EAAA,IAAI,sBAAyB,GAAA,EAAA;AAE7B,EACG,IAAA,KAAA,IAAS,QAAQ,IAAK,CAAA,GAAA,KAAQ,UAC9B,KAAS,IAAA,IAAA,IAAQ,IAAK,CAAA,GAAA,KAAQ,MAC/B,EAAA;AACA,IAAA,MAAM,2BAA2B,IAAK,CAAA,eAAA,GAClC,KAAK,eACL,GAAA,IAAA,CAAK,MACH,KACA,GAAA,KAAA;AAEN,IAAA,IAAI,KAAK,UAAY,EAAA;AACnB,MAAA,sBAAA,GAAyB,GAAG,eAAe,CAAA,CAAA,EAAI,IAAK,CAAA,UAAU,IAAI,wBAAwB,CAAA,CAAA;AAAA,KACrF,MAAA;AACL,MAAyB,sBAAA,GAAA,CAAA,EAAG,eAAe,CAAA,CAAA,EAAI,wBAAwB,CAAA,CAAA;AAAA;AACzE,GACF,MAAA,IAAW,KAAK,UAAY,EAAA;AAC1B,IAAA,sBAAA,GAAyB,CAAG,EAAA,eAAe,CAAI,CAAA,EAAA,IAAA,CAAK,UAAU,CAAA,CAAA;AAAA,GACzD,MAAA;AACL,IAAyB,sBAAA,GAAA,eAAA;AAAA;AAG3B,EAAO,OAAA,YAAA,GACH,CAAG,EAAA,sBAAsB,CACzB,MAAA,CAAA,GAAA,sBAAA;AACN,CAAA;AAEO,MAAM,6BAAgC,GAAA,CAC3C,CACA,EAAA,WAAA,GAAc,KACsD,KAAA;AACpE,EAAM,MAAA,cAAA,GAAiB,yBAA0B,CAAA,CAAA,EAAG,WAAW,CAAA;AAE/D,EAAA,IAAI,CAAE,CAAA,QAAA,KAAa,QAAS,CAAA,IAAA,IAAQ,EAAE,KAAO,EAAA;AAC3C,IAAO,OAAA;AAAA,MACL,cAAA;AAAA,MACA,EAAE,GAAG,CAAG,EAAA,KAAA,EAAO,EAAE,KAAM,CAAA,GAAA,CAAI,CAAC,CAAA,KAAM,CAAE,CAAA,IAAI,CAAE,CAAA,IAAA,CAAK,EAAE,CAAE;AAAA,KACrD;AAAA;AAGF,EAAO,OAAA;AAAA,IACL,cAAA;AAAA,IACA;AAAA,GACF;AACF;;;;"}
@@ -1 +1 @@
1
- {"version":3,"file":"generateValidationTranslation.d.ts","sourceRoot":"","sources":["../../../../../src/components/PasswordCreationField/lib/generateValidationTranslation.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,oBAAoB,EAC1B,MAAM,mCAAmC,CAAC;AAmC3C,eAAO,MAAM,6BAA6B,GACxC,GAAG,OAAO,CAAC,oBAAoB,CAAC,EAChC,qBAAmB,KAClB,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,GAAG,SAAS,CAchE,CAAC;AAEF,eAAe,6BAA6B,CAAC"}
1
+ {"version":3,"file":"generateValidationTranslation.d.ts","sourceRoot":"","sources":["../../../../../src/components/PasswordCreationField/lib/generateValidationTranslation.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,oBAAoB,EAC1B,MAAM,mCAAmC,CAAC;AAsC3C,eAAO,MAAM,6BAA6B,GACxC,GAAG,OAAO,CAAC,oBAAoB,CAAC,EAChC,qBAAmB,KAClB,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,GAAG,SAAS,CAchE,CAAC;AAEF,eAAe,6BAA6B,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/flow-react-components",
3
- "version": "0.2.0-alpha.333",
3
+ "version": "0.2.0-alpha.334",
4
4
  "type": "module",
5
5
  "description": "A React implementation of Flow, mittwald’s design system",
6
6
  "homepage": "https://mittwald.github.io/flow",
@@ -58,7 +58,7 @@
58
58
  "@chakra-ui/live-region": "^2.1.0",
59
59
  "@internationalized/string-compiler": "^3.2.6",
60
60
  "@mittwald/password-tools-js": "^2.1.6",
61
- "@mittwald/react-tunnel": "0.2.0-alpha.333",
61
+ "@mittwald/react-tunnel": "0.2.0-alpha.334",
62
62
  "@mittwald/react-use-promise": "^3.0.4",
63
63
  "@react-aria/form": "^3.0.18",
64
64
  "@react-aria/utils": "^3.29.1",
@@ -99,7 +99,7 @@
99
99
  "@faker-js/faker": "^9.9.0",
100
100
  "@internationalized/date": "^3.8.2",
101
101
  "@mittwald/flow-core": "",
102
- "@mittwald/flow-design-tokens": "0.2.0-alpha.333",
102
+ "@mittwald/flow-design-tokens": "0.2.0-alpha.334",
103
103
  "@mittwald/react-use-promise": "^3.0.4",
104
104
  "@mittwald/remote-dom-react": "1.2.2-mittwald.3",
105
105
  "@mittwald/typescript-config": "",
@@ -181,5 +181,5 @@
181
181
  "optional": true
182
182
  }
183
183
  },
184
- "gitHead": "8dde09359a418efc7cf72d2db91871c9712cb71c"
184
+ "gitHead": "ab4b31129dbb0dfac1537349de9d25152000b953"
185
185
  }