@vonage/vivid 2.30.0 → 3.0.0-next.12
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 +7 -0
- package/accordion/index.js +61 -0
- package/accordion-item/index.js +120 -0
- package/badge/index.js +57 -0
- package/banner/index.js +214 -0
- package/breadcrumb/index.js +100 -0
- package/breadcrumb-item/index.js +53 -0
- package/button/index.js +754 -0
- package/calendar/index.js +1522 -0
- package/elevation/index.js +31 -0
- package/focus/index.js +3 -0
- package/icon/index.js +38 -0
- package/index.d.ts +2 -0
- package/index.js +33 -63
- package/layout/index.js +53 -0
- package/lib/accordion/accordion.d.ts +9 -0
- package/lib/accordion/accordion.template.d.ts +4 -0
- package/lib/accordion/index.d.ts +2 -0
- package/lib/accordion-item/accordion-item.d.ts +13 -0
- package/lib/accordion-item/accordion-item.template.d.ts +4 -0
- package/lib/accordion-item/index.d.ts +3 -0
- package/lib/badge/badge.d.ts +17 -0
- package/lib/badge/badge.template.d.ts +4 -0
- package/lib/badge/index.d.ts +3 -0
- package/lib/banner/banner.d.ts +20 -0
- package/lib/banner/banner.template.d.ts +6 -0
- package/lib/banner/index.d.ts +2 -0
- package/lib/breadcrumb/breadcrumb.d.ts +3 -0
- package/lib/breadcrumb/index.d.ts +2 -0
- package/lib/breadcrumb-item/breadcrumb-item.d.ts +5 -0
- package/lib/breadcrumb-item/breadcrumb-item.template.d.ts +4 -0
- package/lib/breadcrumb-item/index.d.ts +3 -0
- package/lib/button/button.d.ts +17 -0
- package/lib/button/button.template.d.ts +4 -0
- package/lib/button/index.d.ts +21 -0
- package/lib/calendar/calendar.d.ts +11 -0
- package/lib/calendar/calendar.template.d.ts +4 -0
- package/lib/calendar/helpers/calendar.date-functions.d.ts +2 -0
- package/lib/calendar/helpers/calendar.event-context.d.ts +6 -0
- package/lib/calendar/helpers/calendar.keyboard-interactions.d.ts +9 -0
- package/lib/calendar/index.d.ts +3 -0
- package/lib/components.d.ts +16 -0
- package/lib/elevation/elevation.d.ts +4 -0
- package/lib/elevation/elevation.template.d.ts +4 -0
- package/lib/elevation/index.d.ts +2 -0
- package/lib/enums.d.ts +46 -0
- package/lib/focus/focus.d.ts +3 -0
- package/lib/focus/focus.template.d.ts +4 -0
- package/lib/focus/index.d.ts +2 -0
- package/lib/icon/icon.d.ts +11 -0
- package/lib/icon/icon.placeholder.d.ts +1 -0
- package/lib/icon/icon.template.d.ts +4 -0
- package/lib/icon/index.d.ts +2 -0
- package/lib/layout/index.d.ts +2 -0
- package/lib/layout/layout.d.ts +16 -0
- package/lib/layout/layout.template.d.ts +4 -0
- package/lib/popup/index.d.ts +4 -0
- package/lib/popup/popup.d.ts +17 -0
- package/lib/popup/popup.template.d.ts +4 -0
- package/lib/progress/index.d.ts +2 -0
- package/lib/progress/progress.d.ts +9 -0
- package/lib/progress/progress.template.d.ts +5 -0
- package/lib/progress-ring/index.d.ts +2 -0
- package/lib/progress-ring/progress-ring.d.ts +6 -0
- package/lib/progress-ring/progress-ring.template.d.ts +4 -0
- package/lib/side-drawer/index.d.ts +2 -0
- package/lib/side-drawer/side-drawer.d.ts +8 -0
- package/lib/side-drawer/side-drawer.template.d.ts +4 -0
- package/lib/sidenav-item/index.d.ts +3 -0
- package/lib/sidenav-item/sidenav-item.d.ts +6 -0
- package/lib/sidenav-item/sidenav-item.template.d.ts +4 -0
- package/lib/text/index.d.ts +2 -0
- package/lib/text/text.d.ts +10 -0
- package/lib/text/text.template.d.ts +4 -0
- package/lib/text-anchor/index.d.ts +2 -0
- package/lib/text-anchor/text-anchor.d.ts +7 -0
- package/lib/text-anchor/text-anchor.template.d.ts +4 -0
- package/lib/tooltip/index.d.ts +3 -0
- package/lib/tooltip/tooltip.d.ts +8 -0
- package/lib/tooltip/tooltip.template.d.ts +4 -0
- package/package.json +13 -317
- package/popup/index.js +2066 -0
- package/progress/index.js +99 -0
- package/progress-ring/index.js +76 -0
- package/shared/_has.js +58 -0
- package/shared/affix.js +29 -0
- package/shared/anchor.js +78 -0
- package/shared/apply-mixins.js +22 -0
- package/shared/aria-global.js +156 -0
- package/shared/base-progress.js +65 -0
- package/shared/breadcrumb-item.js +25 -0
- package/shared/class-names.js +15 -0
- package/shared/design-system/index.d.ts +3 -0
- package/shared/es.object.assign.js +69 -0
- package/shared/icon.js +1388 -0
- package/shared/index.js +4998 -0
- package/shared/index2.js +21 -0
- package/shared/object-set-prototype-of.js +1009 -0
- package/shared/patterns/affix.d.ts +9 -0
- package/shared/patterns/index.d.ts +1 -0
- package/shared/slotted.js +119 -0
- package/shared/style-inject.es.js +28 -0
- package/shared/text-anchor.js +12 -0
- package/shared/text-anchor.template.js +54 -0
- package/shared/web.dom-collections.iterator.js +473 -0
- package/shared/when.js +15 -0
- package/side-drawer/index.js +82 -0
- package/sidenav-item/index.js +39 -0
- package/styles/fonts/spezia.css +23 -0
- package/styles/themes/dark.css +205 -0
- package/styles/themes/light.css +205 -0
- package/text/index.js +46 -0
- package/text-anchor/index.js +20 -0
- package/tooltip/index.js +63 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { FoundationElement } from '@microsoft/fast-foundation';
|
|
2
|
+
import type { Size } from '../enums.js';
|
|
3
|
+
export declare enum AUTO_SIZING {
|
|
4
|
+
Fit = "fit",
|
|
5
|
+
Fill = "fill"
|
|
6
|
+
}
|
|
7
|
+
declare type Gutters = Extract<Size, Size.BaseSmall | Size.Base | Size.BaseLarge>;
|
|
8
|
+
declare type ColumnSpacing = Extract<Size, Size.BaseSmall | Size.Base | Size.BaseLarge>;
|
|
9
|
+
declare type ColumnBasis = Extract<Size, Size.BaseSmall | Size.Base | Size.BaseLarge> | 'block';
|
|
10
|
+
export declare class Layout extends FoundationElement {
|
|
11
|
+
gutters?: Gutters;
|
|
12
|
+
columnBasis?: ColumnBasis;
|
|
13
|
+
columnSpacing?: ColumnSpacing;
|
|
14
|
+
autoSizing?: AUTO_SIZING;
|
|
15
|
+
}
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ViewTemplate } from '@microsoft/fast-element';
|
|
2
|
+
import type { ElementDefinitionContext, FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
3
|
+
import type { Layout } from './layout';
|
|
4
|
+
export declare const layoutTemplate: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ViewTemplate<Layout>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import '../elevation';
|
|
2
|
+
import '../button';
|
|
3
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
4
|
+
export declare const VIVIDPopup: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { FoundationElement } from '@microsoft/fast-foundation';
|
|
2
|
+
import type { Placement } from '@floating-ui/dom';
|
|
3
|
+
export declare class Popup extends FoundationElement {
|
|
4
|
+
#private;
|
|
5
|
+
popupEl: HTMLElement;
|
|
6
|
+
arrowEl: HTMLElement;
|
|
7
|
+
open: boolean;
|
|
8
|
+
dismissible: boolean;
|
|
9
|
+
arrow: boolean;
|
|
10
|
+
alternate: boolean;
|
|
11
|
+
corner?: Placement;
|
|
12
|
+
anchor: string;
|
|
13
|
+
constructor();
|
|
14
|
+
disconnectedCallback(): void;
|
|
15
|
+
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
16
|
+
updatePosition(): Promise<void>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ViewTemplate } from '@microsoft/fast-element';
|
|
2
|
+
import type { ElementDefinitionContext, FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
3
|
+
import type { Popup } from './popup';
|
|
4
|
+
export declare const popupTemplate: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ViewTemplate<Popup>;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const vividProgress: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseProgress } from '@microsoft/fast-foundation';
|
|
2
|
+
import type { Connotation, ConnotationDecorative, Shape } from '../enums';
|
|
3
|
+
export declare type ProgressConnotation = Connotation.Primary | Connotation.Success | Connotation.Alert | Connotation.CTA | ConnotationDecorative.Pacific;
|
|
4
|
+
export declare type ProgressShape = Shape.Rounded | Shape.Sharp;
|
|
5
|
+
export declare class Progress extends BaseProgress {
|
|
6
|
+
shape?: ProgressShape;
|
|
7
|
+
connotation?: ProgressConnotation;
|
|
8
|
+
reverse: boolean;
|
|
9
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { ViewTemplate } from '@microsoft/fast-element';
|
|
2
|
+
import type { ElementDefinitionContext } from '@microsoft/fast-foundation';
|
|
3
|
+
import type { ProgressOptions } from '@microsoft/fast-foundation';
|
|
4
|
+
import type { Progress } from './progress';
|
|
5
|
+
export declare const ProgressTemplate: (context: ElementDefinitionContext, definition: ProgressOptions) => ViewTemplate<Progress>;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const vividProgressRing: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { BaseProgress } from '@microsoft/fast-foundation';
|
|
2
|
+
import type { Connotation } from '../enums';
|
|
3
|
+
export declare type ProgressRingConnotation = Connotation.Primary | Connotation.Success | Connotation.Alert | Connotation.CTA;
|
|
4
|
+
export declare class ProgressRing extends BaseProgress {
|
|
5
|
+
connotation?: ProgressRingConnotation;
|
|
6
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ViewTemplate } from '@microsoft/fast-element';
|
|
2
|
+
import type { ElementDefinitionContext, FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
3
|
+
import type { ProgressRing } from './progress-ring';
|
|
4
|
+
export declare const ProgressRingTemplate: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ViewTemplate<ProgressRing>;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const VIVIDSideDrawer: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ViewTemplate } from '@microsoft/fast-element';
|
|
2
|
+
import type { FoundationElementTemplate } from '@microsoft/fast-foundation';
|
|
3
|
+
import type { SideDrawer } from './side-drawer';
|
|
4
|
+
export declare const sideDrawerTemplate: FoundationElementTemplate<ViewTemplate<SideDrawer>>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import '../icon';
|
|
2
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
3
|
+
export declare const vividSidenavItem: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ViewTemplate } from '@microsoft/fast-element';
|
|
2
|
+
import type { ElementDefinitionContext, FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
3
|
+
import type { SidenavItem } from './sidenav-item';
|
|
4
|
+
export declare const SidenavItemTemplate: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ViewTemplate<SidenavItem>;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const vividText: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FoundationElement } from '@microsoft/fast-foundation';
|
|
2
|
+
import type { Connotation } from '../enums.js';
|
|
3
|
+
import type { VVDFontFace } from '../../../../../node_modules/@vonage/vivid-tokens/dist/types/typography/font-faces';
|
|
4
|
+
declare type TextConnotation = Extract<Connotation, Connotation.Primary | Connotation.CTA | Connotation.Success | Connotation.Alert | Connotation.Announcement | Connotation.Info>;
|
|
5
|
+
export declare class Text extends FoundationElement {
|
|
6
|
+
connotation?: TextConnotation;
|
|
7
|
+
fontFace?: VVDFontFace;
|
|
8
|
+
tight: boolean;
|
|
9
|
+
}
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ViewTemplate } from '@microsoft/fast-element';
|
|
2
|
+
import type { ElementDefinitionContext, FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
3
|
+
import type { Text } from './text';
|
|
4
|
+
export declare const TextTemplate: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ViewTemplate<Text>;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const vividTextAnchor: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ViewTemplate } from '@microsoft/fast-element';
|
|
2
|
+
import type { ElementDefinitionContext, FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
3
|
+
import type { TextAnchor } from './text-anchor';
|
|
4
|
+
export declare const textAnchorTemplate: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ViewTemplate<TextAnchor>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import '../popup';
|
|
2
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
3
|
+
export declare const vividTooltip: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ViewTemplate } from '@microsoft/fast-element';
|
|
2
|
+
import type { ElementDefinitionContext, FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
3
|
+
import type { Tooltip } from './tooltip';
|
|
4
|
+
export declare const TooltipTemplate: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ViewTemplate<Tooltip>;
|
package/package.json
CHANGED
|
@@ -1,323 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vonage/vivid",
|
|
3
|
-
"version": "
|
|
4
|
-
"
|
|
3
|
+
"version": "3.0.0-next.12",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"module": "./index.esm.js",
|
|
5
6
|
"main": "index.js",
|
|
6
|
-
"
|
|
7
|
-
"
|
|
7
|
+
"exports": {
|
|
8
|
+
"import": "./index.js"
|
|
8
9
|
},
|
|
9
|
-
"
|
|
10
|
-
"keywords": [
|
|
11
|
-
"Vivid",
|
|
12
|
-
"Components",
|
|
13
|
-
"All"
|
|
14
|
-
],
|
|
15
|
-
"license": "ISC",
|
|
10
|
+
"typings": "./index.d.ts",
|
|
16
11
|
"dependencies": {
|
|
17
|
-
"@
|
|
18
|
-
"@
|
|
19
|
-
"@
|
|
20
|
-
"
|
|
21
|
-
"@
|
|
22
|
-
"@vonage/vwc-audio": "2.30.0",
|
|
23
|
-
"@vonage/vwc-button-toggle-group": "2.30.0",
|
|
24
|
-
"@vonage/vwc-card": "2.30.0",
|
|
25
|
-
"@vonage/vwc-checkbox": "2.30.0",
|
|
26
|
-
"@vonage/vwc-circular-progress": "2.30.0",
|
|
27
|
-
"@vonage/vwc-datepicker": "2.30.0",
|
|
28
|
-
"@vonage/vwc-dialog": "2.30.0",
|
|
29
|
-
"@vonage/vwc-dropdown": "2.30.0",
|
|
30
|
-
"@vonage/vwc-elevation": "2.30.0",
|
|
31
|
-
"@vonage/vwc-fab": "2.30.0",
|
|
32
|
-
"@vonage/vwc-file-picker": "2.30.0",
|
|
33
|
-
"@vonage/vwc-formfield": "2.30.0",
|
|
34
|
-
"@vonage/vwc-helper-message": "2.30.0",
|
|
35
|
-
"@vonage/vwc-icon-button": "2.30.0",
|
|
36
|
-
"@vonage/vwc-icon": "2.30.0",
|
|
37
|
-
"@vonage/vwc-keypad": "2.30.0",
|
|
38
|
-
"@vonage/vwc-layout": "2.30.0",
|
|
39
|
-
"@vonage/vwc-linear-progress": "2.30.0",
|
|
40
|
-
"@vonage/vwc-menu": "2.30.0",
|
|
41
|
-
"@vonage/vwc-note": "2.30.0",
|
|
42
|
-
"@vonage/vwc-pagination": "2.30.0",
|
|
43
|
-
"@vonage/vwc-radio": "2.30.0",
|
|
44
|
-
"@vonage/vwc-slider": "2.30.0",
|
|
45
|
-
"@vonage/vwc-snackbar": "2.30.0",
|
|
46
|
-
"@vonage/vwc-surface": "2.30.0",
|
|
47
|
-
"@vonage/vwc-switch": "2.30.0",
|
|
48
|
-
"@vonage/vwc-textarea": "2.30.0",
|
|
49
|
-
"@vonage/vwc-theme-switch": "2.30.0",
|
|
50
|
-
"@vonage/vwc-top-app-bar": "2.30.0",
|
|
51
|
-
"@vonage/vwc-accordion": "2.30.0",
|
|
52
|
-
"@vonage/vwc-badge": "2.30.0",
|
|
53
|
-
"@vonage/vwc-drawer": "2.30.0",
|
|
54
|
-
"@vonage/vwc-empty-state": "2.30.0",
|
|
55
|
-
"@vonage/vwc-popup": "2.30.0",
|
|
56
|
-
"@vonage/vwc-select": "2.30.0",
|
|
57
|
-
"@vonage/vwc-side-drawer": "2.30.0",
|
|
58
|
-
"@vonage/vwc-tags": "2.30.0",
|
|
59
|
-
"@vonage/vwc-text": "2.30.0",
|
|
60
|
-
"@vonage/vwc-tooltip": "2.30.0",
|
|
61
|
-
"@vonage/vwc-banner": "2.30.0",
|
|
62
|
-
"@vonage/vwc-breadcrumb-item": "2.30.0",
|
|
63
|
-
"@vonage/vwc-button": "2.30.0",
|
|
64
|
-
"@vonage/vwc-expansion-panel": "2.30.0",
|
|
65
|
-
"@vonage/vwc-media-controller": "2.30.0",
|
|
66
|
-
"@vonage/vwc-carousel": "2.30.0",
|
|
67
|
-
"@vonage/vwc-tab-bar": "2.30.0",
|
|
68
|
-
"@vonage/vwc-data-grid": "2.30.0",
|
|
69
|
-
"@vonage/vwc-textfield": "2.30.0",
|
|
70
|
-
"@vonage/vwc-calendar": "2.30.0",
|
|
71
|
-
"@vonage/vwc-list": "2.30.0",
|
|
72
|
-
"@vonage/vvd-core": "2.30.0",
|
|
73
|
-
"@vonage/vvd-context": "2.30.0"
|
|
12
|
+
"@microsoft/fast-element": "^1.9.0",
|
|
13
|
+
"@microsoft/fast-foundation": "^2.41.1",
|
|
14
|
+
"@microsoft/fast-web-utilities": "^5.2.0",
|
|
15
|
+
"ramda": "^0.27.2",
|
|
16
|
+
"@floating-ui/dom": "^0.4.0"
|
|
74
17
|
},
|
|
75
|
-
"
|
|
76
|
-
|
|
77
|
-
{
|
|
78
|
-
"component_name": "vwc-icon-button-toggle",
|
|
79
|
-
"export_name": "VWCIconButtonToggle"
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
"component_name": "vwc-notched-outline",
|
|
83
|
-
"export_name": "VWCNotchedOutline"
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"component_name": "vwc-scheme-select",
|
|
87
|
-
"export_name": "VWCSchemeSelect"
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
"component_name": "vwc-top-app-bar-fixed",
|
|
91
|
-
"export_name": "VWCTopAppBarFixed"
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
"component_name": "vwc-audio",
|
|
95
|
-
"export_name": "VWCAudio"
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"component_name": "vwc-button-toggle-group",
|
|
99
|
-
"export_name": "VWCButtonToggleGroup"
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
"component_name": "vwc-card",
|
|
103
|
-
"export_name": "VWCCard"
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
"component_name": "vwc-checkbox",
|
|
107
|
-
"export_name": "VWCCheckbox"
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
"component_name": "vwc-circular-progress",
|
|
111
|
-
"export_name": "VWCCircularProgress"
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
"component_name": "vwc-datepicker",
|
|
115
|
-
"export_name": "VWCDatepicker"
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
"component_name": "vwc-dialog",
|
|
119
|
-
"export_name": "VWCDialog"
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"component_name": "vwc-dropdown",
|
|
123
|
-
"export_name": "VWCDropdown"
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
"component_name": "vwc-elevation",
|
|
127
|
-
"export_name": "VWCElevation"
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
"component_name": "vwc-fab",
|
|
131
|
-
"export_name": "VWCFab"
|
|
132
|
-
},
|
|
133
|
-
{
|
|
134
|
-
"component_name": "vwc-file-picker",
|
|
135
|
-
"export_name": "VWCFilePicker"
|
|
136
|
-
},
|
|
137
|
-
{
|
|
138
|
-
"component_name": "vwc-formfield",
|
|
139
|
-
"export_name": "VWCFormfield"
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
"component_name": "vwc-helper-message",
|
|
143
|
-
"export_name": "VWCHelperMessage"
|
|
144
|
-
},
|
|
145
|
-
{
|
|
146
|
-
"component_name": "vwc-icon-button",
|
|
147
|
-
"export_name": "VWCIconButton"
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
"component_name": "vwc-icon",
|
|
151
|
-
"export_name": "VWCIcon"
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
"component_name": "vwc-keypad",
|
|
155
|
-
"export_name": "VWCKeypad"
|
|
156
|
-
},
|
|
157
|
-
{
|
|
158
|
-
"component_name": "vwc-layout",
|
|
159
|
-
"export_name": "VWCLayout"
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
"component_name": "vwc-linear-progress",
|
|
163
|
-
"export_name": "VWCLinearProgress"
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
"component_name": "vwc-menu",
|
|
167
|
-
"export_name": "VWCMenu"
|
|
168
|
-
},
|
|
169
|
-
{
|
|
170
|
-
"component_name": "vwc-note",
|
|
171
|
-
"export_name": "VWCNote"
|
|
172
|
-
},
|
|
173
|
-
{
|
|
174
|
-
"component_name": "vwc-pagination",
|
|
175
|
-
"export_name": "VWCPagination"
|
|
176
|
-
},
|
|
177
|
-
{
|
|
178
|
-
"component_name": "vwc-radio",
|
|
179
|
-
"export_name": "VWCRadio"
|
|
180
|
-
},
|
|
181
|
-
{
|
|
182
|
-
"component_name": "vwc-slider",
|
|
183
|
-
"export_name": "VWCSlider"
|
|
184
|
-
},
|
|
185
|
-
{
|
|
186
|
-
"component_name": "vwc-snackbar",
|
|
187
|
-
"export_name": "VWCSnackbar"
|
|
188
|
-
},
|
|
189
|
-
{
|
|
190
|
-
"component_name": "vwc-surface",
|
|
191
|
-
"export_name": "VWCSurface"
|
|
192
|
-
},
|
|
193
|
-
{
|
|
194
|
-
"component_name": "vwc-switch",
|
|
195
|
-
"export_name": "VWCSwitch"
|
|
196
|
-
},
|
|
197
|
-
{
|
|
198
|
-
"component_name": "vwc-textarea",
|
|
199
|
-
"export_name": "VWCTextarea"
|
|
200
|
-
},
|
|
201
|
-
{
|
|
202
|
-
"component_name": "vwc-theme-switch",
|
|
203
|
-
"export_name": "VWCThemeSwitch"
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
"component_name": "vwc-top-app-bar",
|
|
207
|
-
"export_name": "VWCTopAppBar"
|
|
208
|
-
},
|
|
209
|
-
{
|
|
210
|
-
"component_name": "vwc-accordion",
|
|
211
|
-
"export_name": "VWCAccordion"
|
|
212
|
-
},
|
|
213
|
-
{
|
|
214
|
-
"component_name": "vwc-badge",
|
|
215
|
-
"export_name": "VWCBadge"
|
|
216
|
-
},
|
|
217
|
-
{
|
|
218
|
-
"component_name": "vwc-drawer",
|
|
219
|
-
"export_name": "VWCDrawer"
|
|
220
|
-
},
|
|
221
|
-
{
|
|
222
|
-
"component_name": "vwc-empty-state",
|
|
223
|
-
"export_name": "VWCEmptyState"
|
|
224
|
-
},
|
|
225
|
-
{
|
|
226
|
-
"component_name": "vwc-popup",
|
|
227
|
-
"export_name": "VWCPopup"
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
"component_name": "vwc-select",
|
|
231
|
-
"export_name": "VWCSelect"
|
|
232
|
-
},
|
|
233
|
-
{
|
|
234
|
-
"component_name": "vwc-side-drawer",
|
|
235
|
-
"export_name": "VWCSideDrawer"
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
"component_name": "vwc-tag",
|
|
239
|
-
"export_name": "VWCTag"
|
|
240
|
-
},
|
|
241
|
-
{
|
|
242
|
-
"component_name": "vwc-text",
|
|
243
|
-
"export_name": "VWCText"
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
"component_name": "vwc-tooltip",
|
|
247
|
-
"export_name": "VWCTooltip"
|
|
248
|
-
},
|
|
249
|
-
{
|
|
250
|
-
"component_name": "vwc-banner",
|
|
251
|
-
"export_name": "VWCBanner"
|
|
252
|
-
},
|
|
253
|
-
{
|
|
254
|
-
"component_name": "vwc-button",
|
|
255
|
-
"export_name": "VWCButton"
|
|
256
|
-
},
|
|
257
|
-
{
|
|
258
|
-
"component_name": "vwc-expansion-panel",
|
|
259
|
-
"export_name": "VWCExpansionPanel"
|
|
260
|
-
},
|
|
261
|
-
{
|
|
262
|
-
"component_name": "vwc-media-controller",
|
|
263
|
-
"export_name": "VWCMediaController"
|
|
264
|
-
},
|
|
265
|
-
{
|
|
266
|
-
"component_name": "vwc-scrub-bar",
|
|
267
|
-
"export_name": "VWCScrubBar"
|
|
268
|
-
},
|
|
269
|
-
{
|
|
270
|
-
"component_name": "vwc-carousel-item",
|
|
271
|
-
"export_name": "VWCCarouselItem"
|
|
272
|
-
},
|
|
273
|
-
{
|
|
274
|
-
"component_name": "vwc-carousel",
|
|
275
|
-
"export_name": "VWCCarousel"
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
"component_name": "vwc-tab-bar",
|
|
279
|
-
"export_name": "VWCTabBar"
|
|
280
|
-
},
|
|
281
|
-
{
|
|
282
|
-
"component_name": "vwc-tab",
|
|
283
|
-
"export_name": "VWCTab"
|
|
284
|
-
},
|
|
285
|
-
{
|
|
286
|
-
"component_name": "vwc-data-grid",
|
|
287
|
-
"export_name": "VWCDataGrid"
|
|
288
|
-
},
|
|
289
|
-
{
|
|
290
|
-
"component_name": "vwc-textfield",
|
|
291
|
-
"export_name": "VWCTextfield"
|
|
292
|
-
},
|
|
293
|
-
{
|
|
294
|
-
"component_name": "vwc-calendar-event",
|
|
295
|
-
"export_name": "VWCCalendarEvent"
|
|
296
|
-
},
|
|
297
|
-
{
|
|
298
|
-
"component_name": "vwc-calendar",
|
|
299
|
-
"export_name": "VWCCalendar"
|
|
300
|
-
},
|
|
301
|
-
{
|
|
302
|
-
"component_name": "vwc-check-list-item",
|
|
303
|
-
"export_name": "VWCCheckListItem"
|
|
304
|
-
},
|
|
305
|
-
{
|
|
306
|
-
"component_name": "vwc-list-expansion-panel",
|
|
307
|
-
"export_name": "VWCListExpansionPanel"
|
|
308
|
-
},
|
|
309
|
-
{
|
|
310
|
-
"component_name": "vwc-list-item",
|
|
311
|
-
"export_name": "VWCListItem"
|
|
312
|
-
},
|
|
313
|
-
{
|
|
314
|
-
"component_name": "vwc-list",
|
|
315
|
-
"export_name": "VWCList"
|
|
316
|
-
},
|
|
317
|
-
{
|
|
318
|
-
"component_name": "vwc-radio-list-item",
|
|
319
|
-
"export_name": "VWCRadioListItem"
|
|
320
|
-
}
|
|
321
|
-
]
|
|
322
|
-
}
|
|
323
|
-
}
|
|
18
|
+
"peerDependencies": {}
|
|
19
|
+
}
|