@vonage/vivid 3.0.0-next.120 → 3.0.0-next.122
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/custom-elements.json +119 -438
- package/header/index.js +4 -56
- package/index.js +40 -39
- package/layout/index.js +1 -1
- package/lib/accordion/definition.d.ts +0 -2
- package/lib/accordion-item/definition.d.ts +0 -2
- package/lib/action-group/definition.d.ts +0 -2
- package/lib/avatar/definition.d.ts +0 -2
- package/lib/badge/definition.d.ts +1 -1
- package/lib/banner/definition.d.ts +0 -2
- package/lib/breadcrumb/definition.d.ts +0 -2
- package/lib/breadcrumb-item/definition.d.ts +0 -2
- package/lib/button/definition.d.ts +0 -2
- package/lib/calendar/definition.d.ts +0 -2
- package/lib/calendar-event/definition.d.ts +0 -2
- package/lib/card/definition.d.ts +0 -2
- package/lib/checkbox/definition.d.ts +0 -2
- package/lib/components.d.ts +1 -0
- package/lib/dialog/definition.d.ts +0 -2
- package/lib/divider/definition.d.ts +0 -2
- package/lib/elevation/definition.d.ts +0 -2
- package/lib/fab/definition.d.ts +1 -1
- package/lib/focus/definition.d.ts +1 -1
- package/lib/header/definition.d.ts +1 -1
- package/lib/icon/definition.d.ts +1 -1
- package/lib/layout/definition.d.ts +1 -1
- package/lib/listbox/definition.d.ts +1 -1
- package/lib/menu/definition.d.ts +6 -2
- package/lib/menu-item/definition.d.ts +1 -1
- package/lib/nav/definition.d.ts +1 -1
- package/lib/nav-disclosure/definition.d.ts +1 -1
- package/lib/nav-item/definition.d.ts +1 -1
- package/lib/note/definition.d.ts +1 -1
- package/lib/number-field/definition.d.ts +2 -1
- package/lib/option/definition.d.ts +1 -1
- package/lib/popup/definition.d.ts +1 -2
- package/lib/progress/definition.d.ts +1 -1
- package/lib/progress-ring/definition.d.ts +1 -1
- package/lib/radio/definition.d.ts +1 -1
- package/lib/radio-group/definition.d.ts +6 -2
- package/lib/side-drawer/definition.d.ts +1 -1
- package/lib/slider/definition.d.ts +1 -1
- package/lib/switch/definition.d.ts +1 -1
- package/lib/text-anchor/definition.d.ts +1 -1
- package/lib/text-area/definition.d.ts +1 -1
- package/lib/text-field/definition.d.ts +1 -1
- package/lib/tooltip/definition.d.ts +1 -1
- package/listbox/index.js +2 -2
- package/menu/index.js +3 -3
- package/menu-item/index.js +1 -1
- package/nav/index.js +1 -1
- package/nav-disclosure/index.js +1 -1
- package/nav-item/index.js +1 -1
- package/note/index.js +1 -1
- package/number-field/index.js +8 -8
- package/option/index.js +1 -1
- package/package.json +3 -2
- package/popup/index.js +1 -1
- package/progress/index.js +1 -1
- package/progress-ring/index.js +1 -1
- package/radio/index.js +1 -1
- package/radio-group/index.js +1 -1
- package/shared/definition.js +7 -7
- package/shared/definition10.js +6 -6
- package/shared/definition11.js +9 -9
- package/shared/definition12.js +7 -7
- package/shared/definition13.js +7 -7
- package/shared/definition14.js +9 -9
- package/shared/definition15.js +6 -6
- package/shared/definition16.js +9 -9
- package/shared/definition17.js +10 -10
- package/shared/definition18.js +7 -7
- package/shared/definition19.js +9 -9
- package/shared/definition2.js +9 -9
- package/shared/definition20.js +48 -34
- package/shared/definition21.js +36 -1070
- package/shared/definition22.js +980 -163
- package/shared/definition23.js +212 -299
- package/shared/definition24.js +311 -1492
- package/shared/definition25.js +1493 -315
- package/shared/definition26.js +348 -15
- package/shared/definition27.js +13 -70
- package/shared/definition28.js +68 -24
- package/shared/definition29.js +22 -47
- package/shared/definition3.js +6 -6
- package/shared/definition30.js +41 -79
- package/shared/definition31.js +77 -60
- package/shared/definition32.js +68 -36
- package/shared/definition33.js +32 -422
- package/shared/definition34.js +419 -70
- package/shared/definition35.js +67 -573
- package/shared/definition36.js +528 -83
- package/shared/definition37.js +88 -220
- package/shared/definition38.js +247 -87
- package/shared/definition39.js +110 -68
- package/shared/definition4.js +7 -7
- package/shared/definition40.js +77 -0
- package/shared/definition5.js +7 -7
- package/shared/definition6.js +8 -8
- package/shared/definition7.js +8 -8
- package/shared/definition8.js +9 -9
- package/shared/definition9.js +9 -9
- package/shared/design-system/index.d.ts +2 -1
- package/shared/form-elements.js +1 -1
- package/shared/index.js +2 -2
- package/side-drawer/index.js +1 -1
- package/slider/index.js +1 -1
- 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 +1 -1
- package/text-anchor/index.js +5 -5
- package/text-area/index.js +1 -1
- package/text-field/index.js +1 -1
- package/tooltip/index.js +2 -2
- package/vivid.api.json +545 -1162
package/header/index.js
CHANGED
|
@@ -1,58 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
var css_248z = "/**\n * Do not edit directly\n * Generated on Wed, 14 Dec 2022 16:38:57 GMT\n */\n.base {\n z-index: 1;\n block-size: calc(calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2))) + calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2) - 16)));\n font: var(--vvd-typography-heading-4);\n inline-size: 100%;\n}\n.base .header-content {\n display: inline-flex;\n align-items: center;\n column-gap: 4px;\n}\n\n.container {\n display: flex;\n box-sizing: border-box;\n justify-content: space-between;\n block-size: inherit;\n color: var(--vvd-color-canvas-text);\n column-gap: 12px;\n padding-block: 8px;\n padding-inline: 16px;\n}\n.container[part~=vvd-theme-alternate] {\n background-color: var(--vvd-color-canvas);\n color: var(--vvd-color-canvas-text);\n color-scheme: var(--vvd-color-scheme);\n}\n\n.app-content {\n --vvd-header-block-size: calc(calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2))) + calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2) - 16)));\n}";
|
|
6
|
-
|
|
7
|
-
class Header extends FoundationElement {
|
|
8
|
-
constructor() {
|
|
9
|
-
super(...arguments);
|
|
10
|
-
this.elevationShadow = false;
|
|
11
|
-
this.alternate = false;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
__decorate([attr({
|
|
15
|
-
attribute: 'elevation-shadow',
|
|
16
|
-
mode: 'boolean'
|
|
17
|
-
}), __metadata("design:type", Object)], Header.prototype, "elevationShadow", void 0);
|
|
18
|
-
__decorate([attr({
|
|
19
|
-
mode: 'boolean'
|
|
20
|
-
}), __metadata("design:type", Object)], Header.prototype, "alternate", void 0);
|
|
21
|
-
|
|
22
|
-
let _ = t => t,
|
|
23
|
-
_t;
|
|
24
|
-
const getPartAlternate = ({
|
|
25
|
-
alternate
|
|
26
|
-
}) => classNames(['vvd-theme-alternate', Boolean(alternate)]);
|
|
27
|
-
const headerTemplate = context => {
|
|
28
|
-
const elevationTag = context.tagFor(Elevation);
|
|
29
|
-
return html(_t || (_t = _`
|
|
30
|
-
<${0} dp="4" ?no-shadow=${0}>
|
|
31
|
-
<header class="base" part="base">
|
|
32
|
-
<!-- a container is needed to distinguish the surface background color of the
|
|
33
|
-
element from its shadow when applying elevation with alternate -->
|
|
34
|
-
<div class="container" part="${0}">
|
|
35
|
-
<section class="header-content">
|
|
36
|
-
<slot></slot>
|
|
37
|
-
</section>
|
|
38
|
-
<section class="header-content">
|
|
39
|
-
<slot name="action-items"></slot>
|
|
40
|
-
</section>
|
|
41
|
-
</div>
|
|
42
|
-
</header>
|
|
43
|
-
</${0}>
|
|
44
|
-
<div class="app-content">
|
|
45
|
-
<slot name="app-content"></slot>
|
|
46
|
-
</div>
|
|
47
|
-
`), elevationTag, x => !x.elevationShadow, getPartAlternate, elevationTag);
|
|
48
|
-
};
|
|
49
|
-
|
|
50
|
-
const header = Header.compose({
|
|
51
|
-
baseName: 'header',
|
|
52
|
-
template: headerTemplate,
|
|
53
|
-
styles: css_248z
|
|
54
|
-
})();
|
|
55
|
-
const headerElements = [header, ...elevationElements];
|
|
56
|
-
const registerHeader = registerFactorial(headerElements);
|
|
1
|
+
import { r as registerHeader } from '../shared/definition20.js';
|
|
2
|
+
import '../shared/index.js';
|
|
3
|
+
import '../shared/definition15.js';
|
|
4
|
+
import '../shared/class-names.js';
|
|
57
5
|
|
|
58
6
|
registerHeader();
|
package/index.js
CHANGED
|
@@ -1,42 +1,43 @@
|
|
|
1
|
-
export { a as
|
|
2
|
-
export { a as
|
|
3
|
-
export { a as
|
|
4
|
-
export { a as
|
|
5
|
-
export { b as
|
|
6
|
-
export { b as
|
|
7
|
-
export { b as
|
|
8
|
-
export { b as
|
|
9
|
-
export { a as
|
|
10
|
-
export { c as
|
|
11
|
-
export { c as
|
|
12
|
-
export { c as
|
|
13
|
-
export { c as
|
|
14
|
-
export { a as
|
|
15
|
-
export { d as
|
|
16
|
-
export { a as
|
|
17
|
-
export { f as
|
|
18
|
-
export {
|
|
19
|
-
export {
|
|
20
|
-
export { l as
|
|
21
|
-
export {
|
|
22
|
-
export {
|
|
23
|
-
export {
|
|
24
|
-
export {
|
|
25
|
-
export { n as
|
|
26
|
-
export { n as
|
|
27
|
-
export { n as
|
|
28
|
-
export {
|
|
29
|
-
export {
|
|
30
|
-
export { p as
|
|
31
|
-
export {
|
|
32
|
-
export { a as
|
|
33
|
-
export {
|
|
34
|
-
export { r as
|
|
35
|
-
export { r as
|
|
36
|
-
export { r as
|
|
37
|
-
export { r as
|
|
38
|
-
export { r as
|
|
39
|
-
export { r as
|
|
1
|
+
export { a as accordionDefinition, b as accordionRegistries, r as registerAccordion } from './shared/definition.js';
|
|
2
|
+
export { a as accordionItemDefinition, b as accordionItemRegistries, r as registerAccordionItem } from './shared/definition2.js';
|
|
3
|
+
export { a as actionGroupDefinition, b as actionGroupRegistries, r as registerActionGroup } from './shared/definition5.js';
|
|
4
|
+
export { a as avatarDefinition, b as avatarRegistries, r as registerAvatar } from './shared/definition6.js';
|
|
5
|
+
export { b as badgeDefinition, r as registerBadge } from './shared/definition7.js';
|
|
6
|
+
export { b as bannerDefinition, a as bannerRegistries, r as registerBanner } from './shared/definition8.js';
|
|
7
|
+
export { b as breadcrumbDefinition, a as breadcrumbRegistries, r as registerBreadcrumb } from './shared/definition10.js';
|
|
8
|
+
export { b as breadcrumbItemDefinition, a as breadcrumbItemRegistries, r as registerBreadcrumbItem } from './shared/definition11.js';
|
|
9
|
+
export { a as buttonDefinition, b as buttonRegistries, r as registerButton } from './shared/definition9.js';
|
|
10
|
+
export { c as calendarDefinition, a as calendarRegistries, r as registerCalendar } from './shared/definition12.js';
|
|
11
|
+
export { c as calendarEventDefinition, a as calendarEventRegistries, r as registerCalendarEvent } from './shared/definition13.js';
|
|
12
|
+
export { c as cardDefinition, a as cardRegistries, r as registerCard } from './shared/definition14.js';
|
|
13
|
+
export { c as checkboxDefinition, a as checkboxRegistries, r as registerCheckbox } from './shared/definition16.js';
|
|
14
|
+
export { a as elevationDefinition, e as elevationRegistries, r as registerElevation } from './shared/definition15.js';
|
|
15
|
+
export { d as dialogDefinition, a as dialogRegistries, r as registerDialog } from './shared/definition17.js';
|
|
16
|
+
export { a as dividerDefinition, d as dividerRegistries, r as registerDivider } from './shared/definition18.js';
|
|
17
|
+
export { f as fabDefinition, a as fabRegistries, r as registerFab } from './shared/definition19.js';
|
|
18
|
+
export { h as headerDefinition, a as headerRegistries, r as registerHeader } from './shared/definition20.js';
|
|
19
|
+
export { a as iconDefinition, i as iconRegistries, r as registerIcon } from './shared/definition3.js';
|
|
20
|
+
export { l as layoutDefinition, a as layoutRegistries, r as registerLayout } from './shared/definition21.js';
|
|
21
|
+
export { l as listboxDefinition, a as listboxRegistries, r as registerListbox } from './shared/definition22.js';
|
|
22
|
+
export { a as listboxOptionDefinition, l as listboxOptionRegistries, r as registerOption } from './shared/definition23.js';
|
|
23
|
+
export { m as menuDefinition, a as menuRegistries, r as registerMenu } from './shared/definition24.js';
|
|
24
|
+
export { c as menuItemDefinition, m as menuItemRegistries, b as registerMenuItem } from './shared/definition26.js';
|
|
25
|
+
export { n as navDefinition, a as navRegistries, r as registerNav } from './shared/definition27.js';
|
|
26
|
+
export { n as navDisclosureDefinition, a as navDisclosureRegistries, r as registerNavDisclosure } from './shared/definition28.js';
|
|
27
|
+
export { n as navItemDefinition, a as navItemRegistries, r as registerNavItem } from './shared/definition29.js';
|
|
28
|
+
export { n as noteDefinition, a as noteRegistries, r as registerNote } from './shared/definition30.js';
|
|
29
|
+
export { a as popupDefinition, p as popupRegistries, r as registerPopup } from './shared/definition25.js';
|
|
30
|
+
export { p as progressDefinition, a as progressRegistries, r as registerProgress } from './shared/definition31.js';
|
|
31
|
+
export { p as progressRingDefinition, a as progressRingRegistries, r as registerProgressRing } from './shared/definition32.js';
|
|
32
|
+
export { a as radioDefinition, b as radioRegistries, r as registerRadio } from './shared/definition33.js';
|
|
33
|
+
export { a as radioGroupDefinition, b as radioGroupRegistries, r as registerRadioGroup } from './shared/definition34.js';
|
|
34
|
+
export { r as registerSideDrawer, s as sideDrawerDefinition, a as sideDrawerRegistries } from './shared/definition35.js';
|
|
35
|
+
export { r as registerSlider, s as sliderDefinition, a as sliderRegistries } from './shared/definition36.js';
|
|
36
|
+
export { r as registerSwitch, s as switchDefinition, a as switchRegistries } from './shared/definition37.js';
|
|
37
|
+
export { r as registerTextField, t as textFieldDefinition, a as textFieldRegistries } from './shared/definition39.js';
|
|
38
|
+
export { r as registerTextArea, t as textAreaDefinition, a as textAreaRegistries } from './shared/definition38.js';
|
|
39
|
+
export { r as registerTooltip, t as tooltipDefinition, a as tooltipRegistries } from './shared/definition40.js';
|
|
40
|
+
export { a7 as designSystem, r as registerFactory } from './shared/index.js';
|
|
40
41
|
import './shared/class-names.js';
|
|
41
42
|
import './shared/definition4.js';
|
|
42
43
|
import './shared/focus.js';
|
package/layout/index.js
CHANGED
|
@@ -1,3 +1 @@
|
|
|
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
1
|
export declare const registerAccordion: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1 @@
|
|
|
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
1
|
export declare const registerAccordionItem: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1 @@
|
|
|
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
1
|
export declare const registerActionGroup: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1 @@
|
|
|
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
1
|
export declare const registerAvatar: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const badgeDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerBadge: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1 @@
|
|
|
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
1
|
export declare const registerBanner: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1 @@
|
|
|
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
1
|
export declare const registerBreadcrumb: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1 @@
|
|
|
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
1
|
export declare const registerBreadcrumbItem: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1 @@
|
|
|
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
1
|
export declare const registerButton: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1 @@
|
|
|
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
1
|
export declare const registerCalendar: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1 @@
|
|
|
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
1
|
export declare const registerCalendarEvent: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/card/definition.d.ts
CHANGED
|
@@ -1,3 +1 @@
|
|
|
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
1
|
export declare const registerCard: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1 @@
|
|
|
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
1
|
export declare const registerCheckbox: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/components.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export * from './elevation/definition';
|
|
|
15
15
|
export * from './dialog/definition';
|
|
16
16
|
export * from './divider/definition';
|
|
17
17
|
export * from './fab/definition';
|
|
18
|
+
export * from './header/definition';
|
|
18
19
|
export * from './icon/definition';
|
|
19
20
|
export * from './layout/definition';
|
|
20
21
|
export * from './listbox/definition';
|
|
@@ -1,3 +1 @@
|
|
|
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
1
|
export declare const registerDialog: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1 @@
|
|
|
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
1
|
export declare const registerDivider: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1 @@
|
|
|
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
1
|
export declare const registerElevation: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/fab/definition.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const fabDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerFab: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const focusDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerFocus: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const headerDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerHeader: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/icon/definition.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const iconDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerIcon: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const layoutDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerLayout: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const listboxDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerListbox: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/menu/definition.d.ts
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import { Menu } from './menu';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const menuDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
3
3
|
baseName: string;
|
|
4
4
|
template: any;
|
|
5
5
|
styles: import("@microsoft/fast-element").ComposableStyles;
|
|
6
|
-
}
|
|
6
|
+
}> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
7
|
+
baseName: string;
|
|
8
|
+
template: any;
|
|
9
|
+
styles: import("@microsoft/fast-element").ComposableStyles;
|
|
10
|
+
}, typeof Menu>;
|
|
7
11
|
export declare const registerMenu: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { MenuItemOptions } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const menuItemDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<MenuItemOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<MenuItemOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerMenuItem: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/nav/definition.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const navDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerNav: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const navDisclosureDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerNavDisclosure: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const navItemDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerNavItem: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/lib/note/definition.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const noteDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerNote: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const numberFieldDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
|
+
export declare const numberFieldRegistries: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
3
4
|
export declare const registerNumberField: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const listboxOptionDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerOption: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const popupElements: import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>[];
|
|
2
|
+
export declare const popupDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
4
3
|
export declare const registerPopup: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const progressDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerProgress: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const progressRingDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerProgressRing: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { RadioOptions } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const radioDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<RadioOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<RadioOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerRadio: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import { RadioGroup } from './radio-group';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const radioGroupDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
3
3
|
baseName: string;
|
|
4
4
|
template: any;
|
|
5
5
|
styles: import("@microsoft/fast-element").ComposableStyles;
|
|
6
|
-
}
|
|
6
|
+
}> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
7
|
+
baseName: string;
|
|
8
|
+
template: any;
|
|
9
|
+
styles: import("@microsoft/fast-element").ComposableStyles;
|
|
10
|
+
}, typeof RadioGroup>;
|
|
7
11
|
export declare const registerRadioGroup: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const sideDrawerDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerSideDrawer: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { SliderOptions } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const sliderDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<SliderOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<SliderOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerSlider: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const switchDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerSwitch: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const textAnchorDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerTextAnchor: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const textAreaDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerTextArea: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const textFieldDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerTextField: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const tooltipDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
3
|
export declare const registerTooltip: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
package/listbox/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { r as registerListbox } from '../shared/
|
|
1
|
+
import { r as registerListbox } from '../shared/definition22.js';
|
|
2
2
|
import '../shared/index.js';
|
|
3
3
|
import '../shared/definition4.js';
|
|
4
4
|
import '../shared/focus.js';
|
|
5
|
-
import '../shared/
|
|
5
|
+
import '../shared/definition23.js';
|
|
6
6
|
import '../shared/definition3.js';
|
|
7
7
|
import '../shared/icon.js';
|
|
8
8
|
import '../shared/to-string.js';
|
package/menu/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { r as registerMenu } from '../shared/
|
|
1
|
+
import { r as registerMenu } from '../shared/definition24.js';
|
|
2
2
|
import '../shared/index.js';
|
|
3
|
-
import '../shared/
|
|
3
|
+
import '../shared/definition25.js';
|
|
4
4
|
import '../shared/definition9.js';
|
|
5
5
|
import '../shared/definition3.js';
|
|
6
6
|
import '../shared/icon.js';
|
|
@@ -22,7 +22,7 @@ import '../shared/ref.js';
|
|
|
22
22
|
import '../shared/focus2.js';
|
|
23
23
|
import '../shared/definition15.js';
|
|
24
24
|
import '../shared/es.object.assign.js';
|
|
25
|
-
import '../shared/
|
|
25
|
+
import '../shared/definition26.js';
|
|
26
26
|
import '../shared/direction.js';
|
|
27
27
|
import '../shared/dom.js';
|
|
28
28
|
import '../shared/slotted.js';
|
package/menu-item/index.js
CHANGED
package/nav/index.js
CHANGED
package/nav-disclosure/index.js
CHANGED
package/nav-item/index.js
CHANGED
package/note/index.js
CHANGED