@vonage/vivid 3.0.0-next.134 → 3.0.0-next.136
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 +3 -1
- package/custom-elements.json +455 -0
- package/index.js +12 -6
- package/lib/components.d.ts +4 -0
- package/lib/menu-item/menu-item.d.ts +1 -0
- package/lib/number-field/number-field.d.ts +2 -2
- package/lib/select/definition.d.ts +3 -0
- package/lib/select/index.d.ts +1 -0
- package/lib/select/select.d.ts +17 -0
- package/lib/select/select.template.d.ts +4 -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/lib/text-area/text-area.d.ts +2 -2
- package/lib/text-field/text-field.d.ts +2 -2
- package/listbox/index.js +2 -0
- package/note/index.js +1 -0
- package/number-field/index.js +3 -3
- package/option/index.js +1 -0
- package/package.json +1 -1
- package/select/index.js +34 -0
- 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 +4 -11
- package/shared/definition19.js +2 -2
- 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 +2 -2
- package/shared/definition27.js +20 -8
- package/shared/definition29.js +1 -1
- package/shared/definition30.js +1 -1
- package/shared/definition31.js +3 -2
- 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 +618 -70
- package/shared/definition37.js +66 -572
- package/shared/definition38.js +526 -81
- package/shared/definition39.js +85 -218
- package/shared/definition4.js +1 -1
- package/shared/definition40.js +51 -103
- package/shared/definition41.js +23 -68
- package/shared/definition42.js +440 -0
- package/shared/definition43.js +281 -0
- package/shared/definition44.js +119 -0
- package/shared/definition45.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 +19 -13
- package/shared/listbox.js +2 -9
- package/shared/numbers.js +10 -1
- package/shared/patterns/focus.d.ts +1 -1
- package/shared/patterns/form-elements/form-elements.d.ts +20 -8
- package/shared/select.options.js +10 -0
- package/shared/strings.js +9 -0
- package/shared/text-field.js +1 -1
- package/side-drawer/index.js +1 -1
- package/slider/index.js +1 -1
- package/styles/core/all.css +1 -1
- package/styles/core/theme.css +1 -1
- package/styles/core/typography.css +1 -1
- package/styles/tokens/theme-dark.css +4 -4
- package/styles/tokens/theme-light.css +4 -4
- package/switch/index.js +2 -1
- 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 +420 -0
package/shared/form-elements.js
CHANGED
|
@@ -2,7 +2,7 @@ import { _ as __decorate, a as attr, b as __metadata, N as observable, a6 as vol
|
|
|
2
2
|
import { I as Icon } from './icon.js';
|
|
3
3
|
import { w as when } from './when.js';
|
|
4
4
|
|
|
5
|
-
var css_248z = "/**\n * Do not edit directly\n * Generated on
|
|
5
|
+
var css_248z = "/**\n * Do not edit directly\n * Generated on Tue, 17 Jan 2023 16:12:43 GMT\n */\n.message {\n display: flex;\n contain: inline-size;\n font: var(--vvd-typography-base-condensed);\n gap: 4px;\n grid-column: 1/-1;\n}\n.message-text {\n color: var(--vvd-color-canvas-text);\n}\n.helper-message .message-text {\n color: var(--_low-ink-color);\n}\n.message-icon {\n font-size: 16px;\n}\n.success-message .message-icon {\n color: var(--vvd-color-success-500);\n}\n.error-message .message-icon {\n color: var(--vvd-color-alert-500);\n}";
|
|
6
6
|
|
|
7
7
|
let _ = t => t,
|
|
8
8
|
_t,
|
|
@@ -10,12 +10,28 @@ let _ = t => t,
|
|
|
10
10
|
_t3;
|
|
11
11
|
const ElementInternalsKey = 'ElementInternals';
|
|
12
12
|
const supportsElementInternals = () => ElementInternalsKey in window && 'setFormValue' in window[ElementInternalsKey].prototype;
|
|
13
|
+
class FormElementHelperText {}
|
|
14
|
+
__decorate([attr({
|
|
15
|
+
attribute: 'helper-text'
|
|
16
|
+
}), __metadata("design:type", String)], FormElementHelperText.prototype, "helperText", void 0);
|
|
17
|
+
class FormElementSuccessText {}
|
|
18
|
+
__decorate([attr({
|
|
19
|
+
attribute: 'success-text'
|
|
20
|
+
}), __metadata("design:type", String)], FormElementSuccessText.prototype, "successText", void 0);
|
|
21
|
+
class FormElementCharCount {
|
|
22
|
+
constructor() {
|
|
23
|
+
this.charCount = false;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
__decorate([attr({
|
|
27
|
+
attribute: 'char-count',
|
|
28
|
+
mode: 'boolean'
|
|
29
|
+
}), __metadata("design:type", Object)], FormElementCharCount.prototype, "charCount", void 0);
|
|
13
30
|
function formElements(constructor) {
|
|
14
31
|
var _Decorated_blurred, _Decorated_handleInvalidEvent;
|
|
15
32
|
class Decorated extends constructor {
|
|
16
33
|
constructor(...args) {
|
|
17
34
|
super(...args);
|
|
18
|
-
this.charCount = false;
|
|
19
35
|
this.userValid = true;
|
|
20
36
|
_Decorated_blurred.set(this, false);
|
|
21
37
|
_Decorated_handleInvalidEvent.set(this, () => {
|
|
@@ -62,16 +78,6 @@ function formElements(constructor) {
|
|
|
62
78
|
}
|
|
63
79
|
_Decorated_blurred = new WeakMap(), _Decorated_handleInvalidEvent = new WeakMap();
|
|
64
80
|
__decorate([attr, __metadata("design:type", String)], Decorated.prototype, "label", void 0);
|
|
65
|
-
__decorate([attr({
|
|
66
|
-
attribute: 'helper-text'
|
|
67
|
-
}), __metadata("design:type", String)], Decorated.prototype, "helperText", void 0);
|
|
68
|
-
__decorate([attr({
|
|
69
|
-
attribute: 'success-text'
|
|
70
|
-
}), __metadata("design:type", String)], Decorated.prototype, "successText", void 0);
|
|
71
|
-
__decorate([attr({
|
|
72
|
-
attribute: 'char-count',
|
|
73
|
-
mode: 'boolean'
|
|
74
|
-
}), __metadata("design:type", Object)], Decorated.prototype, "charCount", void 0);
|
|
75
81
|
__decorate([observable, __metadata("design:type", Object)], Decorated.prototype, "userValid", void 0);
|
|
76
82
|
__decorate([volatile, __metadata("design:type", Object), __metadata("design:paramtypes", [])], Decorated.prototype, "errorValidationMessage", null);
|
|
77
83
|
return Decorated;
|
|
@@ -118,4 +124,4 @@ function feedbackMessage({
|
|
|
118
124
|
`), x => x[messageProperty]);
|
|
119
125
|
}
|
|
120
126
|
|
|
121
|
-
export { formElements as f, getFeedbackTemplate as g };
|
|
127
|
+
export { FormElementSuccessText as F, FormElementHelperText as a, FormElementCharCount as b, formElements as f, getFeedbackTemplate as g };
|
package/shared/listbox.js
CHANGED
|
@@ -3,6 +3,7 @@ import { i as isListboxOption } from './definition19.js';
|
|
|
3
3
|
import { A as ARIAGlobalStatesAndProperties } from './aria-global.js';
|
|
4
4
|
import { a as applyMixins } from './apply-mixins.js';
|
|
5
5
|
import { a as keySpace, b as keyEscape, k as keyEnter, c as keyTab, d as keyEnd, e as keyArrowUp, f as keyArrowDown, g as keyHome } from './key-codes.js';
|
|
6
|
+
import { u as uniqueId } from './strings.js';
|
|
6
7
|
import { i as inRange } from './numbers.js';
|
|
7
8
|
|
|
8
9
|
/**
|
|
@@ -21,14 +22,6 @@ function findLastIndex(array, predicate) {
|
|
|
21
22
|
return -1;
|
|
22
23
|
}
|
|
23
24
|
|
|
24
|
-
let uniqueIdCounter = 0;
|
|
25
|
-
/**
|
|
26
|
-
* Generates a unique ID based on incrementing a counter.
|
|
27
|
-
*/
|
|
28
|
-
function uniqueId(prefix = "") {
|
|
29
|
-
return `${prefix}${uniqueIdCounter++}`;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
25
|
/**
|
|
33
26
|
* A Listbox Custom HTML Element.
|
|
34
27
|
* Implements the {@link https://www.w3.org/TR/wai-aria-1.1/#listbox | ARIA listbox }.
|
|
@@ -999,4 +992,4 @@ __decorate([
|
|
|
999
992
|
class Listbox extends ListboxElement {}
|
|
1000
993
|
__decorate([attr, __metadata("design:type", String)], Listbox.prototype, "appearance", void 0);
|
|
1001
994
|
|
|
1002
|
-
export { DelegatesARIAListbox as D, Listbox$1 as L, Listbox as a, ListboxElement as b
|
|
995
|
+
export { DelegatesARIAListbox as D, Listbox$1 as L, Listbox as a, ListboxElement as b };
|
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 };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { ViewTemplate } from '@microsoft/fast-element';
|
|
2
2
|
import type { ElementDefinitionContext } from '@microsoft/fast-foundation';
|
|
3
|
-
export declare const focusTemplateFactory: (context: ElementDefinitionContext) => ViewTemplate
|
|
3
|
+
export declare const focusTemplateFactory: (context: ElementDefinitionContext) => ViewTemplate;
|
|
@@ -1,27 +1,39 @@
|
|
|
1
1
|
import type { ElementDefinitionContext } from '@microsoft/fast-foundation';
|
|
2
2
|
export interface FormElement {
|
|
3
|
-
charCount: boolean;
|
|
4
3
|
errorValidationMessage: boolean;
|
|
5
|
-
helperText: string;
|
|
6
|
-
successText: string;
|
|
7
4
|
label: string;
|
|
8
5
|
userValid: boolean;
|
|
9
6
|
dirtyValue: boolean;
|
|
10
7
|
}
|
|
8
|
+
export interface FormElementHelperText {
|
|
9
|
+
helperText?: string;
|
|
10
|
+
}
|
|
11
|
+
export interface FormElementSuccessText {
|
|
12
|
+
successText?: string;
|
|
13
|
+
}
|
|
14
|
+
export interface FormElementCharCount {
|
|
15
|
+
charCount: boolean;
|
|
16
|
+
}
|
|
17
|
+
export declare class FormElementHelperText {
|
|
18
|
+
helperText?: string;
|
|
19
|
+
}
|
|
20
|
+
export declare class FormElementSuccessText {
|
|
21
|
+
successText?: string;
|
|
22
|
+
}
|
|
23
|
+
export declare class FormElementCharCount {
|
|
24
|
+
charCount: boolean;
|
|
25
|
+
}
|
|
11
26
|
export declare function formElements<T extends {
|
|
12
27
|
new (...args: any[]): Record<string, any>;
|
|
13
28
|
}>(constructor: T): {
|
|
14
29
|
new (...args: any[]): {
|
|
15
30
|
[x: string]: any;
|
|
16
31
|
label?: string | undefined;
|
|
17
|
-
helperText?: string | undefined;
|
|
18
|
-
successText?: string | undefined;
|
|
19
|
-
charCount: boolean;
|
|
20
32
|
userValid: boolean;
|
|
21
|
-
"__#
|
|
33
|
+
"__#8096@#blurred": boolean;
|
|
22
34
|
readonly errorValidationMessage: any;
|
|
23
35
|
connectedCallback(): void;
|
|
24
|
-
"__#
|
|
36
|
+
"__#8096@#handleInvalidEvent": () => void;
|
|
25
37
|
disconnectedCallback(): void;
|
|
26
38
|
validate: () => void;
|
|
27
39
|
};
|
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 Tue, 17 Jan 2023 16:12:43 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/side-drawer/index.js
CHANGED
package/slider/index.js
CHANGED
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 Tue, 17 Jan 2023 16:12:43 GMT
|
|
4
4
|
*/
|
|
5
5
|
/**
|
|
6
6
|
* Do not edit directly
|
|
7
|
-
* Generated on
|
|
7
|
+
* Generated on Tue, 17 Jan 2023 16:12:43 GMT
|
|
8
8
|
*/
|
|
9
9
|
/**
|
|
10
10
|
* Do not edit directly
|
|
11
|
-
* Generated on
|
|
11
|
+
* Generated on Tue, 17 Jan 2023 16:12:43 GMT
|
|
12
12
|
*/
|
|
13
13
|
/**
|
|
14
14
|
* Do not edit directly
|
|
15
|
-
* Generated on
|
|
15
|
+
* Generated on Tue, 17 Jan 2023 16:12:43 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 Tue, 17 Jan 2023 16:12:43 GMT
|
|
4
4
|
*/
|
|
5
5
|
/**
|
|
6
6
|
* Do not edit directly
|
|
7
|
-
* Generated on
|
|
7
|
+
* Generated on Tue, 17 Jan 2023 16:12:43 GMT
|
|
8
8
|
*/
|
|
9
9
|
/**
|
|
10
10
|
* Do not edit directly
|
|
11
|
-
* Generated on
|
|
11
|
+
* Generated on Tue, 17 Jan 2023 16:12:43 GMT
|
|
12
12
|
*/
|
|
13
13
|
/**
|
|
14
14
|
* Do not edit directly
|
|
15
|
-
* Generated on
|
|
15
|
+
* Generated on Tue, 17 Jan 2023 16:12:43 GMT
|
|
16
16
|
*/
|
|
17
17
|
@property --vvd-size-density {
|
|
18
18
|
syntax: "<integer>";
|
package/switch/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as registerSwitch } from '../shared/
|
|
1
|
+
import { r as registerSwitch } from '../shared/definition39.js';
|
|
2
2
|
import '../shared/index.js';
|
|
3
3
|
import '../shared/definition3.js';
|
|
4
4
|
import '../shared/icon.js';
|
|
@@ -13,5 +13,6 @@ import '../shared/form-associated.js';
|
|
|
13
13
|
import '../shared/key-codes.js';
|
|
14
14
|
import '../shared/affix.js';
|
|
15
15
|
import '../shared/focus2.js';
|
|
16
|
+
import '../shared/form-elements.js';
|
|
16
17
|
|
|
17
18
|
registerSwitch();
|
package/tab/index.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { r as registerTab } from '../shared/definition40.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/definition42.js';
|
|
2
|
+
import '../shared/index.js';
|
|
3
|
+
import '../shared/definition40.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/definition41.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