@fluentui/web-components 1.5.6 → 1.6.3
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.json +114 -2
- package/CHANGELOG.md +44 -3
- package/dist/dts/design-tokens.d.ts +176 -176
- package/dist/dts/number-field/number-field.stories.d.ts +1 -0
- package/dist/dts/progress/progress/index.d.ts +7 -6
- package/dist/dts/progress/progress/progress.stories.d.ts +2 -0
- package/dist/dts/progress/progress-ring/index.d.ts +7 -6
- package/dist/dts/progress/progress-ring/progress-ring.stories.d.ts +2 -0
- package/dist/dts/styles/elevation.d.ts +3 -0
- package/dist/dts/text-area/text-area.stories.d.ts +1 -0
- package/dist/dts/text-field/text-field.stories.d.ts +1 -1
- package/dist/dts/utilities/math.d.ts +4 -0
- package/dist/esm/anchor/anchor.stories.js +4 -3
- package/dist/esm/anchored-region/anchored-region.stories.js +3 -3
- package/dist/esm/badge/badge.stories.js +2 -2
- package/dist/esm/breadcrumb-item/breadcrumb-item.styles.js +5 -5
- package/dist/esm/card/card.stories.js +1 -1
- package/dist/esm/checkbox/checkbox.stories.js +2 -2
- package/dist/esm/combobox/combobox.stories.js +5 -0
- package/dist/esm/data-grid/data-grid.stories.js +3 -3
- package/dist/esm/design-tokens.js +218 -211
- package/dist/esm/number-field/number-field.stories.js +2 -1
- package/dist/esm/progress/progress/index.js +7 -6
- package/dist/esm/progress/progress/progress.stories.js +32 -4
- package/dist/esm/progress/progress-ring/index.js +7 -6
- package/dist/esm/progress/progress-ring/progress-ring.stories.js +35 -5
- package/dist/esm/radio-group/radio-group.stories.js +5 -3
- package/dist/esm/slider/slider.stories.js +8 -3
- package/dist/esm/styles/elevation.js +3 -0
- package/dist/esm/switch/switch.stories.js +10 -2
- package/dist/esm/tabs/tabs.stories.js +2 -2
- package/dist/esm/text-area/text-area.stories.js +3 -2
- package/dist/esm/text-field/text-field.stories.js +3 -3
- package/dist/esm/tree-view/tree-view.stories.js +30 -8
- package/dist/esm/utilities/math.js +4 -0
- package/dist/fluent-web-components.api.json +67 -11
- package/dist/web-components.d.ts +27 -13
- package/dist/web-components.js +3908 -4800
- package/dist/web-components.min.js +127 -127
- package/docs/api-report.md +21 -16
- package/package.json +7 -7
- package/public/switches.ts +1 -1
|
@@ -34,6 +34,7 @@ export default {
|
|
|
34
34
|
},
|
|
35
35
|
step: {
|
|
36
36
|
control: { type: 'number' },
|
|
37
|
+
defaultValue: 1,
|
|
37
38
|
},
|
|
38
39
|
size: {
|
|
39
40
|
control: { type: 'number' },
|
|
@@ -71,7 +72,7 @@ NumberField.args = {
|
|
|
71
72
|
required: false,
|
|
72
73
|
};
|
|
73
74
|
const example = `
|
|
74
|
-
<fluent-number-field></fluent-number-field>
|
|
75
|
+
<fluent-number-field appearance="outline" ></fluent-number-field>
|
|
75
76
|
`;
|
|
76
77
|
NumberField.parameters = {
|
|
77
78
|
docs: {
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
import { BaseProgress
|
|
1
|
+
import { BaseProgress, progressTemplate as template } from '@microsoft/fast-foundation';
|
|
2
2
|
import { progressStyles as styles } from './progress.styles';
|
|
3
|
+
/**
|
|
4
|
+
* Progress base class
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export class Progress extends BaseProgress {
|
|
8
|
+
}
|
|
3
9
|
/**
|
|
4
10
|
* The Fluent Progress Element. Implements {@link @microsoft/fast-foundation#BaseProgress},
|
|
5
11
|
* {@link @microsoft/fast-foundation#progressTemplate}
|
|
@@ -25,8 +31,3 @@ export const fluentProgress = Progress.compose({
|
|
|
25
31
|
* @public
|
|
26
32
|
*/
|
|
27
33
|
export const progressStyles = styles;
|
|
28
|
-
/**
|
|
29
|
-
* Progress base class
|
|
30
|
-
* @public
|
|
31
|
-
*/
|
|
32
|
-
export { Progress };
|
|
@@ -16,16 +16,44 @@ const ProgressTemplate = ({ paused, value }) => `
|
|
|
16
16
|
`;
|
|
17
17
|
export const Progress = ProgressTemplate.bind({});
|
|
18
18
|
Progress.args = {
|
|
19
|
-
value: 50,
|
|
20
19
|
paused: false,
|
|
20
|
+
value: 50,
|
|
21
21
|
};
|
|
22
|
-
const
|
|
23
|
-
<fluent-progress min="0" max="100" value="
|
|
22
|
+
const defaultExample = `
|
|
23
|
+
<fluent-progress min="0" max="100" value="${Progress.args.value}"></fluent-progress>
|
|
24
24
|
`;
|
|
25
25
|
Progress.parameters = {
|
|
26
26
|
docs: {
|
|
27
27
|
source: {
|
|
28
|
-
code:
|
|
28
|
+
code: defaultExample,
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
};
|
|
32
|
+
export const ProgressAnimated = ProgressTemplate.bind({});
|
|
33
|
+
ProgressAnimated.args = {
|
|
34
|
+
paused: false,
|
|
35
|
+
};
|
|
36
|
+
export const ProgressPaused = ProgressTemplate.bind({});
|
|
37
|
+
ProgressPaused.args = {
|
|
38
|
+
paused: true,
|
|
39
|
+
};
|
|
40
|
+
const animatedExample = `
|
|
41
|
+
<fluent-progress></fluent-progress>
|
|
42
|
+
`;
|
|
43
|
+
const pausedExample = `
|
|
44
|
+
<fluent-progress paused></fluent-progress>
|
|
45
|
+
`;
|
|
46
|
+
ProgressAnimated.parameters = {
|
|
47
|
+
docs: {
|
|
48
|
+
source: {
|
|
49
|
+
code: animatedExample,
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
};
|
|
53
|
+
ProgressPaused.parameters = {
|
|
54
|
+
docs: {
|
|
55
|
+
source: {
|
|
56
|
+
code: pausedExample,
|
|
29
57
|
},
|
|
30
58
|
},
|
|
31
59
|
};
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
import { BaseProgress
|
|
1
|
+
import { BaseProgress, progressRingTemplate as template } from '@microsoft/fast-foundation';
|
|
2
2
|
import { progressRingStyles as styles } from './progress-ring.styles';
|
|
3
|
+
/**
|
|
4
|
+
* Progress Ring base class
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export class ProgressRing extends BaseProgress {
|
|
8
|
+
}
|
|
3
9
|
/**
|
|
4
10
|
* The Fluent Progress Ring Element. Implements {@link @microsoft/fast-foundation#BaseProgress},
|
|
5
11
|
* {@link @microsoft/fast-foundation#progressRingTemplate}
|
|
@@ -37,8 +43,3 @@ export const fluentProgressRing = ProgressRing.compose({
|
|
|
37
43
|
* @public
|
|
38
44
|
*/
|
|
39
45
|
export const progressRingStyles = styles;
|
|
40
|
-
/**
|
|
41
|
-
* Progress Ring base class
|
|
42
|
-
* @public
|
|
43
|
-
*/
|
|
44
|
-
export { ProgressRing };
|
|
@@ -8,22 +8,52 @@ export default {
|
|
|
8
8
|
},
|
|
9
9
|
},
|
|
10
10
|
};
|
|
11
|
-
const ProgressRingTemplate = ({ paused }) => `
|
|
12
|
-
<fluent-progress-ring
|
|
11
|
+
const ProgressRingTemplate = ({ paused, value }) => `
|
|
12
|
+
<fluent-progress-ring
|
|
13
|
+
${value ? `value="${value}"` : ''}
|
|
13
14
|
${paused ? `paused="${paused}"` : ''}
|
|
14
15
|
></fluent-progress-ring>
|
|
15
16
|
`;
|
|
16
17
|
export const ProgressRing = ProgressRingTemplate.bind({});
|
|
17
18
|
ProgressRing.args = {
|
|
18
19
|
paused: false,
|
|
20
|
+
value: 65,
|
|
19
21
|
};
|
|
20
|
-
const
|
|
21
|
-
<fluent-progress-ring min="0" max="100" value="
|
|
22
|
+
const defaultExample = `
|
|
23
|
+
<fluent-progress-ring min="0" max="100" value="${ProgressRing.args.value}"></fluent-progress-ring>
|
|
22
24
|
`;
|
|
23
25
|
ProgressRing.parameters = {
|
|
24
26
|
docs: {
|
|
25
27
|
source: {
|
|
26
|
-
code:
|
|
28
|
+
code: defaultExample,
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
};
|
|
32
|
+
export const ProgressRingAnimated = ProgressRingTemplate.bind({});
|
|
33
|
+
ProgressRingAnimated.args = {
|
|
34
|
+
paused: false,
|
|
35
|
+
};
|
|
36
|
+
export const ProgressRingPaused = ProgressRingTemplate.bind({});
|
|
37
|
+
ProgressRingPaused.args = {
|
|
38
|
+
paused: true,
|
|
39
|
+
};
|
|
40
|
+
const animatedExample = `
|
|
41
|
+
<fluent-progress-ring></fluent-progress-ring>
|
|
42
|
+
`;
|
|
43
|
+
const pausedExample = `
|
|
44
|
+
<fluent-progress-ring paused></fluent-progress-ring>
|
|
45
|
+
`;
|
|
46
|
+
ProgressRingAnimated.parameters = {
|
|
47
|
+
docs: {
|
|
48
|
+
source: {
|
|
49
|
+
code: animatedExample,
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
};
|
|
53
|
+
ProgressRingPaused.parameters = {
|
|
54
|
+
docs: {
|
|
55
|
+
source: {
|
|
56
|
+
code: pausedExample,
|
|
27
57
|
},
|
|
28
58
|
},
|
|
29
59
|
};
|
|
@@ -18,6 +18,7 @@ const RadioGroupTemplate = ({ disabled, required }) => `
|
|
|
18
18
|
>
|
|
19
19
|
<fluent-radio>Apples</fluent-radio>
|
|
20
20
|
<fluent-radio>Bananas</fluent-radio>
|
|
21
|
+
<fluent-radio>Tomatoes</fluent-radio>
|
|
21
22
|
</fluent-radio-group>`;
|
|
22
23
|
export const RadioGroup = RadioGroupTemplate.bind({});
|
|
23
24
|
RadioGroup.args = {
|
|
@@ -25,10 +26,11 @@ RadioGroup.args = {
|
|
|
25
26
|
required: false,
|
|
26
27
|
};
|
|
27
28
|
const example = `
|
|
28
|
-
<fluent-radio-group name="
|
|
29
|
+
<fluent-radio-group name="fruits" >
|
|
29
30
|
<label style="color: --var(neutral-foreground-rest)" slot="label"> Numbers </label>
|
|
30
|
-
<fluent-radio
|
|
31
|
-
<fluent-radio
|
|
31
|
+
<fluent-radio>Apples</fluent-radio>
|
|
32
|
+
<fluent-radio>Bananas</fluent-radio>
|
|
33
|
+
<fluent-radio>Bananas</fluent-radio>
|
|
32
34
|
</fluent-radio-group>
|
|
33
35
|
`;
|
|
34
36
|
RadioGroup.parameters = {
|
|
@@ -10,9 +10,9 @@ export default {
|
|
|
10
10
|
},
|
|
11
11
|
};
|
|
12
12
|
const SliderTemplate = ({ orientation }) => `
|
|
13
|
-
<fluent-slider
|
|
13
|
+
<fluent-slider
|
|
14
14
|
${orientation ? `orientation="${orientation}"` : ''}
|
|
15
|
-
min="0" max="100" step="10"
|
|
15
|
+
min="0" max="100" step="10" style="width:80%;"
|
|
16
16
|
>
|
|
17
17
|
<fluent-slider-label position="0"> 0℃ </fluent-slider-label>
|
|
18
18
|
<fluent-slider-label position="10"> 10℃ </fluent-slider-label>
|
|
@@ -24,7 +24,12 @@ Slider.args = {
|
|
|
24
24
|
orientation: 'horizontal',
|
|
25
25
|
};
|
|
26
26
|
const example = `
|
|
27
|
-
<fluent-slider
|
|
27
|
+
<fluent-slider min="0" max="100" step="10" orientation="horizontal" style="width:80%;">
|
|
28
|
+
<fluent-slider-label position="0"> 0℃ </fluent-slider-label>
|
|
29
|
+
<fluent-slider-label position="10"> 10℃ </fluent-slider-label>
|
|
30
|
+
<fluent-slider-label position="90"> 90℃ </fluent-slider-label>
|
|
31
|
+
<fluent-slider-label position="100"> 100℃ </fluent-slider-label>
|
|
32
|
+
</fluent-slider>
|
|
28
33
|
`;
|
|
29
34
|
Slider.parameters = {
|
|
30
35
|
docs: {
|
|
@@ -6,10 +6,12 @@
|
|
|
6
6
|
* https://github.com/microsoft/fast/issues/2778
|
|
7
7
|
*
|
|
8
8
|
* @internal
|
|
9
|
+
* @deprecated Will be replaced
|
|
9
10
|
*/
|
|
10
11
|
export const ambientShadow = '0 0 calc((var(--elevation) * 0.225px) + 2px) rgba(0, 0, 0, calc(.11 * (2 - var(--background-luminance, 1))))';
|
|
11
12
|
/**
|
|
12
13
|
* @internal
|
|
14
|
+
* @deprecated Will be replaced
|
|
13
15
|
*/
|
|
14
16
|
export const directionalShadow = '0 calc(var(--elevation) * 0.4px) calc((var(--elevation) * 0.9px)) rgba(0, 0, 0, calc(.13 * (2 - var(--background-luminance, 1))))';
|
|
15
17
|
/**
|
|
@@ -18,5 +20,6 @@ export const directionalShadow = '0 calc(var(--elevation) * 0.4px) calc((var(--e
|
|
|
18
20
|
* by setting --elevation to a number.
|
|
19
21
|
*
|
|
20
22
|
* @public
|
|
23
|
+
* @deprecated Will be replaced
|
|
21
24
|
*/
|
|
22
25
|
export const elevation = `box-shadow: ${ambientShadow}, ${directionalShadow};`;
|
|
@@ -15,7 +15,11 @@ const SwitchTemplate = ({ checked, disabled }) => `
|
|
|
15
15
|
<fluent-switch
|
|
16
16
|
${checked ? 'checked' : ''}
|
|
17
17
|
${disabled ? 'disabled' : ''}
|
|
18
|
-
|
|
18
|
+
>
|
|
19
|
+
<span slot="checked-message">On</span>
|
|
20
|
+
<span slot="unchecked-message">Off</span>
|
|
21
|
+
<label for="direction-switch">Captions:</label>
|
|
22
|
+
</fluent-switch>
|
|
19
23
|
`;
|
|
20
24
|
export const Switch = SwitchTemplate.bind({});
|
|
21
25
|
Switch.args = {
|
|
@@ -23,7 +27,11 @@ Switch.args = {
|
|
|
23
27
|
disabled: false,
|
|
24
28
|
};
|
|
25
29
|
const example = `
|
|
26
|
-
<fluent-switch
|
|
30
|
+
<fluent-switch>
|
|
31
|
+
<span slot="checked-message">On</span>
|
|
32
|
+
<span slot="unchecked-message">Off</span>
|
|
33
|
+
<label for="direction-switch">Captions:</label>
|
|
34
|
+
</fluent-switch>
|
|
27
35
|
`;
|
|
28
36
|
Switch.parameters = {
|
|
29
37
|
docs: {
|
|
@@ -29,10 +29,10 @@ export const Tabs = TabsTemplate.bind({});
|
|
|
29
29
|
Tabs.args = {
|
|
30
30
|
activeId: 'TabTwo',
|
|
31
31
|
activeIndicator: true,
|
|
32
|
-
orientation: '
|
|
32
|
+
orientation: 'horizontal',
|
|
33
33
|
};
|
|
34
34
|
const example = `
|
|
35
|
-
<fluent-tabs id="myTab" activeId="TabTwo">
|
|
35
|
+
<fluent-tabs id="myTab" activeId="TabTwo" orientation="horizontal">
|
|
36
36
|
<fluent-tab id="TabOne">Tab one</fluent-tab>
|
|
37
37
|
<fluent-tab id="TabTwo">Tab two</fluent-tab>
|
|
38
38
|
<fluent-tab id="TabThree">Tab three</fluent-tab>
|
|
@@ -4,7 +4,8 @@ export default {
|
|
|
4
4
|
component: fluentTextArea,
|
|
5
5
|
argTypes: {
|
|
6
6
|
appearance: {
|
|
7
|
-
options: ['filled'],
|
|
7
|
+
options: ['filled', 'outline'],
|
|
8
|
+
defaultValue: 'outline',
|
|
8
9
|
control: { type: 'radio' },
|
|
9
10
|
},
|
|
10
11
|
autoFocus: {
|
|
@@ -44,7 +45,7 @@ TextArea.args = {
|
|
|
44
45
|
required: false,
|
|
45
46
|
};
|
|
46
47
|
const example = `
|
|
47
|
-
<fluent-text-area></fluent-text-area>
|
|
48
|
+
<fluent-text-area appearance="outline"></fluent-text-area>
|
|
48
49
|
`;
|
|
49
50
|
TextArea.parameters = {
|
|
50
51
|
docs: {
|
|
@@ -4,8 +4,8 @@ export default {
|
|
|
4
4
|
component: fluentTextField,
|
|
5
5
|
argTypes: {
|
|
6
6
|
appearance: {
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
options: ['filled', 'outline'],
|
|
8
|
+
defaultValue: 'outline',
|
|
9
9
|
control: { type: 'radio' },
|
|
10
10
|
},
|
|
11
11
|
autoFocus: {
|
|
@@ -77,7 +77,7 @@ TextField.args = {
|
|
|
77
77
|
required: false,
|
|
78
78
|
};
|
|
79
79
|
const example = `
|
|
80
|
-
<fluent-text-field></fluent-text-field>
|
|
80
|
+
<fluent-text-field appearance="outline"></fluent-text-field>
|
|
81
81
|
`;
|
|
82
82
|
TextField.parameters = {
|
|
83
83
|
docs: {
|
|
@@ -12,6 +12,11 @@ export default {
|
|
|
12
12
|
},
|
|
13
13
|
};
|
|
14
14
|
const TreeViewTemplate = ({ disabled, renderCollapsedNodes }) => `
|
|
15
|
+
<style>
|
|
16
|
+
div.docs-story>div:first-child {
|
|
17
|
+
height: 22em !important;
|
|
18
|
+
}
|
|
19
|
+
</style>
|
|
15
20
|
<fluent-tree-view
|
|
16
21
|
${disabled ? 'disabled' : ''}
|
|
17
22
|
${renderCollapsedNodes ? `render-collapsed-nodes="${renderCollapsedNodes}` : ''}
|
|
@@ -48,14 +53,31 @@ TreeView.args = {
|
|
|
48
53
|
};
|
|
49
54
|
const example = `
|
|
50
55
|
<fluent-tree-view>
|
|
51
|
-
<fluent-tree-item
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
</fluent-tree-
|
|
58
|
-
|
|
56
|
+
<fluent-tree-item>
|
|
57
|
+
Root item 1
|
|
58
|
+
<fluent-tree-item>
|
|
59
|
+
Flowers
|
|
60
|
+
<fluent-tree-item disabled>Daisy</fluent-tree-item>
|
|
61
|
+
<fluent-tree-item>Sunflower</fluent-tree-item>
|
|
62
|
+
<fluent-tree-item>Rose</fluent-tree-item>
|
|
63
|
+
</fluent-tree-item>
|
|
64
|
+
<fluent-tree-item>Nested item 2</fluent-tree-item>
|
|
65
|
+
<fluent-tree-item>Nested item 3</fluent-tree-item>
|
|
66
|
+
</fluent-tree-item>
|
|
67
|
+
<fluent-tree-item>
|
|
68
|
+
Root item 2
|
|
69
|
+
<fluent-divider></fluent-divider>
|
|
70
|
+
<fluent-tree-item>
|
|
71
|
+
Flowers
|
|
72
|
+
<fluent-tree-item disabled>Daisy</fluent-tree-item>
|
|
73
|
+
<fluent-tree-item>Sunflower</fluent-tree-item>
|
|
74
|
+
<fluent-tree-item>Rose</fluent-tree-item>
|
|
75
|
+
</fluent-tree-item>
|
|
76
|
+
<fluent-tree-item>Nested item 2</fluent-tree-item>
|
|
77
|
+
<fluent-tree-item>Nested item 3</fluent-tree-item>
|
|
78
|
+
</fluent-tree-item>
|
|
79
|
+
<fluent-tree-item> Root item 3 - Leaf Erikson </fluent-tree-item>
|
|
80
|
+
</fluent-tree-view>`;
|
|
59
81
|
TreeView.parameters = {
|
|
60
82
|
docs: {
|
|
61
83
|
source: {
|
|
@@ -18,6 +18,7 @@ const _divide = performOperation((a, b) => a / b);
|
|
|
18
18
|
/**
|
|
19
19
|
* Adds numbers or functions that accept a design system and return a number.
|
|
20
20
|
* @internal
|
|
21
|
+
* @deprecated
|
|
21
22
|
*/
|
|
22
23
|
export function add(...args) {
|
|
23
24
|
return _add.apply(this, args);
|
|
@@ -25,6 +26,7 @@ export function add(...args) {
|
|
|
25
26
|
/**
|
|
26
27
|
* Subtract numbers or functions that accept a design system and return a number.
|
|
27
28
|
* @internal
|
|
29
|
+
* @deprecated
|
|
28
30
|
*/
|
|
29
31
|
export function subtract(...args) {
|
|
30
32
|
return _subtract.apply(this, args);
|
|
@@ -32,6 +34,7 @@ export function subtract(...args) {
|
|
|
32
34
|
/**
|
|
33
35
|
* Multiplies numbers or functions that accept a design system and return a number.
|
|
34
36
|
* @internal
|
|
37
|
+
* @deprecated
|
|
35
38
|
*/
|
|
36
39
|
export function multiply(...args) {
|
|
37
40
|
return _multiply.apply(this, args);
|
|
@@ -39,6 +42,7 @@ export function multiply(...args) {
|
|
|
39
42
|
/**
|
|
40
43
|
* Divides numbers or functions that accept a design system and return a number.
|
|
41
44
|
* @internal
|
|
45
|
+
* @deprecated
|
|
42
46
|
*/
|
|
43
47
|
export function divide(...args) {
|
|
44
48
|
return _divide.apply(this, args);
|
|
@@ -6124,7 +6124,7 @@
|
|
|
6124
6124
|
{
|
|
6125
6125
|
"kind": "Variable",
|
|
6126
6126
|
"canonicalReference": "@fluentui/web-components!elevation:var",
|
|
6127
|
-
"docComment": "/**\n * Applies the box-shadow CSS rule set to the elevation formula. Control this formula with the --elevation CSS Custom Property by setting --elevation to a number.\n *\n * @public\n */\n",
|
|
6127
|
+
"docComment": "/**\n * Applies the box-shadow CSS rule set to the elevation formula. Control this formula with the --elevation CSS Custom Property by setting --elevation to a number.\n *\n * @deprecated\n *\n * Will be replaced\n *\n * @public\n */\n",
|
|
6128
6128
|
"excerptTokens": [
|
|
6129
6129
|
{
|
|
6130
6130
|
"kind": "Content",
|
|
@@ -9400,7 +9400,7 @@
|
|
|
9400
9400
|
{
|
|
9401
9401
|
"kind": "Variable",
|
|
9402
9402
|
"canonicalReference": "@fluentui/web-components!foregroundOnAccentActiveLarge:var",
|
|
9403
|
-
"docComment": "/**\n * @public\n */\n",
|
|
9403
|
+
"docComment": "/**\n * @deprecated\n *\n * Not used\n *\n * @public\n */\n",
|
|
9404
9404
|
"excerptTokens": [
|
|
9405
9405
|
{
|
|
9406
9406
|
"kind": "Content",
|
|
@@ -9478,7 +9478,7 @@
|
|
|
9478
9478
|
{
|
|
9479
9479
|
"kind": "Variable",
|
|
9480
9480
|
"canonicalReference": "@fluentui/web-components!foregroundOnAccentFocusLarge:var",
|
|
9481
|
-
"docComment": "/**\n * @public\n */\n",
|
|
9481
|
+
"docComment": "/**\n * @deprecated\n *\n * Not used\n *\n * @public\n */\n",
|
|
9482
9482
|
"excerptTokens": [
|
|
9483
9483
|
{
|
|
9484
9484
|
"kind": "Content",
|
|
@@ -9556,7 +9556,7 @@
|
|
|
9556
9556
|
{
|
|
9557
9557
|
"kind": "Variable",
|
|
9558
9558
|
"canonicalReference": "@fluentui/web-components!foregroundOnAccentHoverLarge:var",
|
|
9559
|
-
"docComment": "/**\n * @public\n */\n",
|
|
9559
|
+
"docComment": "/**\n * @deprecated\n *\n * Not used\n *\n * @public\n */\n",
|
|
9560
9560
|
"excerptTokens": [
|
|
9561
9561
|
{
|
|
9562
9562
|
"kind": "Content",
|
|
@@ -9595,7 +9595,7 @@
|
|
|
9595
9595
|
{
|
|
9596
9596
|
"kind": "Variable",
|
|
9597
9597
|
"canonicalReference": "@fluentui/web-components!foregroundOnAccentLargeRecipe:var",
|
|
9598
|
-
"docComment": "/**\n * @public\n */\n",
|
|
9598
|
+
"docComment": "/**\n * @deprecated\n *\n * Not used\n *\n * @public\n */\n",
|
|
9599
9599
|
"excerptTokens": [
|
|
9600
9600
|
{
|
|
9601
9601
|
"kind": "Content",
|
|
@@ -9704,7 +9704,7 @@
|
|
|
9704
9704
|
{
|
|
9705
9705
|
"kind": "Variable",
|
|
9706
9706
|
"canonicalReference": "@fluentui/web-components!foregroundOnAccentRestLarge:var",
|
|
9707
|
-
"docComment": "/**\n * @public\n */\n",
|
|
9707
|
+
"docComment": "/**\n * @deprecated\n *\n * Not used\n *\n * @public\n */\n",
|
|
9708
9708
|
"excerptTokens": [
|
|
9709
9709
|
{
|
|
9710
9710
|
"kind": "Content",
|
|
@@ -11070,7 +11070,7 @@
|
|
|
11070
11070
|
{
|
|
11071
11071
|
"kind": "Variable",
|
|
11072
11072
|
"canonicalReference": "@fluentui/web-components!neutralFillInverseActive:var",
|
|
11073
|
-
"docComment": "/**\n * @public\n */\n",
|
|
11073
|
+
"docComment": "/**\n * @deprecated\n *\n * Not used\n *\n * @public\n */\n",
|
|
11074
11074
|
"excerptTokens": [
|
|
11075
11075
|
{
|
|
11076
11076
|
"kind": "Content",
|
|
@@ -11139,7 +11139,7 @@
|
|
|
11139
11139
|
{
|
|
11140
11140
|
"kind": "Variable",
|
|
11141
11141
|
"canonicalReference": "@fluentui/web-components!neutralFillInverseFocus:var",
|
|
11142
|
-
"docComment": "/**\n * @public\n */\n",
|
|
11142
|
+
"docComment": "/**\n * @deprecated\n *\n * Not used\n *\n * @public\n */\n",
|
|
11143
11143
|
"excerptTokens": [
|
|
11144
11144
|
{
|
|
11145
11145
|
"kind": "Content",
|
|
@@ -11208,7 +11208,7 @@
|
|
|
11208
11208
|
{
|
|
11209
11209
|
"kind": "Variable",
|
|
11210
11210
|
"canonicalReference": "@fluentui/web-components!neutralFillInverseHover:var",
|
|
11211
|
-
"docComment": "/**\n * @public\n */\n",
|
|
11211
|
+
"docComment": "/**\n * @deprecated\n *\n * Not used\n *\n * @public\n */\n",
|
|
11212
11212
|
"excerptTokens": [
|
|
11213
11213
|
{
|
|
11214
11214
|
"kind": "Content",
|
|
@@ -11277,7 +11277,7 @@
|
|
|
11277
11277
|
{
|
|
11278
11278
|
"kind": "Variable",
|
|
11279
11279
|
"canonicalReference": "@fluentui/web-components!neutralFillInverseRecipe:var",
|
|
11280
|
-
"docComment": "/**\n * @public\n */\n",
|
|
11280
|
+
"docComment": "/**\n * @deprecated\n *\n * Not used\n *\n * @public\n */\n",
|
|
11281
11281
|
"excerptTokens": [
|
|
11282
11282
|
{
|
|
11283
11283
|
"kind": "Content",
|
|
@@ -11312,7 +11312,7 @@
|
|
|
11312
11312
|
{
|
|
11313
11313
|
"kind": "Variable",
|
|
11314
11314
|
"canonicalReference": "@fluentui/web-components!neutralFillInverseRest:var",
|
|
11315
|
-
"docComment": "/**\n * @public\n */\n",
|
|
11315
|
+
"docComment": "/**\n * @deprecated\n *\n * Not used\n *\n * @public\n */\n",
|
|
11316
11316
|
"excerptTokens": [
|
|
11317
11317
|
{
|
|
11318
11318
|
"kind": "Content",
|
|
@@ -14701,6 +14701,62 @@
|
|
|
14701
14701
|
"endIndex": 7
|
|
14702
14702
|
}
|
|
14703
14703
|
},
|
|
14704
|
+
{
|
|
14705
|
+
"kind": "Class",
|
|
14706
|
+
"canonicalReference": "@fluentui/web-components!Progress:class",
|
|
14707
|
+
"docComment": "/**\n * Progress base class\n *\n * @public\n */\n",
|
|
14708
|
+
"excerptTokens": [
|
|
14709
|
+
{
|
|
14710
|
+
"kind": "Content",
|
|
14711
|
+
"text": "export declare class Progress extends "
|
|
14712
|
+
},
|
|
14713
|
+
{
|
|
14714
|
+
"kind": "Reference",
|
|
14715
|
+
"text": "BaseProgress",
|
|
14716
|
+
"canonicalReference": "@microsoft/fast-foundation!BaseProgress:class"
|
|
14717
|
+
},
|
|
14718
|
+
{
|
|
14719
|
+
"kind": "Content",
|
|
14720
|
+
"text": " "
|
|
14721
|
+
}
|
|
14722
|
+
],
|
|
14723
|
+
"releaseTag": "Public",
|
|
14724
|
+
"name": "Progress",
|
|
14725
|
+
"members": [],
|
|
14726
|
+
"extendsTokenRange": {
|
|
14727
|
+
"startIndex": 1,
|
|
14728
|
+
"endIndex": 3
|
|
14729
|
+
},
|
|
14730
|
+
"implementsTokenRanges": []
|
|
14731
|
+
},
|
|
14732
|
+
{
|
|
14733
|
+
"kind": "Class",
|
|
14734
|
+
"canonicalReference": "@fluentui/web-components!ProgressRing:class",
|
|
14735
|
+
"docComment": "/**\n * Progress Ring base class\n *\n * @public\n */\n",
|
|
14736
|
+
"excerptTokens": [
|
|
14737
|
+
{
|
|
14738
|
+
"kind": "Content",
|
|
14739
|
+
"text": "export declare class ProgressRing extends "
|
|
14740
|
+
},
|
|
14741
|
+
{
|
|
14742
|
+
"kind": "Reference",
|
|
14743
|
+
"text": "BaseProgress",
|
|
14744
|
+
"canonicalReference": "@microsoft/fast-foundation!BaseProgress:class"
|
|
14745
|
+
},
|
|
14746
|
+
{
|
|
14747
|
+
"kind": "Content",
|
|
14748
|
+
"text": " "
|
|
14749
|
+
}
|
|
14750
|
+
],
|
|
14751
|
+
"releaseTag": "Public",
|
|
14752
|
+
"name": "ProgressRing",
|
|
14753
|
+
"members": [],
|
|
14754
|
+
"extendsTokenRange": {
|
|
14755
|
+
"startIndex": 1,
|
|
14756
|
+
"endIndex": 3
|
|
14757
|
+
},
|
|
14758
|
+
"implementsTokenRanges": []
|
|
14759
|
+
},
|
|
14704
14760
|
{
|
|
14705
14761
|
"kind": "Variable",
|
|
14706
14762
|
"canonicalReference": "@fluentui/web-components!progressRingStyles:var",
|