@fluentui/chart-web-components 0.0.28 → 0.0.30

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 (24) hide show
  1. package/CHANGELOG.md +21 -2
  2. package/package.json +11 -39
  3. /package/dist/{dts → esm}/donut-chart/define.d.ts +0 -0
  4. /package/dist/{dts → esm}/donut-chart/donut-chart.bench.d.ts +0 -0
  5. /package/dist/{dts → esm}/donut-chart/donut-chart.d.ts +0 -0
  6. /package/dist/{dts → esm}/donut-chart/donut-chart.definition.d.ts +0 -0
  7. /package/dist/{dts → esm}/donut-chart/donut-chart.options.d.ts +0 -0
  8. /package/dist/{dts → esm}/donut-chart/donut-chart.styles.d.ts +0 -0
  9. /package/dist/{dts → esm}/donut-chart/donut-chart.template.d.ts +0 -0
  10. /package/dist/{dts → esm}/donut-chart/index.d.ts +0 -0
  11. /package/dist/{dts → esm}/helpers.tests.d.ts +0 -0
  12. /package/dist/{dts → esm}/horizontal-bar-chart/define.d.ts +0 -0
  13. /package/dist/{dts → esm}/horizontal-bar-chart/horizontal-bar-chart.bench.d.ts +0 -0
  14. /package/dist/{dts → esm}/horizontal-bar-chart/horizontal-bar-chart.d.ts +0 -0
  15. /package/dist/{dts → esm}/horizontal-bar-chart/horizontal-bar-chart.definition.d.ts +0 -0
  16. /package/dist/{dts → esm}/horizontal-bar-chart/horizontal-bar-chart.options.d.ts +0 -0
  17. /package/dist/{dts → esm}/horizontal-bar-chart/horizontal-bar-chart.styles.d.ts +0 -0
  18. /package/dist/{dts → esm}/horizontal-bar-chart/horizontal-bar-chart.template.d.ts +0 -0
  19. /package/dist/{dts → esm}/horizontal-bar-chart/index.d.ts +0 -0
  20. /package/dist/{dts → esm}/index-rollup.d.ts +0 -0
  21. /package/dist/{dts → esm}/index.d.ts +0 -0
  22. /package/dist/{dts → esm}/tsdoc-metadata.json +0 -0
  23. /package/dist/{dts → esm}/utils/benchmark-wrapper.d.ts +0 -0
  24. /package/dist/{dts → esm}/utils/chart-helpers.d.ts +0 -0
package/CHANGELOG.md CHANGED
@@ -1,12 +1,31 @@
1
1
  # Change Log - @fluentui/chart-web-components
2
2
 
