@mittwald/flow-react-components 0.2.0-alpha.131 → 0.2.0-alpha.133

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.
Files changed (28) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/dist/assets/doc-properties.json +72 -0
  3. package/dist/css/all.css +1 -1
  4. package/dist/js/_virtual/_.locale.json@656bcfe2b7d48c4324cbdf14a4866b19.mjs +18 -0
  5. package/dist/js/_virtual/_.locale.json@656bcfe2b7d48c4324cbdf14a4866b19.mjs.map +1 -0
  6. package/dist/js/components/src/components/Rating/Rating.mjs +38 -0
  7. package/dist/js/components/src/components/Rating/Rating.mjs.map +1 -0
  8. package/dist/js/components/src/components/Rating/Rating.module.scss.mjs +15 -0
  9. package/dist/js/components/src/components/Rating/Rating.module.scss.mjs.map +1 -0
  10. package/dist/js/index.mjs +1 -0
  11. package/dist/js/index.mjs.map +1 -1
  12. package/dist/types/components/List/model/table/types.d.ts +1 -1
  13. package/dist/types/components/List/model/table/types.d.ts.map +1 -1
  14. package/dist/types/components/List/typedList.d.ts +0 -1
  15. package/dist/types/components/List/typedList.d.ts.map +1 -1
  16. package/dist/types/components/Rating/Rating.d.ts +12 -0
  17. package/dist/types/components/Rating/Rating.d.ts.map +1 -0
  18. package/dist/types/components/Rating/index.d.ts +4 -0
  19. package/dist/types/components/Rating/index.d.ts.map +1 -0
  20. package/dist/types/components/Rating/stories/Default.stories.d.ts +8 -0
  21. package/dist/types/components/Rating/stories/Default.stories.d.ts.map +1 -0
  22. package/dist/types/components/Rating/view.d.ts +8 -0
  23. package/dist/types/components/Rating/view.d.ts.map +1 -0
  24. package/dist/types/components/public.d.ts +1 -0
  25. package/dist/types/components/public.d.ts.map +1 -1
  26. package/dist/types/views/RatingView.d.ts +5 -0
  27. package/dist/types/views/RatingView.d.ts.map +1 -0
  28. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
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.133](https://github.com/mittwald/flow/compare/0.2.0-alpha.132...0.2.0-alpha.133) (2025-04-08)
7
+
8
+ ### Features
9
+
10
+ * **Rating:** Add Rating component ([#1350](https://github.com/mittwald/flow/issues/1350)) ([986a6d8](https://github.com/mittwald/flow/commit/986a6d80d2e1cf0d1ab4be75eaf7bc8c86e89ee8))
11
+
12
+ # [0.2.0-alpha.132](https://github.com/mittwald/flow/compare/0.2.0-alpha.131...0.2.0-alpha.132) (2025-04-08)
13
+
14
+ **Note:** Version bump only for package @mittwald/flow-react-components
15
+
6
16
  # [0.2.0-alpha.131](https://github.com/mittwald/flow/compare/0.2.0-alpha.130...0.2.0-alpha.131) (2025-04-08)
7
17
 
8
18
  ### Features
@@ -30696,6 +30696,78 @@
30696
30696
  }
30697
30697
  }
30698
30698
  },
30699
+ {
30700
+ "tags": {
30701
+ "flr-generate": "all"
30702
+ },
30703
+ "filePath": "src/components/Rating/Rating.tsx",
30704
+ "description": "",
30705
+ "displayName": "Rating",
30706
+ "methods": [],
30707
+ "props": {
30708
+ "value": {
30709
+ "defaultValue": {
30710
+ "value": ": 0"
30711
+ },
30712
+ "description": "The value sets the amount of filled stars.",
30713
+ "name": "value",
30714
+ "parent": {
30715
+ "fileName": "src/components/Rating/Rating.tsx",
30716
+ "name": "RatingProps"
30717
+ },
30718
+ "declarations": [
30719
+ {
30720
+ "fileName": "src/components/Rating/Rating.tsx",
30721
+ "name": "RatingProps"
30722
+ }
30723
+ ],
30724
+ "required": false,
30725
+ "type": {
30726
+ "name": "0 | 2 | 1 | 3 | 4 | 5"
30727
+ }
30728
+ },
30729
+ "size": {
30730
+ "defaultValue": {
30731
+ "value": ": \"m\""
30732
+ },
30733
+ "description": "The size of the component.",
30734
+ "name": "size",
30735
+ "parent": {
30736
+ "fileName": "src/components/Rating/Rating.tsx",
30737
+ "name": "RatingProps"
30738
+ },
30739
+ "declarations": [
30740
+ {
30741
+ "fileName": "src/components/Rating/Rating.tsx",
30742
+ "name": "RatingProps"
30743
+ }
30744
+ ],
30745
+ "required": false,
30746
+ "type": {
30747
+ "name": "\"s\" | \"m\""
30748
+ }
30749
+ },
30750
+ "className": {
30751
+ "defaultValue": null,
30752
+ "description": "The elements class name.",
30753
+ "name": "className",
30754
+ "parent": {
30755
+ "fileName": "components/src/lib/types/props.ts",
30756
+ "name": "PropsWithClassName"
30757
+ },
30758
+ "declarations": [
30759
+ {
30760
+ "fileName": "components/src/lib/types/props.ts",
30761
+ "name": "PropsWithClassName"
30762
+ }
30763
+ ],
30764
+ "required": false,
30765
+ "type": {
30766
+ "name": "string"
30767
+ }
30768
+ }
30769
+ }
30770
+ },
30699
30771
  {
30700
30772
  "tags": {
30701
30773
  "flr-generate": "all"