@mittwald/flow-react-components 0.1.0-alpha.309 → 0.1.0-alpha.310
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 +13 -0
- package/package.json +23 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.1.0-alpha.310](https://github.com/mittwald/flow/compare/0.1.0-alpha.309...0.1.0-alpha.310) (2024-10-30)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **docs:** Develop tab with properties table of the component
|
|
11
|
+
([#920](https://github.com/mittwald/flow/issues/920))
|
|
12
|
+
([0ead16a](https://github.com/mittwald/flow/commit/0ead16ac7b03b1da7e167f62c62d1762d7bbb45e))
|
|
13
|
+
|
|
14
|
+
# Change Log
|
|
15
|
+
|
|
16
|
+
All notable changes to this project will be documented in this file. See
|
|
17
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
18
|
+
|
|
6
19
|
# [0.1.0-alpha.309](https://github.com/mittwald/flow/compare/0.1.0-alpha.308...0.1.0-alpha.309) (2024-10-30)
|
|
7
20
|
|
|
8
21
|
**Note:** Version bump only for package @mittwald/flow-react-components
|
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.310",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A React implementation of Flow, mittwald’s design system",
|
|
6
6
|
"homepage": "https://mittwald.github.io/flow",
|
|
@@ -362,7 +362,8 @@
|
|
|
362
362
|
"import": "./dist/js/react-hook-form.js"
|
|
363
363
|
},
|
|
364
364
|
"./globals.css": "./dist/css/globals.css",
|
|
365
|
-
"./all.css": "./dist/js/all.css"
|
|
365
|
+
"./all.css": "./dist/js/all.css",
|
|
366
|
+
"./doc-properties": "./out/doc-properties.json"
|
|
366
367
|
},
|
|
367
368
|
"files": [
|
|
368
369
|
"*.md",
|
|
@@ -377,6 +378,7 @@
|
|
|
377
378
|
"build:css": "run vite build --config vite.build.config.css.ts && run postbuild:css",
|
|
378
379
|
"postbuild:css": "rimraf dist/css/**/*.js",
|
|
379
380
|
"build:deps:watch": "run -T build:deps:watch @mittwald/flow-react-components",
|
|
381
|
+
"build:docs-properties": "run tsx dev/createDocPropertiesJson.ts",
|
|
380
382
|
"build:icons": "run tsx dev/icons/generate.ts",
|
|
381
383
|
"build:storybook": "run storybook build",
|
|
382
384
|
"dev": "run nx run-many --outputStyle=stream --projects=@mittwald/flow-react-components --targets=start,build:deps:watch",
|
|
@@ -389,7 +391,7 @@
|
|
|
389
391
|
"@chakra-ui/live-region": "^2.1.0",
|
|
390
392
|
"@internationalized/date": "^3.5.6",
|
|
391
393
|
"@internationalized/string-compiler": "^3.2.5",
|
|
392
|
-
"@mittwald/react-tunnel": "^0.1.0-alpha.
|
|
394
|
+
"@mittwald/react-tunnel": "^0.1.0-alpha.310",
|
|
393
395
|
"@mittwald/react-use-promise": "^2.5.0",
|
|
394
396
|
"@react-aria/utils": "^3.25.3",
|
|
395
397
|
"@react-types/shared": "^3.25.0",
|
|
@@ -417,7 +419,7 @@
|
|
|
417
419
|
},
|
|
418
420
|
"devDependencies": {
|
|
419
421
|
"@faker-js/faker": "^9.0.3",
|
|
420
|
-
"@mittwald/flow-design-tokens": "^0.1.0-alpha.
|
|
422
|
+
"@mittwald/flow-design-tokens": "^0.1.0-alpha.310",
|
|
421
423
|
"@mittwald/react-use-promise": "^2.5.0",
|
|
422
424
|
"@nx/storybook": "^20.0.0",
|
|
423
425
|
"@storybook/addon-a11y": "^8.3.5",
|
|
@@ -450,6 +452,7 @@
|
|
|
450
452
|
"@vitest/coverage-v8": "~2.1.2",
|
|
451
453
|
"decamelize": "^6.0.0",
|
|
452
454
|
"fs-jetpack": "^5.1.0",
|
|
455
|
+
"glob": "^10.4.1",
|
|
453
456
|
"happy-dom": "^15.7.4",
|
|
454
457
|
"next": "^14.2.15",
|
|
455
458
|
"nx": "^20.0.0",
|
|
@@ -459,6 +462,7 @@
|
|
|
459
462
|
"prettier": "^3.3.3",
|
|
460
463
|
"prop-types": "^15.8.1",
|
|
461
464
|
"react": "^18.3.1",
|
|
465
|
+
"react-docgen-typescript": "^2.2.2",
|
|
462
466
|
"react-dom": "^18.3.1",
|
|
463
467
|
"react-element-to-jsx-string": "^15.0.0",
|
|
464
468
|
"react-hook-form": "^7.53.0",
|
|
@@ -496,5 +500,19 @@
|
|
|
496
500
|
"optional": true
|
|
497
501
|
}
|
|
498
502
|
},
|
|
499
|
-
"
|
|
503
|
+
"nx": {
|
|
504
|
+
"targets": {
|
|
505
|
+
"build:docs-properties": {
|
|
506
|
+
"cache": true,
|
|
507
|
+
"inputs": [
|
|
508
|
+
"{projectRoot}/src/components/**/*",
|
|
509
|
+
"{projectRoot}/dev/createDocPropertiesJson.ts"
|
|
510
|
+
],
|
|
511
|
+
"outputs": [
|
|
512
|
+
"{projectRoot}/out"
|
|
513
|
+
]
|
|
514
|
+
}
|
|
515
|
+
}
|
|
516
|
+
},
|
|
517
|
+
"gitHead": "5f4a984b02dcfe5005f4fe5a550b80be0b931c3e"
|
|
500
518
|
}
|