@vonage/vivid 3.0.0-next.119 → 3.0.0-next.120
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/README.md +11 -6
- package/accordion/index.js +4 -51
- package/accordion-item/index.js +11 -109
- package/action-group/index.js +4 -36
- package/avatar/index.js +8 -64
- package/badge/index.js +9 -48
- package/banner/index.js +15 -117
- package/breadcrumb/index.js +5 -97
- package/breadcrumb-item/index.js +14 -53
- package/button/index.js +14 -92
- package/calendar/index.js +5 -1520
- package/calendar-event/index.js +7 -107
- package/card/index.js +10 -117
- package/checkbox/index.js +13 -175
- package/custom-elements.json +1827 -8
- package/dialog/index.js +14 -227
- package/divider/index.js +4 -25
- package/elevation/index.js +4 -24
- package/fab/index.js +13 -89
- package/focus/index.js +4 -17
- package/header/index.js +7 -12
- package/icon/index.js +7 -28
- package/index.js +49 -55
- package/layout/index.js +4 -42
- package/lib/accordion/definition.d.ts +3 -0
- package/lib/accordion/index.d.ts +1 -2
- package/lib/accordion-item/definition.d.ts +3 -0
- package/lib/accordion-item/index.d.ts +1 -2
- package/lib/action-group/definition.d.ts +3 -0
- package/lib/action-group/index.d.ts +1 -2
- package/lib/avatar/definition.d.ts +3 -0
- package/lib/avatar/index.d.ts +1 -2
- package/lib/badge/definition.d.ts +3 -0
- package/lib/badge/index.d.ts +1 -2
- package/lib/banner/definition.d.ts +3 -0
- package/lib/banner/index.d.ts +1 -2
- package/lib/breadcrumb/definition.d.ts +3 -0
- package/lib/breadcrumb/index.d.ts +1 -2
- package/lib/breadcrumb-item/definition.d.ts +3 -0
- package/lib/breadcrumb-item/index.d.ts +1 -2
- package/lib/button/definition.d.ts +3 -0
- package/lib/calendar/definition.d.ts +3 -0
- package/lib/calendar/index.d.ts +1 -2
- package/lib/calendar-event/definition.d.ts +3 -0
- package/lib/calendar-event/index.d.ts +1 -2
- package/lib/card/definition.d.ts +3 -0
- package/lib/card/index.d.ts +1 -2
- package/lib/checkbox/definition.d.ts +3 -0
- package/lib/checkbox/index.d.ts +1 -2
- package/lib/components.d.ts +38 -38
- package/lib/dialog/definition.d.ts +3 -0
- package/lib/dialog/index.d.ts +1 -2
- package/lib/divider/definition.d.ts +3 -0
- package/lib/divider/index.d.ts +1 -2
- package/lib/elevation/definition.d.ts +3 -0
- package/lib/elevation/index.d.ts +1 -2
- package/lib/fab/definition.d.ts +3 -0
- package/lib/fab/index.d.ts +1 -2
- package/lib/focus/definition.d.ts +3 -0
- package/lib/focus/index.d.ts +1 -2
- package/lib/header/definition.d.ts +3 -0
- package/lib/header/index.d.ts +1 -2
- package/lib/icon/definition.d.ts +3 -0
- package/lib/icon/index.d.ts +1 -2
- package/lib/layout/definition.d.ts +3 -0
- package/lib/layout/index.d.ts +1 -2
- package/lib/listbox/definition.d.ts +3 -0
- package/lib/menu/definition.d.ts +7 -0
- package/lib/menu/index.d.ts +1 -10
- package/lib/menu-item/definition.d.ts +3 -0
- package/lib/menu-item/index.d.ts +1 -2
- package/lib/nav/definition.d.ts +3 -0
- package/lib/nav/index.d.ts +1 -2
- package/lib/nav-disclosure/definition.d.ts +3 -0
- package/lib/nav-disclosure/index.d.ts +1 -2
- package/lib/nav-item/definition.d.ts +3 -0
- package/lib/nav-item/index.d.ts +1 -2
- package/lib/note/definition.d.ts +3 -0
- package/lib/note/index.d.ts +1 -2
- package/lib/number-field/definition.d.ts +3 -0
- package/lib/number-field/index.d.ts +1 -2
- package/lib/option/definition.d.ts +3 -0
- package/lib/option/index.d.ts +1 -2
- package/lib/popup/definition.d.ts +4 -0
- package/lib/popup/index.d.ts +1 -2
- package/lib/progress/definition.d.ts +3 -0
- package/lib/progress/index.d.ts +1 -2
- package/lib/progress-ring/definition.d.ts +3 -0
- package/lib/progress-ring/index.d.ts +1 -2
- package/lib/radio/definition.d.ts +3 -0
- package/lib/radio/index.d.ts +1 -2
- package/lib/radio-group/definition.d.ts +7 -0
- package/lib/radio-group/index.d.ts +1 -10
- package/lib/side-drawer/definition.d.ts +3 -0
- package/lib/side-drawer/index.d.ts +1 -2
- package/lib/slider/definition.d.ts +3 -0
- package/lib/slider/index.d.ts +1 -2
- package/lib/switch/definition.d.ts +3 -0
- package/lib/switch/index.d.ts +1 -2
- package/lib/text-anchor/definition.d.ts +3 -0
- package/lib/text-anchor/index.d.ts +1 -2
- package/lib/text-area/definition.d.ts +3 -0
- package/lib/text-area/index.d.ts +1 -2
- package/lib/text-field/definition.d.ts +3 -0
- package/lib/text-field/index.d.ts +1 -2
- package/lib/tooltip/definition.d.ts +3 -0
- package/lib/tooltip/index.d.ts +1 -2
- package/listbox/index.js +18 -1080
- package/menu/index.js +27 -354
- package/menu-item/index.js +11 -81
- package/nav/index.js +3 -16
- package/nav-disclosure/index.js +13 -77
- package/nav-item/index.js +13 -35
- package/note/index.js +13 -60
- package/number-field/index.js +14 -16
- package/option/index.js +13 -68
- package/package.json +2 -2
- package/popup/index.js +17 -55
- package/progress/index.js +6 -92
- package/progress-ring/index.js +6 -75
- package/radio/index.js +8 -48
- package/radio-group/index.js +9 -433
- package/shared/anchor.js +1 -1
- package/shared/apply-mixins.js +1 -1
- package/shared/base-progress.js +1 -1
- package/shared/breadcrumb-item.js +1 -1
- package/shared/button.js +195 -18
- package/shared/calendar-event.js +1 -1
- package/shared/definition.js +53 -0
- package/shared/definition10.js +99 -0
- package/shared/definition11.js +48 -0
- package/shared/definition12.js +1523 -0
- package/shared/definition13.js +111 -0
- package/shared/definition14.js +114 -0
- package/shared/definition15.js +32 -0
- package/shared/definition16.js +172 -0
- package/shared/definition17.js +223 -0
- package/shared/{divider.js → definition18.js} +25 -2
- package/shared/definition19.js +87 -0
- package/shared/definition2.js +106 -0
- package/shared/definition20.js +44 -0
- package/shared/definition21.js +1078 -0
- package/shared/{listbox-option.js → definition22.js} +71 -11
- package/shared/definition23.js +348 -0
- package/shared/{popup.js → definition24.js} +46 -3
- package/shared/{menu-item.js → definition25.js} +87 -13
- package/shared/definition26.js +18 -0
- package/shared/definition27.js +75 -0
- package/shared/definition28.js +31 -0
- package/shared/definition29.js +56 -0
- package/shared/definition3.js +29 -0
- package/shared/definition30.js +94 -0
- package/shared/definition31.js +77 -0
- package/shared/definition32.js +45 -0
- package/shared/definition33.js +435 -0
- package/shared/definition34.js +86 -0
- package/shared/definition35.js +592 -0
- package/shared/definition36.js +147 -0
- package/shared/definition37.js +279 -0
- package/shared/definition38.js +119 -0
- package/shared/definition39.js +77 -0
- package/shared/definition4.js +19 -0
- package/shared/definition5.js +38 -0
- package/shared/definition6.js +60 -0
- package/shared/definition7.js +45 -0
- package/shared/definition8.js +113 -0
- package/shared/definition9.js +107 -0
- package/shared/design-system/index.d.ts +1 -2
- package/shared/es.object.assign.js +58 -1
- package/shared/es.regexp.to-string.js +2 -1
- package/shared/focus.js +3 -9
- package/shared/focus2.js +9 -3
- package/shared/form-associated.js +1 -1
- package/shared/form-elements.js +2 -2
- package/shared/icon.js +1096 -9
- package/shared/index.js +385 -2501
- package/shared/patterns/form-elements/form-elements.d.ts +2 -2
- package/shared/radio.js +1 -1
- package/shared/ref.js +1 -1
- package/shared/slotted.js +1 -1
- package/shared/string-trim.js +2 -1
- package/shared/text-anchor.template.js +1 -1
- package/shared/to-string.js +51 -0
- package/side-drawer/index.js +5 -84
- package/slider/index.js +14 -593
- package/styles/core/all.css +1 -1
- package/styles/core/theme.css +1 -1
- package/styles/core/typography.css +1 -1
- package/styles/tokens/theme-dark.css +4 -4
- package/styles/tokens/theme-light.css +4 -4
- package/switch/index.js +13 -149
- package/text-anchor/index.js +8 -7
- package/text-area/index.js +16 -282
- package/text-field/index.js +14 -121
- package/tooltip/index.js +24 -82
- package/vivid.api.json +1640 -850
- package/shared/button2.js +0 -200
- package/shared/elevation.js +0 -10
- package/shared/es.promise.resolve.js +0 -944
- package/shared/index2.js +0 -9
- package/shared/utils/index.d.ts +0 -1
package/index.js
CHANGED
|
@@ -1,76 +1,70 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
3
|
-
export {
|
|
4
|
-
export {
|
|
5
|
-
export {
|
|
6
|
-
export {
|
|
7
|
-
export {
|
|
8
|
-
export {
|
|
9
|
-
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
12
|
-
export {
|
|
13
|
-
export {
|
|
14
|
-
export {
|
|
15
|
-
export {
|
|
16
|
-
export {
|
|
17
|
-
export {
|
|
18
|
-
export {
|
|
19
|
-
export {
|
|
20
|
-
|
|
21
|
-
export {
|
|
22
|
-
export {
|
|
23
|
-
export {
|
|
24
|
-
export {
|
|
25
|
-
export {
|
|
26
|
-
export {
|
|
27
|
-
export {
|
|
28
|
-
export {
|
|
29
|
-
export {
|
|
30
|
-
export {
|
|
31
|
-
export {
|
|
32
|
-
export {
|
|
33
|
-
export {
|
|
34
|
-
export {
|
|
35
|
-
export {
|
|
36
|
-
export {
|
|
37
|
-
export {
|
|
38
|
-
export {
|
|
39
|
-
export {
|
|
1
|
+
export { a as accordion, b as accordionElements, r as registerAccordion } from './shared/definition.js';
|
|
2
|
+
export { a as accordionItem, b as accordionItemElements, r as registerAccordionItem } from './shared/definition2.js';
|
|
3
|
+
export { a as actionGroup, b as actionGroupElements, r as registerActionGroup } from './shared/definition5.js';
|
|
4
|
+
export { a as avatar, b as avatarElements, r as registerAvatar } from './shared/definition6.js';
|
|
5
|
+
export { b as badge, a as badgeElements, r as registerBadge } from './shared/definition7.js';
|
|
6
|
+
export { b as banner, a as bannerElements, r as registerBanner } from './shared/definition8.js';
|
|
7
|
+
export { b as breadcrumb, a as breadcrumbElements, r as registerBreadcrumb } from './shared/definition10.js';
|
|
8
|
+
export { b as breadcrumbItem, a as breadcrumbItemElements, r as registerBreadcrumbItem } from './shared/definition11.js';
|
|
9
|
+
export { a as button, b as buttonElements, r as registerButton } from './shared/definition9.js';
|
|
10
|
+
export { c as calendar, a as calendarElements, r as registerCalendar } from './shared/definition12.js';
|
|
11
|
+
export { c as calendarEvent, a as calendarEventElements, r as registerCalendarEvent } from './shared/definition13.js';
|
|
12
|
+
export { c as card, a as cardElements, r as registerCard } from './shared/definition14.js';
|
|
13
|
+
export { c as checkbox, a as checkboxElements, r as registerCheckbox } from './shared/definition16.js';
|
|
14
|
+
export { a as elevation, e as elevationElements, r as registerElevation } from './shared/definition15.js';
|
|
15
|
+
export { d as dialog, a as dialogElements, r as registerDialog } from './shared/definition17.js';
|
|
16
|
+
export { a as divider, d as dividerElements, r as registerDivider } from './shared/definition18.js';
|
|
17
|
+
export { f as fab, a as fabElements, r as registerFab } from './shared/definition19.js';
|
|
18
|
+
export { a as icon, i as iconElements, r as registerIcon } from './shared/definition3.js';
|
|
19
|
+
export { l as layout, a as layoutElements, r as registerLayout } from './shared/definition20.js';
|
|
20
|
+
export { l as listboxElements, r as registerListbox } from './shared/definition21.js';
|
|
21
|
+
export { a as listboxOption, l as listboxOptionElements, r as registerOption } from './shared/definition22.js';
|
|
22
|
+
export { m as menu, a as menuElements, r as registerMenu } from './shared/definition23.js';
|
|
23
|
+
export { c as menuItem, m as menuItemElements, b as registerMenuItem } from './shared/definition25.js';
|
|
24
|
+
export { n as nav, a as navElements, r as registerNav } from './shared/definition26.js';
|
|
25
|
+
export { n as navDisclosure, a as navDisclosureElements, r as registerNavDisclosure } from './shared/definition27.js';
|
|
26
|
+
export { n as navItem, a as navItemElements, r as registerNavItem } from './shared/definition28.js';
|
|
27
|
+
export { n as note, a as noteElements, r as registerNote } from './shared/definition29.js';
|
|
28
|
+
export { a as popup, p as popupElements, r as registerPopup } from './shared/definition24.js';
|
|
29
|
+
export { p as progress, a as progressElements, r as registerProgress } from './shared/definition30.js';
|
|
30
|
+
export { p as progressRing, a as progressRingElements, r as registerProgressRing } from './shared/definition31.js';
|
|
31
|
+
export { a as radio, b as radioElements, r as registerRadio } from './shared/definition32.js';
|
|
32
|
+
export { a as radioGroup, b as radioGroupElements, r as registerRadioGroup } from './shared/definition33.js';
|
|
33
|
+
export { r as registerSideDrawer, s as sideDrawer, a as sideDrawerElements } from './shared/definition34.js';
|
|
34
|
+
export { r as registerSlider, s as slider, a as sliderElements } from './shared/definition35.js';
|
|
35
|
+
export { r as registerSwitch, s as switchCE, a as switchElements } from './shared/definition36.js';
|
|
36
|
+
export { r as registerTextField, t as textField, a as textFieldElements } from './shared/definition38.js';
|
|
37
|
+
export { r as registerTextArea, t as textArea, a as textAreaElements } from './shared/definition37.js';
|
|
38
|
+
export { r as registerTooltip, t as tooltip, a as tooltipElements } from './shared/definition39.js';
|
|
39
|
+
export { r as registerFactorial } from './shared/index.js';
|
|
40
40
|
import './shared/class-names.js';
|
|
41
|
-
import './shared/
|
|
42
|
-
import './shared/
|
|
41
|
+
import './shared/definition4.js';
|
|
42
|
+
import './shared/focus.js';
|
|
43
43
|
import './shared/affix.js';
|
|
44
44
|
import './shared/icon.js';
|
|
45
|
+
import './shared/to-string.js';
|
|
45
46
|
import './shared/string-trim.js';
|
|
46
47
|
import './shared/_has.js';
|
|
47
48
|
import './shared/apply-mixins.js';
|
|
48
|
-
import './shared/focus.js';
|
|
49
49
|
import './shared/focus2.js';
|
|
50
50
|
import './shared/when.js';
|
|
51
51
|
import './shared/enums.js';
|
|
52
|
-
import './shared/button.js';
|
|
53
|
-
import './shared/button2.js';
|
|
54
|
-
import './shared/form-associated.js';
|
|
55
|
-
import './shared/key-codes.js';
|
|
56
|
-
import './shared/aria-global.js';
|
|
57
|
-
import './shared/start-end.js';
|
|
58
|
-
import './shared/ref.js';
|
|
59
52
|
import './shared/slotted.js';
|
|
60
53
|
import './shared/breadcrumb-item.js';
|
|
61
54
|
import './shared/anchor.js';
|
|
55
|
+
import './shared/aria-global.js';
|
|
56
|
+
import './shared/start-end.js';
|
|
57
|
+
import './shared/ref.js';
|
|
62
58
|
import './shared/text-anchor.template.js';
|
|
59
|
+
import './shared/button.js';
|
|
60
|
+
import './shared/form-associated.js';
|
|
61
|
+
import './shared/key-codes.js';
|
|
63
62
|
import './shared/calendar-event.js';
|
|
64
63
|
import './shared/es.object.assign.js';
|
|
65
|
-
import './shared/elevation.js';
|
|
66
|
-
import './shared/divider.js';
|
|
67
64
|
import './shared/aria.js';
|
|
68
|
-
import './shared/listbox-option.js';
|
|
69
|
-
import './shared/dom.js';
|
|
70
65
|
import './shared/numbers.js';
|
|
71
|
-
import './shared/
|
|
66
|
+
import './shared/dom.js';
|
|
72
67
|
import './shared/direction.js';
|
|
73
|
-
import './shared/popup.js';
|
|
74
68
|
import './shared/text-anchor.js';
|
|
75
69
|
import './shared/base-progress.js';
|
|
76
70
|
import './shared/radio.js';
|
package/layout/index.js
CHANGED
|
@@ -1,43 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
1
|
+
import { r as registerLayout } from '../shared/definition20.js';
|
|
2
|
+
import '../shared/index.js';
|
|
3
|
+
import '../shared/class-names.js';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
-
(function (AUTO_SIZING) {
|
|
6
|
-
AUTO_SIZING["Fit"] = "fit";
|
|
7
|
-
AUTO_SIZING["Fill"] = "fill";
|
|
8
|
-
})(AUTO_SIZING || (AUTO_SIZING = {}));
|
|
9
|
-
class Layout extends FoundationElement {}
|
|
10
|
-
__decorate([attr, __metadata("design:type", String)], Layout.prototype, "gutters", void 0);
|
|
11
|
-
__decorate([attr({
|
|
12
|
-
attribute: 'column-basis'
|
|
13
|
-
}), __metadata("design:type", String)], Layout.prototype, "columnBasis", void 0);
|
|
14
|
-
__decorate([attr({
|
|
15
|
-
attribute: 'column-spacing'
|
|
16
|
-
}), __metadata("design:type", String)], Layout.prototype, "columnSpacing", void 0);
|
|
17
|
-
__decorate([attr({
|
|
18
|
-
attribute: 'auto-sizing'
|
|
19
|
-
}), __metadata("design:type", String)], Layout.prototype, "autoSizing", void 0);
|
|
20
|
-
|
|
21
|
-
var css_248z = "/* #region SIZEs */\n/* #region BASES */\n/* #region SPACES */\n.control {\n display: grid;\n grid-auto-rows: min-content;\n}\n.control.column-basis-small {\n grid-template-columns: var(--layout-grid-template-columns, repeat(var(--_auto-sizing), minmax(160px, 1fr)));\n}\n.control:not(.column-basis-small):not(.column-basis-medium):not(.column-basis-large):not(.column-basis-block), .control.column-basis-medium {\n grid-template-columns: var(--layout-grid-template-columns, repeat(var(--_auto-sizing), minmax(320px, 1fr)));\n}\n.control.column-basis-large {\n grid-template-columns: var(--layout-grid-template-columns, repeat(var(--_auto-sizing), minmax(380px, 1fr)));\n}\n.control.column-basis-block {\n grid-template-columns: var(--layout-grid-template-columns, repeat(var(--_auto-sizing), minmax(1fr, 1fr)));\n}\n.control.column-spacing-small {\n gap: 16px;\n}\n.control.column-spacing-small-inline {\n gap: 0 16px;\n}\n.control.column-spacing-small-block {\n gap: 16px 0;\n}\n.control:not(.column-spacing-small):not(.column-spacing-small-inline):not(.column-spacing-small-block):not(.column-spacing-medium):not(.column-spacing-medium-inline):not(.column-spacing-medium-block):not(.column-spacing-large):not(.column-spacing-large-inline):not(.column-spacing-large-block), .control.column-spacing-medium {\n gap: 24px;\n}\n.control.column-spacing-medium-inline {\n gap: 0 24px;\n}\n.control.column-spacing-medium-block {\n gap: 24px 0;\n}\n.control.column-spacing-large {\n gap: 32px;\n}\n.control.column-spacing-large-inline {\n gap: 0 32px;\n}\n.control.column-spacing-large-block {\n gap: 32px 0;\n}\n.control.gutters-small {\n margin: 16px;\n}\n.control.gutters-small-inline {\n margin: 0 16px;\n}\n.control.gutters-small-block {\n margin: 16px 0;\n}\n.control.gutters-medium {\n margin: 24px;\n}\n.control.gutters-medium-inline {\n margin: 0 24px;\n}\n.control.gutters-medium-block {\n margin: 24px 0;\n}\n.control.gutters-large {\n margin: 32px;\n}\n.control.gutters-large-inline {\n margin: 0 32px;\n}\n.control.gutters-large-block {\n margin: 32px 0;\n}\n.control.auto-sizing-fill {\n --_auto-sizing: auto-fill;\n}\n.control:not(.auto-sizing-fill):not(.auto-sizing-fit), .control.auto-sizing-fit {\n --_auto-sizing: auto-fit;\n}";
|
|
22
|
-
|
|
23
|
-
let _ = t => t,
|
|
24
|
-
_t;
|
|
25
|
-
const getClasses = ({
|
|
26
|
-
columnBasis,
|
|
27
|
-
gutters,
|
|
28
|
-
columnSpacing,
|
|
29
|
-
autoSizing
|
|
30
|
-
}) => classNames('control', [`column-basis-${columnBasis}`, Boolean(columnBasis)], [`gutters-${gutters}`, Boolean(gutters)], [`column-spacing-${columnSpacing}`, Boolean(columnSpacing)], [`auto-sizing-${autoSizing}`, Boolean(autoSizing)]);
|
|
31
|
-
const layoutTemplate = () => html(_t || (_t = _`
|
|
32
|
-
<div class="${0}">
|
|
33
|
-
<slot></slot>
|
|
34
|
-
</div>`), getClasses);
|
|
35
|
-
|
|
36
|
-
const vividLayout = Layout.compose({
|
|
37
|
-
baseName: 'layout',
|
|
38
|
-
template: layoutTemplate,
|
|
39
|
-
styles: css_248z
|
|
40
|
-
});
|
|
41
|
-
designSystem.withPrefix(getPrefix(import.meta.url)).register(vividLayout());
|
|
42
|
-
|
|
43
|
-
export { vividLayout };
|
|
5
|
+
registerLayout();
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const accordionElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerAccordion: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/accordion/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividAccordion: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const accordionItemElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerAccordionItem: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividAccordionItem: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const actionGroupElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerActionGroup: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividActionGroup: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const avatarElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerAvatar: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/avatar/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividAvatar: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const badgeElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerBadge: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/badge/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividBadge: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const bannerElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerBanner: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/banner/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividBanner: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const breadcrumbElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerBreadcrumb: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividBreadcrumb: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const breadcrumbItemElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerBreadcrumbItem: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividBreadcrumbItem: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { type FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const buttonElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerButton: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const calendarElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerCalendar: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/calendar/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividCalendar: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const calendarEventElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerCalendarEvent: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividCalendarEvent: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const cardElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerCard: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/card/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividCard: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { CheckboxOptions } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const checkboxElements: (import("@microsoft/fast-foundation").FoundationElementRegistry<CheckboxOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>> | import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>)[];
|
|
3
|
+
export declare const registerCheckbox: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/checkbox/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividCheckbox: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<CheckboxOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<CheckboxOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
package/lib/components.d.ts
CHANGED
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
export * from './accordion';
|
|
2
|
-
export * from './accordion-item';
|
|
3
|
-
export * from './action-group';
|
|
4
|
-
export * from './avatar';
|
|
5
|
-
export * from './badge';
|
|
6
|
-
export * from './banner';
|
|
7
|
-
export * from './breadcrumb';
|
|
8
|
-
export * from './breadcrumb-item';
|
|
9
|
-
export * from './button';
|
|
10
|
-
export * from './calendar';
|
|
11
|
-
export * from './calendar-event';
|
|
12
|
-
export * from './card';
|
|
13
|
-
export * from './checkbox';
|
|
14
|
-
export * from './elevation';
|
|
15
|
-
export * from './dialog';
|
|
16
|
-
export * from './divider';
|
|
17
|
-
export * from './fab';
|
|
18
|
-
export * from './icon';
|
|
19
|
-
export * from './layout';
|
|
20
|
-
export * from './listbox';
|
|
21
|
-
export * from './option';
|
|
22
|
-
export * from './menu';
|
|
23
|
-
export * from './menu-item';
|
|
24
|
-
export * from './nav';
|
|
25
|
-
export * from './nav-disclosure';
|
|
26
|
-
export * from './nav-item';
|
|
27
|
-
export * from './note';
|
|
28
|
-
export * from './popup';
|
|
29
|
-
export * from './progress';
|
|
30
|
-
export * from './progress-ring';
|
|
31
|
-
export * from './radio';
|
|
32
|
-
export * from './radio-group';
|
|
33
|
-
export * from './side-drawer';
|
|
34
|
-
export * from './slider';
|
|
35
|
-
export * from './switch';
|
|
36
|
-
export * from './text-field';
|
|
37
|
-
export * from './text-area';
|
|
38
|
-
export * from './tooltip';
|
|
1
|
+
export * from './accordion/definition';
|
|
2
|
+
export * from './accordion-item/definition';
|
|
3
|
+
export * from './action-group/definition';
|
|
4
|
+
export * from './avatar/definition';
|
|
5
|
+
export * from './badge/definition';
|
|
6
|
+
export * from './banner/definition';
|
|
7
|
+
export * from './breadcrumb/definition';
|
|
8
|
+
export * from './breadcrumb-item/definition';
|
|
9
|
+
export * from './button/definition';
|
|
10
|
+
export * from './calendar/definition';
|
|
11
|
+
export * from './calendar-event/definition';
|
|
12
|
+
export * from './card/definition';
|
|
13
|
+
export * from './checkbox/definition';
|
|
14
|
+
export * from './elevation/definition';
|
|
15
|
+
export * from './dialog/definition';
|
|
16
|
+
export * from './divider/definition';
|
|
17
|
+
export * from './fab/definition';
|
|
18
|
+
export * from './icon/definition';
|
|
19
|
+
export * from './layout/definition';
|
|
20
|
+
export * from './listbox/definition';
|
|
21
|
+
export * from './option/definition';
|
|
22
|
+
export * from './menu/definition';
|
|
23
|
+
export * from './menu-item/definition';
|
|
24
|
+
export * from './nav/definition';
|
|
25
|
+
export * from './nav-disclosure/definition';
|
|
26
|
+
export * from './nav-item/definition';
|
|
27
|
+
export * from './note/definition';
|
|
28
|
+
export * from './popup/definition';
|
|
29
|
+
export * from './progress/definition';
|
|
30
|
+
export * from './progress-ring/definition';
|
|
31
|
+
export * from './radio/definition';
|
|
32
|
+
export * from './radio-group/definition';
|
|
33
|
+
export * from './side-drawer/definition';
|
|
34
|
+
export * from './slider/definition';
|
|
35
|
+
export * from './switch/definition';
|
|
36
|
+
export * from './text-field/definition';
|
|
37
|
+
export * from './text-area/definition';
|
|
38
|
+
export * from './tooltip/definition';
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const dialogElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerDialog: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/dialog/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividDialog: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const dividerElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerDivider: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/divider/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividDivider: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const elevationElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerElevation: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/elevation/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividElevation: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const fabElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerFab: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/fab/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividFab: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const focusElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerFocus: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/focus/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividFocus: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const headerElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerHeader: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/header/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividHeader: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const iconElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerIcon: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/icon/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividIcon: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const layoutElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerLayout: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/layout/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividLayout: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const listboxElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerListbox: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Menu } from './menu';
|
|
2
|
+
export declare const menuElements: (import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
3
|
+
baseName: string;
|
|
4
|
+
template: any;
|
|
5
|
+
styles: import("@microsoft/fast-element").ComposableStyles;
|
|
6
|
+
}, typeof Menu> | import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>> | import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").MenuItemOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>)[];
|
|
7
|
+
export declare const registerMenu: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/menu/index.d.ts
CHANGED
|
@@ -1,10 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividMenu: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
3
|
-
baseName: string;
|
|
4
|
-
template: any;
|
|
5
|
-
styles: import("@microsoft/fast-element").ComposableStyles;
|
|
6
|
-
}> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
7
|
-
baseName: string;
|
|
8
|
-
template: any;
|
|
9
|
-
styles: import("@microsoft/fast-element").ComposableStyles;
|
|
10
|
-
}, typeof Menu>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { MenuItemOptions } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const menuItemElements: (import("@microsoft/fast-foundation").FoundationElementRegistry<MenuItemOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>> | import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>)[];
|
|
3
|
+
export declare const registerMenuItem: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/menu-item/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividMenuItem: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<MenuItemOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<MenuItemOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const navElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerNav: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/nav/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividNav: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const navDisclosureElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerNavDisclosure: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividNavDisclosure: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const navItemElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerNavItem: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/nav-item/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividNavItem: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const noteElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
|
+
export declare const registerNote: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/note/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const vividNote: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
1
|
+
export {};
|