3
- This log was last generated on Fri, 23 May 2025 04:06:32 GMT and should not be manually modified.
3
+ This log was last generated on Wed, 28 May 2025 04:06:46 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [0.0.30](https://github.com/microsoft/fluentui/tree/@fluentui/chart-web-components_v0.0.30)
8
+
9
+ Wed, 28 May 2025 04:06:46 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/chart-web-components_v0.0.29..@fluentui/chart-web-components_v0.0.30)
11
+
12
+ ### Patches
13
+
14
+ - Co-locate ES modules and type definitions. This should not affect users. ([PR #34487](https://github.com/microsoft/fluentui/pull/34487) by burtonsmith@microsoft.com)
15
+ - Bump @fluentui/web-components to v3.0.0-beta.106 ([PR #34535](https://github.com/microsoft/fluentui/pull/34535) by beachball)
16
+
17
+ ## [0.0.29](https://github.com/microsoft/fluentui/tree/@fluentui/chart-web-components_v0.0.29)
18
+
19
+ Mon, 26 May 2025 04:07:35 GMT
20
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/chart-web-components_v0.0.28..@fluentui/chart-web-components_v0.0.29)
21
+
22
+ ### Patches
23
+
24
+ - Bump @fluentui/web-components to v3.0.0-beta.105 ([PR #34525](https://github.com/microsoft/fluentui/pull/34525) by beachball)
25
+
7
26
  ## [0.0.28](https://github.com/microsoft/fluentui/tree/@fluentui/chart-web-components_v0.0.28)
8
27
 
9
- Fri, 23 May 2025 04:06:32 GMT
28
+ Fri, 23 May 2025 04:06:43 GMT
10
29
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/chart-web-components_v0.0.27..@fluentui/chart-web-components_v0.0.28)
11
30
 
12
31
  ### Patches
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fluentui/chart-web-components",
3
3
  "description": "A library of Fluent Chart Web Components",
4
- "version": "0.0.28",
4
+ "version": "0.0.30",
5
5
  "author": {
6
6
  "name": "Microsoft"
7
7
  },
@@ -19,48 +19,20 @@
19
19
  "unpkg": "dist/chart-web-components.min.js",
20
20
  "files": [
21
21
  "*.md",
22
- "dist/dts/",
23
22
  "dist/esm/",
24
23
  "dist/*.js",
25
24
  "dist/*.d.ts"
26
25
  ],
27
26
  "exports": {
28
- ".": {
29
- "types": "./dist/dts/index.d.ts",
30
- "default": "./dist/esm/index.js"
31
- },
32
- "./utilities.js": {
33
- "types": "./dist/dts/utils/index.d.ts",
34
- "default": "./dist/esm/utils/index.js"
35
- },
36
- "./*/define.js": {
37
- "types": "./dist/dts/*/*.define.d.ts",
38
- "default": "./dist/esm/*/*.define.js"
39
- },
40
- "./*/definition.js": {
41
- "types": "./dist/dts/*/*.definition.d.ts",
42
- "default": "./dist/esm/*/*.definition.js"
43
- },
44
- "./*/options.js": {
45
- "types": "./dist/dts/*/*.options.d.ts",
46
- "default": "./dist/esm/*/*.options.js"
47
- },
48
- "./*/styles.js": {
49
- "types": "./dist/dts/*/*.styles.d.ts",
50
- "default": "./dist/esm/*/*.styles.js"
51
- },
52
- "./*/template.js": {
53
- "types": "./dist/dts/*/*.template.d.ts",
54
- "default": "./dist/esm/*/*.template.js"
55
- },
56
- "./*/index.js": {
57
- "types": "./dist/dts/*/index.d.ts",
58
- "default": "./dist/esm/*/index.js"
59
- },
60
- "./*.js": {
61
- "types": "./dist/dts/*/define.d.ts",
62
- "default": "./dist/esm/*/define.js"
63
- },
27
+ ".": "./dist/esm/index.js",
28
+ "./utilities.js": "./dist/esm/utils/index.js",
29
+ "./*/define.js": "./dist/esm/*/*.define.js",
30
+ "./*/definition.js": "./dist/esm/*/*.definition.js",
31
+ "./*/options.js": "./dist/esm/*/*.options.js",
32
+ "./*/styles.js": "./dist/esm/*/*.styles.js",
33
+ "./*/template.js": "./dist/esm/*/*.template.js",
34
+ "./*/index.js": "./dist/esm/*/index.js",
35
+ "./*.js": "./dist/esm/*/define.js",
64
36
  "./package.json": "./package.json"
65
37
  },
66
38
  "sideEffects": [
@@ -99,7 +71,7 @@
99
71
  "dependencies": {
100
72
  "@microsoft/fast-web-utilities": "^6.0.0",
101
73
  "@fluentui/tokens": "^1.0.0-alpha.21",
102
- "@fluentui/web-components": "^3.0.0-beta.104",
74
+ "@fluentui/web-components": "^3.0.0-beta.106",
103
75
  "@types/d3-selection": "^3.0.0",
104
76
  "@types/d3-shape": "^3.0.0",
105
77
  "d3-selection": "^3.0.0",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes