@fluentui/web-components 3.0.0-beta.13 → 3.0.0-beta.14
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 +11 -2
- package/dist/dts/index.d.ts +1 -0
- package/dist/dts/styles/partials/index.d.ts +1 -0
- package/dist/dts/styles/partials/typography.partials.d.ts +18 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/styles/partials/index.js +1 -0
- package/dist/esm/styles/partials/index.js.map +1 -1
- package/dist/esm/styles/partials/typography.partials.js +105 -0
- package/dist/esm/styles/partials/typography.partials.js.map +1 -0
- package/dist/fluent-web-components.api.json +391 -0
- package/dist/storybook/iframe.html +1 -1
- package/dist/storybook/{main.e73a6496.iframe.bundle.js → main.79d2477b.iframe.bundle.js} +2 -2
- package/dist/storybook/project.json +1 -1
- package/dist/web-components.d.ts +35 -0
- package/dist/web-components.js +104 -1
- package/dist/web-components.min.js +143 -58
- package/docs/api-report.md +52 -0
- package/package.json +1 -1
- /package/dist/storybook/{main.e73a6496.iframe.bundle.js.LICENSE.txt → main.79d2477b.iframe.bundle.js.LICENSE.txt} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,21 @@
|
|
|
1
1
|
# Change Log - @fluentui/web-components
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Fri, 26 Apr 2024 04:07:17 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [3.0.0-beta.14](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v3.0.0-beta.14)
|
|
8
|
+
|
|
9
|
+
Fri, 26 Apr 2024 04:07:17 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v3.0.0-beta.13..@fluentui/web-components_v3.0.0-beta.14)
|
|
11
|
+
|
|
12
|
+
### Changes
|
|
13
|
+
|
|
14
|
+
- create CSS partials for named typography styles ([PR #31164](https://github.com/microsoft/fluentui/pull/31164) by 13071055+chrisdholt@users.noreply.github.com)
|
|
15
|
+
|
|
7
16
|
## [3.0.0-beta.13](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v3.0.0-beta.13)
|
|
8
17
|
|
|
9
|
-
Thu, 25 Apr 2024 04:09:
|
|
18
|
+
Thu, 25 Apr 2024 04:09:24 GMT
|
|
10
19
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v3.0.0-beta.12..@fluentui/web-components_v3.0.0-beta.13)
|
|
11
20
|
|
|
12
21
|
### Changes
|
package/dist/dts/index.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export * from './text-input/index.js';
|
|
|
29
29
|
export * from './toggle-button/index.js';
|
|
30
30
|
export * from './fluent-design-system.js';
|
|
31
31
|
export * from './theme/index.js';
|
|
32
|
+
export { typographyBody1Styles, typographyBody1StrongStyles, typographyBody1StrongerStyles, typographyBody2Styles, typographyCaption1StrongStyles, typographyCaption1StrongerStyles, typographyCaption1Styles, typographyCaption2StrongStyles, typographyCaption2Styles, typographyDisplayStyles, typographyLargeTitleStyles, typographySubtitle1Styles, typographySubtitle2StrongerStyles, typographySubtitle2Styles, typographyTitle1Styles, typographyTitle2Styles, typographyTitle3Styles, } from './styles/partials/typography.partials.js';
|
|
32
33
|
export * from './utils/direction.js';
|
|
33
34
|
export * from './utils/display.js';
|
|
34
35
|
export * from './utils/behaviors/match-media-stylesheet-behavior.js';
|
|
@@ -1 +1,2 @@
|
|
|
1
1
|
export * from './badge.partials.js';
|
|
2
|
+
export { typographyBody1Styles, typographyBody1StrongStyles, typographyBody1StrongerStyles, typographyBody2Styles, typographyCaption1StrongStyles, typographyCaption1StrongerStyles, typographyCaption1Styles, typographyCaption2StrongStyles, typographyCaption2Styles, typographyDisplayStyles, typographyLargeTitleStyles, typographySubtitle1Styles, typographySubtitle2StrongerStyles, typographySubtitle2Styles, typographyTitle1Styles, typographyTitle2Styles, typographyTitle3Styles, } from './typography.partials.js';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { CSSDirective } from '@microsoft/fast-element';
|
|
2
|
+
export declare const typographyBody1Styles: CSSDirective;
|
|
3
|
+
export declare const typographyBody1StrongStyles: CSSDirective;
|
|
4
|
+
export declare const typographyBody1StrongerStyles: CSSDirective;
|
|
5
|
+
export declare const typographyBody2Styles: CSSDirective;
|
|
6
|
+
export declare const typographyCaption1Styles: CSSDirective;
|
|
7
|
+
export declare const typographyCaption1StrongStyles: CSSDirective;
|
|
8
|
+
export declare const typographyCaption1StrongerStyles: CSSDirective;
|
|
9
|
+
export declare const typographyCaption2Styles: CSSDirective;
|
|
10
|
+
export declare const typographyCaption2StrongStyles: CSSDirective;
|
|
11
|
+
export declare const typographySubtitle1Styles: CSSDirective;
|
|
12
|
+
export declare const typographySubtitle2Styles: CSSDirective;
|
|
13
|
+
export declare const typographySubtitle2StrongerStyles: CSSDirective;
|
|
14
|
+
export declare const typographyTitle1Styles: CSSDirective;
|
|
15
|
+
export declare const typographyTitle2Styles: CSSDirective;
|
|
16
|
+
export declare const typographyTitle3Styles: CSSDirective;
|
|
17
|
+
export declare const typographyLargeTitleStyles: CSSDirective;
|
|
18
|
+
export declare const typographyDisplayStyles: CSSDirective;
|
package/dist/esm/index.js
CHANGED
|
@@ -29,6 +29,7 @@ export * from './text-input/index.js';
|
|
|
29
29
|
export * from './toggle-button/index.js';
|
|
30
30
|
export * from './fluent-design-system.js';
|
|
31
31
|
export * from './theme/index.js';
|
|
32
|
+
export { typographyBody1Styles, typographyBody1StrongStyles, typographyBody1StrongerStyles, typographyBody2Styles, typographyCaption1StrongStyles, typographyCaption1StrongerStyles, typographyCaption1Styles, typographyCaption2StrongStyles, typographyCaption2Styles, typographyDisplayStyles, typographyLargeTitleStyles, typographySubtitle1Styles, typographySubtitle2StrongerStyles, typographySubtitle2Styles, typographyTitle1Styles, typographyTitle2Styles, typographyTitle3Styles, } from './styles/partials/typography.partials.js';
|
|
32
33
|
export * from './utils/direction.js';
|
|
33
34
|
export * from './utils/display.js';
|
|
34
35
|
export * from './utils/behaviors/match-media-stylesheet-behavior.js';
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,0BAA0B,CAAC;AACzC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,wBAAwB,CAAC;AACvC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,yBAAyB,CAAC;AACxC,cAAc,kBAAkB,CAAC;AACjC,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AAEzC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,kBAAkB,CAAC;AAEjC,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sDAAsD,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,0BAA0B,CAAC;AACzC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,wBAAwB,CAAC;AACvC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,yBAAyB,CAAC;AACxC,cAAc,kBAAkB,CAAC;AACjC,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AAEzC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,kBAAkB,CAAC;AAEjC,OAAO,EACL,qBAAqB,EACrB,2BAA2B,EAC3B,6BAA6B,EAC7B,qBAAqB,EACrB,8BAA8B,EAC9B,gCAAgC,EAChC,wBAAwB,EACxB,8BAA8B,EAC9B,wBAAwB,EACxB,uBAAuB,EACvB,0BAA0B,EAC1B,yBAAyB,EACzB,iCAAiC,EACjC,yBAAyB,EACzB,sBAAsB,EACtB,sBAAsB,EACtB,sBAAsB,GACvB,MAAM,0CAA0C,CAAC;AAElD,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sDAAsD,CAAC"}
|
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
export * from './badge.partials.js';
|
|
2
|
+
export { typographyBody1Styles, typographyBody1StrongStyles, typographyBody1StrongerStyles, typographyBody2Styles, typographyCaption1StrongStyles, typographyCaption1StrongerStyles, typographyCaption1Styles, typographyCaption2StrongStyles, typographyCaption2Styles, typographyDisplayStyles, typographyLargeTitleStyles, typographySubtitle1Styles, typographySubtitle2StrongerStyles, typographySubtitle2Styles, typographyTitle1Styles, typographyTitle2Styles, typographyTitle3Styles, } from './typography.partials.js';
|
|
2
3
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/styles/partials/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/styles/partials/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,OAAO,EACL,qBAAqB,EACrB,2BAA2B,EAC3B,6BAA6B,EAC7B,qBAAqB,EACrB,8BAA8B,EAC9B,gCAAgC,EAChC,wBAAwB,EACxB,8BAA8B,EAC9B,wBAAwB,EACxB,uBAAuB,EACvB,0BAA0B,EAC1B,yBAAyB,EACzB,iCAAiC,EACjC,yBAAyB,EACzB,sBAAsB,EACtB,sBAAsB,EACtB,sBAAsB,GACvB,MAAM,0BAA0B,CAAC"}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { css } from '@microsoft/fast-element';
|
|
2
|
+
import { fontFamilyBase, fontSizeBase100, fontSizeBase200, fontSizeBase300, fontSizeBase400, fontSizeBase500, fontSizeBase600, fontSizeHero1000, fontSizeHero700, fontSizeHero800, fontSizeHero900, fontWeightBold, fontWeightRegular, fontWeightSemibold, lineHeightBase100, lineHeightBase200, lineHeightBase300, lineHeightBase400, lineHeightBase500, lineHeightBase600, lineHeightHero1000, lineHeightHero700, lineHeightHero800, lineHeightHero900, } from '../../theme/design-tokens.js';
|
|
3
|
+
export const typographyBody1Styles = css.partial `
|
|
4
|
+
font-family: ${fontFamilyBase};
|
|
5
|
+
font-size: ${fontSizeBase300};
|
|
6
|
+
line-height: ${lineHeightBase300};
|
|
7
|
+
font-weight: ${fontWeightRegular};
|
|
8
|
+
`;
|
|
9
|
+
export const typographyBody1StrongStyles = css.partial `
|
|
10
|
+
font-family: ${fontFamilyBase};
|
|
11
|
+
font-size: ${fontSizeBase300};
|
|
12
|
+
line-height: ${lineHeightBase300};
|
|
13
|
+
font-weight: ${fontWeightSemibold};
|
|
14
|
+
`;
|
|
15
|
+
export const typographyBody1StrongerStyles = css.partial `
|
|
16
|
+
font-family: ${fontFamilyBase};
|
|
17
|
+
font-size: ${fontSizeBase300};
|
|
18
|
+
line-height: ${lineHeightBase300};
|
|
19
|
+
font-weight: ${fontWeightBold};
|
|
20
|
+
`;
|
|
21
|
+
export const typographyBody2Styles = css.partial `
|
|
22
|
+
font-family: ${fontFamilyBase};
|
|
23
|
+
font-size: ${fontSizeBase400};
|
|
24
|
+
line-height: ${lineHeightBase400};
|
|
25
|
+
font-weight: ${fontWeightRegular};
|
|
26
|
+
`;
|
|
27
|
+
export const typographyCaption1Styles = css.partial `
|
|
28
|
+
font-family: ${fontFamilyBase};
|
|
29
|
+
font-size: ${fontSizeBase200};
|
|
30
|
+
line-height: ${lineHeightBase200};
|
|
31
|
+
font-weight: ${fontWeightRegular};
|
|
32
|
+
`;
|
|
33
|
+
export const typographyCaption1StrongStyles = css.partial `
|
|
34
|
+
font-family: ${fontFamilyBase};
|
|
35
|
+
font-size: ${fontSizeBase200};
|
|
36
|
+
line-height: ${lineHeightBase200};
|
|
37
|
+
font-weight: ${fontWeightSemibold};
|
|
38
|
+
`;
|
|
39
|
+
export const typographyCaption1StrongerStyles = css.partial `
|
|
40
|
+
font-family: ${fontFamilyBase};
|
|
41
|
+
font-size: ${fontSizeBase200};
|
|
42
|
+
line-height: ${lineHeightBase200};
|
|
43
|
+
font-weight: ${fontWeightBold};
|
|
44
|
+
`;
|
|
45
|
+
export const typographyCaption2Styles = css.partial `
|
|
46
|
+
font-family: ${fontFamilyBase};
|
|
47
|
+
font-size: ${fontSizeBase100};
|
|
48
|
+
line-height: ${lineHeightBase100};
|
|
49
|
+
font-weight: ${fontWeightRegular};
|
|
50
|
+
`;
|
|
51
|
+
export const typographyCaption2StrongStyles = css.partial `
|
|
52
|
+
font-family: ${fontFamilyBase};
|
|
53
|
+
font-size: ${fontSizeBase100};
|
|
54
|
+
line-height: ${lineHeightBase100};
|
|
55
|
+
font-weight: ${fontWeightSemibold};
|
|
56
|
+
`;
|
|
57
|
+
export const typographySubtitle1Styles = css.partial `
|
|
58
|
+
font-family: ${fontFamilyBase};
|
|
59
|
+
font-size: ${fontSizeBase500};
|
|
60
|
+
line-height: ${lineHeightBase500};
|
|
61
|
+
font-weight: ${fontWeightSemibold};
|
|
62
|
+
`;
|
|
63
|
+
export const typographySubtitle2Styles = css.partial `
|
|
64
|
+
font-family: ${fontFamilyBase};
|
|
65
|
+
font-size: ${fontSizeBase400};
|
|
66
|
+
line-height: ${lineHeightBase400};
|
|
67
|
+
font-weight: ${fontWeightSemibold};
|
|
68
|
+
`;
|
|
69
|
+
export const typographySubtitle2StrongerStyles = css.partial `
|
|
70
|
+
font-family: ${fontFamilyBase};
|
|
71
|
+
font-size: ${fontSizeBase400};
|
|
72
|
+
line-height: ${lineHeightBase400};
|
|
73
|
+
font-weight: ${fontWeightBold};
|
|
74
|
+
`;
|
|
75
|
+
export const typographyTitle1Styles = css.partial `
|
|
76
|
+
font-family: ${fontFamilyBase};
|
|
77
|
+
font-size: ${fontSizeHero800};
|
|
78
|
+
line-height: ${lineHeightHero800};
|
|
79
|
+
font-weight: ${fontWeightSemibold};
|
|
80
|
+
`;
|
|
81
|
+
export const typographyTitle2Styles = css.partial `
|
|
82
|
+
font-family: ${fontFamilyBase};
|
|
83
|
+
font-size: ${fontSizeHero700};
|
|
84
|
+
line-height: ${lineHeightHero700};
|
|
85
|
+
font-weight: ${fontWeightSemibold};
|
|
86
|
+
`;
|
|
87
|
+
export const typographyTitle3Styles = css.partial `
|
|
88
|
+
font-family: ${fontFamilyBase};
|
|
89
|
+
font-size: ${fontSizeBase600};
|
|
90
|
+
line-height: ${lineHeightBase600};
|
|
91
|
+
font-weight: ${fontWeightSemibold};
|
|
92
|
+
`;
|
|
93
|
+
export const typographyLargeTitleStyles = css.partial `
|
|
94
|
+
font-family: ${fontFamilyBase};
|
|
95
|
+
font-size: ${fontSizeHero900};
|
|
96
|
+
line-height: ${lineHeightHero900};
|
|
97
|
+
font-weight: ${fontWeightSemibold};
|
|
98
|
+
`;
|
|
99
|
+
export const typographyDisplayStyles = css.partial `
|
|
100
|
+
font-family: ${fontFamilyBase};
|
|
101
|
+
font-size: ${fontSizeHero1000};
|
|
102
|
+
line-height: ${lineHeightHero1000};
|
|
103
|
+
font-weight: ${fontWeightSemibold};
|
|
104
|
+
`;
|
|
105
|
+
//# sourceMappingURL=typography.partials.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"typography.partials.js","sourceRoot":"","sources":["../../../../src/styles/partials/typography.partials.ts"],"names":[],"mappings":"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"}
|
|
@@ -27845,6 +27845,397 @@
|
|
|
27845
27845
|
"startIndex": 1,
|
|
27846
27846
|
"endIndex": 5
|
|
27847
27847
|
}
|
|
27848
|
+
},
|
|
27849
|
+
{
|
|
27850
|
+
"kind": "Variable",
|
|
27851
|
+
"canonicalReference": "@fluentui/web-components!typographyBody1StrongerStyles:var",
|
|
27852
|
+
"docComment": "",
|
|
27853
|
+
"excerptTokens": [
|
|
27854
|
+
{
|
|
27855
|
+
"kind": "Content",
|
|
27856
|
+
"text": "typographyBody1StrongerStyles: "
|
|
27857
|
+
},
|
|
27858
|
+
{
|
|
27859
|
+
"kind": "Reference",
|
|
27860
|
+
"text": "CSSDirective",
|
|
27861
|
+
"canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
|
|
27862
|
+
}
|
|
27863
|
+
],
|
|
27864
|
+
"isReadonly": true,
|
|
27865
|
+
"releaseTag": "Public",
|
|
27866
|
+
"name": "typographyBody1StrongerStyles",
|
|
27867
|
+
"variableTypeTokenRange": {
|
|
27868
|
+
"startIndex": 1,
|
|
27869
|
+
"endIndex": 2
|
|
27870
|
+
}
|
|
27871
|
+
},
|
|
27872
|
+
{
|
|
27873
|
+
"kind": "Variable",
|
|
27874
|
+
"canonicalReference": "@fluentui/web-components!typographyBody1StrongStyles:var",
|
|
27875
|
+
"docComment": "",
|
|
27876
|
+
"excerptTokens": [
|
|
27877
|
+
{
|
|
27878
|
+
"kind": "Content",
|
|
27879
|
+
"text": "typographyBody1StrongStyles: "
|
|
27880
|
+
},
|
|
27881
|
+
{
|
|
27882
|
+
"kind": "Reference",
|
|
27883
|
+
"text": "CSSDirective",
|
|
27884
|
+
"canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
|
|
27885
|
+
}
|
|
27886
|
+
],
|
|
27887
|
+
"isReadonly": true,
|
|
27888
|
+
"releaseTag": "Public",
|
|
27889
|
+
"name": "typographyBody1StrongStyles",
|
|
27890
|
+
"variableTypeTokenRange": {
|
|
27891
|
+
"startIndex": 1,
|
|
27892
|
+
"endIndex": 2
|
|
27893
|
+
}
|
|
27894
|
+
},
|
|
27895
|
+
{
|
|
27896
|
+
"kind": "Variable",
|
|
27897
|
+
"canonicalReference": "@fluentui/web-components!typographyBody1Styles:var",
|
|
27898
|
+
"docComment": "",
|
|
27899
|
+
"excerptTokens": [
|
|
27900
|
+
{
|
|
27901
|
+
"kind": "Content",
|
|
27902
|
+
"text": "typographyBody1Styles: "
|
|
27903
|
+
},
|
|
27904
|
+
{
|
|
27905
|
+
"kind": "Reference",
|
|
27906
|
+
"text": "CSSDirective",
|
|
27907
|
+
"canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
|
|
27908
|
+
}
|
|
27909
|
+
],
|
|
27910
|
+
"isReadonly": true,
|
|
27911
|
+
"releaseTag": "Public",
|
|
27912
|
+
"name": "typographyBody1Styles",
|
|
27913
|
+
"variableTypeTokenRange": {
|
|
27914
|
+
"startIndex": 1,
|
|
27915
|
+
"endIndex": 2
|
|
27916
|
+
}
|
|
27917
|
+
},
|
|
27918
|
+
{
|
|
27919
|
+
"kind": "Variable",
|
|
27920
|
+
"canonicalReference": "@fluentui/web-components!typographyBody2Styles:var",
|
|
27921
|
+
"docComment": "",
|
|
27922
|
+
"excerptTokens": [
|
|
27923
|
+
{
|
|
27924
|
+
"kind": "Content",
|
|
27925
|
+
"text": "typographyBody2Styles: "
|
|
27926
|
+
},
|
|
27927
|
+
{
|
|
27928
|
+
"kind": "Reference",
|
|
27929
|
+
"text": "CSSDirective",
|
|
27930
|
+
"canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
|
|
27931
|
+
}
|
|
27932
|
+
],
|
|
27933
|
+
"isReadonly": true,
|
|
27934
|
+
"releaseTag": "Public",
|
|
27935
|
+
"name": "typographyBody2Styles",
|
|
27936
|
+
"variableTypeTokenRange": {
|
|
27937
|
+
"startIndex": 1,
|
|
27938
|
+
"endIndex": 2
|
|
27939
|
+
}
|
|
27940
|
+
},
|
|
27941
|
+
{
|
|
27942
|
+
"kind": "Variable",
|
|
27943
|
+
"canonicalReference": "@fluentui/web-components!typographyCaption1StrongerStyles:var",
|
|
27944
|
+
"docComment": "",
|
|
27945
|
+
"excerptTokens": [
|
|
27946
|
+
{
|
|
27947
|
+
"kind": "Content",
|
|
27948
|
+
"text": "typographyCaption1StrongerStyles: "
|
|
27949
|
+
},
|
|
27950
|
+
{
|
|
27951
|
+
"kind": "Reference",
|
|
27952
|
+
"text": "CSSDirective",
|
|
27953
|
+
"canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
|
|
27954
|
+
}
|
|
27955
|
+
],
|
|
27956
|
+
"isReadonly": true,
|
|
27957
|
+
"releaseTag": "Public",
|
|
27958
|
+
"name": "typographyCaption1StrongerStyles",
|
|
27959
|
+
"variableTypeTokenRange": {
|
|
27960
|
+
"startIndex": 1,
|
|
27961
|
+
"endIndex": 2
|
|
27962
|
+
}
|
|
27963
|
+
},
|
|
27964
|
+
{
|
|
27965
|
+
"kind": "Variable",
|
|
27966
|
+
"canonicalReference": "@fluentui/web-components!typographyCaption1StrongStyles:var",
|
|
27967
|
+
"docComment": "",
|
|
27968
|
+
"excerptTokens": [
|
|
27969
|
+
{
|
|
27970
|
+
"kind": "Content",
|
|
27971
|
+
"text": "typographyCaption1StrongStyles: "
|
|
27972
|
+
},
|
|
27973
|
+
{
|
|
27974
|
+
"kind": "Reference",
|
|
27975
|
+
"text": "CSSDirective",
|
|
27976
|
+
"canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
|
|
27977
|
+
}
|
|
27978
|
+
],
|
|
27979
|
+
"isReadonly": true,
|
|
27980
|
+
"releaseTag": "Public",
|
|
27981
|
+
"name": "typographyCaption1StrongStyles",
|
|
27982
|
+
"variableTypeTokenRange": {
|
|
27983
|
+
"startIndex": 1,
|
|
27984
|
+
"endIndex": 2
|
|
27985
|
+
}
|
|
27986
|
+
},
|
|
27987
|
+
{
|
|
27988
|
+
"kind": "Variable",
|
|
27989
|
+
"canonicalReference": "@fluentui/web-components!typographyCaption1Styles:var",
|
|
27990
|
+
"docComment": "",
|
|
27991
|
+
"excerptTokens": [
|
|
27992
|
+
{
|
|
27993
|
+
"kind": "Content",
|
|
27994
|
+
"text": "typographyCaption1Styles: "
|
|
27995
|
+
},
|
|
27996
|
+
{
|
|
27997
|
+
"kind": "Reference",
|
|
27998
|
+
"text": "CSSDirective",
|
|
27999
|
+
"canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
|
|
28000
|
+
}
|
|
28001
|
+
],
|
|
28002
|
+
"isReadonly": true,
|
|
28003
|
+
"releaseTag": "Public",
|
|
28004
|
+
"name": "typographyCaption1Styles",
|
|
28005
|
+
"variableTypeTokenRange": {
|
|
28006
|
+
"startIndex": 1,
|
|
28007
|
+
"endIndex": 2
|
|
28008
|
+
}
|
|
28009
|
+
},
|
|
28010
|
+
{
|
|
28011
|
+
"kind": "Variable",
|
|
28012
|
+
"canonicalReference": "@fluentui/web-components!typographyCaption2StrongStyles:var",
|
|
28013
|
+
"docComment": "",
|
|
28014
|
+
"excerptTokens": [
|
|
28015
|
+
{
|
|
28016
|
+
"kind": "Content",
|
|
28017
|
+
"text": "typographyCaption2StrongStyles: "
|
|
28018
|
+
},
|
|
28019
|
+
{
|
|
28020
|
+
"kind": "Reference",
|
|
28021
|
+
"text": "CSSDirective",
|
|
28022
|
+
"canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
|
|
28023
|
+
}
|
|
28024
|
+
],
|
|
28025
|
+
"isReadonly": true,
|
|
28026
|
+
"releaseTag": "Public",
|
|
28027
|
+
"name": "typographyCaption2StrongStyles",
|
|
28028
|
+
"variableTypeTokenRange": {
|
|
28029
|
+
"startIndex": 1,
|
|
28030
|
+
"endIndex": 2
|
|
28031
|
+
}
|
|
28032
|
+
},
|
|
28033
|
+
{
|
|
28034
|
+
"kind": "Variable",
|
|
28035
|
+
"canonicalReference": "@fluentui/web-components!typographyCaption2Styles:var",
|
|
28036
|
+
"docComment": "",
|
|
28037
|
+
"excerptTokens": [
|
|
28038
|
+
{
|
|
28039
|
+
"kind": "Content",
|
|
28040
|
+
"text": "typographyCaption2Styles: "
|
|
28041
|
+
},
|
|
28042
|
+
{
|
|
28043
|
+
"kind": "Reference",
|
|
28044
|
+
"text": "CSSDirective",
|
|
28045
|
+
"canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
|
|
28046
|
+
}
|
|
28047
|
+
],
|
|
28048
|
+
"isReadonly": true,
|
|
28049
|
+
"releaseTag": "Public",
|
|
28050
|
+
"name": "typographyCaption2Styles",
|
|
28051
|
+
"variableTypeTokenRange": {
|
|
28052
|
+
"startIndex": 1,
|
|
28053
|
+
"endIndex": 2
|
|
28054
|
+
}
|
|
28055
|
+
},
|
|
28056
|
+
{
|
|
28057
|
+
"kind": "Variable",
|
|
28058
|
+
"canonicalReference": "@fluentui/web-components!typographyDisplayStyles:var",
|
|
28059
|
+
"docComment": "",
|
|
28060
|
+
"excerptTokens": [
|
|
28061
|
+
{
|
|
28062
|
+
"kind": "Content",
|
|
28063
|
+
"text": "typographyDisplayStyles: "
|
|
28064
|
+
},
|
|
28065
|
+
{
|
|
28066
|
+
"kind": "Reference",
|
|
28067
|
+
"text": "CSSDirective",
|
|
28068
|
+
"canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
|
|
28069
|
+
}
|
|
28070
|
+
],
|
|
28071
|
+
"isReadonly": true,
|
|
28072
|
+
"releaseTag": "Public",
|
|
28073
|
+
"name": "typographyDisplayStyles",
|
|
28074
|
+
"variableTypeTokenRange": {
|
|
28075
|
+
"startIndex": 1,
|
|
28076
|
+
"endIndex": 2
|
|
28077
|
+
}
|
|
28078
|
+
},
|
|
28079
|
+
{
|
|
28080
|
+
"kind": "Variable",
|
|
28081
|
+
"canonicalReference": "@fluentui/web-components!typographyLargeTitleStyles:var",
|
|
28082
|
+
"docComment": "",
|
|
28083
|
+
"excerptTokens": [
|
|
28084
|
+
{
|
|
28085
|
+
"kind": "Content",
|
|
28086
|
+
"text": "typographyLargeTitleStyles: "
|
|
28087
|
+
},
|
|
28088
|
+
{
|
|
28089
|
+
"kind": "Reference",
|
|
28090
|
+
"text": "CSSDirective",
|
|
28091
|
+
"canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
|
|
28092
|
+
}
|
|
28093
|
+
],
|
|
28094
|
+
"isReadonly": true,
|
|
28095
|
+
"releaseTag": "Public",
|
|
28096
|
+
"name": "typographyLargeTitleStyles",
|
|
28097
|
+
"variableTypeTokenRange": {
|
|
28098
|
+
"startIndex": 1,
|
|
28099
|
+
"endIndex": 2
|
|
28100
|
+
}
|
|
28101
|
+
},
|
|
28102
|
+
{
|
|
28103
|
+
"kind": "Variable",
|
|
28104
|
+
"canonicalReference": "@fluentui/web-components!typographySubtitle1Styles:var",
|
|
28105
|
+
"docComment": "",
|
|
28106
|
+
"excerptTokens": [
|
|
28107
|
+
{
|
|
28108
|
+
"kind": "Content",
|
|
28109
|
+
"text": "typographySubtitle1Styles: "
|
|
28110
|
+
},
|
|
28111
|
+
{
|
|
28112
|
+
"kind": "Reference",
|
|
28113
|
+
"text": "CSSDirective",
|
|
28114
|
+
"canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
|
|
28115
|
+
}
|
|
28116
|
+
],
|
|
28117
|
+
"isReadonly": true,
|
|
28118
|
+
"releaseTag": "Public",
|
|
28119
|
+
"name": "typographySubtitle1Styles",
|
|
28120
|
+
"variableTypeTokenRange": {
|
|
28121
|
+
"startIndex": 1,
|
|
28122
|
+
"endIndex": 2
|
|
28123
|
+
}
|
|
28124
|
+
},
|
|
28125
|
+
{
|
|
28126
|
+
"kind": "Variable",
|
|
28127
|
+
"canonicalReference": "@fluentui/web-components!typographySubtitle2StrongerStyles:var",
|
|
28128
|
+
"docComment": "",
|
|
28129
|
+
"excerptTokens": [
|
|
28130
|
+
{
|
|
28131
|
+
"kind": "Content",
|
|
28132
|
+
"text": "typographySubtitle2StrongerStyles: "
|
|
28133
|
+
},
|
|
28134
|
+
{
|
|
28135
|
+
"kind": "Reference",
|
|
28136
|
+
"text": "CSSDirective",
|
|
28137
|
+
"canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
|
|
28138
|
+
}
|
|
28139
|
+
],
|
|
28140
|
+
"isReadonly": true,
|
|
28141
|
+
"releaseTag": "Public",
|
|
28142
|
+
"name": "typographySubtitle2StrongerStyles",
|
|
28143
|
+
"variableTypeTokenRange": {
|
|
28144
|
+
"startIndex": 1,
|
|
28145
|
+
"endIndex": 2
|
|
28146
|
+
}
|
|
28147
|
+
},
|
|
28148
|
+
{
|
|
28149
|
+
"kind": "Variable",
|
|
28150
|
+
"canonicalReference": "@fluentui/web-components!typographySubtitle2Styles:var",
|
|
28151
|
+
"docComment": "",
|
|
28152
|
+
"excerptTokens": [
|
|
28153
|
+
{
|
|
28154
|
+
"kind": "Content",
|
|
28155
|
+
"text": "typographySubtitle2Styles: "
|
|
28156
|
+
},
|
|
28157
|
+
{
|
|
28158
|
+
"kind": "Reference",
|
|
28159
|
+
"text": "CSSDirective",
|
|
28160
|
+
"canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
|
|
28161
|
+
}
|
|
28162
|
+
],
|
|
28163
|
+
"isReadonly": true,
|
|
28164
|
+
"releaseTag": "Public",
|
|
28165
|
+
"name": "typographySubtitle2Styles",
|
|
28166
|
+
"variableTypeTokenRange": {
|
|
28167
|
+
"startIndex": 1,
|
|
28168
|
+
"endIndex": 2
|
|
28169
|
+
}
|
|
28170
|
+
},
|
|
28171
|
+
{
|
|
28172
|
+
"kind": "Variable",
|
|
28173
|
+
"canonicalReference": "@fluentui/web-components!typographyTitle1Styles:var",
|
|
28174
|
+
"docComment": "",
|
|
28175
|
+
"excerptTokens": [
|
|
28176
|
+
{
|
|
28177
|
+
"kind": "Content",
|
|
28178
|
+
"text": "typographyTitle1Styles: "
|
|
28179
|
+
},
|
|
28180
|
+
{
|
|
28181
|
+
"kind": "Reference",
|
|
28182
|
+
"text": "CSSDirective",
|
|
28183
|
+
"canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
|
|
28184
|
+
}
|
|
28185
|
+
],
|
|
28186
|
+
"isReadonly": true,
|
|
28187
|
+
"releaseTag": "Public",
|
|
28188
|
+
"name": "typographyTitle1Styles",
|
|
28189
|
+
"variableTypeTokenRange": {
|
|
28190
|
+
"startIndex": 1,
|
|
28191
|
+
"endIndex": 2
|
|
28192
|
+
}
|
|
28193
|
+
},
|
|
28194
|
+
{
|
|
28195
|
+
"kind": "Variable",
|
|
28196
|
+
"canonicalReference": "@fluentui/web-components!typographyTitle2Styles:var",
|
|
28197
|
+
"docComment": "",
|
|
28198
|
+
"excerptTokens": [
|
|
28199
|
+
{
|
|
28200
|
+
"kind": "Content",
|
|
28201
|
+
"text": "typographyTitle2Styles: "
|
|
28202
|
+
},
|
|
28203
|
+
{
|
|
28204
|
+
"kind": "Reference",
|
|
28205
|
+
"text": "CSSDirective",
|
|
28206
|
+
"canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
|
|
28207
|
+
}
|
|
28208
|
+
],
|
|
28209
|
+
"isReadonly": true,
|
|
28210
|
+
"releaseTag": "Public",
|
|
28211
|
+
"name": "typographyTitle2Styles",
|
|
28212
|
+
"variableTypeTokenRange": {
|
|
28213
|
+
"startIndex": 1,
|
|
28214
|
+
"endIndex": 2
|
|
28215
|
+
}
|
|
28216
|
+
},
|
|
28217
|
+
{
|
|
28218
|
+
"kind": "Variable",
|
|
28219
|
+
"canonicalReference": "@fluentui/web-components!typographyTitle3Styles:var",
|
|
28220
|
+
"docComment": "",
|
|
28221
|
+
"excerptTokens": [
|
|
28222
|
+
{
|
|
28223
|
+
"kind": "Content",
|
|
28224
|
+
"text": "typographyTitle3Styles: "
|
|
28225
|
+
},
|
|
28226
|
+
{
|
|
28227
|
+
"kind": "Reference",
|
|
28228
|
+
"text": "CSSDirective",
|
|
28229
|
+
"canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
|
|
28230
|
+
}
|
|
28231
|
+
],
|
|
28232
|
+
"isReadonly": true,
|
|
28233
|
+
"releaseTag": "Public",
|
|
28234
|
+
"name": "typographyTitle3Styles",
|
|
28235
|
+
"variableTypeTokenRange": {
|
|
28236
|
+
"startIndex": 1,
|
|
28237
|
+
"endIndex": 2
|
|
28238
|
+
}
|
|
27848
28239
|
}
|
|
27849
28240
|
]
|
|
27850
28241
|
}
|
|
@@ -361,4 +361,4 @@
|
|
|
361
361
|
|
|
362
362
|
|
|
363
363
|
|
|
364
|
-
window['STORIES'] = [{"titlePrefix":"","directory":"./src","files":"**/*.stories.@(ts|mdx)","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.(ts|mdx))$"}];</script><script src="runtime~main.5d918fe7.iframe.bundle.js"></script><script src="289.703b1698.iframe.bundle.js"></script><script src="main.
|
|
364
|
+
window['STORIES'] = [{"titlePrefix":"","directory":"./src","files":"**/*.stories.@(ts|mdx)","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.(ts|mdx))$"}];</script><script src="runtime~main.5d918fe7.iframe.bundle.js"></script><script src="289.703b1698.iframe.bundle.js"></script><script src="main.79d2477b.iframe.bundle.js"></script></body></html>
|