@fluentui/web-components 3.0.0-alpha.7 → 3.0.0-alpha.9

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.
@@ -37,9 +37,9 @@ export class AccordionItem extends FASTAccordionItem {
37
37
  // @public
38
38
  block: boolean;
39
39
  // @public
40
- expandIconPosition: AccordionItemExpandIconPosition;
40
+ expandIconPosition?: AccordionItemExpandIconPosition;
41
41
  // @public
42
- size: AccordionItemSize;
42
+ size?: AccordionItemSize;
43
43
  }
44
44
 
45
45
  // Warning: (ae-incompatible-release-tags) The symbol "definition" is marked as @public, but its signature references "AccordionItem" which is marked as @internal
@@ -239,8 +239,8 @@ export const AvatarTemplate: ElementViewTemplate<Avatar>;
239
239
  export class Badge extends FASTElement {
240
240
  appearance: BadgeAppearance;
241
241
  color: BadgeColor;
242
- shape: BadgeShape;
243
- size: BadgeSize;
242
+ shape?: BadgeShape;
243
+ size?: BadgeSize;
244
244
  }
245
245
 
246
246
  // @internal
@@ -648,9 +648,15 @@ export const colorNeutralShadowKeyLighter: CSSDesignToken<string>;
648
648
  // @public (undocumented)
649
649
  export const colorNeutralStencil1: CSSDesignToken<string>;
650
650
 
651
+ // @public (undocumented)
652
+ export const colorNeutralStencil1Alpha: CSSDesignToken<string>;
653
+
651
654
  // @public (undocumented)
652
655
  export const colorNeutralStencil2: CSSDesignToken<string>;
653
656
 
657
+ // @public (undocumented)
658
+ export const colorNeutralStencil2Alpha: CSSDesignToken<string>;
659
+
654
660
  // @public (undocumented)
655
661
  export const colorNeutralStroke1: CSSDesignToken<string>;
656
662
 
@@ -891,6 +897,9 @@ export const colorPaletteGreenForeground2: CSSDesignToken<string>;
891
897
  // @public (undocumented)
892
898
  export const colorPaletteGreenForeground3: CSSDesignToken<string>;
893
899
 
900
+ // @public (undocumented)
901
+ export const colorPaletteGreenForegroundInverted: CSSDesignToken<string>;
902
+
894
903
  // @public (undocumented)
895
904
  export const colorPaletteLavenderBackground2: CSSDesignToken<string>;
896
905
 
@@ -1080,6 +1089,9 @@ export const colorPaletteRedForeground2: CSSDesignToken<string>;
1080
1089
  // @public (undocumented)
1081
1090
  export const colorPaletteRedForeground3: CSSDesignToken<string>;
1082
1091
 
1092
+ // @public (undocumented)
1093
+ export const colorPaletteRedForegroundInverted: CSSDesignToken<string>;
1094
+
1083
1095
  // @public (undocumented)
1084
1096
  export const colorPaletteRoyalBlueBackground2: CSSDesignToken<string>;
1085
1097
 
@@ -1143,6 +1155,9 @@ export const colorPaletteYellowForeground2: CSSDesignToken<string>;
1143
1155
  // @public (undocumented)
1144
1156
  export const colorPaletteYellowForeground3: CSSDesignToken<string>;
1145
1157
 
1158
+ // @public (undocumented)
1159
+ export const colorPaletteYellowForegroundInverted: CSSDesignToken<string>;
1160
+
1146
1161
  // @public (undocumented)
1147
1162
  export const colorScrollbarOverlay: CSSDesignToken<string>;
1148
1163
 
@@ -1210,8 +1225,8 @@ export const colorTransparentStrokeInteractive: CSSDesignToken<string>;
1210
1225
  //
1211
1226
  // @public
1212
1227
  export class CounterBadge extends FASTElement {
1213
- appearance: CounterBadgeAppearance;
1214
- color: CounterBadgeColor;
1228
+ appearance?: CounterBadgeAppearance;
1229
+ color?: CounterBadgeColor;
1215
1230
  count: number;
1216
1231
  // (undocumented)
1217
1232
  protected countChanged(): void;
@@ -1221,9 +1236,9 @@ export class CounterBadge extends FASTElement {
1221
1236
  protected overflowCountChanged(): void;
1222
1237
  // @internal
1223
1238
  setCount(): string | void;
1224
- shape: CounterBadgeShape;
1239
+ shape?: CounterBadgeShape;
1225
1240
  showZero: boolean;
1226
- size: CounterBadgeSize;
1241
+ size?: CounterBadgeSize;
1227
1242
  }
1228
1243
 
1229
1244
  // @internal
@@ -1506,8 +1521,8 @@ export const lineHeightHero900: CSSDesignToken<string>;
1506
1521
 
1507
1522
  // @public
1508
1523
  class ProgressBar_2 extends FASTProgress {
1509
- shape: ProgressBarShape;
1510
- thickness: ProgressBarThickness;
1524
+ shape?: ProgressBarShape;
1525
+ thickness?: ProgressBarThickness;
1511
1526
  validationState: ProgressBarValidationState | null;
1512
1527
  }
1513
1528
  export { ProgressBar_2 as ProgressBar }
@@ -1656,8 +1671,8 @@ export const spacingVerticalXXXL: CSSDesignToken<string>;
1656
1671
 
1657
1672
  // @public
1658
1673
  export class Spinner extends FASTProgressRing {
1659
- appearance: SpinnerAppearance;
1660
- size: SpinnerSize;
1674
+ appearance?: SpinnerAppearance;
1675
+ size?: SpinnerSize;
1661
1676
  }
1662
1677
 
1663
1678
  // @public
@@ -1727,16 +1742,16 @@ export const switchTemplate: ElementViewTemplate<Switch>;
1727
1742
 
1728
1743
  // @public
1729
1744
  class Text_2 extends FASTElement {
1730
- align: TextAlign;
1745
+ align?: TextAlign;
1731
1746
  block: boolean;
1732
- font: TextFont;
1747
+ font?: TextFont;
1733
1748
  italic: boolean;
1734
1749
  nowrap: boolean;
1735
- size: TextSize;
1750
+ size?: TextSize;
1736
1751
  strikethrough: boolean;
1737
1752
  truncate: boolean;
1738
1753
  underline: boolean;
1739
- weight: TextWeight;
1754
+ weight?: TextWeight;
1740
1755
  }
1741
1756
  export { Text_2 as Text }
1742
1757
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@fluentui/web-components",
3
3
  "description": "A library of Fluent Web Components",
4
4
  "sideEffects": false,
5
- "version": "3.0.0-alpha.7",
5
+ "version": "3.0.0-alpha.9",
6
6
  "author": {
7
7
  "name": "Microsoft",
8
8
  "url": "https://discord.gg/FcSNfg4"