@vonage/vivid 3.0.0-next.11 → 3.0.0-next.14
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 +49 -4
- package/accordion-item/index.js +3 -8
- package/badge/index.js +8 -15
- package/banner/index.js +14 -5
- package/breadcrumb-item/index.js +3 -5
- package/button/index.js +24 -17
- package/calendar/index.js +1 -0
- package/card/index.js +136 -0
- package/elevation/index.js +1 -1
- package/icon/index.js +7 -3
- package/index.js +2 -1
- package/layout/index.js +1 -1
- package/lib/accordion-item/accordion-item.d.ts +2 -2
- package/lib/badge/badge.d.ts +4 -4
- package/lib/breadcrumb-item/breadcrumb-item.d.ts +1 -1
- package/lib/button/button.d.ts +5 -4
- package/lib/card/card.d.ts +10 -0
- package/lib/card/card.template.d.ts +4 -0
- package/lib/card/index.d.ts +5 -0
- package/lib/enums.d.ts +8 -3
- package/lib/icon/icon.d.ts +3 -2
- package/lib/layout/layout.d.ts +3 -3
- package/lib/text-anchor/text-anchor.d.ts +1 -1
- package/lib/tooltip/tooltip.d.ts +1 -1
- package/package.json +1 -1
- package/popup/index.js +3 -2
- package/progress/index.js +3 -2
- package/progress-ring/index.js +1 -1
- package/shared/es.object.assign.js +2 -1
- package/shared/icon.js +5 -10
- package/shared/object-set-prototype-of.js +1009 -0
- package/shared/patterns/focus.d.ts +3 -0
- package/shared/patterns/index.d.ts +1 -0
- package/shared/text-anchor.js +2 -11
- package/shared/web.dom-collections.iterator.js +51 -1057
- package/side-drawer/index.js +1 -0
- package/sidenav-item/index.js +2 -1
- package/text/index.js +2 -1
- package/text-anchor/index.js +2 -1
- package/tooltip/index.js +2 -4
package/lib/badge/badge.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { FoundationElement } from '@microsoft/fast-foundation';
|
|
2
2
|
import { AffixIconWithTrailing } from '../../shared/patterns/affix';
|
|
3
|
-
import type { Appearance, Connotation,
|
|
3
|
+
import type { Appearance, Connotation, Density, Shape } from '../enums.js';
|
|
4
4
|
declare type BadgeConnotation = Extract<Connotation, Connotation.Primary | Connotation.CTA | Connotation.Success | Connotation.Alert | Connotation.Warning | Connotation.Info>;
|
|
5
5
|
declare type BadgeAppearance = Extract<Appearance, Appearance.Filled | Appearance.Duotone | Appearance.Subtle>;
|
|
6
6
|
declare type BadgeShape = Extract<Shape, Shape.Rounded | Shape.Pill>;
|
|
7
|
-
declare type
|
|
7
|
+
declare type BadgeDensity = Extract<Density, Density.Condensed | Density.Normal | Density.Extended>;
|
|
8
8
|
export declare class Badge extends FoundationElement {
|
|
9
9
|
connotation?: BadgeConnotation;
|
|
10
10
|
shape?: BadgeShape;
|
|
11
11
|
appearance?: BadgeAppearance;
|
|
12
|
-
|
|
13
|
-
text
|
|
12
|
+
density?: BadgeDensity;
|
|
13
|
+
text?: string;
|
|
14
14
|
}
|
|
15
15
|
export interface Badge extends AffixIconWithTrailing {
|
|
16
16
|
}
|
package/lib/button/button.d.ts
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
import { Button as FoundationButton } from '@microsoft/fast-foundation';
|
|
2
|
-
import type { Appearance, Connotation,
|
|
2
|
+
import type { Appearance, Connotation, Density, Shape } from '../enums.js';
|
|
3
3
|
import { AffixIconWithTrailing } from '../../shared/patterns/affix';
|
|
4
4
|
declare type ButtonConnotation = Extract<Connotation, Connotation.Primary | Connotation.CTA | Connotation.Success | Connotation.Alert>;
|
|
5
5
|
export declare type ButtonAppearance = Extract<Appearance, Appearance.Filled | Appearance.Outlined | Appearance.Ghost>;
|
|
6
6
|
declare type ButtonShape = Extract<Shape, Shape.Rounded | Shape.Pill>;
|
|
7
|
-
declare type
|
|
7
|
+
declare type ButtonDensity = Extract<Density, Density.Condensed | Density.Normal | Density.Extended>;
|
|
8
8
|
export declare class Button extends FoundationButton {
|
|
9
9
|
connotation?: ButtonConnotation;
|
|
10
10
|
shape?: ButtonShape;
|
|
11
11
|
appearance?: ButtonAppearance;
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
density?: ButtonDensity;
|
|
13
|
+
stacked: boolean;
|
|
14
|
+
label?: string;
|
|
14
15
|
}
|
|
15
16
|
export interface Button extends AffixIconWithTrailing {
|
|
16
17
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FoundationElement } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare class Card extends FoundationElement {
|
|
3
|
+
heading?: string;
|
|
4
|
+
subheading?: string;
|
|
5
|
+
text?: string;
|
|
6
|
+
icon?: string;
|
|
7
|
+
elevation?: 0 | 2 | 4 | 8 | 12 | 16 | 24;
|
|
8
|
+
graphicSlottedContent?: HTMLElement[];
|
|
9
|
+
hasMetaSlottedContent?: HTMLElement[];
|
|
10
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ViewTemplate } from '@microsoft/fast-element';
|
|
2
|
+
import type { ElementDefinitionContext, FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
3
|
+
import type { Card } from './card';
|
|
4
|
+
export declare const CardTemplate: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ViewTemplate<Card>;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import '../elevation';
|
|
2
|
+
import '../icon';
|
|
3
|
+
import '../button';
|
|
4
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
5
|
+
export declare const vividCard: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
package/lib/enums.d.ts
CHANGED
|
@@ -24,10 +24,15 @@ export declare enum Appearance {
|
|
|
24
24
|
Subtle = "subtle",
|
|
25
25
|
Ghost = "ghost"
|
|
26
26
|
}
|
|
27
|
+
export declare enum Density {
|
|
28
|
+
Condensed = "condensed",
|
|
29
|
+
Normal = "normal",
|
|
30
|
+
Extended = "extended"
|
|
31
|
+
}
|
|
27
32
|
export declare enum Size {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
33
|
+
Small = "small",
|
|
34
|
+
Medium = "medium",
|
|
35
|
+
Large = "large"
|
|
31
36
|
}
|
|
32
37
|
export declare enum Position {
|
|
33
38
|
Top = "TOP",
|
package/lib/icon/icon.d.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { FoundationElement } from '@microsoft/fast-foundation';
|
|
2
2
|
import type { Connotation, Size } from '../enums';
|
|
3
3
|
declare type IconConnotation = Extract<Connotation, Connotation.Primary | Connotation.CTA | Connotation.Announcement | Connotation.Success | Connotation.Alert | Connotation.Info>;
|
|
4
|
+
declare type IconSize = Extract<Size, Size.Small | Size.Medium | Size.Large>;
|
|
4
5
|
export declare class Icon extends FoundationElement {
|
|
5
6
|
connotation?: IconConnotation;
|
|
6
|
-
size?:
|
|
7
|
-
svg
|
|
7
|
+
size?: IconSize;
|
|
8
|
+
svg?: string;
|
|
8
9
|
type?: string;
|
|
9
10
|
typeChanged(): Promise<void>;
|
|
10
11
|
}
|
package/lib/layout/layout.d.ts
CHANGED
|
@@ -4,9 +4,9 @@ export declare enum AUTO_SIZING {
|
|
|
4
4
|
Fit = "fit",
|
|
5
5
|
Fill = "fill"
|
|
6
6
|
}
|
|
7
|
-
declare type Gutters = Extract<Size, Size.
|
|
8
|
-
declare type ColumnSpacing = Extract<Size, Size.
|
|
9
|
-
declare type ColumnBasis = Extract<Size, Size.
|
|
7
|
+
declare type Gutters = Extract<Size, Size.Small | Size.Medium | Size.Large>;
|
|
8
|
+
declare type ColumnSpacing = Extract<Size, Size.Small | Size.Medium | Size.Large>;
|
|
9
|
+
declare type ColumnBasis = Extract<Size, Size.Small | Size.Medium | Size.Large> | 'block';
|
|
10
10
|
export declare class Layout extends FoundationElement {
|
|
11
11
|
gutters?: Gutters;
|
|
12
12
|
columnBasis?: ColumnBasis;
|
package/lib/tooltip/tooltip.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { FoundationElement } from '@microsoft/fast-foundation';
|
|
2
2
|
import type { Placement } from '@floating-ui/dom';
|
|
3
3
|
export declare class Tooltip extends FoundationElement {
|
|
4
|
-
text
|
|
4
|
+
text?: string;
|
|
5
5
|
open: boolean;
|
|
6
6
|
corner?: Placement;
|
|
7
7
|
anchor?: string;
|
package/package.json
CHANGED
package/popup/index.js
CHANGED
|
@@ -2,8 +2,9 @@ import '../elevation/index.js';
|
|
|
2
2
|
import '../button/index.js';
|
|
3
3
|
import { F as FoundationElement, c as __classPrivateFieldGet, g as __classPrivateFieldSet, _ as __decorate, a as attr, b as __metadata, h as html, d as designSystem } from '../shared/index.js';
|
|
4
4
|
import { t as toString$3, s as speciesConstructor$1, f as functionApply } from '../shared/icon.js';
|
|
5
|
-
import {
|
|
5
|
+
import { a as objectCreate } from '../shared/web.dom-collections.iterator.js';
|
|
6
6
|
import '../shared/es.object.assign.js';
|
|
7
|
+
import { b as anObject$3, g as fails$5, i as global$5, x as functionCall, C as functionUncurryThis, T as shared$1, z as internalState, _ as _export, w as wellKnownSymbol$2, r as redefine$1, u as createNonEnumerableProperty$1, M as isObject$1, F as classofRaw, P as requireObjectCoercible$2, U as toIntegerOrInfinity$1, V as toPropertyKey$1, a as objectDefineProperty, m as createPropertyDescriptor$1, I as lengthOfArrayLike$1, W as toAbsoluteIndex$1, k as isCallable$1, X as toLength$1, G as getMethod$1 } from '../shared/object-set-prototype-of.js';
|
|
7
8
|
import { s as styleInject } from '../shared/style-inject.es.js';
|
|
8
9
|
import { w as when } from '../shared/when.js';
|
|
9
10
|
import { r as ref } from '../shared/aria-global.js';
|
|
@@ -2052,7 +2053,7 @@ const popupTemplate = () => html(_t || (_t = _`
|
|
|
2052
2053
|
${0}
|
|
2053
2054
|
</div>
|
|
2054
2055
|
</div>
|
|
2055
|
-
</vwc-elevation>`), ref('popupEl'), getClasses, x => x.open ? 'false' : 'true', x => x.alternate ? 'vvd-theme-alternate' : '', when(x => x.dismissible, html(_t2 || (_t2 = _`<vwc-button
|
|
2056
|
+
</vwc-elevation>`), ref('popupEl'), getClasses, x => x.open ? 'false' : 'true', x => x.alternate ? 'vvd-theme-alternate' : '', when(x => x.dismissible, html(_t2 || (_t2 = _`<vwc-button density="condensed" @click="${0}"
|
|
2056
2057
|
class="dismissible" icon="close-small-solid" shape="pill"></vwc-button>`), x => x.open = false)), when(x => x.arrow, html(_t3 || (_t3 = _`<div class="arrow" ${0}></div>`), ref('arrowEl'))));
|
|
2057
2058
|
|
|
2058
2059
|
const VIVIDPopup = Popup.compose({
|
package/progress/index.js
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { _ as __decorate, a as attr, b as __metadata, h as html, d as designSystem } from '../shared/index.js';
|
|
2
2
|
import { s as styleInject } from '../shared/style-inject.es.js';
|
|
3
|
-
import
|
|
3
|
+
import '../shared/web.dom-collections.iterator.js';
|
|
4
|
+
import { F as classofRaw, _ as _export, C as functionUncurryThis } from '../shared/object-set-prototype-of.js';
|
|
4
5
|
import { B as BaseProgress } from '../shared/base-progress.js';
|
|
5
6
|
import { w as when } from '../shared/when.js';
|
|
6
7
|
import { c as classNames } from '../shared/class-names.js';
|
|
7
8
|
|
|
8
|
-
var css_248z = ".base {\n height: 6px;\n align-items: center;\n margin: 0;\n outline: none;\n}\n.base.connotation-cta {\n --connotation: var(--vvd-color-cta);\n --on-connotation: var(--vvd-color-on-cta);\n}\n
|
|
9
|
+
var css_248z = ".base {\n height: 6px;\n align-items: center;\n margin: 0;\n outline: none;\n}\n.base:not(.connotation-pacific).connotation-cta {\n --connotation: var(--vvd-color-cta);\n --on-connotation: var(--vvd-color-on-cta);\n}\n.base:not(.connotation-pacific).connotation-alert {\n --connotation: var(--vvd-color-alert);\n --on-connotation: var(--vvd-color-on-alert);\n}\n.base:not(.connotation-pacific).connotation-success {\n --connotation: var(--vvd-color-success);\n --on-connotation: var(--vvd-color-on-success);\n}\n.base:not(.connotation-pacific):not(.connotation-cta, .connotation-alert, .connotation-success) {\n --connotation: var(--vvd-color-primary);\n --on-connotation: var(--vvd-color-on-primary);\n}\n.base.connotation-pacific {\n --connotation: linear-gradient(to right, var(--vvd-color-info-30), var(--vvd-color-cta-70));\n}\n\n.indeterminate {\n display: flex;\n overflow: hidden;\n width: 100%;\n height: 100%;\n border-radius: 3px;\n}\n\n.progress {\n position: relative;\n display: flex;\n align-items: center;\n background-color: var(--vvd-color-neutral-20);\n block-size: 100%;\n inline-size: 100%;\n}\n.progress .indeterminate {\n background-color: var(--connotation);\n}\n\n.determinate {\n background-color: var(--connotation);\n block-size: 100%;\n border-radius: 3px;\n transition: all 0.2s ease-in-out;\n}\n.connotation-pacific .determinate {\n background-image: var(--connotation);\n}\n\n.indeterminate-indicator-1, .indeterminate-indicator-2 {\n position: absolute;\n animation: indeterminate-1 2s infinite;\n animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n background-color: var(--vvd-color-neutral-20);\n block-size: 100%;\n inline-size: 30%;\n opacity: 0;\n}\n\n.indeterminate-indicator-2 {\n animation: indeterminate-2 2s infinite;\n inline-size: 60%;\n}\n\n.connotation-pacific .indeterminate-indicator-1, .connotation-pacific .indeterminate-indicator-2 {\n background-image: var(--connotation);\n}\n\n.reverse .indeterminate-indicator-1, .reverse .indeterminate-indicator-2 {\n animation-direction: reverse;\n}\n.reverse .determinate {\n position: absolute;\n right: 0;\n}\n\n.base.shape-sharp .determinate, .base.shape-sharp .indeterminate {\n border-radius: 0;\n}\n\n.base.paused .indeterminate-indicator-1,\n.base.paused .indeterminate-indicator-2 {\n animation-play-state: paused;\n background-color: var(--connotation);\n}\n\n.base.paused .determinate {\n background-color: var(--vvd-color-neutral-40);\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}";
|
|
9
10
|
styleInject(css_248z);
|
|
10
11
|
|
|
11
12
|
var classof = classofRaw;
|
package/progress-ring/index.js
CHANGED
|
@@ -4,7 +4,7 @@ import { B as BaseProgress } from '../shared/base-progress.js';
|
|
|
4
4
|
import { w as when } from '../shared/when.js';
|
|
5
5
|
import { c as classNames } from '../shared/class-names.js';
|
|
6
6
|
|
|
7
|
-
var css_248z = ".base {\n width: 36px;\n height: 36px;\n align-items: center;\n outline: none;\n}\n.base.connotation-cta {\n --connotation: var(--vvd-color-cta);\n --on-connotation: var(--vvd-color-on-cta);\n}\n
|
|
7
|
+
var css_248z = ".base {\n width: 36px;\n height: 36px;\n align-items: center;\n outline: none;\n}\n.base.connotation-cta {\n --connotation: var(--vvd-color-cta);\n --on-connotation: var(--vvd-color-on-cta);\n}\n.base.connotation-alert {\n --connotation: var(--vvd-color-alert);\n --on-connotation: var(--vvd-color-on-alert);\n}\n.base.connotation-success {\n --connotation: var(--vvd-color-success);\n --on-connotation: var(--vvd-color-on-success);\n}\n.base:not(.connotation-cta, .connotation-alert, .connotation-success) {\n --connotation: var(--vvd-color-primary);\n --on-connotation: var(--vvd-color-on-primary);\n}\n\n.base.base-large {\n width: 48px;\n height: 48px;\n}\n\n.base.base-small {\n width: 24px;\n height: 24px;\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: var(--connotation);\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: var(--connotation);\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 stroke: var(--vvd-color-neutral);\n}\n\n.base.paused .determinate {\n stroke: var(--vvd-color-neutral);\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}";
|
|
8
8
|
styleInject(css_248z);
|
|
9
9
|
|
|
10
10
|
class ProgressRing extends BaseProgress {}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { d as descriptors,
|
|
1
|
+
import { d as descriptors, C as functionUncurryThis, x as functionCall, g as fails$1, l as toObject$1, Q as indexedObject, R as objectGetOwnPropertySymbols, S as objectPropertyIsEnumerable, _ as _export } from './object-set-prototype-of.js';
|
|
2
|
+
import { o as objectKeys$1 } from './web.dom-collections.iterator.js';
|
|
2
3
|
|
|
3
4
|
var DESCRIPTORS = descriptors;
|
|
4
5
|
var uncurryThis = functionUncurryThis;
|
package/shared/icon.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { i as global$e, r as redefine$3, w as wellKnownSymbol$8, A as getBuiltIn$4, a as objectDefineProperty, d as descriptors, B as objectIsPrototypeOf, C as functionUncurryThis, D as functionBindNative, E as aCallable$4, p as iterators, F as classofRaw$1, k as isCallable$5, G as getMethod$2, x as functionCall, b as anObject$5, H as tryToString$3, I as lengthOfArrayLike$1, g as fails$4, J as inspectSource$2, K as engineUserAgent, c as html$1, f as documentCreateElement, j as hasOwnProperty_1, L as objectGetOwnPropertyDescriptor, M as isObject$2, _ as _export, q as objectSetPrototypeOf, n as setToStringTag$1, N as isForced_1, O as engineV8Version, z as internalState, P as requireObjectCoercible$1, y as functionName } from './object-set-prototype-of.js';
|
|
2
2
|
import { F as FoundationElement, _ as __decorate, a as attr, b as __metadata, o as observable } from './index.js';
|
|
3
3
|
import { _ as _curry1, a as _curry2, b as _has } from './_has.js';
|
|
4
4
|
|
|
@@ -1356,25 +1356,20 @@ const loadSvg = iconId => fetch(baseUrlTemplate([iconId, 'svg'].join('.'), ICON_
|
|
|
1356
1356
|
|
|
1357
1357
|
const resolveIcon = memoizeWith$1(identity$1, (iconId = '') => iconId.trim() ? loadSvg(iconId) : Promise.resolve(''));
|
|
1358
1358
|
class Icon extends FoundationElement {
|
|
1359
|
-
constructor() {
|
|
1360
|
-
super(...arguments);
|
|
1361
|
-
this.svg = '';
|
|
1362
|
-
}
|
|
1363
|
-
|
|
1364
1359
|
async typeChanged() {
|
|
1365
|
-
this.svg =
|
|
1360
|
+
this.svg = undefined;
|
|
1366
1361
|
let timeout = setTimeout(() => {
|
|
1367
1362
|
this.svg = PLACEHOLDER_ICON;
|
|
1368
1363
|
timeout = setTimeout(() => {
|
|
1369
1364
|
if (this.svg === PLACEHOLDER_ICON) {
|
|
1370
|
-
this.svg =
|
|
1365
|
+
this.svg = undefined;
|
|
1371
1366
|
}
|
|
1372
1367
|
}, PLACEHOLDER_TIMEOUT);
|
|
1373
1368
|
}, PLACEHOLDER_DELAY);
|
|
1374
1369
|
await resolveIcon(this.type).then(svg => {
|
|
1375
1370
|
this.svg = svg;
|
|
1376
1371
|
}).catch(() => {
|
|
1377
|
-
this.svg =
|
|
1372
|
+
this.svg = undefined;
|
|
1378
1373
|
}).finally(() => {
|
|
1379
1374
|
clearTimeout(timeout);
|
|
1380
1375
|
});
|
|
@@ -1386,7 +1381,7 @@ __decorate([attr, __metadata("design:type", String)], Icon.prototype, "connotati
|
|
|
1386
1381
|
|
|
1387
1382
|
__decorate([attr, __metadata("design:type", String)], Icon.prototype, "size", void 0);
|
|
1388
1383
|
|
|
1389
|
-
__decorate([observable, __metadata("design:type",
|
|
1384
|
+
__decorate([observable, __metadata("design:type", String)], Icon.prototype, "svg", void 0);
|
|
1390
1385
|
|
|
1391
1386
|
__decorate([attr, __metadata("design:type", String)], Icon.prototype, "type", void 0);
|
|
1392
1387
|
|