@vonage/vivid 3.0.0-next.52 → 3.0.0-next.55
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 +3 -0
- package/accordion/index.js +1 -3
- package/accordion-item/index.js +1 -3
- package/action-group/index.js +1 -3
- package/avatar/index.js +51 -0
- package/badge/index.js +1 -3
- package/banner/index.js +1 -3
- package/breadcrumb/index.js +0 -2
- package/breadcrumb-item/index.js +1 -3
- package/button/index.js +1 -3
- package/calendar/index.js +1 -3
- package/calendar-event/index.js +1 -3
- package/card/index.js +1 -3
- package/checkbox/index.js +1 -3
- package/dialog/index.js +2 -5
- package/divider/index.js +1 -3
- package/elevation/index.js +0 -1
- package/fab/index.js +1 -3
- package/focus/index.js +1 -3
- package/header/index.js +1 -3
- package/icon/index.js +0 -2
- package/index.js +1 -1
- package/layout/index.js +0 -2
- package/lib/avatar/avatar.d.ts +14 -0
- package/lib/avatar/avatar.template.d.ts +4 -0
- package/lib/avatar/index.d.ts +3 -0
- package/lib/text-area/index.d.ts +3 -0
- package/lib/text-area/text-area.d.ts +9 -0
- package/lib/text-area/text-area.template.d.ts +4 -0
- package/menu/index.js +0 -2
- package/nav-disclosure/index.js +1 -3
- package/nav-item/index.js +1 -3
- package/note/index.js +1 -3
- package/package.json +4 -2
- package/popup/index.js +0 -1
- package/progress/index.js +1 -3
- package/progress-ring/index.js +1 -3
- package/shared/form-elements.js +294 -0
- package/shared/index2.js +0 -2
- package/shared/index3.js +1 -3
- package/shared/patterns/form-elements.d.ts +1 -1
- package/side-drawer/index.js +1 -3
- package/styles/themes/dark.css +2 -2
- package/styles/themes/light.css +2 -2
- package/styles/typography/desktop.css +29 -14
- package/text-area/index.js +298 -0
- package/text-field/index.js +6 -294
- package/tooltip/index.js +1 -3
- package/shared/style-inject.es.js +0 -28
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ViewTemplate } from '@microsoft/fast-element';
|
|
2
|
+
import type { ElementDefinitionContext, FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
3
|
+
import type { Avatar } from './avatar';
|
|
4
|
+
export declare const AvatarTemplate: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ViewTemplate<Avatar>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import '../icon';
|
|
2
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
3
|
+
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>>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import '../focus';
|
|
2
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
3
|
+
export declare const vividTextArea: (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 { TextArea as FoundationElement } from '@microsoft/fast-foundation';
|
|
2
|
+
import { FormElement } from '../../shared/patterns/form-elements';
|
|
3
|
+
declare type TextAreaWrap = 'hard' | 'soft' | 'off';
|
|
4
|
+
export declare class TextArea extends FoundationElement {
|
|
5
|
+
wrap?: TextAreaWrap;
|
|
6
|
+
}
|
|
7
|
+
export interface TextArea extends FormElement {
|
|
8
|
+
}
|
|
9
|
+
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 { TextArea } from './text-area';
|
|
4
|
+
export declare const TextAreaTemplate: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ViewTemplate<TextArea>;
|
package/menu/index.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { P as Popup } from '../shared/index3.js';
|
|
2
2
|
import { F as FoundationElement, D as DOM, _ as __decorate, a as attr, o as observable, b as __metadata, h as html, d as designSystem } from '../shared/index.js';
|
|
3
|
-
import { s as styleInject } from '../shared/style-inject.es.js';
|
|
4
3
|
import '../shared/web.dom-collections.iterator.js';
|
|
5
4
|
import { S as StartEnd } from '../shared/aria-global.js';
|
|
6
5
|
import { a as applyMixins } from '../shared/apply-mixins.js';
|
|
@@ -608,7 +607,6 @@ __decorate([
|
|
|
608
607
|
], Menu$1.prototype, "items", void 0);
|
|
609
608
|
|
|
610
609
|
var css_248z = ".base {\n padding-block: 8px;\n}";
|
|
611
|
-
styleInject(css_248z);
|
|
612
610
|
|
|
613
611
|
class Menu extends Menu$1 {
|
|
614
612
|
constructor() {
|
package/nav-disclosure/index.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import '../icon/index.js';
|
|
2
2
|
import '../focus/index.js';
|
|
3
3
|
import { F as FoundationElement, c as __classPrivateFieldGet, _ as __decorate, a as attr, b as __metadata, h as html, d as designSystem } from '../shared/index.js';
|
|
4
|
-
import { s as styleInject } from '../shared/style-inject.es.js';
|
|
5
4
|
import '../shared/web.dom-collections.iterator.js';
|
|
6
5
|
import { b as AffixIcon, a as affixIconTemplateFactory } from '../shared/affix.js';
|
|
7
6
|
import { a as applyMixins } from '../shared/apply-mixins.js';
|
|
@@ -17,8 +16,7 @@ import '../shared/class-names.js';
|
|
|
17
16
|
import '../shared/focus.js';
|
|
18
17
|
import '../shared/object-keys.js';
|
|
19
18
|
|
|
20
|
-
var css_248z = "/**\n * Do not edit directly\n * Generated on
|
|
21
|
-
styleInject(css_248z);
|
|
19
|
+
var css_248z = "/**\n * Do not edit directly\n * Generated on Fri, 09 Sep 2022 10:25:24 GMT\n */\n.control {\n position: relative;\n display: flex;\n box-sizing: border-box;\n align-items: center;\n background-color: var(--_appearance-color-fill);\n border-radius: 6px;\n box-shadow: inset 0 0 0 1px var(--_appearance-color-outline);\n color: var(--_appearance-color-text);\n cursor: pointer;\n font: var(--vvd-font-base);\n gap: 8px;\n hyphens: auto;\n inline-size: 100%;\n min-block-size: 40px;\n padding-inline: 8px;\n text-decoration: none;\n vertical-align: middle;\n word-break: break-word;\n}\n.control {\n --_appearance-color-text: var(--_connotation-color-primary);\n --_appearance-color-fill: transaprent;\n --_appearance-color-outline: transaprent;\n}\n.control:where(:hover, .hover):where(:not(:disabled, .disabled)) {\n --_appearance-color-text: var(--_connotation-color-primary);\n --_appearance-color-fill: var(--_connotation-color-faint);\n --_appearance-color-outline: transaprent;\n}\n.control:where(:active, .active):where(:not(:disabled, .disabled)) {\n --_appearance-color-text: var(--_connotation-color-primary);\n --_appearance-color-fill: var(--_connotation-color-soft);\n --_appearance-color-outline: transaprent;\n}\n.control:where(.selected, [aria-current]):where(:not(:disabled, .disabled)) {\n --_appearance-color-text: var(--_connotation-color-primary);\n --_appearance-color-fill: var(--_connotation-color-soft);\n --_appearance-color-outline: transaprent;\n}\n.control {\n --_connotation-color-primary: var(--vvd-color-canvas-text);\n --_connotation-color-faint: var(--vvd-color-neutral-50);\n --_connotation-color-soft: var(--vvd-color-neutral-100);\n}\n@supports selector(:focus-visible) {\n .control:focus {\n outline: none;\n }\n}\n@supports (user-select: none) {\n .control {\n user-select: none;\n }\n}\n.control .toggleIcon {\n margin-inline-start: auto;\n}\n\n.control:not(:focus-visible) .focus-indicator {\n display: none;\n}\n\n.icon {\n font-size: 20px;\n}\n\n.content {\n border-inline-start: 1px solid var(--vvd-color-neutral-200);\n margin-inline-start: 20px;\n padding-inline-start: 12px;\n}\n\ndetails > summary {\n list-style: none;\n}\n\ndetails > summary::-webkit-details-marker {\n display: none;\n}";
|
|
22
20
|
|
|
23
21
|
var _NavDisclosure_onToggle;
|
|
24
22
|
class NavDisclosure extends FoundationElement {
|
package/nav-item/index.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import '../icon/index.js';
|
|
2
2
|
import '../focus/index.js';
|
|
3
3
|
import { h as html, d as designSystem } from '../shared/index.js';
|
|
4
|
-
import { s as styleInject } from '../shared/style-inject.es.js';
|
|
5
4
|
import { b as AffixIcon } from '../shared/affix.js';
|
|
6
5
|
import { T as TextAnchor } from '../shared/text-anchor.js';
|
|
7
6
|
import { a as applyMixins } from '../shared/apply-mixins.js';
|
|
@@ -21,8 +20,7 @@ import '../shared/aria-global.js';
|
|
|
21
20
|
import '../shared/ref.js';
|
|
22
21
|
import '../shared/focus2.js';
|
|
23
22
|
|
|
24
|
-
var css_248z = "/**\n * Do not edit directly\n * Generated on
|
|
25
|
-
styleInject(css_248z);
|
|
23
|
+
var css_248z = "/**\n * Do not edit directly\n * Generated on Fri, 09 Sep 2022 10:25:24 GMT\n */\n.control {\n position: relative;\n display: inline-flex;\n box-sizing: border-box;\n align-items: center;\n background-color: var(--_appearance-color-fill);\n border-radius: 6px;\n box-shadow: inset 0 0 0 1px var(--_appearance-color-outline);\n color: var(--_appearance-color-text);\n font: var(--vvd-font-base);\n gap: 8px;\n hyphens: auto;\n inline-size: 100%;\n min-block-size: 40px;\n padding-block: 10px;\n padding-inline: 8px;\n text-decoration: none;\n vertical-align: middle;\n word-break: break-word;\n}\n.control {\n --_appearance-color-text: var(--_connotation-color-primary);\n --_appearance-color-fill: transaprent;\n --_appearance-color-outline: transaprent;\n}\n.control:where(:hover, .hover):where(:not(:disabled, .disabled)) {\n --_appearance-color-text: var(--_connotation-color-primary);\n --_appearance-color-fill: var(--_connotation-color-faint);\n --_appearance-color-outline: transaprent;\n}\n.control:where(:active, .active):where(:not(:disabled, .disabled)) {\n --_appearance-color-text: var(--_connotation-color-primary);\n --_appearance-color-fill: var(--_connotation-color-soft);\n --_appearance-color-outline: transaprent;\n}\n.control:where(.selected, [aria-current]):where(:not(:disabled, .disabled)) {\n --_appearance-color-text: var(--_connotation-color-primary);\n --_appearance-color-fill: var(--_connotation-color-soft);\n --_appearance-color-outline: transaprent;\n}\n.control {\n --_connotation-color-primary: var(--vvd-color-canvas-text);\n --_connotation-color-faint: var(--vvd-color-neutral-50);\n --_connotation-color-soft: var(--vvd-color-neutral-100);\n}\n@supports selector(:focus-visible) {\n .control:focus {\n outline: none;\n }\n}\n.control.icon-only {\n display: flex;\n block-size: 40px;\n inline-size: 40px;\n place-content: center;\n}\n\n.control:not(:focus-visible) .focus-indicator {\n display: none;\n}\n\n.icon {\n font-size: 20px;\n}";
|
|
26
24
|
|
|
27
25
|
class NavItem extends TextAnchor {}
|
|
28
26
|
applyMixins(NavItem, AffixIcon);
|
package/note/index.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { F as FoundationElement, _ as __decorate, a as attr, b as __metadata, h as html, d as designSystem } from '../shared/index.js';
|
|
2
|
-
import { s as styleInject } from '../shared/style-inject.es.js';
|
|
3
2
|
import { b as AffixIcon } from '../shared/affix.js';
|
|
4
3
|
import '../shared/focus.js';
|
|
5
4
|
import { a as applyMixins } from '../shared/apply-mixins.js';
|
|
@@ -15,8 +14,7 @@ import '../shared/to-string.js';
|
|
|
15
14
|
import '../shared/_has.js';
|
|
16
15
|
import '../shared/object-keys.js';
|
|
17
16
|
|
|
18
|
-
var css_248z = "/**\n * Do not edit directly\n * Generated on
|
|
19
|
-
styleInject(css_248z);
|
|
17
|
+
var css_248z = "/**\n * Do not edit directly\n * Generated on Fri, 09 Sep 2022 10:25:24 GMT\n */\n.base {\n display: flex;\n align-items: stretch;\n padding: 20px;\n border-left: 8px solid var(--_connotation-color-primary);\n background-color: var(--vvd-color-canvas);\n border-radius: 6px;\n box-shadow: inset 0 1px 0 0 var(--vvd-color-neutral-300), inset -1px 0 0 0 var(--vvd-color-neutral-300), inset 0 -1px 0 0 var(--vvd-color-neutral-300);\n color: var(--vvd-color-canvas-text);\n}\n.base.connotation-success {\n --_connotation-color-primary: var(--vvd-color-success-500);\n}\n.base.connotation-information {\n --_connotation-color-primary: var(--vvd-color-information-500);\n}\n.base.connotation-alert {\n --_connotation-color-primary: var(--vvd-color-alert-500);\n}\n.base.connotation-warning {\n --_connotation-color-primary: var(--vvd-color-warning-500);\n}\n.base:not(.connotation-success, .connotation-information, .connotation-alert, .connotation-warning) {\n --_connotation-color-primary: var(--vvd-color-announcement-500);\n}\n@supports (contain: content) {\n .base {\n contain: content;\n }\n}\n@supports not (contain: content) {\n .base {\n overflow: hidden;\n }\n}\n\n.icon {\n align-self: flex-start;\n font-size: 24px;\n margin-inline-end: 16px;\n}\n\n.text {\n display: flex;\n min-height: 24px;\n flex: 1;\n flex-direction: column;\n justify-content: center;\n gap: 4px;\n text-align: start;\n}\n.text .headline {\n font: var(--vvd-font-base-bold);\n}\n.text .message {\n font: var(--vvd-font-base);\n}";
|
|
20
18
|
|
|
21
19
|
class Note extends FoundationElement {}
|
|
22
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vonage/vivid",
|
|
3
|
-
"version": "3.0.0-next.
|
|
3
|
+
"version": "3.0.0-next.55",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"module": "./index.esm.js",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -43,7 +43,9 @@
|
|
|
43
43
|
"./checkbox": "./checkbox",
|
|
44
44
|
"./dialog": "./dialog",
|
|
45
45
|
"./divider": "./divider",
|
|
46
|
-
"./menu": "./menu"
|
|
46
|
+
"./menu": "./menu",
|
|
47
|
+
"./avatar": "./avatar",
|
|
48
|
+
"./text-area": "./text-area"
|
|
47
49
|
},
|
|
48
50
|
"typings": "./index.d.ts",
|
|
49
51
|
"dependencies": {
|
package/popup/index.js
CHANGED
|
@@ -2,7 +2,6 @@ import '../shared/index2.js';
|
|
|
2
2
|
import '../button/index.js';
|
|
3
3
|
import '../shared/index.js';
|
|
4
4
|
export { v as vividPopup } from '../shared/index3.js';
|
|
5
|
-
import '../shared/style-inject.es.js';
|
|
6
5
|
import '../shared/class-names.js';
|
|
7
6
|
import '../icon/index.js';
|
|
8
7
|
import '../shared/icon.js';
|
package/progress/index.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { _ as __decorate, a as attr, b as __metadata, h as html, d as designSystem } from '../shared/index.js';
|
|
2
|
-
import { s as styleInject } from '../shared/style-inject.es.js';
|
|
3
2
|
import '../shared/web.dom-collections.iterator.js';
|
|
4
3
|
import { c as classofRaw, _ as _export, f as functionUncurryThis } from '../shared/export.js';
|
|
5
4
|
import { B as BaseProgress } from '../shared/base-progress.js';
|
|
@@ -8,8 +7,7 @@ import { c as classNames } from '../shared/class-names.js';
|
|
|
8
7
|
import '../shared/object-keys.js';
|
|
9
8
|
import '../shared/iterators.js';
|
|
10
9
|
|
|
11
|
-
var css_248z = "/**\n * Do not edit directly\n * Generated on
|
|
12
|
-
styleInject(css_248z);
|
|
10
|
+
var css_248z = "/**\n * Do not edit directly\n * Generated on Fri, 09 Sep 2022 10:25:24 GMT\n */\n.base {\n height: 6px;\n align-items: center;\n margin: 0;\n outline: none;\n}\n.base:not(.connotation-pacific).connotation-cta {\n --_connotation-color-primary: var(--vvd-color-cta-500);\n}\n.base:not(.connotation-pacific).connotation-alert {\n --_connotation-color-primary: var(--vvd-color-alert-500);\n}\n.base:not(.connotation-pacific).connotation-success {\n --_connotation-color-primary: var(--vvd-color-success-500);\n}\n.base:not(.connotation-pacific):not(.connotation-cta, .connotation-alert, .connotation-success) {\n --_connotation-color-primary: var(--vvd-color-canvas-text);\n}\n.base.connotation-pacific {\n --_connotation-color-primary: linear-gradient(to right, var(--vvd-color-information-200), var(--vvd-color-cta-600));\n}\n\n.progress {\n position: relative;\n display: flex;\n overflow: hidden;\n align-items: center;\n background-color: var(--vvd-color-neutral-100);\n block-size: 100%;\n inline-size: 100%;\n /* Shape */\n}\n.base:not(.shape-sharp) .progress {\n border-radius: 3px;\n}\n\n.indeterminate {\n display: flex;\n background-color: var(--_connotation-color-primary);\n block-size: 100%;\n border-radius: inherit;\n inline-size: 100%;\n}\n\n.determinate {\n background-color: var(--_connotation-color-primary);\n block-size: 100%;\n border-radius: inherit;\n transition: all 0.2s ease-in-out;\n}\n.connotation-pacific .determinate {\n background-image: var(--_connotation-color-primary);\n}\n.reverse .determinate {\n position: absolute;\n right: 0;\n}\n.paused .determinate {\n background-color: var(--vvd-color-neutral-300);\n}\n\n.indicator-1 {\n animation: indeterminate-1 2s infinite;\n inline-size: 30%;\n}\n\n.indicator-2 {\n animation: indeterminate-2 2s infinite;\n inline-size: 60%;\n}\n\n.indicator-1,\n.indicator-2 {\n position: absolute;\n animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n background-color: var(--vvd-color-neutral-100);\n block-size: 100%;\n opacity: 0;\n}\n.connotation-pacific .indicator-1,\n.connotation-pacific .indicator-2 {\n background-image: var(--_connotation-color-primary);\n}\n.paused .indicator-1,\n.paused .indicator-2 {\n animation-play-state: paused;\n background-color: var(--_connotation-color-primary);\n}\n.reverse .indicator-1,\n.reverse .indicator-2 {\n animation-direction: reverse;\n}\n\n@keyframes indeterminate-1 {\n 0% {\n opacity: 1;\n transform: translateX(-100%);\n }\n 70% {\n opacity: 1;\n transform: translateX(300%);\n }\n 70.01% {\n opacity: 0;\n }\n 100% {\n opacity: 0;\n transform: translateX(300%);\n }\n}\n@keyframes indeterminate-2 {\n 0% {\n opacity: 0;\n transform: translateX(-150%);\n }\n 29.99% {\n opacity: 0;\n }\n 30% {\n opacity: 1;\n transform: translateX(-150%);\n }\n 100% {\n opacity: 1;\n transform: translateX(166.66%);\n }\n}";
|
|
13
11
|
|
|
14
12
|
var classof = classofRaw;
|
|
15
13
|
|
package/progress-ring/index.js
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
import { _ as __decorate, a as attr, b as __metadata, h as html, d as designSystem } from '../shared/index.js';
|
|
2
|
-
import { s as styleInject } from '../shared/style-inject.es.js';
|
|
3
2
|
import { B as BaseProgress } from '../shared/base-progress.js';
|
|
4
3
|
import { w as when } from '../shared/when.js';
|
|
5
4
|
import { c as classNames } from '../shared/class-names.js';
|
|
6
5
|
|
|
7
|
-
var css_248z = "/**\n * Do not edit directly\n * Generated on
|
|
8
|
-
styleInject(css_248z);
|
|
6
|
+
var css_248z = "/**\n * Do not edit directly\n * Generated on Fri, 09 Sep 2022 10:25:24 GMT\n */\n.base {\n align-items: center;\n block-size: var(--_density);\n color: var(--_appearance-color-text);\n inline-size: var(--_density);\n outline: none;\n}\n.base.connotation-cta {\n --_connotation-color-primary: var(--vvd-color-cta-500);\n}\n.base.connotation-alert {\n --_connotation-color-primary: var(--vvd-color-alert-500);\n}\n.base.connotation-success {\n --_connotation-color-primary: var(--vvd-color-success-500);\n}\n.base:not(.connotation-cta, .connotation-alert, .connotation-success) {\n --_connotation-color-primary: var(--vvd-color-canvas-text);\n}\n.base {\n --_appearance-color-text: var(--_connotation-color-primary);\n --_appearance-color-fill: transaprent;\n --_appearance-color-outline: transaprent;\n}\n.base:where(:disabled, .disabled) {\n --_appearance-color-text: var(--vvd-color-neutral-400);\n --_appearance-color-fill: transaprent;\n --_appearance-color-outline: transaprent;\n}\n.base.density-5 {\n --_density: calc(5 * 4px);\n}\n.base.density-6 {\n --_density: calc(6 * 4px);\n}\n.base.density-7 {\n --_density: calc(7 * 4px);\n}\n.base.density-8 {\n --_density: calc(8 * 4px);\n}\n.base.density-9 {\n --_density: calc(9 * 4px);\n}\n.base.density-11 {\n --_density: calc(11 * 4px);\n}\n.base.density-12 {\n --_density: calc(12 * 4px);\n}\n.base.density-13 {\n --_density: calc(13 * 4px);\n}\n.base:not(.density-5, .density-6, .density-7, .density-8, .density-9, .density-11, .density-12, .density-13) {\n --_density: calc(10 * 4px);\n}\n\n.progress {\n width: 100%;\n height: 100%;\n}\n\n.background {\n fill: none;\n stroke: transparent;\n stroke-width: 2px;\n}\n\n.determinate {\n fill: none;\n stroke: currentColor;\n stroke-linecap: round;\n stroke-width: 2px;\n transform: rotate(-90deg);\n transform-origin: 50% 50%;\n transition: all 0.2s ease-in-out;\n}\n\n.indeterminate-indicator-1 {\n animation: spin-infinite 2s linear infinite;\n fill: none;\n stroke: currentColor;\n stroke-linecap: round;\n stroke-width: 2px;\n transform: rotate(-90deg);\n transform-origin: 50% 50%;\n transition: all 0.2s ease-in-out;\n}\n\n.base.paused .indeterminate-indicator-1 {\n animation-play-state: paused;\n}\n\n@keyframes spin-infinite {\n 0% {\n stroke-dasharray: 0.01px 43.97px;\n transform: rotate(0deg);\n }\n 50% {\n stroke-dasharray: 21.99px 21.99px;\n transform: rotate(450deg);\n }\n 100% {\n stroke-dasharray: 0.01px 43.97px;\n transform: rotate(1080deg);\n }\n}";
|
|
9
7
|
|
|
10
8
|
class ProgressRing extends BaseProgress {}
|
|
11
9
|
|
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
import { F as FoundationElement, D as DOM, _ as __decorate, a as attr, n as nullableNumberConverter, o as observable, b as __metadata, v as volatile, c as __classPrivateFieldGet, i as __classPrivateFieldSet } from './index.js';
|
|
2
|
+
import { a as applyMixins } from './apply-mixins.js';
|
|
3
|
+
import { F as FormAssociated } from './form-associated.js';
|
|
4
|
+
import { A as ARIAGlobalStatesAndProperties, S as StartEnd } from './aria-global.js';
|
|
5
|
+
import './web.dom-collections.iterator.js';
|
|
6
|
+
|
|
7
|
+
class _TextField extends FoundationElement {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* A form-associated base class for the {@link @microsoft/fast-foundation#(TextField:class)} component.
|
|
11
|
+
*
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
class FormAssociatedTextField extends FormAssociated(_TextField) {
|
|
15
|
+
constructor() {
|
|
16
|
+
super(...arguments);
|
|
17
|
+
this.proxy = document.createElement("input");
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Text field sub-types
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
const TextFieldType = {
|
|
26
|
+
/**
|
|
27
|
+
* An email TextField
|
|
28
|
+
*/
|
|
29
|
+
email: "email",
|
|
30
|
+
/**
|
|
31
|
+
* A password TextField
|
|
32
|
+
*/
|
|
33
|
+
password: "password",
|
|
34
|
+
/**
|
|
35
|
+
* A telephone TextField
|
|
36
|
+
*/
|
|
37
|
+
tel: "tel",
|
|
38
|
+
/**
|
|
39
|
+
* A text TextField
|
|
40
|
+
*/
|
|
41
|
+
text: "text",
|
|
42
|
+
/**
|
|
43
|
+
* A URL TextField
|
|
44
|
+
*/
|
|
45
|
+
url: "url",
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* A Text Field Custom HTML Element.
|
|
50
|
+
* Based largely on the {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/text | <input type="text" /> element }.
|
|
51
|
+
*
|
|
52
|
+
* @slot start - Content which can be provided before the number field input
|
|
53
|
+
* @slot end - Content which can be provided after the number field input
|
|
54
|
+
* @slot - The default slot for the label
|
|
55
|
+
* @csspart label - The label
|
|
56
|
+
* @csspart root - The element wrapping the control, including start and end slots
|
|
57
|
+
* @csspart control - The text field element
|
|
58
|
+
* @fires change - Fires a custom 'change' event when the value has changed
|
|
59
|
+
*
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
62
|
+
class TextField extends FormAssociatedTextField {
|
|
63
|
+
constructor() {
|
|
64
|
+
super(...arguments);
|
|
65
|
+
/**
|
|
66
|
+
* Allows setting a type or mode of text.
|
|
67
|
+
* @public
|
|
68
|
+
* @remarks
|
|
69
|
+
* HTML Attribute: type
|
|
70
|
+
*/
|
|
71
|
+
this.type = TextFieldType.text;
|
|
72
|
+
}
|
|
73
|
+
readOnlyChanged() {
|
|
74
|
+
if (this.proxy instanceof HTMLInputElement) {
|
|
75
|
+
this.proxy.readOnly = this.readOnly;
|
|
76
|
+
this.validate();
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
autofocusChanged() {
|
|
80
|
+
if (this.proxy instanceof HTMLInputElement) {
|
|
81
|
+
this.proxy.autofocus = this.autofocus;
|
|
82
|
+
this.validate();
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
placeholderChanged() {
|
|
86
|
+
if (this.proxy instanceof HTMLInputElement) {
|
|
87
|
+
this.proxy.placeholder = this.placeholder;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
typeChanged() {
|
|
91
|
+
if (this.proxy instanceof HTMLInputElement) {
|
|
92
|
+
this.proxy.type = this.type;
|
|
93
|
+
this.validate();
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
listChanged() {
|
|
97
|
+
if (this.proxy instanceof HTMLInputElement) {
|
|
98
|
+
this.proxy.setAttribute("list", this.list);
|
|
99
|
+
this.validate();
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
maxlengthChanged() {
|
|
103
|
+
if (this.proxy instanceof HTMLInputElement) {
|
|
104
|
+
this.proxy.maxLength = this.maxlength;
|
|
105
|
+
this.validate();
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
minlengthChanged() {
|
|
109
|
+
if (this.proxy instanceof HTMLInputElement) {
|
|
110
|
+
this.proxy.minLength = this.minlength;
|
|
111
|
+
this.validate();
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
patternChanged() {
|
|
115
|
+
if (this.proxy instanceof HTMLInputElement) {
|
|
116
|
+
this.proxy.pattern = this.pattern;
|
|
117
|
+
this.validate();
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
sizeChanged() {
|
|
121
|
+
if (this.proxy instanceof HTMLInputElement) {
|
|
122
|
+
this.proxy.size = this.size;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
spellcheckChanged() {
|
|
126
|
+
if (this.proxy instanceof HTMLInputElement) {
|
|
127
|
+
this.proxy.spellcheck = this.spellcheck;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
/**
|
|
131
|
+
* @internal
|
|
132
|
+
*/
|
|
133
|
+
connectedCallback() {
|
|
134
|
+
super.connectedCallback();
|
|
135
|
+
this.proxy.setAttribute("type", this.type);
|
|
136
|
+
this.validate();
|
|
137
|
+
if (this.autofocus) {
|
|
138
|
+
DOM.queueUpdate(() => {
|
|
139
|
+
this.focus();
|
|
140
|
+
});
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
/**
|
|
144
|
+
* Selects all the text in the text field
|
|
145
|
+
*
|
|
146
|
+
* @public
|
|
147
|
+
*/
|
|
148
|
+
select() {
|
|
149
|
+
this.control.select();
|
|
150
|
+
/**
|
|
151
|
+
* The select event does not permeate the shadow DOM boundary.
|
|
152
|
+
* This fn effectively proxies the select event,
|
|
153
|
+
* emitting a `select` event whenever the internal
|
|
154
|
+
* control emits a `select` event
|
|
155
|
+
*/
|
|
156
|
+
this.$emit("select");
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
* Handles the internal control's `input` event
|
|
160
|
+
* @internal
|
|
161
|
+
*/
|
|
162
|
+
handleTextInput() {
|
|
163
|
+
this.value = this.control.value;
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* Change event handler for inner control.
|
|
167
|
+
* @remarks
|
|
168
|
+
* "Change" events are not `composable` so they will not
|
|
169
|
+
* permeate the shadow DOM boundary. This fn effectively proxies
|
|
170
|
+
* the change event, emitting a `change` event whenever the internal
|
|
171
|
+
* control emits a `change` event
|
|
172
|
+
* @internal
|
|
173
|
+
*/
|
|
174
|
+
handleChange() {
|
|
175
|
+
this.$emit("change");
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
__decorate([
|
|
179
|
+
attr({ attribute: "readonly", mode: "boolean" })
|
|
180
|
+
], TextField.prototype, "readOnly", void 0);
|
|
181
|
+
__decorate([
|
|
182
|
+
attr({ mode: "boolean" })
|
|
183
|
+
], TextField.prototype, "autofocus", void 0);
|
|
184
|
+
__decorate([
|
|
185
|
+
attr
|
|
186
|
+
], TextField.prototype, "placeholder", void 0);
|
|
187
|
+
__decorate([
|
|
188
|
+
attr
|
|
189
|
+
], TextField.prototype, "type", void 0);
|
|
190
|
+
__decorate([
|
|
191
|
+
attr
|
|
192
|
+
], TextField.prototype, "list", void 0);
|
|
193
|
+
__decorate([
|
|
194
|
+
attr({ converter: nullableNumberConverter })
|
|
195
|
+
], TextField.prototype, "maxlength", void 0);
|
|
196
|
+
__decorate([
|
|
197
|
+
attr({ converter: nullableNumberConverter })
|
|
198
|
+
], TextField.prototype, "minlength", void 0);
|
|
199
|
+
__decorate([
|
|
200
|
+
attr
|
|
201
|
+
], TextField.prototype, "pattern", void 0);
|
|
202
|
+
__decorate([
|
|
203
|
+
attr({ converter: nullableNumberConverter })
|
|
204
|
+
], TextField.prototype, "size", void 0);
|
|
205
|
+
__decorate([
|
|
206
|
+
attr({ mode: "boolean" })
|
|
207
|
+
], TextField.prototype, "spellcheck", void 0);
|
|
208
|
+
__decorate([
|
|
209
|
+
observable
|
|
210
|
+
], TextField.prototype, "defaultSlottedNodes", void 0);
|
|
211
|
+
/**
|
|
212
|
+
* Includes ARIA states and properties relating to the ARIA textbox role
|
|
213
|
+
*
|
|
214
|
+
* @public
|
|
215
|
+
*/
|
|
216
|
+
class DelegatesARIATextbox {
|
|
217
|
+
}
|
|
218
|
+
applyMixins(DelegatesARIATextbox, ARIAGlobalStatesAndProperties);
|
|
219
|
+
applyMixins(TextField, StartEnd, DelegatesARIATextbox);
|
|
220
|
+
|
|
221
|
+
const ElementInternalsKey = 'ElementInternals';
|
|
222
|
+
|
|
223
|
+
const supportsElementInternals = () => ElementInternalsKey in window && 'setFormValue' in window[ElementInternalsKey].prototype;
|
|
224
|
+
|
|
225
|
+
function formElements(constructor) {
|
|
226
|
+
var _Decorated_blurred;
|
|
227
|
+
|
|
228
|
+
class Decorated extends constructor {
|
|
229
|
+
constructor(...args) {
|
|
230
|
+
super(...args);
|
|
231
|
+
this.charCount = false;
|
|
232
|
+
this.userValid = true;
|
|
233
|
+
|
|
234
|
+
_Decorated_blurred.set(this, false);
|
|
235
|
+
|
|
236
|
+
this.validate = () => {
|
|
237
|
+
if (supportsElementInternals() && this.proxy instanceof HTMLElement) {
|
|
238
|
+
this.setValidity(this.proxy.validity, this.proxy.validationMessage, this.control);
|
|
239
|
+
} else {
|
|
240
|
+
super.validate();
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
this.userValid = !this.userValid;
|
|
244
|
+
|
|
245
|
+
if (this.proxy instanceof HTMLElement) {
|
|
246
|
+
this.userValid = __classPrivateFieldGet(this, _Decorated_blurred, "f") && this.dirtyValue ? !this.validationMessage : true;
|
|
247
|
+
}
|
|
248
|
+
};
|
|
249
|
+
|
|
250
|
+
this.addEventListener('blur', () => {
|
|
251
|
+
__classPrivateFieldSet(this, _Decorated_blurred, true, "f");
|
|
252
|
+
|
|
253
|
+
this.validate();
|
|
254
|
+
});
|
|
255
|
+
this.addEventListener('focus', () => {
|
|
256
|
+
__classPrivateFieldSet(this, _Decorated_blurred, false, "f");
|
|
257
|
+
});
|
|
258
|
+
this.addEventListener('invalid', () => {
|
|
259
|
+
if (__classPrivateFieldGet(this, _Decorated_blurred, "f") && this.dirtyValue) return;
|
|
260
|
+
|
|
261
|
+
__classPrivateFieldSet(this, _Decorated_blurred, true, "f");
|
|
262
|
+
|
|
263
|
+
this.dirtyValue = true;
|
|
264
|
+
this.validate();
|
|
265
|
+
});
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
get errorValidationMessage() {
|
|
269
|
+
return this.userValid ? '' : this.validationMessage;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
_Decorated_blurred = new WeakMap();
|
|
275
|
+
|
|
276
|
+
__decorate([attr, __metadata("design:type", String)], Decorated.prototype, "label", void 0);
|
|
277
|
+
|
|
278
|
+
__decorate([attr({
|
|
279
|
+
attribute: 'helper-text'
|
|
280
|
+
}), __metadata("design:type", String)], Decorated.prototype, "helperText", void 0);
|
|
281
|
+
|
|
282
|
+
__decorate([attr({
|
|
283
|
+
attribute: 'char-count',
|
|
284
|
+
mode: 'boolean'
|
|
285
|
+
}), __metadata("design:type", Object)], Decorated.prototype, "charCount", void 0);
|
|
286
|
+
|
|
287
|
+
__decorate([observable, __metadata("design:type", Object)], Decorated.prototype, "userValid", void 0);
|
|
288
|
+
|
|
289
|
+
__decorate([volatile, __metadata("design:type", Object), __metadata("design:paramtypes", [])], Decorated.prototype, "errorValidationMessage", null);
|
|
290
|
+
|
|
291
|
+
return Decorated;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
export { DelegatesARIATextbox as D, TextField as T, formElements as f };
|
package/shared/index2.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { F as FoundationElement, _ as __decorate, a as attr, b as __metadata, h as html, d as designSystem } from './index.js';
|
|
2
|
-
import { s as styleInject } from './style-inject.es.js';
|
|
3
2
|
import { c as classNames } from './class-names.js';
|
|
4
3
|
|
|
5
4
|
class Elevation extends FoundationElement {}
|
|
@@ -12,7 +11,6 @@ __decorate([attr({
|
|
|
12
11
|
}), __metadata("design:type", Boolean)], Elevation.prototype, "noShadow", void 0);
|
|
13
12
|
|
|
14
13
|
var css_248z = ":host {\n display: contents;\n}\n\n.control {\n display: contents;\n}\n.control.dp-0 {\n --_elevation-fill: var(--vvd-color-surface-0dp);\n --_elevation-shadow: var(--vvd-shadow-surface-0dp);\n}\n.control.dp-4 {\n --_elevation-fill: var(--vvd-color-surface-4dp);\n --_elevation-shadow: var(--vvd-shadow-surface-4dp);\n}\n.control.dp-8 {\n --_elevation-fill: var(--vvd-color-surface-8dp);\n --_elevation-shadow: var(--vvd-shadow-surface-8dp);\n}\n.control.dp-12 {\n --_elevation-fill: var(--vvd-color-surface-12dp);\n --_elevation-shadow: var(--vvd-shadow-surface-12dp);\n}\n.control.dp-16 {\n --_elevation-fill: var(--vvd-color-surface-16dp);\n --_elevation-shadow: var(--vvd-shadow-surface-16dp);\n}\n.control.dp-24 {\n --_elevation-fill: var(--vvd-color-surface-24dp);\n --_elevation-shadow: var(--vvd-shadow-surface-24dp);\n}\n.control:not(.dp-0, .dp-4, .dp-8, .dp-12, .dp-16, .dp-24) {\n --_elevation-fill: var(--vvd-color-surface-2dp);\n --_elevation-shadow: var(--vvd-shadow-surface-2dp);\n}\n.control ::slotted(*) {\n background: var(--_elevation-fill);\n filter: var(--_elevation-shadow);\n transition: background-color 0.15s linear, filter 0.15s linear;\n}\n.control.no-shadow ::slotted(*) {\n filter: none;\n}";
|
|
15
|
-
styleInject(css_248z);
|
|
16
14
|
|
|
17
15
|
let _ = t => t,
|
|
18
16
|
_t;
|
package/shared/index3.js
CHANGED
|
@@ -7,7 +7,6 @@ import './es.object.assign.js';
|
|
|
7
7
|
import { j as anObject$3, e as fails$5, g as global$3, v as functionCall, f as functionUncurryThis, Q as shared$1, y as internalState, _ as _export, w as wellKnownSymbol$2, u as defineBuiltIn$1, K as createNonEnumerableProperty$1, x as isObject$1, c as classofRaw, B as requireObjectCoercible$2, R as toIntegerOrInfinity$1, S as toPropertyKey$1, o as objectDefineProperty, J as createPropertyDescriptor$1, A as lengthOfArrayLike$1, T as toAbsoluteIndex$1, i as isCallable$1, U as toLength$1, z as getMethod$1 } from './export.js';
|
|
8
8
|
import { t as toString$3 } from './to-string.js';
|
|
9
9
|
import { h as keyEscape } from './form-associated.js';
|
|
10
|
-
import { s as styleInject } from './style-inject.es.js';
|
|
11
10
|
import { w as when } from './when.js';
|
|
12
11
|
import { r as ref } from './ref.js';
|
|
13
12
|
import { c as classNames } from './class-names.js';
|
|
@@ -2069,8 +2068,7 @@ __decorate([attr({
|
|
|
2069
2068
|
|
|
2070
2069
|
__decorate([attr, __metadata("design:type", String)], Popup.prototype, "anchor", void 0);
|
|
2071
2070
|
|
|
2072
|
-
var css_248z = ".control {\n background: var(--vvd-color-surface-4dp);\n border-radius: inherit;\n contain: layout;\n inline-size:
|
|
2073
|
-
styleInject(css_248z);
|
|
2071
|
+
var css_248z = ".control {\n background: var(--vvd-color-surface-4dp);\n border-radius: inherit;\n contain: layout;\n inline-size: fit-content;\n}\n.control:not(.open) {\n display: none;\n}\n\n.popup-wrapper {\n position: fixed;\n border-radius: 6px;\n}\n\n.popup-content {\n display: grid;\n color: var(--vvd-color-canvas-text); /* neutral-100 */\n}\n.dismissible .popup-content {\n align-content: start;\n grid-template-columns: 1fr auto;\n}\n\n.arrow {\n position: absolute;\n z-index: -1;\n width: 8px;\n height: 8px;\n background: var(--vvd-color-surface-4dp);\n transform: rotate(45deg);\n}\n\n.dismissible-button {\n align-self: flex-start;\n margin-block-start: 4px;\n margin-inline-end: 4px;\n}";
|
|
2074
2072
|
|
|
2075
2073
|
let _ = t => t,
|
|
2076
2074
|
_t,
|
|
@@ -15,7 +15,7 @@ export declare function formElements<T extends {
|
|
|
15
15
|
helperText?: string | undefined;
|
|
16
16
|
charCount: boolean;
|
|
17
17
|
userValid: boolean;
|
|
18
|
-
"__#
|
|
18
|
+
"__#5963@#blurred": boolean;
|
|
19
19
|
readonly errorValidationMessage: any;
|
|
20
20
|
validate: () => void;
|
|
21
21
|
};
|
package/side-drawer/index.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { F as FoundationElement, _ as __decorate, a as attr, b as __metadata, h as html, d as designSystem } from '../shared/index.js';
|
|
2
2
|
import '../shared/web.dom-collections.iterator.js';
|
|
3
|
-
import { s as styleInject } from '../shared/style-inject.es.js';
|
|
4
3
|
import { w as when } from '../shared/when.js';
|
|
5
4
|
import { c as classNames } from '../shared/class-names.js';
|
|
6
5
|
import '../shared/export.js';
|
|
@@ -34,8 +33,7 @@ __decorate([attr({
|
|
|
34
33
|
mode: 'boolean'
|
|
35
34
|
}), __metadata("design:type", Object)], SideDrawer.prototype, "trailing", void 0);
|
|
36
35
|
|
|
37
|
-
var css_248z = "/**\n * Do not edit directly\n * Generated on
|
|
38
|
-
styleInject(css_248z);
|
|
36
|
+
var css_248z = "/**\n * Do not edit directly\n * Generated on Fri, 09 Sep 2022 10:25:24 GMT\n */\n.control {\n position: fixed;\n z-index: 1;\n background-color: var(--vvd-color-canvas);\n color: var(--vvd-color-canvas-text);\n inline-size: 280px;\n inset-block: 0;\n overflow-y: auto;\n}\n.control.alternate {\n background-color: var(--vvd-color-canvas);\n}\n.control.trailing {\n inset-inline-end: 0;\n}\n.control:not(.open).trailing {\n transform: translateX(100%);\n}\n.control:not(.open):not(.trailing) {\n transform: translateX(-100%);\n}\n.control.open:not(.modal).trailing + .side-drawer-app-content {\n margin-inline-end: var(--side-drawer-app-content-offset, 280px);\n}\n.control.open:not(.modal):not(.trailing) + .side-drawer-app-content {\n margin-inline-start: var(--side-drawer-app-content-offset, 280px);\n}\n@media (prefers-reduced-motion: no-preference) {\n .control {\n transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n }\n}\n\n.scrim {\n background-color: var(--vvd-color-canvas-text);\n opacity: 0.5;\n position: fixed;\n inset: 0;\n}\n.scrim:not(.open) {\n display: none;\n}";
|
|
39
37
|
|
|
40
38
|
let _ = t => t,
|
|
41
39
|
_t,
|
package/styles/themes/dark.css
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Fri, 09 Sep 2022 10:25:24 GMT
|
|
4
4
|
*/
|
|
5
5
|
/**
|
|
6
6
|
* Do not edit directly
|
|
7
|
-
* Generated on
|
|
7
|
+
* Generated on Fri, 09 Sep 2022 10:25:24 GMT
|
|
8
8
|
*/
|
|
9
9
|
:root, .vvd-theme-main, ::part(vvd-theme-main) {
|
|
10
10
|
--vvd-color-canvas: #000000;
|
package/styles/themes/light.css
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Fri, 09 Sep 2022 10:25:24 GMT
|
|
4
4
|
*/
|
|
5
5
|
/**
|
|
6
6
|
* Do not edit directly
|
|
7
|
-
* Generated on
|
|
7
|
+
* Generated on Fri, 09 Sep 2022 10:25:24 GMT
|
|
8
8
|
*/
|
|
9
9
|
:root, .vvd-theme-main, ::part(vvd-theme-main) {
|
|
10
10
|
--vvd-color-canvas: #ffffff;
|