@mittwald/flow-react-components 0.2.0-alpha.534 → 0.2.0-alpha.536
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 +12 -0
- package/dist/assets/doc-properties.json +266 -6
- package/dist/css/all.css +1 -1
- package/dist/js/components/src/components/MarkdownEditor/MarkdownEditor.mjs +2 -2
- package/dist/js/components/src/components/MarkdownEditor/MarkdownEditor.mjs.map +1 -1
- package/dist/js/components/src/components/Modal/Modal.mjs +4 -2
- package/dist/js/components/src/components/Modal/Modal.mjs.map +1 -1
- package/dist/js/components/src/components/Modal/components/OffCanvasSuspenseFallback/OffCanvasSuspenseFallback.mjs +120 -0
- package/dist/js/components/src/components/Modal/components/OffCanvasSuspenseFallback/OffCanvasSuspenseFallback.mjs.map +1 -0
- package/dist/js/components/src/components/Overlay/Overlay.mjs +2 -1
- package/dist/js/components/src/components/Overlay/Overlay.mjs.map +1 -1
- package/dist/js/components/src/components/Overlay/components/OverlayContent.mjs +14 -9
- package/dist/js/components/src/components/Overlay/components/OverlayContent.mjs.map +1 -1
- package/dist/js/components/src/components/Overlay/components/OverlaySuspenseFallback.mjs +119 -0
- package/dist/js/components/src/components/Overlay/components/OverlaySuspenseFallback.mjs.map +1 -0
- package/dist/js/components/src/components/TextArea/TextArea.mjs +45 -4
- package/dist/js/components/src/components/TextArea/TextArea.mjs.map +1 -1
- package/dist/js/components/src/components/TextArea/TextArea.module.scss.mjs +8 -2
- package/dist/js/components/src/components/TextArea/TextArea.module.scss.mjs.map +1 -1
- package/dist/js/components/src/views/FlexView.mjs +15 -0
- package/dist/js/components/src/views/FlexView.mjs.map +1 -0
- package/dist/js/flr-universal.mjs +3 -3
- package/dist/types/components/MarkdownEditor/stories/Default.stories.d.ts +4 -0
- package/dist/types/components/MarkdownEditor/stories/Default.stories.d.ts.map +1 -1
- package/dist/types/components/Modal/Modal.d.ts.map +1 -1
- package/dist/types/components/Modal/components/OffCanvasSuspenseFallback/OffCanvasSuspenseFallback.d.ts +3 -0
- package/dist/types/components/Modal/components/OffCanvasSuspenseFallback/OffCanvasSuspenseFallback.d.ts.map +1 -0
- package/dist/types/components/Modal/components/OffCanvasSuspenseFallback/index.d.ts +2 -0
- package/dist/types/components/Modal/components/OffCanvasSuspenseFallback/index.d.ts.map +1 -0
- package/dist/types/components/Modal/stories/Default.stories.d.ts.map +1 -1
- package/dist/types/components/Overlay/Overlay.d.ts +1 -0
- package/dist/types/components/Overlay/Overlay.d.ts.map +1 -1
- package/dist/types/components/Overlay/components/OverlayContent.d.ts.map +1 -1
- package/dist/types/components/Overlay/components/OverlaySuspenseFallback.d.ts +4 -0
- package/dist/types/components/Overlay/components/OverlaySuspenseFallback.d.ts.map +1 -0
- package/dist/types/components/Overlay/components/index.d.ts +1 -0
- package/dist/types/components/Overlay/components/index.d.ts.map +1 -1
- package/dist/types/components/TextArea/TextArea.d.ts +9 -0
- package/dist/types/components/TextArea/TextArea.d.ts.map +1 -1
- package/dist/types/components/TextArea/stories/Default.stories.d.ts +4 -0
- package/dist/types/components/TextArea/stories/Default.stories.d.ts.map +1 -1
- package/package.json +4 -4
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.536](https://github.com/mittwald/flow/compare/0.2.0-alpha.535...0.2.0-alpha.536) (2025-10-29)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **TextArea:** allow resize ([#2075](https://github.com/mittwald/flow/issues/2075)) ([9bb9846](https://github.com/mittwald/flow/commit/9bb9846e21d432bd963b6113f8319bc551dd81b5))
|
|
11
|
+
|
|
12
|
+
# [0.2.0-alpha.535](https://github.com/mittwald/flow/compare/0.2.0-alpha.534...0.2.0-alpha.535) (2025-10-28)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* optimize OffCanvas suspense fallback ([faf11d7](https://github.com/mittwald/flow/commit/faf11d7aff990bd9ddda6ea215bfc833886b3b00))
|
|
17
|
+
|
|
6
18
|
# [0.2.0-alpha.534](https://github.com/mittwald/flow/compare/0.2.0-alpha.533...0.2.0-alpha.534) (2025-10-28)
|
|
7
19
|
|
|
8
20
|
### Features
|
|
@@ -8650,6 +8650,63 @@
|
|
|
8650
8650
|
"name": "number"
|
|
8651
8651
|
}
|
|
8652
8652
|
},
|
|
8653
|
+
"allowHorizontalResize": {
|
|
8654
|
+
"defaultValue": null,
|
|
8655
|
+
"description": "Allows the user to manually resize the textArea horizontally.",
|
|
8656
|
+
"name": "allowHorizontalResize",
|
|
8657
|
+
"parent": {
|
|
8658
|
+
"fileName": "components/src/components/TextArea/TextArea.tsx",
|
|
8659
|
+
"name": "TextAreaProps"
|
|
8660
|
+
},
|
|
8661
|
+
"declarations": [
|
|
8662
|
+
{
|
|
8663
|
+
"fileName": "components/src/components/TextArea/TextArea.tsx",
|
|
8664
|
+
"name": "TextAreaProps"
|
|
8665
|
+
}
|
|
8666
|
+
],
|
|
8667
|
+
"required": false,
|
|
8668
|
+
"type": {
|
|
8669
|
+
"name": "boolean"
|
|
8670
|
+
}
|
|
8671
|
+
},
|
|
8672
|
+
"allowVerticalResize": {
|
|
8673
|
+
"defaultValue": null,
|
|
8674
|
+
"description": "Allows the user to manually resize the textArea vertically.",
|
|
8675
|
+
"name": "allowVerticalResize",
|
|
8676
|
+
"parent": {
|
|
8677
|
+
"fileName": "components/src/components/TextArea/TextArea.tsx",
|
|
8678
|
+
"name": "TextAreaProps"
|
|
8679
|
+
},
|
|
8680
|
+
"declarations": [
|
|
8681
|
+
{
|
|
8682
|
+
"fileName": "components/src/components/TextArea/TextArea.tsx",
|
|
8683
|
+
"name": "TextAreaProps"
|
|
8684
|
+
}
|
|
8685
|
+
],
|
|
8686
|
+
"required": false,
|
|
8687
|
+
"type": {
|
|
8688
|
+
"name": "boolean"
|
|
8689
|
+
}
|
|
8690
|
+
},
|
|
8691
|
+
"allowResize": {
|
|
8692
|
+
"defaultValue": null,
|
|
8693
|
+
"description": "Allows the user to manually resize the textArea horizontally and\nvertically.",
|
|
8694
|
+
"name": "allowResize",
|
|
8695
|
+
"parent": {
|
|
8696
|
+
"fileName": "components/src/components/TextArea/TextArea.tsx",
|
|
8697
|
+
"name": "TextAreaProps"
|
|
8698
|
+
},
|
|
8699
|
+
"declarations": [
|
|
8700
|
+
{
|
|
8701
|
+
"fileName": "components/src/components/TextArea/TextArea.tsx",
|
|
8702
|
+
"name": "TextAreaProps"
|
|
8703
|
+
}
|
|
8704
|
+
],
|
|
8705
|
+
"required": false,
|
|
8706
|
+
"type": {
|
|
8707
|
+
"name": "boolean"
|
|
8708
|
+
}
|
|
8709
|
+
},
|
|
8653
8710
|
"children": {
|
|
8654
8711
|
"defaultValue": null,
|
|
8655
8712
|
"description": "",
|
|
@@ -56465,6 +56522,25 @@
|
|
|
56465
56522
|
"name": "\"LightBox\" | \"Modal\""
|
|
56466
56523
|
}
|
|
56467
56524
|
},
|
|
56525
|
+
"isOpen": {
|
|
56526
|
+
"defaultValue": null,
|
|
56527
|
+
"description": "",
|
|
56528
|
+
"name": "isOpen",
|
|
56529
|
+
"parent": {
|
|
56530
|
+
"fileName": "components/src/components/Overlay/Overlay.tsx",
|
|
56531
|
+
"name": "OverlayProps"
|
|
56532
|
+
},
|
|
56533
|
+
"declarations": [
|
|
56534
|
+
{
|
|
56535
|
+
"fileName": "components/src/components/Overlay/Overlay.tsx",
|
|
56536
|
+
"name": "OverlayProps"
|
|
56537
|
+
}
|
|
56538
|
+
],
|
|
56539
|
+
"required": false,
|
|
56540
|
+
"type": {
|
|
56541
|
+
"name": "boolean"
|
|
56542
|
+
}
|
|
56543
|
+
},
|
|
56468
56544
|
"children": {
|
|
56469
56545
|
"defaultValue": null,
|
|
56470
56546
|
"description": "",
|
|
@@ -81207,6 +81283,63 @@
|
|
|
81207
81283
|
"name": "number"
|
|
81208
81284
|
}
|
|
81209
81285
|
},
|
|
81286
|
+
"allowHorizontalResize": {
|
|
81287
|
+
"defaultValue": null,
|
|
81288
|
+
"description": "Allows the user to manually resize the textArea horizontally.",
|
|
81289
|
+
"name": "allowHorizontalResize",
|
|
81290
|
+
"parent": {
|
|
81291
|
+
"fileName": "components/src/components/TextArea/TextArea.tsx",
|
|
81292
|
+
"name": "TextAreaProps"
|
|
81293
|
+
},
|
|
81294
|
+
"declarations": [
|
|
81295
|
+
{
|
|
81296
|
+
"fileName": "components/src/components/TextArea/TextArea.tsx",
|
|
81297
|
+
"name": "TextAreaProps"
|
|
81298
|
+
}
|
|
81299
|
+
],
|
|
81300
|
+
"required": false,
|
|
81301
|
+
"type": {
|
|
81302
|
+
"name": "boolean"
|
|
81303
|
+
}
|
|
81304
|
+
},
|
|
81305
|
+
"allowVerticalResize": {
|
|
81306
|
+
"defaultValue": null,
|
|
81307
|
+
"description": "Allows the user to manually resize the textArea vertically.",
|
|
81308
|
+
"name": "allowVerticalResize",
|
|
81309
|
+
"parent": {
|
|
81310
|
+
"fileName": "components/src/components/TextArea/TextArea.tsx",
|
|
81311
|
+
"name": "TextAreaProps"
|
|
81312
|
+
},
|
|
81313
|
+
"declarations": [
|
|
81314
|
+
{
|
|
81315
|
+
"fileName": "components/src/components/TextArea/TextArea.tsx",
|
|
81316
|
+
"name": "TextAreaProps"
|
|
81317
|
+
}
|
|
81318
|
+
],
|
|
81319
|
+
"required": false,
|
|
81320
|
+
"type": {
|
|
81321
|
+
"name": "boolean"
|
|
81322
|
+
}
|
|
81323
|
+
},
|
|
81324
|
+
"allowResize": {
|
|
81325
|
+
"defaultValue": null,
|
|
81326
|
+
"description": "Allows the user to manually resize the textArea horizontally and\nvertically.",
|
|
81327
|
+
"name": "allowResize",
|
|
81328
|
+
"parent": {
|
|
81329
|
+
"fileName": "components/src/components/TextArea/TextArea.tsx",
|
|
81330
|
+
"name": "TextAreaProps"
|
|
81331
|
+
},
|
|
81332
|
+
"declarations": [
|
|
81333
|
+
{
|
|
81334
|
+
"fileName": "components/src/components/TextArea/TextArea.tsx",
|
|
81335
|
+
"name": "TextAreaProps"
|
|
81336
|
+
}
|
|
81337
|
+
],
|
|
81338
|
+
"required": false,
|
|
81339
|
+
"type": {
|
|
81340
|
+
"name": "boolean"
|
|
81341
|
+
}
|
|
81342
|
+
},
|
|
81210
81343
|
"children": {
|
|
81211
81344
|
"defaultValue": null,
|
|
81212
81345
|
"description": "",
|
|
@@ -249492,6 +249625,125 @@
|
|
|
249492
249625
|
}
|
|
249493
249626
|
}
|
|
249494
249627
|
},
|
|
249628
|
+
{
|
|
249629
|
+
"tags": {},
|
|
249630
|
+
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/Overlay/components/OverlaySuspenseFallback.tsx",
|
|
249631
|
+
"description": "",
|
|
249632
|
+
"displayName": "OverlaySuspenseFallback",
|
|
249633
|
+
"methods": [],
|
|
249634
|
+
"props": {
|
|
249635
|
+
"ref": {
|
|
249636
|
+
"defaultValue": null,
|
|
249637
|
+
"description": "",
|
|
249638
|
+
"name": "ref",
|
|
249639
|
+
"parent": {
|
|
249640
|
+
"fileName": "components/src/components/Overlay/components/OverlayContent.tsx",
|
|
249641
|
+
"name": "OverlayContentProps"
|
|
249642
|
+
},
|
|
249643
|
+
"declarations": [
|
|
249644
|
+
{
|
|
249645
|
+
"fileName": "components/src/components/Overlay/components/OverlayContent.tsx",
|
|
249646
|
+
"name": "OverlayContentProps"
|
|
249647
|
+
}
|
|
249648
|
+
],
|
|
249649
|
+
"required": false,
|
|
249650
|
+
"type": {
|
|
249651
|
+
"name": "Ref<HTMLDivElement>"
|
|
249652
|
+
}
|
|
249653
|
+
},
|
|
249654
|
+
"onOpenChange": {
|
|
249655
|
+
"defaultValue": null,
|
|
249656
|
+
"description": "",
|
|
249657
|
+
"name": "onOpenChange",
|
|
249658
|
+
"parent": {
|
|
249659
|
+
"fileName": "components/src/components/Overlay/components/OverlayContent.tsx",
|
|
249660
|
+
"name": "OverlayContentProps"
|
|
249661
|
+
},
|
|
249662
|
+
"declarations": [
|
|
249663
|
+
{
|
|
249664
|
+
"fileName": "components/src/components/Overlay/components/OverlayContent.tsx",
|
|
249665
|
+
"name": "OverlayContentProps"
|
|
249666
|
+
}
|
|
249667
|
+
],
|
|
249668
|
+
"required": true,
|
|
249669
|
+
"type": {
|
|
249670
|
+
"name": "(isOpen: boolean) => void"
|
|
249671
|
+
}
|
|
249672
|
+
},
|
|
249673
|
+
"isDismissable": {
|
|
249674
|
+
"defaultValue": null,
|
|
249675
|
+
"description": "",
|
|
249676
|
+
"name": "isDismissable",
|
|
249677
|
+
"parent": {
|
|
249678
|
+
"fileName": "components/src/components/Overlay/components/OverlayContent.tsx",
|
|
249679
|
+
"name": "OverlayContentProps"
|
|
249680
|
+
},
|
|
249681
|
+
"declarations": [
|
|
249682
|
+
{
|
|
249683
|
+
"fileName": "components/src/components/Overlay/components/OverlayContent.tsx",
|
|
249684
|
+
"name": "OverlayContentProps"
|
|
249685
|
+
}
|
|
249686
|
+
],
|
|
249687
|
+
"required": false,
|
|
249688
|
+
"type": {
|
|
249689
|
+
"name": "boolean"
|
|
249690
|
+
}
|
|
249691
|
+
},
|
|
249692
|
+
"isOpen": {
|
|
249693
|
+
"defaultValue": null,
|
|
249694
|
+
"description": "",
|
|
249695
|
+
"name": "isOpen",
|
|
249696
|
+
"parent": {
|
|
249697
|
+
"fileName": "components/src/components/Overlay/components/OverlayContent.tsx",
|
|
249698
|
+
"name": "OverlayContentProps"
|
|
249699
|
+
},
|
|
249700
|
+
"declarations": [
|
|
249701
|
+
{
|
|
249702
|
+
"fileName": "components/src/components/Overlay/components/OverlayContent.tsx",
|
|
249703
|
+
"name": "OverlayContentProps"
|
|
249704
|
+
}
|
|
249705
|
+
],
|
|
249706
|
+
"required": false,
|
|
249707
|
+
"type": {
|
|
249708
|
+
"name": "boolean"
|
|
249709
|
+
}
|
|
249710
|
+
},
|
|
249711
|
+
"children": {
|
|
249712
|
+
"defaultValue": null,
|
|
249713
|
+
"description": "",
|
|
249714
|
+
"name": "children",
|
|
249715
|
+
"declarations": [
|
|
249716
|
+
{
|
|
249717
|
+
"fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
|
|
249718
|
+
"name": "TypeLiteral"
|
|
249719
|
+
}
|
|
249720
|
+
],
|
|
249721
|
+
"required": false,
|
|
249722
|
+
"type": {
|
|
249723
|
+
"name": "ReactNode"
|
|
249724
|
+
}
|
|
249725
|
+
},
|
|
249726
|
+
"className": {
|
|
249727
|
+
"defaultValue": null,
|
|
249728
|
+
"description": "The elements class name.",
|
|
249729
|
+
"name": "className",
|
|
249730
|
+
"parent": {
|
|
249731
|
+
"fileName": "components/src/lib/types/props.ts",
|
|
249732
|
+
"name": "PropsWithClassName"
|
|
249733
|
+
},
|
|
249734
|
+
"declarations": [
|
|
249735
|
+
{
|
|
249736
|
+
"fileName": "components/src/lib/types/props.ts",
|
|
249737
|
+
"name": "PropsWithClassName"
|
|
249738
|
+
}
|
|
249739
|
+
],
|
|
249740
|
+
"required": false,
|
|
249741
|
+
"type": {
|
|
249742
|
+
"name": "string"
|
|
249743
|
+
}
|
|
249744
|
+
}
|
|
249745
|
+
}
|
|
249746
|
+
},
|
|
249495
249747
|
{
|
|
249496
249748
|
"tags": {
|
|
249497
249749
|
"flr-generate": "all"
|
|
@@ -256422,10 +256674,10 @@
|
|
|
256422
256674
|
"name": "() => ArrayIterator<any>"
|
|
256423
256675
|
}
|
|
256424
256676
|
},
|
|
256425
|
-
"__@unscopables@
|
|
256677
|
+
"__@unscopables@3169": {
|
|
256426
256678
|
"defaultValue": null,
|
|
256427
256679
|
"description": "Is an object whose properties have the value 'true'\nwhen they will be absent when used in a 'with' statement.",
|
|
256428
|
-
"name": "__@unscopables@
|
|
256680
|
+
"name": "__@unscopables@3169",
|
|
256429
256681
|
"parent": {
|
|
256430
256682
|
"fileName": "flow/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
|
|
256431
256683
|
"name": "Array"
|
|
@@ -257258,10 +257510,10 @@
|
|
|
257258
257510
|
"name": "() => ArrayIterator<any>"
|
|
257259
257511
|
}
|
|
257260
257512
|
},
|
|
257261
|
-
"__@unscopables@
|
|
257513
|
+
"__@unscopables@3169": {
|
|
257262
257514
|
"defaultValue": null,
|
|
257263
257515
|
"description": "Is an object whose properties have the value 'true'\nwhen they will be absent when used in a 'with' statement.",
|
|
257264
|
-
"name": "__@unscopables@
|
|
257516
|
+
"name": "__@unscopables@3169",
|
|
257265
257517
|
"parent": {
|
|
257266
257518
|
"fileName": "flow/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
|
|
257267
257519
|
"name": "Array"
|
|
@@ -258094,10 +258346,10 @@
|
|
|
258094
258346
|
"name": "() => ArrayIterator<any>"
|
|
258095
258347
|
}
|
|
258096
258348
|
},
|
|
258097
|
-
"__@unscopables@
|
|
258349
|
+
"__@unscopables@3169": {
|
|
258098
258350
|
"defaultValue": null,
|
|
258099
258351
|
"description": "Is an object whose properties have the value 'true'\nwhen they will be absent when used in a 'with' statement.",
|
|
258100
|
-
"name": "__@unscopables@
|
|
258352
|
+
"name": "__@unscopables@3169",
|
|
258101
258353
|
"parent": {
|
|
258102
258354
|
"fileName": "flow/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
|
|
258103
258355
|
"name": "Array"
|
|
@@ -285695,6 +285947,14 @@
|
|
|
285695
285947
|
}
|
|
285696
285948
|
}
|
|
285697
285949
|
},
|
|
285950
|
+
{
|
|
285951
|
+
"tags": {},
|
|
285952
|
+
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/OffCanvasSuspenseFallback/OffCanvasSuspenseFallback.tsx",
|
|
285953
|
+
"description": "",
|
|
285954
|
+
"displayName": "OffCanvasSuspenseFallback",
|
|
285955
|
+
"methods": [],
|
|
285956
|
+
"props": {}
|
|
285957
|
+
},
|
|
285698
285958
|
{
|
|
285699
285959
|
"tags": {},
|
|
285700
285960
|
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/ModalTrigger/ModalTrigger.tsx",
|