@fluentui/web-components 3.0.0-alpha.13 → 3.0.0-alpha.15
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 +45 -1
- package/CHANGELOG.md +21 -2
- package/dist/dts/index.d.ts +5 -0
- package/dist/dts/label/define.d.ts +1 -0
- package/dist/dts/label/index.d.ts +4 -0
- package/dist/dts/label/label.d.ts +42 -0
- package/dist/dts/label/label.definition.d.ts +10 -0
- package/dist/dts/label/label.options.d.ts +26 -0
- package/dist/dts/label/label.styles.d.ts +4 -0
- package/dist/dts/label/label.template.d.ts +8 -0
- package/dist/dts/menu-button/define.d.ts +1 -0
- package/dist/dts/menu-button/index.d.ts +5 -0
- package/dist/dts/menu-button/menu-button.d.ts +7 -0
- package/dist/dts/menu-button/menu-button.definition.d.ts +10 -0
- package/dist/dts/menu-button/menu-button.options.d.ts +46 -0
- package/dist/dts/menu-button/menu-button.template.d.ts +7 -0
- package/dist/dts/tab/define.d.ts +1 -0
- package/dist/dts/tab/index.d.ts +4 -0
- package/dist/dts/tab/tab.d.ts +8 -0
- package/dist/dts/tab/tab.definition.d.ts +2 -0
- package/dist/dts/tab/tab.styles.d.ts +1 -0
- package/dist/dts/tab/tab.template.d.ts +4 -0
- package/dist/dts/tab-panel/define.d.ts +1 -0
- package/dist/dts/tab-panel/index.d.ts +4 -0
- package/dist/dts/tab-panel/tab-panel.d.ts +3 -0
- package/dist/dts/tab-panel/tab-panel.definition.d.ts +2 -0
- package/dist/dts/tab-panel/tab-panel.styles.d.ts +1 -0
- package/dist/dts/tab-panel/tab-panel.template.d.ts +1 -0
- package/dist/dts/tabs/define.d.ts +1 -0
- package/dist/dts/tabs/index.d.ts +5 -0
- package/dist/dts/tabs/tabs.d.ts +88 -0
- package/dist/dts/tabs/tabs.definition.d.ts +2 -0
- package/dist/dts/tabs/tabs.options.d.ts +14 -0
- package/dist/dts/tabs/tabs.styles.d.ts +1 -0
- package/dist/dts/tabs/tabs.template.d.ts +1 -0
- package/dist/esm/button/button.styles.js +2 -0
- package/dist/esm/button/button.styles.js.map +1 -1
- package/dist/esm/index.js +5 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/label/define.js +4 -0
- package/dist/esm/label/define.js.map +1 -0
- package/dist/esm/label/index.js +5 -0
- package/dist/esm/label/index.js.map +1 -0
- package/dist/esm/label/label.definition.js +18 -0
- package/dist/esm/label/label.definition.js.map +1 -0
- package/dist/esm/label/label.js +40 -0
- package/dist/esm/label/label.js.map +1 -0
- package/dist/esm/label/label.options.js +16 -0
- package/dist/esm/label/label.options.js.map +1 -0
- package/dist/esm/label/label.styles.js +38 -0
- package/dist/esm/label/label.styles.js.map +1 -0
- package/dist/esm/label/label.template.js +13 -0
- package/dist/esm/label/label.template.js.map +1 -0
- package/dist/esm/menu-button/define.js +4 -0
- package/dist/esm/menu-button/define.js.map +1 -0
- package/dist/esm/menu-button/index.js +6 -0
- package/dist/esm/menu-button/index.js.map +1 -0
- package/dist/esm/menu-button/menu-button.definition.js +21 -0
- package/dist/esm/menu-button/menu-button.definition.js.map +1 -0
- package/dist/esm/menu-button/menu-button.js +8 -0
- package/dist/esm/menu-button/menu-button.js.map +1 -0
- package/dist/esm/menu-button/menu-button.options.js +17 -0
- package/dist/esm/menu-button/menu-button.options.js.map +1 -0
- package/dist/esm/menu-button/menu-button.template.js +10 -0
- package/dist/esm/menu-button/menu-button.template.js.map +1 -0
- package/dist/esm/tab/define.js +4 -0
- package/dist/esm/tab/define.js.map +1 -0
- package/dist/esm/tab/index.js +5 -0
- package/dist/esm/tab/index.js.map +1 -0
- package/dist/esm/tab/tab.definition.js +10 -0
- package/dist/esm/tab/tab.definition.js.map +1 -0
- package/dist/esm/tab/tab.js +20 -0
- package/dist/esm/tab/tab.js.map +1 -0
- package/dist/esm/tab/tab.styles.js +94 -0
- package/dist/esm/tab/tab.styles.js.map +1 -0
- package/dist/esm/tab/tab.template.js +13 -0
- package/dist/esm/tab/tab.template.js.map +1 -0
- package/dist/esm/tab-panel/define.js +4 -0
- package/dist/esm/tab-panel/define.js.map +1 -0
- package/dist/esm/tab-panel/index.js +5 -0
- package/dist/esm/tab-panel/index.js.map +1 -0
- package/dist/esm/tab-panel/tab-panel.definition.js +10 -0
- package/dist/esm/tab-panel/tab-panel.definition.js.map +1 -0
- package/dist/esm/tab-panel/tab-panel.js +4 -0
- package/dist/esm/tab-panel/tab-panel.js.map +1 -0
- package/dist/esm/tab-panel/tab-panel.styles.js +12 -0
- package/dist/esm/tab-panel/tab-panel.styles.js.map +1 -0
- package/dist/esm/tab-panel/tab-panel.template.js +3 -0
- package/dist/esm/tab-panel/tab-panel.template.js.map +1 -0
- package/dist/esm/tabs/define.js +4 -0
- package/dist/esm/tabs/define.js.map +1 -0
- package/dist/esm/tabs/index.js +6 -0
- package/dist/esm/tabs/index.js.map +1 -0
- package/dist/esm/tabs/tabs.definition.js +10 -0
- package/dist/esm/tabs/tabs.definition.js.map +1 -0
- package/dist/esm/tabs/tabs.js +158 -0
- package/dist/esm/tabs/tabs.js.map +1 -0
- package/dist/esm/tabs/tabs.options.js +12 -0
- package/dist/esm/tabs/tabs.options.js.map +1 -0
- package/dist/esm/tabs/tabs.styles.js +230 -0
- package/dist/esm/tabs/tabs.styles.js.map +1 -0
- package/dist/esm/tabs/tabs.template.js +3 -0
- package/dist/esm/tabs/tabs.template.js.map +1 -0
- package/dist/fluent-web-components.api.json +1318 -39
- package/dist/web-components.d.ts +302 -2
- package/dist/web-components.js +701 -60
- package/dist/web-components.min.js +151 -136
- package/docs/api-report.md +140 -3
- package/package.json +12 -4
package/dist/web-components.d.ts
CHANGED
|
@@ -14,10 +14,14 @@ import { FASTProgress } from '@microsoft/fast-foundation';
|
|
|
14
14
|
import { FASTProgressRing } from '@microsoft/fast-foundation';
|
|
15
15
|
import { FASTSlider } from '@microsoft/fast-foundation';
|
|
16
16
|
import { FASTSwitch } from '@microsoft/fast-foundation';
|
|
17
|
+
import { FASTTab } from '@microsoft/fast-foundation';
|
|
18
|
+
import { FASTTabPanel } from '@microsoft/fast-foundation';
|
|
19
|
+
import { FASTTabs } from '@microsoft/fast-foundation';
|
|
17
20
|
import { SliderOrientation } from '@microsoft/fast-foundation';
|
|
18
21
|
import { StartEnd } from '@microsoft/fast-foundation';
|
|
19
22
|
import { StartEndOptions } from '@microsoft/fast-foundation';
|
|
20
23
|
import { StaticallyComposableHTML } from '@microsoft/fast-foundation';
|
|
24
|
+
import { TabsOrientation } from '@microsoft/fast-foundation';
|
|
21
25
|
import type { Theme } from '@fluentui/tokens';
|
|
22
26
|
import { ValuesOf } from '@microsoft/fast-foundation';
|
|
23
27
|
|
|
@@ -630,6 +634,7 @@ export declare type ButtonAppearance = ValuesOf<typeof ButtonAppearance>;
|
|
|
630
634
|
export declare const ButtonDefinition: FASTElementDefinition<typeof Button>;
|
|
631
635
|
|
|
632
636
|
export { ButtonOptions }
|
|
637
|
+
export { ButtonOptions as MenuButtonOptions }
|
|
633
638
|
|
|
634
639
|
/**
|
|
635
640
|
* A Button can be square, circular or rounded.
|
|
@@ -663,8 +668,6 @@ export declare const ButtonSize: {
|
|
|
663
668
|
*/
|
|
664
669
|
export declare type ButtonSize = ValuesOf<typeof ButtonSize>;
|
|
665
670
|
|
|
666
|
-
export declare const ButtonStyles: ElementStyles;
|
|
667
|
-
|
|
668
671
|
/**
|
|
669
672
|
* The template for the Button component.
|
|
670
673
|
* @public
|
|
@@ -1713,6 +1716,93 @@ export declare const ImageStyles: ElementStyles;
|
|
|
1713
1716
|
*/
|
|
1714
1717
|
export declare const ImageTemplate: ElementViewTemplate<Image_2>;
|
|
1715
1718
|
|
|
1719
|
+
/**
|
|
1720
|
+
* The base class used for constructing a fluent-label custom element
|
|
1721
|
+
* @public
|
|
1722
|
+
*/
|
|
1723
|
+
export declare class Label extends FASTElement {
|
|
1724
|
+
/**
|
|
1725
|
+
* Specifies font size of a label
|
|
1726
|
+
*
|
|
1727
|
+
* @public
|
|
1728
|
+
* @default 'medium'
|
|
1729
|
+
* @remarks
|
|
1730
|
+
* HTML Attribute: size
|
|
1731
|
+
*/
|
|
1732
|
+
size?: LabelSize;
|
|
1733
|
+
/**
|
|
1734
|
+
* Specifies font weight of a label
|
|
1735
|
+
*
|
|
1736
|
+
* @public
|
|
1737
|
+
* @default 'regular'
|
|
1738
|
+
* @remarks
|
|
1739
|
+
* HTML Attribute: weight
|
|
1740
|
+
*/
|
|
1741
|
+
weight?: LabelWeight;
|
|
1742
|
+
/**
|
|
1743
|
+
* Specifies styles for label when associated input is disabled
|
|
1744
|
+
*
|
|
1745
|
+
* @public
|
|
1746
|
+
* @remarks
|
|
1747
|
+
* HTML Attribute: disabled
|
|
1748
|
+
*/
|
|
1749
|
+
disabled: boolean;
|
|
1750
|
+
/**
|
|
1751
|
+
* Specifies styles for label when associated input is a required field
|
|
1752
|
+
*
|
|
1753
|
+
* @public
|
|
1754
|
+
* @remarks
|
|
1755
|
+
* HTML Attribute: required
|
|
1756
|
+
*/
|
|
1757
|
+
required: boolean;
|
|
1758
|
+
}
|
|
1759
|
+
|
|
1760
|
+
/**
|
|
1761
|
+
* The Fluent Label Element.
|
|
1762
|
+
*
|
|
1763
|
+
*
|
|
1764
|
+
* @public
|
|
1765
|
+
* @remarks
|
|
1766
|
+
* HTML Element: \<fluent-label\>
|
|
1767
|
+
*/
|
|
1768
|
+
export declare const LabelDefinition: FASTElementDefinition<typeof Label>;
|
|
1769
|
+
|
|
1770
|
+
/**
|
|
1771
|
+
* A Labels font size can be small, medium, or large
|
|
1772
|
+
*/
|
|
1773
|
+
declare const LabelSize: {
|
|
1774
|
+
readonly small: "small";
|
|
1775
|
+
readonly medium: "medium";
|
|
1776
|
+
readonly large: "large";
|
|
1777
|
+
};
|
|
1778
|
+
|
|
1779
|
+
/**
|
|
1780
|
+
* Applies font size to label
|
|
1781
|
+
* @public
|
|
1782
|
+
*/
|
|
1783
|
+
declare type LabelSize = ValuesOf<typeof LabelSize>;
|
|
1784
|
+
|
|
1785
|
+
/** Label styles
|
|
1786
|
+
* @public
|
|
1787
|
+
*/
|
|
1788
|
+
export declare const LabelStyles: ElementStyles;
|
|
1789
|
+
|
|
1790
|
+
export declare const LabelTemplate: ElementViewTemplate<Label>;
|
|
1791
|
+
|
|
1792
|
+
/**
|
|
1793
|
+
* A label can have a font weight of regular or strong
|
|
1794
|
+
*/
|
|
1795
|
+
declare const LabelWeight: {
|
|
1796
|
+
readonly regular: "regular";
|
|
1797
|
+
readonly semibold: "semibold";
|
|
1798
|
+
};
|
|
1799
|
+
|
|
1800
|
+
/**
|
|
1801
|
+
* Applies font weight to label
|
|
1802
|
+
* @public
|
|
1803
|
+
*/
|
|
1804
|
+
declare type LabelWeight = ValuesOf<typeof LabelWeight>;
|
|
1805
|
+
|
|
1716
1806
|
export declare const lineHeightBase100: CSSDesignToken<string>;
|
|
1717
1807
|
|
|
1718
1808
|
export declare const lineHeightBase200: CSSDesignToken<string>;
|
|
@@ -1733,6 +1823,79 @@ export declare const lineHeightHero800: CSSDesignToken<string>;
|
|
|
1733
1823
|
|
|
1734
1824
|
export declare const lineHeightHero900: CSSDesignToken<string>;
|
|
1735
1825
|
|
|
1826
|
+
/**
|
|
1827
|
+
* The base class used for constructing a fluent-menu-button custom element
|
|
1828
|
+
* @public
|
|
1829
|
+
*/
|
|
1830
|
+
export declare class MenuButton extends Button {
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1833
|
+
/**
|
|
1834
|
+
* Menu Button Appearance constants
|
|
1835
|
+
* @public
|
|
1836
|
+
*/
|
|
1837
|
+
export declare const MenuButtonAppearance: {
|
|
1838
|
+
readonly primary: "primary";
|
|
1839
|
+
readonly outline: "outline";
|
|
1840
|
+
readonly subtle: "subtle";
|
|
1841
|
+
readonly secondary: "secondary";
|
|
1842
|
+
readonly transparent: "transparent";
|
|
1843
|
+
};
|
|
1844
|
+
|
|
1845
|
+
/**
|
|
1846
|
+
* A Menu Button can be secondary, primary, outline, subtle, transparent
|
|
1847
|
+
* @public
|
|
1848
|
+
*/
|
|
1849
|
+
export declare type MenuButtonAppearance = ValuesOf<typeof MenuButtonAppearance>;
|
|
1850
|
+
|
|
1851
|
+
/**
|
|
1852
|
+
* The Fluent Menu Button Element. Implements {@link @microsoft/fast-foundation#Button },
|
|
1853
|
+
* {@link @microsoft/fast-foundation#buttonTemplate}
|
|
1854
|
+
*
|
|
1855
|
+
* @public
|
|
1856
|
+
* @remarks
|
|
1857
|
+
* HTML Element: \<fluent-button\>
|
|
1858
|
+
*/
|
|
1859
|
+
export declare const MenuButtonDefinition: FASTElementDefinition<typeof MenuButton>;
|
|
1860
|
+
|
|
1861
|
+
/**
|
|
1862
|
+
* A Menu Button can be square, circular or rounded.
|
|
1863
|
+
* @public
|
|
1864
|
+
*/
|
|
1865
|
+
export declare const MenuButtonShape: {
|
|
1866
|
+
readonly circular: "circular";
|
|
1867
|
+
readonly rounded: "rounded";
|
|
1868
|
+
readonly square: "square";
|
|
1869
|
+
};
|
|
1870
|
+
|
|
1871
|
+
/**
|
|
1872
|
+
* A Menu Button can be square, circular or rounded
|
|
1873
|
+
* @public
|
|
1874
|
+
*/
|
|
1875
|
+
export declare type MenuButtonShape = ValuesOf<typeof MenuButtonShape>;
|
|
1876
|
+
|
|
1877
|
+
/**
|
|
1878
|
+
* A Menu Button can be a size of small, medium or large.
|
|
1879
|
+
* @public
|
|
1880
|
+
*/
|
|
1881
|
+
export declare const MenuButtonSize: {
|
|
1882
|
+
readonly small: "small";
|
|
1883
|
+
readonly medium: "medium";
|
|
1884
|
+
readonly large: "large";
|
|
1885
|
+
};
|
|
1886
|
+
|
|
1887
|
+
/**
|
|
1888
|
+
* A Menu Button can be on of several preset sizes.
|
|
1889
|
+
* @public
|
|
1890
|
+
*/
|
|
1891
|
+
export declare type MenuButtonSize = ValuesOf<typeof MenuButtonSize>;
|
|
1892
|
+
|
|
1893
|
+
/**
|
|
1894
|
+
* The template for the Button component.
|
|
1895
|
+
* @public
|
|
1896
|
+
*/
|
|
1897
|
+
export declare const MenuButtonTemplate: ElementViewTemplate<MenuButton>;
|
|
1898
|
+
|
|
1736
1899
|
/**
|
|
1737
1900
|
* The base class used for constructing a fluent-progress-bar custom element
|
|
1738
1901
|
* @public
|
|
@@ -2039,6 +2202,10 @@ export declare const strokeWidthThickest: CSSDesignToken<string>;
|
|
|
2039
2202
|
|
|
2040
2203
|
export declare const strokeWidthThin: CSSDesignToken<string>;
|
|
2041
2204
|
|
|
2205
|
+
declare const styles: ElementStyles;
|
|
2206
|
+
export { styles as ButtonStyles }
|
|
2207
|
+
export { styles as MenuButtonStyles }
|
|
2208
|
+
|
|
2042
2209
|
export declare class Switch extends FASTSwitch {
|
|
2043
2210
|
/**
|
|
2044
2211
|
* The label position of the switch
|
|
@@ -2071,6 +2238,139 @@ export declare const switchStyles: ElementStyles;
|
|
|
2071
2238
|
|
|
2072
2239
|
export declare const switchTemplate: ElementViewTemplate<Switch>;
|
|
2073
2240
|
|
|
2241
|
+
/**
|
|
2242
|
+
* Tab extends the FASTTab and is a child of the TabList
|
|
2243
|
+
*/
|
|
2244
|
+
export declare class Tab extends FASTTab {
|
|
2245
|
+
private styles;
|
|
2246
|
+
connectedCallback(): void;
|
|
2247
|
+
}
|
|
2248
|
+
|
|
2249
|
+
export declare const TabDefinition: FASTElementDefinition<typeof Tab>;
|
|
2250
|
+
|
|
2251
|
+
export declare class TabPanel extends FASTTabPanel {
|
|
2252
|
+
}
|
|
2253
|
+
|
|
2254
|
+
export declare const TabPanelDefinition: FASTElementDefinition<typeof TabPanel>;
|
|
2255
|
+
|
|
2256
|
+
export declare const TabPanelStyles: ElementStyles;
|
|
2257
|
+
|
|
2258
|
+
export declare const TabPanelTemplate: ElementViewTemplate<FASTTabPanel, any>;
|
|
2259
|
+
|
|
2260
|
+
/**
|
|
2261
|
+
* TabList extends FASTTabs and is used for constructing a fluent-tab-list custom html element.
|
|
2262
|
+
*
|
|
2263
|
+
* @class TabList component
|
|
2264
|
+
* @public
|
|
2265
|
+
*/
|
|
2266
|
+
export declare class Tabs extends FASTTabs {
|
|
2267
|
+
/**
|
|
2268
|
+
* activeTabData
|
|
2269
|
+
* The positional coordinates and size dimensions of the active tab. Used for calculating the offset and scale of the tab active indicator.
|
|
2270
|
+
*/
|
|
2271
|
+
private activeTabData;
|
|
2272
|
+
/**
|
|
2273
|
+
* previousActiveTabData
|
|
2274
|
+
* The positional coordinates and size dimensions of the active tab. Used for calculating the offset and scale of the tab active indicator.
|
|
2275
|
+
*/
|
|
2276
|
+
private previousActiveTabData;
|
|
2277
|
+
/**
|
|
2278
|
+
* activeTabOffset
|
|
2279
|
+
* Used to position the active indicator for animations of the active indicator on active tab changes.
|
|
2280
|
+
*/
|
|
2281
|
+
private activeTabOffset;
|
|
2282
|
+
/**
|
|
2283
|
+
* activeTabScale
|
|
2284
|
+
* Used to scale the tab active indicator up or down as animations of the active indicator occur.
|
|
2285
|
+
*/
|
|
2286
|
+
private activeTabScale;
|
|
2287
|
+
/**
|
|
2288
|
+
* styles
|
|
2289
|
+
* used in the class for storing the css variables required for animations
|
|
2290
|
+
*/
|
|
2291
|
+
private styles;
|
|
2292
|
+
/**
|
|
2293
|
+
* appearance
|
|
2294
|
+
* There are two modes of appearance: transparent and subtle.
|
|
2295
|
+
*/
|
|
2296
|
+
appearance?: TabsAppearance;
|
|
2297
|
+
/**
|
|
2298
|
+
* disabled
|
|
2299
|
+
* Used for disabling all click and keyboard events for the tabs, child tab elements and tab panel elements. UI styling of content and tabs will appear as "grayed out."
|
|
2300
|
+
*/
|
|
2301
|
+
disabled?: boolean;
|
|
2302
|
+
/**
|
|
2303
|
+
* size
|
|
2304
|
+
* defaults to medium.
|
|
2305
|
+
* Used to set the size of all the tab controls, which effects text size and margins. Three sizes: small, medium and large.
|
|
2306
|
+
*/
|
|
2307
|
+
size?: TabsSize;
|
|
2308
|
+
/**
|
|
2309
|
+
* calculateAnimationProperties
|
|
2310
|
+
*
|
|
2311
|
+
* Recalculates the active tab offset and scale.
|
|
2312
|
+
* These values will be applied to css variables that control the tab active indicator position animations
|
|
2313
|
+
*/
|
|
2314
|
+
private calculateAnimationProperties;
|
|
2315
|
+
/**
|
|
2316
|
+
* getSelectedTabPosition - gets the x or y coordinates of the tab
|
|
2317
|
+
*/
|
|
2318
|
+
private getTabPosition;
|
|
2319
|
+
/**
|
|
2320
|
+
* getSelectedTabScale - gets the scale of the tab
|
|
2321
|
+
*/
|
|
2322
|
+
private getTabScale;
|
|
2323
|
+
/**
|
|
2324
|
+
* applyUpdatedCSSValues
|
|
2325
|
+
*
|
|
2326
|
+
* calculates and applies updated values to CSS variables
|
|
2327
|
+
* @param tab
|
|
2328
|
+
*/
|
|
2329
|
+
private applyUpdatedCSSValues;
|
|
2330
|
+
/**
|
|
2331
|
+
* animationLoop
|
|
2332
|
+
* runs through all the operations required for setting the tab active indicator to its starting location, ending location, and applying the animated css class to the tab.
|
|
2333
|
+
* @param tab
|
|
2334
|
+
*/
|
|
2335
|
+
private animationLoop;
|
|
2336
|
+
/**
|
|
2337
|
+
* setTabData
|
|
2338
|
+
* sets the data from the active tab onto the class. used for making all the animation calculations for the active tab indicator.
|
|
2339
|
+
*/
|
|
2340
|
+
private setTabData;
|
|
2341
|
+
private setTabOffsetCSSVar;
|
|
2342
|
+
private setTabScaleCSSVar;
|
|
2343
|
+
activeidChanged(oldValue: string, newValue: string): void;
|
|
2344
|
+
tabsChanged(): void;
|
|
2345
|
+
}
|
|
2346
|
+
|
|
2347
|
+
export declare const TabsAppearance: {
|
|
2348
|
+
readonly subtle: "subtle";
|
|
2349
|
+
readonly transparent: "transparent";
|
|
2350
|
+
};
|
|
2351
|
+
|
|
2352
|
+
export declare type TabsAppearance = ValuesOf<typeof TabsAppearance>;
|
|
2353
|
+
|
|
2354
|
+
export declare const TabsDefinition: FASTElementDefinition<typeof Tabs>;
|
|
2355
|
+
|
|
2356
|
+
export { TabsOrientation }
|
|
2357
|
+
|
|
2358
|
+
export declare const TabsSize: {
|
|
2359
|
+
readonly small: "small";
|
|
2360
|
+
readonly medium: "medium";
|
|
2361
|
+
readonly large: "large";
|
|
2362
|
+
};
|
|
2363
|
+
|
|
2364
|
+
export declare type TabsSize = ValuesOf<typeof TabsSize>;
|
|
2365
|
+
|
|
2366
|
+
export declare const TabsStyles: ElementStyles;
|
|
2367
|
+
|
|
2368
|
+
export declare const TabsTemplate: ElementViewTemplate<FASTTabs, any>;
|
|
2369
|
+
|
|
2370
|
+
export declare const TabStyles: ElementStyles;
|
|
2371
|
+
|
|
2372
|
+
export declare const TabTemplate: ElementViewTemplate<FASTTab, any>;
|
|
2373
|
+
|
|
2074
2374
|
/**
|
|
2075
2375
|
* The base class used for constructing a fluent-text custom element
|
|
2076
2376
|
* @public
|