@fluentui/react-progress 9.1.92 → 9.1.93
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 +17 -7
- package/lib/ProgressBar.js +1 -1
- package/lib/ProgressBar.js.map +1 -1
- package/lib/components/ProgressBar/index.js +4 -5
- package/lib/components/ProgressBar/index.js.map +1 -1
- package/lib/utils/index.js +2 -2
- package/lib/utils/index.js.map +1 -1
- package/lib-commonjs/ProgressBar.js +24 -2
- package/lib-commonjs/ProgressBar.js.map +1 -1
- package/lib-commonjs/components/ProgressBar/index.js +27 -6
- package/lib-commonjs/components/ProgressBar/index.js.map +1 -1
- package/lib-commonjs/utils/index.js +16 -3
- package/lib-commonjs/utils/index.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -1,21 +1,31 @@
|
|
1
1
|
# Change Log - @fluentui/react-progress
|
2
2
|
|
3
|
-
This log was last generated on
|
3
|
+
This log was last generated on Mon, 09 Dec 2024 17:34:09 GMT and should not be manually modified.
|
4
4
|
|
5
5
|
<!-- Start content -->
|
6
6
|
|
7
|
+
## [9.1.93](https://github.com/microsoft/fluentui/tree/@fluentui/react-progress_v9.1.93)
|
8
|
+
|
9
|
+
Mon, 09 Dec 2024 17:34:09 GMT
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-progress_v9.1.92..@fluentui/react-progress_v9.1.93)
|
11
|
+
|
12
|
+
### Patches
|
13
|
+
|
14
|
+
- chore: remove usage of "export *" ([PR #33384](https://github.com/microsoft/fluentui/pull/33384) by olfedias@microsoft.com)
|
15
|
+
- Bump @fluentui/react-field to v9.1.82 ([PR #33431](https://github.com/microsoft/fluentui/pull/33431) by beachball)
|
16
|
+
|
7
17
|
## [9.1.92](https://github.com/microsoft/fluentui/tree/@fluentui/react-progress_v9.1.92)
|
8
18
|
|
9
|
-
Fri, 06 Dec 2024 12:
|
19
|
+
Fri, 06 Dec 2024 12:53:46 GMT
|
10
20
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-progress_v9.1.91..@fluentui/react-progress_v9.1.92)
|
11
21
|
|
12
22
|
### Patches
|
13
23
|
|
14
|
-
- Bump @fluentui/react-field to v9.1.81 ([PR #
|
15
|
-
- Bump @fluentui/react-jsx-runtime to v9.0.47 ([PR #
|
16
|
-
- Bump @fluentui/react-shared-contexts to v9.21.1 ([PR #
|
17
|
-
- Bump @fluentui/react-theme to v9.1.23 ([PR #
|
18
|
-
- Bump @fluentui/react-utilities to v9.18.18 ([PR #
|
24
|
+
- Bump @fluentui/react-field to v9.1.81 ([PR #33372](https://github.com/microsoft/fluentui/pull/33372) by beachball)
|
25
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.47 ([PR #33372](https://github.com/microsoft/fluentui/pull/33372) by beachball)
|
26
|
+
- Bump @fluentui/react-shared-contexts to v9.21.1 ([PR #33372](https://github.com/microsoft/fluentui/pull/33372) by beachball)
|
27
|
+
- Bump @fluentui/react-theme to v9.1.23 ([PR #33372](https://github.com/microsoft/fluentui/pull/33372) by beachball)
|
28
|
+
- Bump @fluentui/react-utilities to v9.18.18 ([PR #33372](https://github.com/microsoft/fluentui/pull/33372) by beachball)
|
19
29
|
|
20
30
|
## [9.1.91](https://github.com/microsoft/fluentui/tree/@fluentui/react-progress_v9.1.91)
|
21
31
|
|
package/lib/ProgressBar.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export
|
1
|
+
export { ProgressBar, progressBarClassNames, renderProgressBar_unstable, useProgressBarStyles_unstable, useProgressBar_unstable } from './components/ProgressBar/index';
|
package/lib/ProgressBar.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["../src/ProgressBar.ts"],"sourcesContent":["export
|
1
|
+
{"version":3,"sources":["../src/ProgressBar.ts"],"sourcesContent":["export type { ProgressBarProps, ProgressBarSlots, ProgressBarState } from './components/ProgressBar/index';\nexport {\n ProgressBar,\n progressBarClassNames,\n renderProgressBar_unstable,\n useProgressBarStyles_unstable,\n useProgressBar_unstable,\n} from './components/ProgressBar/index';\n"],"names":["ProgressBar","progressBarClassNames","renderProgressBar_unstable","useProgressBarStyles_unstable","useProgressBar_unstable"],"rangeMappings":"","mappings":"AACA,SACEA,WAAW,EACXC,qBAAqB,EACrBC,0BAA0B,EAC1BC,6BAA6B,EAC7BC,uBAAuB,QAClB,iCAAiC"}
|
@@ -1,5 +1,4 @@
|
|
1
|
-
export
|
2
|
-
export
|
3
|
-
export
|
4
|
-
export
|
5
|
-
export * from './useProgressBarStyles.styles';
|
1
|
+
export { ProgressBar } from './ProgressBar';
|
2
|
+
export { renderProgressBar_unstable } from './renderProgressBar';
|
3
|
+
export { useProgressBar_unstable } from './useProgressBar';
|
4
|
+
export { progressBarClassNames, useProgressBarStyles_unstable } from './useProgressBarStyles.styles';
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["../src/components/ProgressBar/index.ts"],"sourcesContent":["export
|
1
|
+
{"version":3,"sources":["../src/components/ProgressBar/index.ts"],"sourcesContent":["export { ProgressBar } from './ProgressBar';\nexport type { ProgressBarProps, ProgressBarSlots, ProgressBarState } from './ProgressBar.types';\nexport { renderProgressBar_unstable } from './renderProgressBar';\nexport { useProgressBar_unstable } from './useProgressBar';\nexport { progressBarClassNames, useProgressBarStyles_unstable } from './useProgressBarStyles.styles';\n"],"names":["ProgressBar","renderProgressBar_unstable","useProgressBar_unstable","progressBarClassNames","useProgressBarStyles_unstable"],"rangeMappings":";;;","mappings":"AAAA,SAASA,WAAW,QAAQ,gBAAgB;AAE5C,SAASC,0BAA0B,QAAQ,sBAAsB;AACjE,SAASC,uBAAuB,QAAQ,mBAAmB;AAC3D,SAASC,qBAAqB,EAAEC,6BAA6B,QAAQ,gCAAgC"}
|
package/lib/utils/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export
|
2
|
-
export
|
1
|
+
export { clampMax } from './clampMax';
|
2
|
+
export { clampValue } from './clampValue';
|
package/lib/utils/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["../src/utils/index.ts"],"sourcesContent":["export
|
1
|
+
{"version":3,"sources":["../src/utils/index.ts"],"sourcesContent":["export { clampMax } from './clampMax';\nexport { clampValue } from './clampValue';\n"],"names":["clampMax","clampValue"],"rangeMappings":";","mappings":"AAAA,SAASA,QAAQ,QAAQ,aAAa;AACtC,SAASC,UAAU,QAAQ,eAAe"}
|
@@ -2,5 +2,27 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
3
3
|
value: true
|
4
4
|
});
|
5
|
-
|
6
|
-
|
5
|
+
function _export(target, all) {
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
7
|
+
enumerable: true,
|
8
|
+
get: all[name]
|
9
|
+
});
|
10
|
+
}
|
11
|
+
_export(exports, {
|
12
|
+
ProgressBar: function() {
|
13
|
+
return _index.ProgressBar;
|
14
|
+
},
|
15
|
+
progressBarClassNames: function() {
|
16
|
+
return _index.progressBarClassNames;
|
17
|
+
},
|
18
|
+
renderProgressBar_unstable: function() {
|
19
|
+
return _index.renderProgressBar_unstable;
|
20
|
+
},
|
21
|
+
useProgressBarStyles_unstable: function() {
|
22
|
+
return _index.useProgressBarStyles_unstable;
|
23
|
+
},
|
24
|
+
useProgressBar_unstable: function() {
|
25
|
+
return _index.useProgressBar_unstable;
|
26
|
+
}
|
27
|
+
});
|
28
|
+
const _index = require("./components/ProgressBar/index");
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["../src/ProgressBar.ts"],"sourcesContent":["export
|
1
|
+
{"version":3,"sources":["../src/ProgressBar.ts"],"sourcesContent":["export type { ProgressBarProps, ProgressBarSlots, ProgressBarState } from './components/ProgressBar/index';\nexport {\n ProgressBar,\n progressBarClassNames,\n renderProgressBar_unstable,\n useProgressBarStyles_unstable,\n useProgressBar_unstable,\n} from './components/ProgressBar/index';\n"],"names":["ProgressBar","progressBarClassNames","renderProgressBar_unstable","useProgressBarStyles_unstable","useProgressBar_unstable"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":";;;;;;;;;;;IAEEA,WAAW;eAAXA,kBAAW;;IACXC,qBAAqB;eAArBA,4BAAqB;;IACrBC,0BAA0B;eAA1BA,iCAA0B;;IAC1BC,6BAA6B;eAA7BA,oCAA6B;;IAC7BC,uBAAuB;eAAvBA,8BAAuB;;;uBAClB"}
|
@@ -2,9 +2,30 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
3
3
|
value: true
|
4
4
|
});
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
5
|
+
function _export(target, all) {
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
7
|
+
enumerable: true,
|
8
|
+
get: all[name]
|
9
|
+
});
|
10
|
+
}
|
11
|
+
_export(exports, {
|
12
|
+
ProgressBar: function() {
|
13
|
+
return _ProgressBar.ProgressBar;
|
14
|
+
},
|
15
|
+
progressBarClassNames: function() {
|
16
|
+
return _useProgressBarStylesstyles.progressBarClassNames;
|
17
|
+
},
|
18
|
+
renderProgressBar_unstable: function() {
|
19
|
+
return _renderProgressBar.renderProgressBar_unstable;
|
20
|
+
},
|
21
|
+
useProgressBarStyles_unstable: function() {
|
22
|
+
return _useProgressBarStylesstyles.useProgressBarStyles_unstable;
|
23
|
+
},
|
24
|
+
useProgressBar_unstable: function() {
|
25
|
+
return _useProgressBar.useProgressBar_unstable;
|
26
|
+
}
|
27
|
+
});
|
28
|
+
const _ProgressBar = require("./ProgressBar");
|
29
|
+
const _renderProgressBar = require("./renderProgressBar");
|
30
|
+
const _useProgressBar = require("./useProgressBar");
|
31
|
+
const _useProgressBarStylesstyles = require("./useProgressBarStyles.styles");
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["../src/components/ProgressBar/index.ts"],"sourcesContent":["export
|
1
|
+
{"version":3,"sources":["../src/components/ProgressBar/index.ts"],"sourcesContent":["export { ProgressBar } from './ProgressBar';\nexport type { ProgressBarProps, ProgressBarSlots, ProgressBarState } from './ProgressBar.types';\nexport { renderProgressBar_unstable } from './renderProgressBar';\nexport { useProgressBar_unstable } from './useProgressBar';\nexport { progressBarClassNames, useProgressBarStyles_unstable } from './useProgressBarStyles.styles';\n"],"names":["ProgressBar","progressBarClassNames","renderProgressBar_unstable","useProgressBarStyles_unstable","useProgressBar_unstable"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":";;;;;;;;;;;IAASA,WAAW;eAAXA,wBAAW;;IAIXC,qBAAqB;eAArBA,iDAAqB;;IAFrBC,0BAA0B;eAA1BA,6CAA0B;;IAEHC,6BAA6B;eAA7BA,yDAA6B;;IADpDC,uBAAuB;eAAvBA,uCAAuB;;;6BAHJ;mCAEe;gCACH;4CAC6B"}
|
@@ -2,6 +2,19 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
3
3
|
value: true
|
4
4
|
});
|
5
|
-
|
6
|
-
|
7
|
-
|
5
|
+
function _export(target, all) {
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
7
|
+
enumerable: true,
|
8
|
+
get: all[name]
|
9
|
+
});
|
10
|
+
}
|
11
|
+
_export(exports, {
|
12
|
+
clampMax: function() {
|
13
|
+
return _clampMax.clampMax;
|
14
|
+
},
|
15
|
+
clampValue: function() {
|
16
|
+
return _clampValue.clampValue;
|
17
|
+
}
|
18
|
+
});
|
19
|
+
const _clampMax = require("./clampMax");
|
20
|
+
const _clampValue = require("./clampValue");
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["../src/utils/index.ts"],"sourcesContent":["export
|
1
|
+
{"version":3,"sources":["../src/utils/index.ts"],"sourcesContent":["export { clampMax } from './clampMax';\nexport { clampValue } from './clampValue';\n"],"names":["clampMax","clampValue"],"rangeMappings":";;;;;;;;;;;;;;;;;;;","mappings":";;;;;;;;;;;IAASA,QAAQ;eAARA,kBAAQ;;IACRC,UAAU;eAAVA,sBAAU;;;0BADM;4BACE"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fluentui/react-progress",
|
3
|
-
"version": "9.1.
|
3
|
+
"version": "9.1.93",
|
4
4
|
"description": "Progress component for FluentUI v9",
|
5
5
|
"main": "lib-commonjs/index.js",
|
6
6
|
"module": "lib/index.js",
|
@@ -18,7 +18,7 @@
|
|
18
18
|
"@fluentui/scripts-api-extractor": "*"
|
19
19
|
},
|
20
20
|
"dependencies": {
|
21
|
-
"@fluentui/react-field": "^9.1.
|
21
|
+
"@fluentui/react-field": "^9.1.82",
|
22
22
|
"@fluentui/react-jsx-runtime": "^9.0.47",
|
23
23
|
"@fluentui/react-shared-contexts": "^9.21.1",
|
24
24
|
"@fluentui/react-theme": "^9.1.23",
|