@vonage/vivid 3.0.0-next.134 → 3.0.0-next.135
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/combobox/index.js +1 -0
- package/custom-elements.json +344 -0
- package/index.js +7 -3
- package/lib/components.d.ts +3 -0
- package/lib/menu-item/menu-item.d.ts +1 -0
- package/lib/tab/definition.d.ts +3 -0
- package/lib/tab/index.d.ts +1 -0
- package/lib/tab/tab.d.ts +9 -0
- package/lib/tab/tab.template.d.ts +3 -0
- package/lib/tab-panel/definition.d.ts +3 -0
- package/lib/tab-panel/index.d.ts +1 -0
- package/lib/tab-panel/tab-panel.d.ts +3 -0
- package/lib/tab-panel/tab-panel.template.d.ts +2 -0
- package/lib/tabs/definition.d.ts +3 -0
- package/lib/tabs/index.d.ts +1 -0
- package/lib/tabs/tabs.d.ts +10 -0
- package/lib/tabs/tabs.template.d.ts +2 -0
- package/listbox/index.js +1 -0
- package/number-field/index.js +1 -1
- package/package.json +1 -1
- package/shared/definition.js +1 -1
- package/shared/definition11.js +1 -1
- package/shared/definition12.js +1 -1
- package/shared/definition13.js +1 -1
- package/shared/definition14.js +1 -1
- package/shared/definition16.js +1 -1
- package/shared/definition17.js +3 -2
- package/shared/definition19.js +1 -1
- package/shared/definition2.js +1 -1
- package/shared/definition20.js +1 -1
- package/shared/definition21.js +1 -1
- package/shared/definition22.js +1 -1
- package/shared/definition23.js +1 -1
- package/shared/definition25.js +1 -1
- package/shared/definition27.js +20 -8
- package/shared/definition29.js +1 -1
- package/shared/definition30.js +1 -1
- package/shared/definition31.js +1 -1
- package/shared/definition32.js +1 -1
- package/shared/definition33.js +1 -1
- package/shared/definition34.js +1 -1
- package/shared/definition35.js +1 -1
- package/shared/definition36.js +1 -1
- package/shared/definition38.js +1 -1
- package/shared/definition39.js +42 -255
- package/shared/definition4.js +1 -1
- package/shared/definition40.js +24 -111
- package/shared/definition41.js +424 -61
- package/shared/definition42.js +280 -0
- package/shared/definition43.js +119 -0
- package/shared/definition44.js +77 -0
- package/shared/definition5.js +1 -1
- package/shared/definition6.js +1 -1
- package/shared/definition7.js +1 -1
- package/shared/definition8.js +1 -1
- package/shared/definition9.js +1 -1
- package/shared/form-elements.js +1 -1
- package/shared/listbox.js +2 -9
- package/shared/numbers.js +10 -1
- package/shared/patterns/form-elements/form-elements.d.ts +2 -2
- package/shared/strings.js +9 -0
- package/shared/text-field.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/tab/index.js +16 -0
- package/tab-panel/index.js +4 -0
- package/tabs/index.js +24 -0
- package/text-area/index.js +1 -1
- package/text-field/index.js +1 -1
- package/tooltip/index.js +1 -1
- package/vivid.api.json +315 -0
package/shared/numbers.js
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
* is larger than the max, the minimum value will be returned. If the value is smaller than the minimum,
|
|
4
4
|
* the maximum will be returned. Otherwise, the value is returned un-changed.
|
|
5
5
|
*/
|
|
6
|
+
function wrapInBounds(min, max, value) {
|
|
7
|
+
if (value < min) {
|
|
8
|
+
return max;
|
|
9
|
+
}
|
|
10
|
+
else if (value > max) {
|
|
11
|
+
return min;
|
|
12
|
+
}
|
|
13
|
+
return value;
|
|
14
|
+
}
|
|
6
15
|
/**
|
|
7
16
|
* Ensures that a value is between a min and max value. If value is lower than min, min will be returned.
|
|
8
17
|
* If value is greater than max, max will be returned.
|
|
@@ -22,4 +31,4 @@ function inRange(value, min, max = 0) {
|
|
|
22
31
|
return min <= value && value < max;
|
|
23
32
|
}
|
|
24
33
|
|
|
25
|
-
export { inRange as i, limit as l };
|
|
34
|
+
export { inRange as i, limit as l, wrapInBounds as w };
|
|
@@ -18,10 +18,10 @@ export declare function formElements<T extends {
|
|
|
18
18
|
successText?: string | undefined;
|
|
19
19
|
charCount: boolean;
|
|
20
20
|
userValid: boolean;
|
|
21
|
-
"__#
|
|
21
|
+
"__#7888@#blurred": boolean;
|
|
22
22
|
readonly errorValidationMessage: any;
|
|
23
23
|
connectedCallback(): void;
|
|
24
|
-
"__#
|
|
24
|
+
"__#7888@#handleInvalidEvent": () => void;
|
|
25
25
|
disconnectedCallback(): void;
|
|
26
26
|
validate: () => void;
|
|
27
27
|
};
|
package/shared/text-field.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var css_248z = "/**\n * Do not edit directly\n * Generated on
|
|
1
|
+
var css_248z = "/**\n * Do not edit directly\n * Generated on Mon, 16 Jan 2023 13:29:55 GMT\n */\n:host {\n display: inline-block;\n}\n\n.base {\n --_text-field-gutter: calc(calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2))) / 2.5);\n --_text-field-icon-size: calc(calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2))) / 2);\n display: inline-grid;\n width: 100%;\n gap: 4px;\n grid-template-columns: min-content 1fr max-content;\n}\n.base {\n --_appearance-color-text: var(--vvd-color-canvas-text);\n --_appearance-color-fill: var(--_connotation-color-backdrop);\n --_appearance-color-outline: var(--_connotation-color-intermediate);\n}\n.base.appearance-ghost {\n --_appearance-color-text: var(--_connotation-color-primary);\n --_appearance-color-fill: transparent;\n --_appearance-color-outline: transparent;\n}\n.base:where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)) {\n --_appearance-color-text: var(--vvd-color-canvas-text);\n --_appearance-color-fill: var(--_connotation-color-backdrop);\n --_appearance-color-outline: var(--_connotation-color-firm);\n}\n.base:where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)).appearance-ghost {\n --_appearance-color-text: var(--_connotation-color-primary);\n --_appearance-color-fill: var(--_connotation-color-faint);\n --_appearance-color-outline: transparent;\n}\n.base:where(:disabled, .disabled) {\n --_appearance-color-text: var(--vvd-color-neutral-400);\n --_appearance-color-fill: var(--vvd-color-neutral-200);\n --_appearance-color-outline: var(--vvd-color-neutral-400);\n}\n.base:where(:disabled, .disabled).appearance-ghost {\n --_appearance-color-text: var(--vvd-color-neutral-400);\n --_appearance-color-fill: transparent;\n --_appearance-color-outline: transparent;\n}\n.base:where(.readonly):where(:not(:disabled, .disabled)) {\n --_appearance-color-text: var(--vvd-color-canvas-text);\n --_appearance-color-fill: var(--vvd-color-neutral-100);\n --_appearance-color-outline: var(--vvd-color-neutral-400);\n}\n.base:where(.readonly):where(:not(:disabled, .disabled)).appearance-ghost {\n --_appearance-color-text: var(--vvd-color-neutral-400);\n --_appearance-color-fill: transparent;\n --_appearance-color-outline: transparent;\n}\n.base.connotation-success {\n --_connotation-color-primary: var(--vvd-color-success-500);\n --_connotation-color-backdrop: var(--vvd-color-success-50);\n --_connotation-color-intermediate: var(--vvd-color-success-500);\n --_connotation-color-firm: var(--vvd-color-success-600);\n --_connotation-color-faint: var(--vvd-color-success-50);\n --_connotation-color-soft: var(--vvd-color-success-100);\n}\n.base.connotation-alert {\n --_connotation-color-primary: var(--vvd-color-alert-500);\n --_connotation-color-backdrop: var(--vvd-color-alert-50);\n --_connotation-color-intermediate: var(--vvd-color-alert-500);\n --_connotation-color-firm: var(--vvd-color-alert-600);\n --_connotation-color-faint: var(--vvd-color-alert-50);\n --_connotation-color-soft: var(--vvd-color-alert-100);\n}\n.base:not(.connotation-success, .connotation-alert) {\n --_connotation-color-primary: var(--vvd-color-canvas-text);\n --_connotation-color-backdrop: var(--vvd-color-canvas);\n --_connotation-color-intermediate: var(--vvd-color-neutral-500);\n --_connotation-color-firm: 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 (user-select: none) {\n .base {\n user-select: none;\n }\n}\n.base:not(.disabled) {\n --_low-ink-color: var(--vvd-color-neutral-600);\n}\n.base.disabled {\n --_low-ink-color: var(--_appearance-color-text);\n}\n\n.label {\n color: var(--vvd-color-canvas-text);\n contain: inline-size;\n font: var(--vvd-typography-base);\n grid-column: 1/4;\n grid-row: 1;\n}\n.char-count + .label {\n grid-column: 1/3;\n}\n\n.char-count {\n color: var(--_low-ink-color);\n font: var(--vvd-typography-base);\n grid-column: 3/4;\n}\n\n.fieldset {\n position: relative;\n display: flex;\n align-items: center;\n grid-column: 1/4;\n transition: color 0.2s;\n /* Shape */\n}\n.base > .fieldset {\n block-size: calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2)));\n}\n.base:not(.shape-pill) .fieldset {\n border-radius: 6px;\n}\n.base.shape-pill .fieldset {\n border-radius: 24px;\n}\n\n.control {\n width: 100%;\n border: 0 none;\n background-color: var(--_appearance-color-fill);\n block-size: 100%;\n border-radius: inherit;\n box-shadow: inset 0 0 0 1px var(--_appearance-color-outline);\n color: var(--_appearance-color-text);\n font: var(--vvd-typography-base);\n padding-inline-end: var(--_text-field-gutter);\n padding-inline-start: var(--_text-field-gutter);\n transition: box-shadow 0.2s, background-color 0.2s;\n}\n.control:disabled {\n cursor: not-allowed;\n opacity: 1; /* 2. correct opacity on iOS */\n -webkit-text-fill-color: var(--_appearance-color-text); /* 1. sets text fill to current `color` for safari */\n}\n.control::placeholder, .control:disabled::placeholder {\n opacity: 1; /* 2. correct opacity on iOS */\n -webkit-text-fill-color: var(--_low-ink-color); /* 1. sets text fill to current `color` for safari */\n}\n@supports selector(:focus-visible) {\n .control:focus {\n outline: none;\n }\n}\n\n.icon {\n position: absolute;\n z-index: 1;\n color: var(--_low-ink-color);\n font-size: var(--_text-field-icon-size);\n inset-inline-start: var(--_text-field-gutter);\n line-height: 1;\n}\n.icon + .control {\n padding-inline-start: calc(var(--_text-field-icon-size) + var(--_text-field-gutter) * 2);\n}\n\n.focus-indicator {\n --focus-stroke-gap-color: transparent;\n pointer-events: none;\n}\n.fieldset:not(:focus-visible, :focus-within) > .focus-indicator {\n display: none;\n}";
|
|
2
2
|
|
|
3
3
|
export { css_248z as c };
|
package/styles/core/all.css
CHANGED
package/styles/core/theme.css
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Mon, 16 Jan 2023 13:29:55 GMT
|
|
4
4
|
*/
|
|
5
5
|
/**
|
|
6
6
|
* Do not edit directly
|
|
7
|
-
* Generated on
|
|
7
|
+
* Generated on Mon, 16 Jan 2023 13:29:55 GMT
|
|
8
8
|
*/
|
|
9
9
|
/**
|
|
10
10
|
* Do not edit directly
|
|
11
|
-
* Generated on
|
|
11
|
+
* Generated on Mon, 16 Jan 2023 13:29:55 GMT
|
|
12
12
|
*/
|
|
13
13
|
/**
|
|
14
14
|
* Do not edit directly
|
|
15
|
-
* Generated on
|
|
15
|
+
* Generated on Mon, 16 Jan 2023 13:29:55 GMT
|
|
16
16
|
*/
|
|
17
17
|
@property --vvd-size-density {
|
|
18
18
|
syntax: "<integer>";
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Mon, 16 Jan 2023 13:29:55 GMT
|
|
4
4
|
*/
|
|
5
5
|
/**
|
|
6
6
|
* Do not edit directly
|
|
7
|
-
* Generated on
|
|
7
|
+
* Generated on Mon, 16 Jan 2023 13:29:55 GMT
|
|
8
8
|
*/
|
|
9
9
|
/**
|
|
10
10
|
* Do not edit directly
|
|
11
|
-
* Generated on
|
|
11
|
+
* Generated on Mon, 16 Jan 2023 13:29:55 GMT
|
|
12
12
|
*/
|
|
13
13
|
/**
|
|
14
14
|
* Do not edit directly
|
|
15
|
-
* Generated on
|
|
15
|
+
* Generated on Mon, 16 Jan 2023 13:29:55 GMT
|
|
16
16
|
*/
|
|
17
17
|
@property --vvd-size-density {
|
|
18
18
|
syntax: "<integer>";
|
package/tab/index.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { r as registerTab } from '../shared/definition39.js';
|
|
2
|
+
import '../shared/index.js';
|
|
3
|
+
import '../shared/definition3.js';
|
|
4
|
+
import '../shared/icon.js';
|
|
5
|
+
import '../shared/to-string.js';
|
|
6
|
+
import '../shared/string-trim.js';
|
|
7
|
+
import '../shared/_has.js';
|
|
8
|
+
import '../shared/when.js';
|
|
9
|
+
import '../shared/class-names.js';
|
|
10
|
+
import '../shared/definition4.js';
|
|
11
|
+
import '../shared/focus.js';
|
|
12
|
+
import '../shared/affix.js';
|
|
13
|
+
import '../shared/apply-mixins.js';
|
|
14
|
+
import '../shared/focus2.js';
|
|
15
|
+
|
|
16
|
+
registerTab();
|
package/tabs/index.js
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { r as registerTabs } from '../shared/definition41.js';
|
|
2
|
+
import '../shared/index.js';
|
|
3
|
+
import '../shared/definition39.js';
|
|
4
|
+
import '../shared/definition3.js';
|
|
5
|
+
import '../shared/icon.js';
|
|
6
|
+
import '../shared/to-string.js';
|
|
7
|
+
import '../shared/string-trim.js';
|
|
8
|
+
import '../shared/_has.js';
|
|
9
|
+
import '../shared/when.js';
|
|
10
|
+
import '../shared/class-names.js';
|
|
11
|
+
import '../shared/definition4.js';
|
|
12
|
+
import '../shared/focus.js';
|
|
13
|
+
import '../shared/affix.js';
|
|
14
|
+
import '../shared/apply-mixins.js';
|
|
15
|
+
import '../shared/focus2.js';
|
|
16
|
+
import '../shared/definition40.js';
|
|
17
|
+
import '../shared/start-end.js';
|
|
18
|
+
import '../shared/ref.js';
|
|
19
|
+
import '../shared/key-codes.js';
|
|
20
|
+
import '../shared/strings.js';
|
|
21
|
+
import '../shared/numbers.js';
|
|
22
|
+
import '../shared/slotted.js';
|
|
23
|
+
|
|
24
|
+
registerTabs();
|
package/text-area/index.js
CHANGED
package/text-field/index.js
CHANGED
package/tooltip/index.js
CHANGED
package/vivid.api.json
CHANGED
|
@@ -2723,6 +2723,90 @@
|
|
|
2723
2723
|
"endIndex": 3
|
|
2724
2724
|
}
|
|
2725
2725
|
},
|
|
2726
|
+
{
|
|
2727
|
+
"kind": "Variable",
|
|
2728
|
+
"canonicalReference": "@vonage/vivid!registerTab:var",
|
|
2729
|
+
"docComment": "",
|
|
2730
|
+
"excerptTokens": [
|
|
2731
|
+
{
|
|
2732
|
+
"kind": "Content",
|
|
2733
|
+
"text": "registerTab: "
|
|
2734
|
+
},
|
|
2735
|
+
{
|
|
2736
|
+
"kind": "Content",
|
|
2737
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2738
|
+
},
|
|
2739
|
+
{
|
|
2740
|
+
"kind": "Reference",
|
|
2741
|
+
"text": "DesignSystem",
|
|
2742
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2743
|
+
}
|
|
2744
|
+
],
|
|
2745
|
+
"fileUrlPath": "../../dist/libs/components/lib/tab/definition.d.ts",
|
|
2746
|
+
"isReadonly": true,
|
|
2747
|
+
"releaseTag": "Public",
|
|
2748
|
+
"name": "registerTab",
|
|
2749
|
+
"variableTypeTokenRange": {
|
|
2750
|
+
"startIndex": 1,
|
|
2751
|
+
"endIndex": 3
|
|
2752
|
+
}
|
|
2753
|
+
},
|
|
2754
|
+
{
|
|
2755
|
+
"kind": "Variable",
|
|
2756
|
+
"canonicalReference": "@vonage/vivid!registerTabPanel:var",
|
|
2757
|
+
"docComment": "",
|
|
2758
|
+
"excerptTokens": [
|
|
2759
|
+
{
|
|
2760
|
+
"kind": "Content",
|
|
2761
|
+
"text": "registerTabPanel: "
|
|
2762
|
+
},
|
|
2763
|
+
{
|
|
2764
|
+
"kind": "Content",
|
|
2765
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2766
|
+
},
|
|
2767
|
+
{
|
|
2768
|
+
"kind": "Reference",
|
|
2769
|
+
"text": "DesignSystem",
|
|
2770
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2771
|
+
}
|
|
2772
|
+
],
|
|
2773
|
+
"fileUrlPath": "../../dist/libs/components/lib/tab-panel/definition.d.ts",
|
|
2774
|
+
"isReadonly": true,
|
|
2775
|
+
"releaseTag": "Public",
|
|
2776
|
+
"name": "registerTabPanel",
|
|
2777
|
+
"variableTypeTokenRange": {
|
|
2778
|
+
"startIndex": 1,
|
|
2779
|
+
"endIndex": 3
|
|
2780
|
+
}
|
|
2781
|
+
},
|
|
2782
|
+
{
|
|
2783
|
+
"kind": "Variable",
|
|
2784
|
+
"canonicalReference": "@vonage/vivid!registerTabs:var",
|
|
2785
|
+
"docComment": "",
|
|
2786
|
+
"excerptTokens": [
|
|
2787
|
+
{
|
|
2788
|
+
"kind": "Content",
|
|
2789
|
+
"text": "registerTabs: "
|
|
2790
|
+
},
|
|
2791
|
+
{
|
|
2792
|
+
"kind": "Content",
|
|
2793
|
+
"text": "(prefix?: string) => import(\"@microsoft/fast-foundation\")."
|
|
2794
|
+
},
|
|
2795
|
+
{
|
|
2796
|
+
"kind": "Reference",
|
|
2797
|
+
"text": "DesignSystem",
|
|
2798
|
+
"canonicalReference": "@microsoft/fast-foundation!DesignSystem:interface"
|
|
2799
|
+
}
|
|
2800
|
+
],
|
|
2801
|
+
"fileUrlPath": "../../dist/libs/components/lib/tabs/definition.d.ts",
|
|
2802
|
+
"isReadonly": true,
|
|
2803
|
+
"releaseTag": "Public",
|
|
2804
|
+
"name": "registerTabs",
|
|
2805
|
+
"variableTypeTokenRange": {
|
|
2806
|
+
"startIndex": 1,
|
|
2807
|
+
"endIndex": 3
|
|
2808
|
+
}
|
|
2809
|
+
},
|
|
2726
2810
|
{
|
|
2727
2811
|
"kind": "Variable",
|
|
2728
2812
|
"canonicalReference": "@vonage/vivid!registerTextArea:var",
|
|
@@ -3038,6 +3122,237 @@
|
|
|
3038
3122
|
"endIndex": 14
|
|
3039
3123
|
}
|
|
3040
3124
|
},
|
|
3125
|
+
{
|
|
3126
|
+
"kind": "Variable",
|
|
3127
|
+
"canonicalReference": "@vonage/vivid!tabDefinition:var",
|
|
3128
|
+
"docComment": "",
|
|
3129
|
+
"excerptTokens": [
|
|
3130
|
+
{
|
|
3131
|
+
"kind": "Content",
|
|
3132
|
+
"text": "tabDefinition: "
|
|
3133
|
+
},
|
|
3134
|
+
{
|
|
3135
|
+
"kind": "Content",
|
|
3136
|
+
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
3137
|
+
},
|
|
3138
|
+
{
|
|
3139
|
+
"kind": "Reference",
|
|
3140
|
+
"text": "OverrideFoundationElementDefinition",
|
|
3141
|
+
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
3142
|
+
},
|
|
3143
|
+
{
|
|
3144
|
+
"kind": "Content",
|
|
3145
|
+
"text": "<"
|
|
3146
|
+
},
|
|
3147
|
+
{
|
|
3148
|
+
"kind": "Reference",
|
|
3149
|
+
"text": "FoundationElementDefinition",
|
|
3150
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
3151
|
+
},
|
|
3152
|
+
{
|
|
3153
|
+
"kind": "Content",
|
|
3154
|
+
"text": "> | undefined) => import(\"@microsoft/fast-foundation\")."
|
|
3155
|
+
},
|
|
3156
|
+
{
|
|
3157
|
+
"kind": "Reference",
|
|
3158
|
+
"text": "FoundationElementRegistry",
|
|
3159
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
|
|
3160
|
+
},
|
|
3161
|
+
{
|
|
3162
|
+
"kind": "Content",
|
|
3163
|
+
"text": "<"
|
|
3164
|
+
},
|
|
3165
|
+
{
|
|
3166
|
+
"kind": "Reference",
|
|
3167
|
+
"text": "FoundationElementDefinition",
|
|
3168
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
3169
|
+
},
|
|
3170
|
+
{
|
|
3171
|
+
"kind": "Content",
|
|
3172
|
+
"text": ", import(\"@microsoft/fast-element\")."
|
|
3173
|
+
},
|
|
3174
|
+
{
|
|
3175
|
+
"kind": "Reference",
|
|
3176
|
+
"text": "Constructable",
|
|
3177
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
3178
|
+
},
|
|
3179
|
+
{
|
|
3180
|
+
"kind": "Content",
|
|
3181
|
+
"text": "<import(\"@microsoft/fast-foundation\")."
|
|
3182
|
+
},
|
|
3183
|
+
{
|
|
3184
|
+
"kind": "Reference",
|
|
3185
|
+
"text": "FoundationElement",
|
|
3186
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElement:class"
|
|
3187
|
+
},
|
|
3188
|
+
{
|
|
3189
|
+
"kind": "Content",
|
|
3190
|
+
"text": ">>"
|
|
3191
|
+
}
|
|
3192
|
+
],
|
|
3193
|
+
"fileUrlPath": "../../dist/libs/components/lib/tab/definition.d.ts",
|
|
3194
|
+
"isReadonly": true,
|
|
3195
|
+
"releaseTag": "Public",
|
|
3196
|
+
"name": "tabDefinition",
|
|
3197
|
+
"variableTypeTokenRange": {
|
|
3198
|
+
"startIndex": 1,
|
|
3199
|
+
"endIndex": 14
|
|
3200
|
+
}
|
|
3201
|
+
},
|
|
3202
|
+
{
|
|
3203
|
+
"kind": "Variable",
|
|
3204
|
+
"canonicalReference": "@vonage/vivid!tabPanelDefinition:var",
|
|
3205
|
+
"docComment": "",
|
|
3206
|
+
"excerptTokens": [
|
|
3207
|
+
{
|
|
3208
|
+
"kind": "Content",
|
|
3209
|
+
"text": "tabPanelDefinition: "
|
|
3210
|
+
},
|
|
3211
|
+
{
|
|
3212
|
+
"kind": "Content",
|
|
3213
|
+
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
3214
|
+
},
|
|
3215
|
+
{
|
|
3216
|
+
"kind": "Reference",
|
|
3217
|
+
"text": "OverrideFoundationElementDefinition",
|
|
3218
|
+
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
3219
|
+
},
|
|
3220
|
+
{
|
|
3221
|
+
"kind": "Content",
|
|
3222
|
+
"text": "<"
|
|
3223
|
+
},
|
|
3224
|
+
{
|
|
3225
|
+
"kind": "Reference",
|
|
3226
|
+
"text": "FoundationElementDefinition",
|
|
3227
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
3228
|
+
},
|
|
3229
|
+
{
|
|
3230
|
+
"kind": "Content",
|
|
3231
|
+
"text": "> | undefined) => import(\"@microsoft/fast-foundation\")."
|
|
3232
|
+
},
|
|
3233
|
+
{
|
|
3234
|
+
"kind": "Reference",
|
|
3235
|
+
"text": "FoundationElementRegistry",
|
|
3236
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
|
|
3237
|
+
},
|
|
3238
|
+
{
|
|
3239
|
+
"kind": "Content",
|
|
3240
|
+
"text": "<"
|
|
3241
|
+
},
|
|
3242
|
+
{
|
|
3243
|
+
"kind": "Reference",
|
|
3244
|
+
"text": "FoundationElementDefinition",
|
|
3245
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
3246
|
+
},
|
|
3247
|
+
{
|
|
3248
|
+
"kind": "Content",
|
|
3249
|
+
"text": ", import(\"@microsoft/fast-element\")."
|
|
3250
|
+
},
|
|
3251
|
+
{
|
|
3252
|
+
"kind": "Reference",
|
|
3253
|
+
"text": "Constructable",
|
|
3254
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
3255
|
+
},
|
|
3256
|
+
{
|
|
3257
|
+
"kind": "Content",
|
|
3258
|
+
"text": "<import(\"@microsoft/fast-foundation\")."
|
|
3259
|
+
},
|
|
3260
|
+
{
|
|
3261
|
+
"kind": "Reference",
|
|
3262
|
+
"text": "FoundationElement",
|
|
3263
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElement:class"
|
|
3264
|
+
},
|
|
3265
|
+
{
|
|
3266
|
+
"kind": "Content",
|
|
3267
|
+
"text": ">>"
|
|
3268
|
+
}
|
|
3269
|
+
],
|
|
3270
|
+
"fileUrlPath": "../../dist/libs/components/lib/tab-panel/definition.d.ts",
|
|
3271
|
+
"isReadonly": true,
|
|
3272
|
+
"releaseTag": "Public",
|
|
3273
|
+
"name": "tabPanelDefinition",
|
|
3274
|
+
"variableTypeTokenRange": {
|
|
3275
|
+
"startIndex": 1,
|
|
3276
|
+
"endIndex": 14
|
|
3277
|
+
}
|
|
3278
|
+
},
|
|
3279
|
+
{
|
|
3280
|
+
"kind": "Variable",
|
|
3281
|
+
"canonicalReference": "@vonage/vivid!tabsDefinition:var",
|
|
3282
|
+
"docComment": "",
|
|
3283
|
+
"excerptTokens": [
|
|
3284
|
+
{
|
|
3285
|
+
"kind": "Content",
|
|
3286
|
+
"text": "tabsDefinition: "
|
|
3287
|
+
},
|
|
3288
|
+
{
|
|
3289
|
+
"kind": "Content",
|
|
3290
|
+
"text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
3291
|
+
},
|
|
3292
|
+
{
|
|
3293
|
+
"kind": "Reference",
|
|
3294
|
+
"text": "OverrideFoundationElementDefinition",
|
|
3295
|
+
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
3296
|
+
},
|
|
3297
|
+
{
|
|
3298
|
+
"kind": "Content",
|
|
3299
|
+
"text": "<"
|
|
3300
|
+
},
|
|
3301
|
+
{
|
|
3302
|
+
"kind": "Reference",
|
|
3303
|
+
"text": "FoundationElementDefinition",
|
|
3304
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
3305
|
+
},
|
|
3306
|
+
{
|
|
3307
|
+
"kind": "Content",
|
|
3308
|
+
"text": "> | undefined) => import(\"@microsoft/fast-foundation\")."
|
|
3309
|
+
},
|
|
3310
|
+
{
|
|
3311
|
+
"kind": "Reference",
|
|
3312
|
+
"text": "FoundationElementRegistry",
|
|
3313
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
|
|
3314
|
+
},
|
|
3315
|
+
{
|
|
3316
|
+
"kind": "Content",
|
|
3317
|
+
"text": "<"
|
|
3318
|
+
},
|
|
3319
|
+
{
|
|
3320
|
+
"kind": "Reference",
|
|
3321
|
+
"text": "FoundationElementDefinition",
|
|
3322
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementDefinition:interface"
|
|
3323
|
+
},
|
|
3324
|
+
{
|
|
3325
|
+
"kind": "Content",
|
|
3326
|
+
"text": ", import(\"@microsoft/fast-element\")."
|
|
3327
|
+
},
|
|
3328
|
+
{
|
|
3329
|
+
"kind": "Reference",
|
|
3330
|
+
"text": "Constructable",
|
|
3331
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
3332
|
+
},
|
|
3333
|
+
{
|
|
3334
|
+
"kind": "Content",
|
|
3335
|
+
"text": "<import(\"@microsoft/fast-foundation\")."
|
|
3336
|
+
},
|
|
3337
|
+
{
|
|
3338
|
+
"kind": "Reference",
|
|
3339
|
+
"text": "FoundationElement",
|
|
3340
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElement:class"
|
|
3341
|
+
},
|
|
3342
|
+
{
|
|
3343
|
+
"kind": "Content",
|
|
3344
|
+
"text": ">>"
|
|
3345
|
+
}
|
|
3346
|
+
],
|
|
3347
|
+
"fileUrlPath": "../../dist/libs/components/lib/tabs/definition.d.ts",
|
|
3348
|
+
"isReadonly": true,
|
|
3349
|
+
"releaseTag": "Public",
|
|
3350
|
+
"name": "tabsDefinition",
|
|
3351
|
+
"variableTypeTokenRange": {
|
|
3352
|
+
"startIndex": 1,
|
|
3353
|
+
"endIndex": 14
|
|
3354
|
+
}
|
|
3355
|
+
},
|
|
3041
3356
|
{
|
|
3042
3357
|
"kind": "Variable",
|
|
3043
3358
|
"canonicalReference": "@vonage/vivid!textAreaDefinition:var",
|