@fluentui/react-progress 0.0.0-nightly-20230222-0421.1 → 0.0.0-nightly-20230223-2115.1
Sign up to get free protection for your applications and to get access to all the features.
- package/.swcrc +33 -0
- package/CHANGELOG.json +28 -13
- package/CHANGELOG.md +18 -9
- package/lib/ProgressBar.js.map +1 -1
- package/lib/ProgressField.js.map +1 -1
- package/lib/components/ProgressBar/ProgressBar.js.map +1 -1
- package/lib/components/ProgressBar/ProgressBar.types.js.map +1 -1
- package/lib/components/ProgressBar/index.js.map +1 -1
- package/lib/components/ProgressBar/renderProgressBar.js +2 -5
- package/lib/components/ProgressBar/renderProgressBar.js.map +1 -1
- package/lib/components/ProgressBar/useProgressBar.js +1 -0
- package/lib/components/ProgressBar/useProgressBar.js.map +1 -1
- package/lib/components/ProgressBar/useProgressBarStyles.js.map +1 -1
- package/lib/components/ProgressField/ProgressField.js +1 -2
- package/lib/components/ProgressField/ProgressField.js.map +1 -1
- package/lib/components/ProgressField/index.js.map +1 -1
- package/lib/index.js.map +1 -1
- package/lib-commonjs/ProgressBar.js +5 -4
- package/lib-commonjs/ProgressBar.js.map +1 -1
- package/lib-commonjs/ProgressField.js +5 -4
- package/lib-commonjs/ProgressField.js.map +1 -1
- package/lib-commonjs/components/ProgressBar/ProgressBar.js +16 -15
- package/lib-commonjs/components/ProgressBar/ProgressBar.js.map +1 -1
- package/lib-commonjs/components/ProgressBar/ProgressBar.types.js +3 -2
- package/lib-commonjs/components/ProgressBar/ProgressBar.types.js.map +1 -1
- package/lib-commonjs/components/ProgressBar/index.js +9 -8
- package/lib-commonjs/components/ProgressBar/index.js.map +1 -1
- package/lib-commonjs/components/ProgressBar/renderProgressBar.js +15 -20
- package/lib-commonjs/components/ProgressBar/renderProgressBar.js.map +1 -1
- package/lib-commonjs/components/ProgressBar/useProgressBar.js +38 -49
- package/lib-commonjs/components/ProgressBar/useProgressBar.js.map +1 -1
- package/lib-commonjs/components/ProgressBar/useProgressBarStyles.js +246 -144
- package/lib-commonjs/components/ProgressBar/useProgressBarStyles.js.map +1 -1
- package/lib-commonjs/components/ProgressField/ProgressField.js +25 -19
- package/lib-commonjs/components/ProgressField/ProgressField.js.map +1 -1
- package/lib-commonjs/components/ProgressField/index.js +5 -4
- package/lib-commonjs/components/ProgressField/index.js.map +1 -1
- package/lib-commonjs/index.js +21 -49
- package/lib-commonjs/index.js.map +1 -1
- package/package.json +8 -8
@@ -1,53 +1,42 @@
|
|
1
1
|
"use strict";
|
2
|
-
|
3
2
|
Object.defineProperty(exports, "__esModule", {
|
4
|
-
|
3
|
+
value: true
|
4
|
+
});
|
5
|
+
Object.defineProperty(exports, "useProgressBar_unstable", {
|
6
|
+
enumerable: true,
|
7
|
+
get: ()=>useProgressBar_unstable
|
5
8
|
});
|
6
|
-
|
7
|
-
const
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
max,
|
40
|
-
shape,
|
41
|
-
thickness,
|
42
|
-
value,
|
43
|
-
components: {
|
44
|
-
root: 'div',
|
45
|
-
bar: 'div'
|
46
|
-
},
|
47
|
-
root,
|
48
|
-
bar
|
49
|
-
};
|
50
|
-
return state;
|
51
|
-
};
|
52
|
-
exports.useProgressBar_unstable = useProgressBar_unstable;
|
9
|
+
const _interopRequireWildcard = require("@swc/helpers/lib/_interop_require_wildcard.js").default;
|
10
|
+
const _react = /*#__PURE__*/ _interopRequireWildcard(require("react"));
|
11
|
+
const _reactUtilities = require("@fluentui/react-utilities");
|
12
|
+
const useProgressBar_unstable = (props, ref)=>{
|
13
|
+
// Props
|
14
|
+
const { color ='brand' , max =1.0 , shape ='rounded' , thickness ='medium' , value } = props;
|
15
|
+
const root = (0, _reactUtilities.getNativeElementProps)('div', {
|
16
|
+
ref,
|
17
|
+
role: 'progressbar',
|
18
|
+
'aria-valuemin': value !== undefined ? 0 : undefined,
|
19
|
+
'aria-valuemax': value !== undefined ? max : undefined,
|
20
|
+
'aria-valuenow': value,
|
21
|
+
...props
|
22
|
+
});
|
23
|
+
const bar = (0, _reactUtilities.resolveShorthand)(props.bar, {
|
24
|
+
required: true
|
25
|
+
});
|
26
|
+
const state = {
|
27
|
+
color,
|
28
|
+
max,
|
29
|
+
shape,
|
30
|
+
thickness,
|
31
|
+
value,
|
32
|
+
components: {
|
33
|
+
root: 'div',
|
34
|
+
bar: 'div'
|
35
|
+
},
|
36
|
+
root,
|
37
|
+
bar
|
38
|
+
};
|
39
|
+
return state;
|
40
|
+
}; //# sourceMappingURL=useProgressBar.js.map
|
41
|
+
|
53
42
|
//# sourceMappingURL=useProgressBar.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"
|
1
|
+
{"version":3,"sources":["../../../lib/components/ProgressBar/useProgressBar.js"],"sourcesContent":["import * as React from 'react';\nimport { getNativeElementProps, resolveShorthand } from '@fluentui/react-utilities';\n/**\n * Create the state required to render ProgressBar.\n *\n * The returned state can be modified with hooks such as useProgressBarStyles_unstable,\n * before being passed to renderProgressBar_unstable.\n *\n * @param props - props from this instance of ProgressBar\n * @param ref - reference to root HTMLElement of ProgressBar\n */\nexport const useProgressBar_unstable = (props, ref) => {\n // Props\n const {\n color = 'brand',\n max = 1.0,\n shape = 'rounded',\n thickness = 'medium',\n value\n } = props;\n const root = getNativeElementProps('div', {\n ref,\n role: 'progressbar',\n 'aria-valuemin': value !== undefined ? 0 : undefined,\n 'aria-valuemax': value !== undefined ? max : undefined,\n 'aria-valuenow': value,\n ...props\n });\n const bar = resolveShorthand(props.bar, {\n required: true\n });\n const state = {\n color,\n max,\n shape,\n thickness,\n value,\n components: {\n root: 'div',\n bar: 'div'\n },\n root,\n bar\n };\n return state;\n};\n//# sourceMappingURL=useProgressBar.js.map"],"names":["useProgressBar_unstable","props","ref","color","max","shape","thickness","value","root","getNativeElementProps","role","undefined","bar","resolveShorthand","required","state","components"],"mappings":";;;;+BAWaA;;aAAAA;;;6DAXU;gCACiC;AAUjD,MAAMA,0BAA0B,CAACC,OAAOC,MAAQ;IACrD,QAAQ;IACR,MAAM,EACJC,OAAQ,QAAO,EACfC,KAAM,IAAG,EACTC,OAAQ,UAAS,EACjBC,WAAY,SAAQ,EACpBC,MAAK,EACN,GAAGN;IACJ,MAAMO,OAAOC,IAAAA,qCAAqB,EAAC,OAAO;QACxCP;QACAQ,MAAM;QACN,iBAAiBH,UAAUI,YAAY,IAAIA,SAAS;QACpD,iBAAiBJ,UAAUI,YAAYP,MAAMO,SAAS;QACtD,iBAAiBJ;QACjB,GAAGN,KAAK;IACV;IACA,MAAMW,MAAMC,IAAAA,gCAAgB,EAACZ,MAAMW,GAAG,EAAE;QACtCE,UAAU,IAAI;IAChB;IACA,MAAMC,QAAQ;QACZZ;QACAC;QACAC;QACAC;QACAC;QACAS,YAAY;YACVR,MAAM;YACNI,KAAK;QACP;QACAJ;QACAI;IACF;IACA,OAAOG;AACT,GACA,0CAA0C"}
|
@@ -1,166 +1,268 @@
|
|
1
1
|
"use strict";
|
2
|
-
|
3
2
|
Object.defineProperty(exports, "__esModule", {
|
4
|
-
|
3
|
+
value: true
|
4
|
+
});
|
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
|
+
progressBarClassNames: ()=>progressBarClassNames,
|
13
|
+
useProgressBarStyles_unstable: ()=>useProgressBarStyles_unstable
|
5
14
|
});
|
6
|
-
|
7
|
-
const
|
8
|
-
const
|
9
|
-
|
10
|
-
|
11
|
-
root: 'fui-ProgressBar',
|
12
|
-
bar: 'fui-ProgressBar__bar'
|
15
|
+
const _react = require("@griffel/react");
|
16
|
+
const _reactSharedContexts = require("@fluentui/react-shared-contexts");
|
17
|
+
const progressBarClassNames = {
|
18
|
+
root: 'fui-ProgressBar',
|
19
|
+
bar: 'fui-ProgressBar__bar'
|
13
20
|
};
|
14
21
|
// If the percentComplete is near 0, don't animate it.
|
15
22
|
// This prevents animations on reset to 0 scenarios.
|
16
23
|
const ZERO_THRESHOLD = 0.01;
|
17
24
|
const barThicknessValues = {
|
18
|
-
|
19
|
-
|
25
|
+
medium: '2px',
|
26
|
+
large: '4px'
|
20
27
|
};
|
21
28
|
const indeterminateProgressBar = {
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
29
|
+
'0%': {
|
30
|
+
left: '-100% /* @noflip */'
|
31
|
+
},
|
32
|
+
'100%': {
|
33
|
+
left: '100% /* @noflip */'
|
34
|
+
}
|
28
35
|
};
|
29
36
|
const indeterminateProgressBarRTL = {
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
37
|
+
'100%': {
|
38
|
+
right: '-100% /* @noflip */'
|
39
|
+
},
|
40
|
+
'0%': {
|
41
|
+
right: '100% /* @noflip */'
|
42
|
+
}
|
36
43
|
};
|
37
44
|
/**
|
38
45
|
* Styles for the root slot
|
39
|
-
*/
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
46
|
+
*/ const useRootStyles = /*#__PURE__*/ (0, _react["__styles"])({
|
47
|
+
root: {
|
48
|
+
mc9l5x: "ftgm304",
|
49
|
+
De3pzq: "f18f03hv",
|
50
|
+
Bdqf98w: "fhb5wj7",
|
51
|
+
B68tc82: "f1p9o1ba",
|
52
|
+
Bmxbyg5: "f1sil6mw",
|
53
|
+
I5kgcl: "fs8b23g",
|
54
|
+
tu2nte: "f1mcb20s",
|
55
|
+
y0r1ed: "fek7wd8"
|
56
|
+
},
|
57
|
+
rounded: {
|
58
|
+
Bbmb7ep: [
|
59
|
+
"f1aa9q02",
|
60
|
+
"f16jpd5f"
|
61
|
+
],
|
62
|
+
Beyfa6y: [
|
63
|
+
"f16jpd5f",
|
64
|
+
"f1aa9q02"
|
65
|
+
],
|
66
|
+
B7oj6ja: [
|
67
|
+
"f1jar5jt",
|
68
|
+
"fyu767a"
|
69
|
+
],
|
70
|
+
Btl43ni: [
|
71
|
+
"fyu767a",
|
72
|
+
"f1jar5jt"
|
73
|
+
]
|
74
|
+
},
|
75
|
+
square: {
|
76
|
+
Bbmb7ep: [
|
77
|
+
"fzi6hpg",
|
78
|
+
"fyowgf4"
|
79
|
+
],
|
80
|
+
Beyfa6y: [
|
81
|
+
"fyowgf4",
|
82
|
+
"fzi6hpg"
|
83
|
+
],
|
84
|
+
B7oj6ja: [
|
85
|
+
"f3fg2lr",
|
86
|
+
"f13av6d4"
|
87
|
+
],
|
88
|
+
Btl43ni: [
|
89
|
+
"f13av6d4",
|
90
|
+
"f3fg2lr"
|
91
|
+
]
|
92
|
+
},
|
93
|
+
medium: {
|
94
|
+
Bqenvij: "f4t8t6x"
|
95
|
+
},
|
96
|
+
large: {
|
97
|
+
Bqenvij: "f6ywr7j"
|
98
|
+
}
|
69
99
|
}, {
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
100
|
+
d: [
|
101
|
+
".ftgm304{display:block;}",
|
102
|
+
".f18f03hv{background-color:var(--colorNeutralBackground6);}",
|
103
|
+
".fhb5wj7{justify-self:stretch;}",
|
104
|
+
".f1p9o1ba{overflow-x:hidden;}",
|
105
|
+
".f1sil6mw{overflow-y:hidden;}",
|
106
|
+
".f1aa9q02{border-bottom-right-radius:var(--borderRadiusMedium);}",
|
107
|
+
".f16jpd5f{border-bottom-left-radius:var(--borderRadiusMedium);}",
|
108
|
+
".f1jar5jt{border-top-right-radius:var(--borderRadiusMedium);}",
|
109
|
+
".fyu767a{border-top-left-radius:var(--borderRadiusMedium);}",
|
110
|
+
".fzi6hpg{border-bottom-right-radius:var(--borderRadiusNone);}",
|
111
|
+
".fyowgf4{border-bottom-left-radius:var(--borderRadiusNone);}",
|
112
|
+
".f3fg2lr{border-top-right-radius:var(--borderRadiusNone);}",
|
113
|
+
".f13av6d4{border-top-left-radius:var(--borderRadiusNone);}",
|
114
|
+
".f4t8t6x{height:2px;}",
|
115
|
+
".f6ywr7j{height:4px;}"
|
116
|
+
],
|
117
|
+
m: [
|
118
|
+
[
|
119
|
+
"@media screen and (forced-colors: active){.fs8b23g{border-bottom-width:1px;}}",
|
120
|
+
{
|
121
|
+
m: "screen and (forced-colors: active)"
|
122
|
+
}
|
123
|
+
],
|
124
|
+
[
|
125
|
+
"@media screen and (forced-colors: active){.f1mcb20s{border-bottom-style:solid;}}",
|
126
|
+
{
|
127
|
+
m: "screen and (forced-colors: active)"
|
128
|
+
}
|
129
|
+
],
|
130
|
+
[
|
131
|
+
"@media screen and (forced-colors: active){.fek7wd8{border-bottom-color:CanvasText;}}",
|
132
|
+
{
|
133
|
+
m: "screen and (forced-colors: active)"
|
134
|
+
}
|
135
|
+
]
|
136
|
+
]
|
78
137
|
});
|
79
138
|
/**
|
80
139
|
* Styles for the ProgressBar bar
|
81
|
-
*/
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
140
|
+
*/ const useBarStyles = /*#__PURE__*/ (0, _react["__styles"])({
|
141
|
+
base: {
|
142
|
+
Bbmb7ep: [
|
143
|
+
"f1d9uwra",
|
144
|
+
"fzibvwi"
|
145
|
+
],
|
146
|
+
Beyfa6y: [
|
147
|
+
"fzibvwi",
|
148
|
+
"f1d9uwra"
|
149
|
+
],
|
150
|
+
B7oj6ja: [
|
151
|
+
"fuoumxm",
|
152
|
+
"f1vtqnvc"
|
153
|
+
],
|
154
|
+
Btl43ni: [
|
155
|
+
"f1vtqnvc",
|
156
|
+
"fuoumxm"
|
157
|
+
]
|
158
|
+
},
|
159
|
+
medium: {
|
160
|
+
Bqenvij: "f4t8t6x"
|
161
|
+
},
|
162
|
+
large: {
|
163
|
+
Bqenvij: "f6ywr7j"
|
164
|
+
},
|
165
|
+
nonZeroDeterminate: {
|
166
|
+
Bmy1vo4: "fjt6zfz",
|
167
|
+
B3o57yi: "f1wofebd",
|
168
|
+
Bkqvd7p: "fv71qf3"
|
169
|
+
},
|
170
|
+
indeterminate: {
|
171
|
+
B2u0y6b: "fa0wk36",
|
172
|
+
qhf8xq: "f10pi13n",
|
173
|
+
Bcmaq0h: [
|
174
|
+
"fpo0yib",
|
175
|
+
"f1u5hf6c"
|
176
|
+
],
|
177
|
+
Bv12yb3: "f1jk3tlg",
|
178
|
+
vin17d: "f1a27w2r",
|
179
|
+
w3vfg9: "f1cpbl36",
|
180
|
+
Gqtpxc: "f4akx1t",
|
181
|
+
B3vm3ge: "f18p5put"
|
182
|
+
},
|
183
|
+
rtl: {
|
184
|
+
Bv12yb3: "fjhwsai"
|
185
|
+
},
|
186
|
+
brand: {
|
187
|
+
De3pzq: "ftywsgz",
|
188
|
+
Bpep1pd: "f1neahkh"
|
189
|
+
},
|
190
|
+
error: {
|
191
|
+
De3pzq: "fdl5y0r"
|
192
|
+
},
|
193
|
+
warning: {
|
194
|
+
De3pzq: "f1s438gw"
|
195
|
+
},
|
196
|
+
success: {
|
197
|
+
De3pzq: "flxk52p"
|
198
|
+
}
|
126
199
|
}, {
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
200
|
+
d: [
|
201
|
+
".f1d9uwra{border-bottom-right-radius:inherit;}",
|
202
|
+
".fzibvwi{border-bottom-left-radius:inherit;}",
|
203
|
+
".fuoumxm{border-top-right-radius:inherit;}",
|
204
|
+
".f1vtqnvc{border-top-left-radius:inherit;}",
|
205
|
+
".f4t8t6x{height:2px;}",
|
206
|
+
".f6ywr7j{height:4px;}",
|
207
|
+
".fjt6zfz{transition-property:width;}",
|
208
|
+
".f1wofebd{transition-duration:0.3s;}",
|
209
|
+
".fv71qf3{transition-timing-function:ease;}",
|
210
|
+
".fa0wk36{max-width:33%;}",
|
211
|
+
".f10pi13n{position:relative;}",
|
212
|
+
".fpo0yib{background-image:linear-gradient(\n to right,\n var(--colorNeutralBackground6) 0%,\n var(--colorTransparentBackground) 50%,\n var(--colorNeutralBackground6) 100%\n );}",
|
213
|
+
".f1u5hf6c{background-image:linear-gradient(\n to left,\n var(--colorNeutralBackground6) 0%,\n var(--colorTransparentBackground) 50%,\n var(--colorNeutralBackground6) 100%\n );}",
|
214
|
+
".f1jk3tlg{-webkit-animation-name:fzkbrka;animation-name:fzkbrka;}",
|
215
|
+
".f1a27w2r{-webkit-animation-duration:3s;animation-duration:3s;}",
|
216
|
+
".f1cpbl36{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;}",
|
217
|
+
".fjhwsai{-webkit-animation-name:f1kx06uz;animation-name:f1kx06uz;}",
|
218
|
+
".ftywsgz{background-color:var(--colorCompoundBrandBackground);}",
|
219
|
+
".fdl5y0r{background-color:var(--colorPaletteRedBackground3);}",
|
220
|
+
".f1s438gw{background-color:var(--colorPaletteDarkOrangeBackground3);}",
|
221
|
+
".flxk52p{background-color:var(--colorPaletteGreenBackground3);}"
|
222
|
+
],
|
223
|
+
k: [
|
224
|
+
"@-webkit-keyframes fzkbrka{0%{left:-100%;}100%{left:100%;}}",
|
225
|
+
"@keyframes fzkbrka{0%{left:-100%;}100%{left:100%;}}",
|
226
|
+
"@-webkit-keyframes f1kx06uz{100%{right:-100%;}0%{right:100%;}}",
|
227
|
+
"@keyframes f1kx06uz{100%{right:-100%;}0%{right:100%;}}"
|
228
|
+
],
|
229
|
+
m: [
|
230
|
+
[
|
231
|
+
"@media screen and (prefers-reduced-motion: reduce){.f4akx1t{-webkit-animation-duration:0.01ms;animation-duration:0.01ms;}}",
|
232
|
+
{
|
233
|
+
m: "screen and (prefers-reduced-motion: reduce)"
|
234
|
+
}
|
235
|
+
],
|
236
|
+
[
|
237
|
+
"@media screen and (prefers-reduced-motion: reduce){.f18p5put{-webkit-animation-iteration-count:1;animation-iteration-count:1;}}",
|
238
|
+
{
|
239
|
+
m: "screen and (prefers-reduced-motion: reduce)"
|
240
|
+
}
|
241
|
+
],
|
242
|
+
[
|
243
|
+
"@media screen and (forced-colors: active){.f1neahkh{background-color:Highlight;}}",
|
244
|
+
{
|
245
|
+
m: "screen and (forced-colors: active)"
|
246
|
+
}
|
247
|
+
]
|
248
|
+
]
|
136
249
|
});
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
const
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
value
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
state.bar.className = react_1.mergeClasses(exports.progressBarClassNames.bar, barStyles.base, barStyles.brand, value === undefined && barStyles.indeterminate, value === undefined && dir === 'rtl' && barStyles.rtl, barStyles[thickness], value !== undefined && value > ZERO_THRESHOLD && barStyles.nonZeroDeterminate, color && value !== undefined && barStyles[color], state.bar.className);
|
156
|
-
}
|
157
|
-
if (state.bar && value !== undefined) {
|
158
|
-
state.bar.style = {
|
159
|
-
width: Math.min(100, Math.max(0, value / max * 100)) + '%',
|
160
|
-
...state.bar.style
|
161
|
-
};
|
162
|
-
}
|
163
|
-
return state;
|
164
|
-
};
|
165
|
-
exports.useProgressBarStyles_unstable = useProgressBarStyles_unstable;
|
250
|
+
const useProgressBarStyles_unstable = (state)=>{
|
251
|
+
const { color , max , shape , thickness , value } = state;
|
252
|
+
const rootStyles = useRootStyles();
|
253
|
+
const barStyles = useBarStyles();
|
254
|
+
const { dir } = (0, _reactSharedContexts.useFluent_unstable)();
|
255
|
+
state.root.className = (0, _react.mergeClasses)(progressBarClassNames.root, rootStyles.root, rootStyles[shape], rootStyles[thickness], state.root.className);
|
256
|
+
if (state.bar) {
|
257
|
+
state.bar.className = (0, _react.mergeClasses)(progressBarClassNames.bar, barStyles.base, barStyles.brand, value === undefined && barStyles.indeterminate, value === undefined && dir === 'rtl' && barStyles.rtl, barStyles[thickness], value !== undefined && value > ZERO_THRESHOLD && barStyles.nonZeroDeterminate, color && value !== undefined && barStyles[color], state.bar.className);
|
258
|
+
}
|
259
|
+
if (state.bar && value !== undefined) {
|
260
|
+
state.bar.style = {
|
261
|
+
width: Math.min(100, Math.max(0, value / max * 100)) + '%',
|
262
|
+
...state.bar.style
|
263
|
+
};
|
264
|
+
}
|
265
|
+
return state;
|
266
|
+
}; //# sourceMappingURL=useProgressBarStyles.js.map
|
267
|
+
|
166
268
|
//# sourceMappingURL=useProgressBarStyles.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"mappings":"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","names":["exports","root","bar","ZERO_THRESHOLD","barThicknessValues","medium","large","indeterminateProgressBar","left","indeterminateProgressBarRTL","right","useRootStyles","react_1","useBarStyles","useProgressBarStyles_unstable","state","color","max","shape","thickness","value","rootStyles","barStyles","dir","react_shared_contexts_1","className","base","brand","undefined","indeterminate","rtl","nonZeroDeterminate","style","width","Math","min"],"sourceRoot":"","sources":["../../../../../../../../../packages/react-components/react-progress/src/components/ProgressBar/useProgressBarStyles.ts"],"sourcesContent":["import { makeStyles, mergeClasses, shorthands } from '@griffel/react';\nimport { tokens } from '@fluentui/react-theme';\nimport { useFluent_unstable as useFluent } from '@fluentui/react-shared-contexts';\nimport type { ProgressBarState, ProgressBarSlots } from './ProgressBar.types';\nimport type { SlotClassNames } from '@fluentui/react-utilities';\n\nexport const progressBarClassNames: SlotClassNames<ProgressBarSlots> = {\n root: 'fui-ProgressBar',\n bar: 'fui-ProgressBar__bar',\n};\n\n// If the percentComplete is near 0, don't animate it.\n// This prevents animations on reset to 0 scenarios.\nconst ZERO_THRESHOLD = 0.01;\n\nconst barThicknessValues = {\n medium: '2px',\n large: '4px',\n};\n\nconst indeterminateProgressBar = {\n '0%': {\n left: '-100% /* @noflip */',\n },\n '100%': {\n left: '100% /* @noflip */',\n },\n};\nconst indeterminateProgressBarRTL = {\n '100%': {\n right: '-100% /* @noflip */',\n },\n '0%': {\n right: '100% /* @noflip */',\n },\n};\n\n/**\n * Styles for the root slot\n */\nconst useRootStyles = makeStyles({\n root: {\n display: 'block',\n backgroundColor: tokens.colorNeutralBackground6,\n justifySelf: 'stretch',\n ...shorthands.overflow('hidden'),\n\n '@media screen and (forced-colors: active)': {\n ...shorthands.borderBottom('1px', 'solid', 'CanvasText'),\n },\n },\n rounded: {\n ...shorthands.borderRadius(tokens.borderRadiusMedium),\n },\n square: {\n ...shorthands.borderRadius(tokens.borderRadiusNone),\n },\n medium: {\n height: barThicknessValues.medium,\n },\n large: {\n height: barThicknessValues.large,\n },\n});\n\n/**\n * Styles for the ProgressBar bar\n */\nconst useBarStyles = makeStyles({\n base: {\n ...shorthands.borderRadius('inherit'),\n },\n medium: {\n height: barThicknessValues.medium,\n },\n large: {\n height: barThicknessValues.large,\n },\n nonZeroDeterminate: {\n transitionProperty: 'width',\n transitionDuration: '0.3s',\n transitionTimingFunction: 'ease',\n },\n indeterminate: {\n maxWidth: '33%',\n position: 'relative',\n backgroundImage: `linear-gradient(\n to right,\n ${tokens.colorNeutralBackground6} 0%,\n ${tokens.colorTransparentBackground} 50%,\n ${tokens.colorNeutralBackground6} 100%\n )`,\n animationName: indeterminateProgressBar,\n animationDuration: '3s',\n animationIterationCount: 'infinite',\n '@media screen and (prefers-reduced-motion: reduce)': {\n animationDuration: '0.01ms',\n animationIterationCount: '1',\n },\n },\n\n rtl: {\n animationName: indeterminateProgressBarRTL,\n },\n\n brand: {\n backgroundColor: tokens.colorCompoundBrandBackground,\n '@media screen and (forced-colors: active)': {\n backgroundColor: 'Highlight',\n },\n },\n\n error: {\n backgroundColor: tokens.colorPaletteRedBackground3,\n },\n warning: {\n backgroundColor: tokens.colorPaletteDarkOrangeBackground3,\n },\n success: {\n backgroundColor: tokens.colorPaletteGreenBackground3,\n },\n});\n\n/**\n * Apply styling to the ProgressBar slots based on the state\n */\nexport const useProgressBarStyles_unstable = (state: ProgressBarState): ProgressBarState => {\n const { color, max, shape, thickness, value } = state;\n const rootStyles = useRootStyles();\n const barStyles = useBarStyles();\n const { dir } = useFluent();\n\n state.root.className = mergeClasses(\n progressBarClassNames.root,\n rootStyles.root,\n rootStyles[shape],\n rootStyles[thickness],\n state.root.className,\n );\n\n if (state.bar) {\n state.bar.className = mergeClasses(\n progressBarClassNames.bar,\n barStyles.base,\n barStyles.brand,\n value === undefined && barStyles.indeterminate,\n value === undefined && dir === 'rtl' && barStyles.rtl,\n barStyles[thickness],\n value !== undefined && value > ZERO_THRESHOLD && barStyles.nonZeroDeterminate,\n color && value !== undefined && barStyles[color],\n state.bar.className,\n );\n }\n\n if (state.bar && value !== undefined) {\n state.bar.style = {\n width: Math.min(100, Math.max(0, (value / max) * 100)) + '%',\n ...state.bar.style,\n };\n }\n\n return state;\n};\n"]}
|
1
|
+
{"version":3,"sources":["../../../lib/components/ProgressBar/useProgressBarStyles.js"],"sourcesContent":["import { __styles, mergeClasses, shorthands } from '@griffel/react';\nimport { tokens } from '@fluentui/react-theme';\nimport { useFluent_unstable as useFluent } from '@fluentui/react-shared-contexts';\nexport const progressBarClassNames = {\n root: 'fui-ProgressBar',\n bar: 'fui-ProgressBar__bar'\n};\n// If the percentComplete is near 0, don't animate it.\n// This prevents animations on reset to 0 scenarios.\nconst ZERO_THRESHOLD = 0.01;\nconst barThicknessValues = {\n medium: '2px',\n large: '4px'\n};\nconst indeterminateProgressBar = {\n '0%': {\n left: '-100% /* @noflip */'\n },\n '100%': {\n left: '100% /* @noflip */'\n }\n};\nconst indeterminateProgressBarRTL = {\n '100%': {\n right: '-100% /* @noflip */'\n },\n '0%': {\n right: '100% /* @noflip */'\n }\n};\n/**\n * Styles for the root slot\n */\nconst useRootStyles = /*#__PURE__*/__styles({\n root: {\n mc9l5x: \"ftgm304\",\n De3pzq: \"f18f03hv\",\n Bdqf98w: \"fhb5wj7\",\n B68tc82: \"f1p9o1ba\",\n Bmxbyg5: \"f1sil6mw\",\n I5kgcl: \"fs8b23g\",\n tu2nte: \"f1mcb20s\",\n y0r1ed: \"fek7wd8\"\n },\n rounded: {\n Bbmb7ep: [\"f1aa9q02\", \"f16jpd5f\"],\n Beyfa6y: [\"f16jpd5f\", \"f1aa9q02\"],\n B7oj6ja: [\"f1jar5jt\", \"fyu767a\"],\n Btl43ni: [\"fyu767a\", \"f1jar5jt\"]\n },\n square: {\n Bbmb7ep: [\"fzi6hpg\", \"fyowgf4\"],\n Beyfa6y: [\"fyowgf4\", \"fzi6hpg\"],\n B7oj6ja: [\"f3fg2lr\", \"f13av6d4\"],\n Btl43ni: [\"f13av6d4\", \"f3fg2lr\"]\n },\n medium: {\n Bqenvij: \"f4t8t6x\"\n },\n large: {\n Bqenvij: \"f6ywr7j\"\n }\n}, {\n d: [\".ftgm304{display:block;}\", \".f18f03hv{background-color:var(--colorNeutralBackground6);}\", \".fhb5wj7{justify-self:stretch;}\", \".f1p9o1ba{overflow-x:hidden;}\", \".f1sil6mw{overflow-y:hidden;}\", \".f1aa9q02{border-bottom-right-radius:var(--borderRadiusMedium);}\", \".f16jpd5f{border-bottom-left-radius:var(--borderRadiusMedium);}\", \".f1jar5jt{border-top-right-radius:var(--borderRadiusMedium);}\", \".fyu767a{border-top-left-radius:var(--borderRadiusMedium);}\", \".fzi6hpg{border-bottom-right-radius:var(--borderRadiusNone);}\", \".fyowgf4{border-bottom-left-radius:var(--borderRadiusNone);}\", \".f3fg2lr{border-top-right-radius:var(--borderRadiusNone);}\", \".f13av6d4{border-top-left-radius:var(--borderRadiusNone);}\", \".f4t8t6x{height:2px;}\", \".f6ywr7j{height:4px;}\"],\n m: [[\"@media screen and (forced-colors: active){.fs8b23g{border-bottom-width:1px;}}\", {\n m: \"screen and (forced-colors: active)\"\n }], [\"@media screen and (forced-colors: active){.f1mcb20s{border-bottom-style:solid;}}\", {\n m: \"screen and (forced-colors: active)\"\n }], [\"@media screen and (forced-colors: active){.fek7wd8{border-bottom-color:CanvasText;}}\", {\n m: \"screen and (forced-colors: active)\"\n }]]\n});\n/**\n * Styles for the ProgressBar bar\n */\nconst useBarStyles = /*#__PURE__*/__styles({\n base: {\n Bbmb7ep: [\"f1d9uwra\", \"fzibvwi\"],\n Beyfa6y: [\"fzibvwi\", \"f1d9uwra\"],\n B7oj6ja: [\"fuoumxm\", \"f1vtqnvc\"],\n Btl43ni: [\"f1vtqnvc\", \"fuoumxm\"]\n },\n medium: {\n Bqenvij: \"f4t8t6x\"\n },\n large: {\n Bqenvij: \"f6ywr7j\"\n },\n nonZeroDeterminate: {\n Bmy1vo4: \"fjt6zfz\",\n B3o57yi: \"f1wofebd\",\n Bkqvd7p: \"fv71qf3\"\n },\n indeterminate: {\n B2u0y6b: \"fa0wk36\",\n qhf8xq: \"f10pi13n\",\n Bcmaq0h: [\"fpo0yib\", \"f1u5hf6c\"],\n Bv12yb3: \"f1jk3tlg\",\n vin17d: \"f1a27w2r\",\n w3vfg9: \"f1cpbl36\",\n Gqtpxc: \"f4akx1t\",\n B3vm3ge: \"f18p5put\"\n },\n rtl: {\n Bv12yb3: \"fjhwsai\"\n },\n brand: {\n De3pzq: \"ftywsgz\",\n Bpep1pd: \"f1neahkh\"\n },\n error: {\n De3pzq: \"fdl5y0r\"\n },\n warning: {\n De3pzq: \"f1s438gw\"\n },\n success: {\n De3pzq: \"flxk52p\"\n }\n}, {\n d: [\".f1d9uwra{border-bottom-right-radius:inherit;}\", \".fzibvwi{border-bottom-left-radius:inherit;}\", \".fuoumxm{border-top-right-radius:inherit;}\", \".f1vtqnvc{border-top-left-radius:inherit;}\", \".f4t8t6x{height:2px;}\", \".f6ywr7j{height:4px;}\", \".fjt6zfz{transition-property:width;}\", \".f1wofebd{transition-duration:0.3s;}\", \".fv71qf3{transition-timing-function:ease;}\", \".fa0wk36{max-width:33%;}\", \".f10pi13n{position:relative;}\", \".fpo0yib{background-image:linear-gradient(\\n to right,\\n var(--colorNeutralBackground6) 0%,\\n var(--colorTransparentBackground) 50%,\\n var(--colorNeutralBackground6) 100%\\n );}\", \".f1u5hf6c{background-image:linear-gradient(\\n to left,\\n var(--colorNeutralBackground6) 0%,\\n var(--colorTransparentBackground) 50%,\\n var(--colorNeutralBackground6) 100%\\n );}\", \".f1jk3tlg{-webkit-animation-name:fzkbrka;animation-name:fzkbrka;}\", \".f1a27w2r{-webkit-animation-duration:3s;animation-duration:3s;}\", \".f1cpbl36{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;}\", \".fjhwsai{-webkit-animation-name:f1kx06uz;animation-name:f1kx06uz;}\", \".ftywsgz{background-color:var(--colorCompoundBrandBackground);}\", \".fdl5y0r{background-color:var(--colorPaletteRedBackground3);}\", \".f1s438gw{background-color:var(--colorPaletteDarkOrangeBackground3);}\", \".flxk52p{background-color:var(--colorPaletteGreenBackground3);}\"],\n k: [\"@-webkit-keyframes fzkbrka{0%{left:-100%;}100%{left:100%;}}\", \"@keyframes fzkbrka{0%{left:-100%;}100%{left:100%;}}\", \"@-webkit-keyframes f1kx06uz{100%{right:-100%;}0%{right:100%;}}\", \"@keyframes f1kx06uz{100%{right:-100%;}0%{right:100%;}}\"],\n m: [[\"@media screen and (prefers-reduced-motion: reduce){.f4akx1t{-webkit-animation-duration:0.01ms;animation-duration:0.01ms;}}\", {\n m: \"screen and (prefers-reduced-motion: reduce)\"\n }], [\"@media screen and (prefers-reduced-motion: reduce){.f18p5put{-webkit-animation-iteration-count:1;animation-iteration-count:1;}}\", {\n m: \"screen and (prefers-reduced-motion: reduce)\"\n }], [\"@media screen and (forced-colors: active){.f1neahkh{background-color:Highlight;}}\", {\n m: \"screen and (forced-colors: active)\"\n }]]\n});\n/**\n * Apply styling to the ProgressBar slots based on the state\n */\nexport const useProgressBarStyles_unstable = state => {\n const {\n color,\n max,\n shape,\n thickness,\n value\n } = state;\n const rootStyles = useRootStyles();\n const barStyles = useBarStyles();\n const {\n dir\n } = useFluent();\n state.root.className = mergeClasses(progressBarClassNames.root, rootStyles.root, rootStyles[shape], rootStyles[thickness], state.root.className);\n if (state.bar) {\n state.bar.className = mergeClasses(progressBarClassNames.bar, barStyles.base, barStyles.brand, value === undefined && barStyles.indeterminate, value === undefined && dir === 'rtl' && barStyles.rtl, barStyles[thickness], value !== undefined && value > ZERO_THRESHOLD && barStyles.nonZeroDeterminate, color && value !== undefined && barStyles[color], state.bar.className);\n }\n if (state.bar && value !== undefined) {\n state.bar.style = {\n width: Math.min(100, Math.max(0, value / max * 100)) + '%',\n ...state.bar.style\n };\n }\n return state;\n};\n//# sourceMappingURL=useProgressBarStyles.js.map"],"names":["progressBarClassNames","useProgressBarStyles_unstable","root","bar","ZERO_THRESHOLD","barThicknessValues","medium","large","indeterminateProgressBar","left","indeterminateProgressBarRTL","right","useRootStyles","__styles","mc9l5x","De3pzq","Bdqf98w","B68tc82","Bmxbyg5","I5kgcl","tu2nte","y0r1ed","rounded","Bbmb7ep","Beyfa6y","B7oj6ja","Btl43ni","square","Bqenvij","d","m","useBarStyles","base","nonZeroDeterminate","Bmy1vo4","B3o57yi","Bkqvd7p","indeterminate","B2u0y6b","qhf8xq","Bcmaq0h","Bv12yb3","vin17d","w3vfg9","Gqtpxc","B3vm3ge","rtl","brand","Bpep1pd","error","warning","success","k","state","color","max","shape","thickness","value","rootStyles","barStyles","dir","useFluent","className","mergeClasses","undefined","style","width","Math","min"],"mappings":"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"}
|
@@ -1,23 +1,29 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
1
|
+
/* eslint-disable deprecation/deprecation */ "use strict";
|
3
2
|
Object.defineProperty(exports, "__esModule", {
|
4
|
-
|
3
|
+
value: true
|
5
4
|
});
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
mapProps: props => ({
|
16
|
-
...props,
|
17
|
-
control: {
|
18
|
-
...props.control,
|
19
|
-
validationState: props.validationState
|
20
|
-
}
|
21
|
-
})
|
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
|
+
progressFieldClassNames: ()=>progressFieldClassNames,
|
13
|
+
ProgressField: ()=>ProgressField
|
22
14
|
});
|
15
|
+
const _reactField = require("@fluentui/react-field");
|
16
|
+
const _progressBar = require("../../ProgressBar");
|
17
|
+
const progressFieldClassNames = /*#__PURE__*/ (0, _reactField.getDeprecatedFieldClassNames)(_progressBar.progressBarClassNames.root);
|
18
|
+
const ProgressField = /*#__PURE__*/ (0, _reactField.makeDeprecatedField)(_progressBar.ProgressBar, {
|
19
|
+
displayName: 'ProgressField',
|
20
|
+
mapProps: (props)=>({
|
21
|
+
...props,
|
22
|
+
control: {
|
23
|
+
...props.control,
|
24
|
+
validationState: props.validationState
|
25
|
+
}
|
26
|
+
})
|
27
|
+
}); //# sourceMappingURL=ProgressField.js.map
|
28
|
+
|
23
29
|
//# sourceMappingURL=ProgressField.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"
|
1
|
+
{"version":3,"sources":["../../../lib/components/ProgressField/ProgressField.js"],"sourcesContent":["/* eslint-disable deprecation/deprecation */import { getDeprecatedFieldClassNames, makeDeprecatedField } from '@fluentui/react-field';\nimport { ProgressBar, progressBarClassNames } from '../../ProgressBar';\n/** @deprecated Use Field with ProgressBar: `<Field><ProgressBar /></Field>` */\nexport const progressFieldClassNames = /*#__PURE__*/getDeprecatedFieldClassNames(progressBarClassNames.root);\n/** @deprecated Use Field with ProgressBar: `<Field><ProgressBar /></Field>` */\nexport const ProgressField = /*#__PURE__*/makeDeprecatedField(ProgressBar, {\n displayName: 'ProgressField',\n mapProps: props => ({\n ...props,\n control: {\n ...props.control,\n validationState: props.validationState\n }\n })\n});\n//# sourceMappingURL=ProgressField.js.map"],"names":["progressFieldClassNames","ProgressField","getDeprecatedFieldClassNames","progressBarClassNames","root","makeDeprecatedField","ProgressBar","displayName","mapProps","props","control","validationState"],"mappings":"AAAA,0CAA0C;;;;;;;;;;;IAG7BA,uBAAuB,MAAvBA;IAEAC,aAAa,MAAbA;;4BALiG;6BAC3D;AAE5C,MAAMD,0BAA0B,WAAW,GAAEE,IAAAA,wCAA4B,EAACC,kCAAqB,CAACC,IAAI;AAEpG,MAAMH,gBAAgB,WAAW,GAAEI,IAAAA,+BAAmB,EAACC,wBAAW,EAAE;IACzEC,aAAa;IACbC,UAAUC,CAAAA,QAAU,CAAA;YAClB,GAAGA,KAAK;YACRC,SAAS;gBACP,GAAGD,MAAMC,OAAO;gBAChBC,iBAAiBF,MAAME,eAAe;YACxC;QACF,CAAA;AACF,IACA,yCAAyC"}
|