@fluentui/web-components 3.0.0-alpha.21 → 3.0.0-alpha.23
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/CHANGELOG.json +31 -1
- package/CHANGELOG.md +20 -2
- package/dist/dts/index.d.ts +1 -0
- package/dist/dts/menu-item/menu-item.d.ts +2 -1
- package/dist/dts/text-input/define.d.ts +1 -0
- package/dist/dts/text-input/index.d.ts +6 -0
- package/dist/dts/text-input/text-input.d.ts +26 -0
- package/dist/dts/text-input/text-input.definition.d.ts +10 -0
- package/dist/dts/text-input/text-input.options.d.ts +30 -0
- package/dist/dts/text-input/text-input.styles.d.ts +4 -0
- package/dist/dts/text-input/text-input.template.d.ts +6 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/menu-item/menu-item.js +2 -1
- package/dist/esm/menu-item/menu-item.js.map +1 -1
- package/dist/esm/text-input/define.js +4 -0
- package/dist/esm/text-input/define.js.map +1 -0
- package/dist/esm/text-input/index.js +7 -0
- package/dist/esm/text-input/index.js.map +1 -0
- package/dist/esm/text-input/text-input.definition.js +18 -0
- package/dist/esm/text-input/text-input.definition.js.map +1 -0
- package/dist/esm/text-input/text-input.js +16 -0
- package/dist/esm/text-input/text-input.js.map +1 -0
- package/dist/esm/text-input/text-input.options.js +20 -0
- package/dist/esm/text-input/text-input.options.js.map +1 -0
- package/dist/esm/text-input/text-input.styles.js +200 -0
- package/dist/esm/text-input/text-input.styles.js.map +1 -0
- package/dist/esm/text-input/text-input.template.js +6 -0
- package/dist/esm/text-input/text-input.template.js.map +1 -0
- package/dist/fluent-web-components.api.json +279 -0
- package/dist/web-components.d.ts +85 -0
- package/dist/web-components.js +396 -121
- package/dist/web-components.min.js +169 -166
- package/docs/api-report.md +45 -0
- package/package.json +5 -1
package/dist/web-components.js
CHANGED
|
@@ -7207,6 +7207,213 @@ class FASTMenu extends FASTElement {
|
|
|
7207
7207
|
FASTMenu.focusableElementRoles = MenuItemRole;
|
|
7208
7208
|
__decorate([observable], FASTMenu.prototype, "items", void 0);
|
|
7209
7209
|
|
|
7210
|
+
class _TextField extends FASTElement {}
|
|
7211
|
+
/**
|
|
7212
|
+
* A form-associated base class for the {@link @microsoft/fast-foundation#(TextField:class)} component.
|
|
7213
|
+
*
|
|
7214
|
+
* @beta
|
|
7215
|
+
*/
|
|
7216
|
+
class FormAssociatedTextField extends FormAssociated(_TextField) {
|
|
7217
|
+
constructor() {
|
|
7218
|
+
super(...arguments);
|
|
7219
|
+
this.proxy = document.createElement("input");
|
|
7220
|
+
}
|
|
7221
|
+
}
|
|
7222
|
+
|
|
7223
|
+
/**
|
|
7224
|
+
* Text field sub-types
|
|
7225
|
+
* @public
|
|
7226
|
+
*/
|
|
7227
|
+
const TextFieldType = {
|
|
7228
|
+
/**
|
|
7229
|
+
* An email TextField
|
|
7230
|
+
*/
|
|
7231
|
+
email: "email",
|
|
7232
|
+
/**
|
|
7233
|
+
* A password TextField
|
|
7234
|
+
*/
|
|
7235
|
+
password: "password",
|
|
7236
|
+
/**
|
|
7237
|
+
* A telephone TextField
|
|
7238
|
+
*/
|
|
7239
|
+
tel: "tel",
|
|
7240
|
+
/**
|
|
7241
|
+
* A text TextField
|
|
7242
|
+
*/
|
|
7243
|
+
text: "text",
|
|
7244
|
+
/**
|
|
7245
|
+
* A URL TextField
|
|
7246
|
+
*/
|
|
7247
|
+
url: "url"
|
|
7248
|
+
};
|
|
7249
|
+
|
|
7250
|
+
/**
|
|
7251
|
+
* A Text Field Custom HTML Element.
|
|
7252
|
+
* Based largely on the {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/text | <input type="text" /> element }.
|
|
7253
|
+
*
|
|
7254
|
+
* @slot start - Content which can be provided before the number field input
|
|
7255
|
+
* @slot end - Content which can be provided after the number field input
|
|
7256
|
+
* @slot - The default slot for the label
|
|
7257
|
+
* @csspart label - The label
|
|
7258
|
+
* @csspart root - The element wrapping the control, including start and end slots
|
|
7259
|
+
* @csspart control - The text field element
|
|
7260
|
+
* @fires change - Fires a custom 'change' event when the value has changed
|
|
7261
|
+
*
|
|
7262
|
+
* @public
|
|
7263
|
+
*/
|
|
7264
|
+
class FASTTextField extends FormAssociatedTextField {
|
|
7265
|
+
constructor() {
|
|
7266
|
+
super(...arguments);
|
|
7267
|
+
/**
|
|
7268
|
+
* Allows setting a type or mode of text.
|
|
7269
|
+
* @public
|
|
7270
|
+
* @remarks
|
|
7271
|
+
* HTML Attribute: type
|
|
7272
|
+
*/
|
|
7273
|
+
this.type = TextFieldType.text;
|
|
7274
|
+
}
|
|
7275
|
+
readOnlyChanged() {
|
|
7276
|
+
if (this.proxy instanceof HTMLInputElement) {
|
|
7277
|
+
this.proxy.readOnly = this.readOnly;
|
|
7278
|
+
this.validate();
|
|
7279
|
+
}
|
|
7280
|
+
}
|
|
7281
|
+
autofocusChanged() {
|
|
7282
|
+
if (this.proxy instanceof HTMLInputElement) {
|
|
7283
|
+
this.proxy.autofocus = this.autofocus;
|
|
7284
|
+
this.validate();
|
|
7285
|
+
}
|
|
7286
|
+
}
|
|
7287
|
+
placeholderChanged() {
|
|
7288
|
+
if (this.proxy instanceof HTMLInputElement) {
|
|
7289
|
+
this.proxy.placeholder = this.placeholder;
|
|
7290
|
+
}
|
|
7291
|
+
}
|
|
7292
|
+
typeChanged() {
|
|
7293
|
+
if (this.proxy instanceof HTMLInputElement) {
|
|
7294
|
+
this.proxy.type = this.type;
|
|
7295
|
+
this.validate();
|
|
7296
|
+
}
|
|
7297
|
+
}
|
|
7298
|
+
listChanged() {
|
|
7299
|
+
if (this.proxy instanceof HTMLInputElement) {
|
|
7300
|
+
this.proxy.setAttribute("list", this.list);
|
|
7301
|
+
this.validate();
|
|
7302
|
+
}
|
|
7303
|
+
}
|
|
7304
|
+
maxlengthChanged() {
|
|
7305
|
+
if (this.proxy instanceof HTMLInputElement) {
|
|
7306
|
+
this.proxy.maxLength = this.maxlength;
|
|
7307
|
+
this.validate();
|
|
7308
|
+
}
|
|
7309
|
+
}
|
|
7310
|
+
minlengthChanged() {
|
|
7311
|
+
if (this.proxy instanceof HTMLInputElement) {
|
|
7312
|
+
this.proxy.minLength = this.minlength;
|
|
7313
|
+
this.validate();
|
|
7314
|
+
}
|
|
7315
|
+
}
|
|
7316
|
+
patternChanged() {
|
|
7317
|
+
if (this.proxy instanceof HTMLInputElement) {
|
|
7318
|
+
this.proxy.pattern = this.pattern;
|
|
7319
|
+
this.validate();
|
|
7320
|
+
}
|
|
7321
|
+
}
|
|
7322
|
+
sizeChanged() {
|
|
7323
|
+
if (this.proxy instanceof HTMLInputElement) {
|
|
7324
|
+
this.proxy.size = this.size;
|
|
7325
|
+
}
|
|
7326
|
+
}
|
|
7327
|
+
spellcheckChanged() {
|
|
7328
|
+
if (this.proxy instanceof HTMLInputElement) {
|
|
7329
|
+
this.proxy.spellcheck = this.spellcheck;
|
|
7330
|
+
}
|
|
7331
|
+
}
|
|
7332
|
+
/**
|
|
7333
|
+
* @internal
|
|
7334
|
+
*/
|
|
7335
|
+
connectedCallback() {
|
|
7336
|
+
super.connectedCallback();
|
|
7337
|
+
this.proxy.setAttribute("type", this.type);
|
|
7338
|
+
this.validate();
|
|
7339
|
+
if (this.autofocus) {
|
|
7340
|
+
Updates.enqueue(() => {
|
|
7341
|
+
this.focus();
|
|
7342
|
+
});
|
|
7343
|
+
}
|
|
7344
|
+
}
|
|
7345
|
+
/**
|
|
7346
|
+
* Selects all the text in the text field
|
|
7347
|
+
*
|
|
7348
|
+
* @public
|
|
7349
|
+
*/
|
|
7350
|
+
select() {
|
|
7351
|
+
this.control.select();
|
|
7352
|
+
/**
|
|
7353
|
+
* The select event does not permeate the shadow DOM boundary.
|
|
7354
|
+
* This fn effectively proxies the select event,
|
|
7355
|
+
* emitting a `select` event whenever the internal
|
|
7356
|
+
* control emits a `select` event
|
|
7357
|
+
*/
|
|
7358
|
+
this.$emit("select");
|
|
7359
|
+
}
|
|
7360
|
+
/**
|
|
7361
|
+
* Handles the internal control's `input` event
|
|
7362
|
+
* @internal
|
|
7363
|
+
*/
|
|
7364
|
+
handleTextInput() {
|
|
7365
|
+
this.value = this.control.value;
|
|
7366
|
+
}
|
|
7367
|
+
/**
|
|
7368
|
+
* Change event handler for inner control.
|
|
7369
|
+
* @remarks
|
|
7370
|
+
* "Change" events are not `composable` so they will not
|
|
7371
|
+
* permeate the shadow DOM boundary. This fn effectively proxies
|
|
7372
|
+
* the change event, emitting a `change` event whenever the internal
|
|
7373
|
+
* control emits a `change` event
|
|
7374
|
+
* @internal
|
|
7375
|
+
*/
|
|
7376
|
+
handleChange() {
|
|
7377
|
+
this.$emit("change");
|
|
7378
|
+
}
|
|
7379
|
+
/** {@inheritDoc (FormAssociated:interface).validate} */
|
|
7380
|
+
validate() {
|
|
7381
|
+
super.validate(this.control);
|
|
7382
|
+
}
|
|
7383
|
+
}
|
|
7384
|
+
__decorate([attr({
|
|
7385
|
+
attribute: "readonly",
|
|
7386
|
+
mode: "boolean"
|
|
7387
|
+
})], FASTTextField.prototype, "readOnly", void 0);
|
|
7388
|
+
__decorate([attr({
|
|
7389
|
+
mode: "boolean"
|
|
7390
|
+
})], FASTTextField.prototype, "autofocus", void 0);
|
|
7391
|
+
__decorate([attr], FASTTextField.prototype, "placeholder", void 0);
|
|
7392
|
+
__decorate([attr], FASTTextField.prototype, "type", void 0);
|
|
7393
|
+
__decorate([attr], FASTTextField.prototype, "list", void 0);
|
|
7394
|
+
__decorate([attr({
|
|
7395
|
+
converter: nullableNumberConverter
|
|
7396
|
+
})], FASTTextField.prototype, "maxlength", void 0);
|
|
7397
|
+
__decorate([attr({
|
|
7398
|
+
converter: nullableNumberConverter
|
|
7399
|
+
})], FASTTextField.prototype, "minlength", void 0);
|
|
7400
|
+
__decorate([attr], FASTTextField.prototype, "pattern", void 0);
|
|
7401
|
+
__decorate([attr({
|
|
7402
|
+
converter: nullableNumberConverter
|
|
7403
|
+
})], FASTTextField.prototype, "size", void 0);
|
|
7404
|
+
__decorate([attr({
|
|
7405
|
+
mode: "boolean"
|
|
7406
|
+
})], FASTTextField.prototype, "spellcheck", void 0);
|
|
7407
|
+
__decorate([observable], FASTTextField.prototype, "defaultSlottedNodes", void 0);
|
|
7408
|
+
/**
|
|
7409
|
+
* Includes ARIA states and properties relating to the ARIA textbox role
|
|
7410
|
+
*
|
|
7411
|
+
* @public
|
|
7412
|
+
*/
|
|
7413
|
+
class DelegatesARIATextbox {}
|
|
7414
|
+
applyMixins(DelegatesARIATextbox, ARIAGlobalStatesAndProperties);
|
|
7415
|
+
applyMixins(FASTTextField, StartEnd, DelegatesARIATextbox);
|
|
7416
|
+
|
|
7210
7417
|
/**
|
|
7211
7418
|
* A base class for progress components.
|
|
7212
7419
|
* @public
|
|
@@ -8623,6 +8830,17 @@ __decorate([observable], FASTTabs.prototype, "tabs", void 0);
|
|
|
8623
8830
|
__decorate([observable], FASTTabs.prototype, "tabpanels", void 0);
|
|
8624
8831
|
applyMixins(FASTTabs, StartEnd);
|
|
8625
8832
|
|
|
8833
|
+
/**
|
|
8834
|
+
* The template for the {@link @microsoft/fast-foundation#(FASTTextField:class)} component.
|
|
8835
|
+
* @public
|
|
8836
|
+
*/
|
|
8837
|
+
function textFieldTemplate(options = {}) {
|
|
8838
|
+
return html`<label part="label" for="control" class="${x => x.defaultSlottedNodes && x.defaultSlottedNodes.length ? "label" : "label label__hidden"}"><slot ${slotted({
|
|
8839
|
+
property: "defaultSlottedNodes",
|
|
8840
|
+
filter: whitespaceFilter
|
|
8841
|
+
})}></slot></label><div class="root" part="root">${startSlotTemplate(options)}<input class="control" part="control" id="control" @input="${x => x.handleTextInput()}" @change="${x => x.handleChange()}" ?autofocus="${x => x.autofocus}" ?disabled="${x => x.disabled}" list="${x => x.list}" maxlength="${x => x.maxlength}" name="${x => x.name}" minlength="${x => x.minlength}" pattern="${x => x.pattern}" placeholder="${x => x.placeholder}" ?readonly="${x => x.readOnly}" ?required="${x => x.required}" size="${x => x.size}" ?spellcheck="${x => x.spellcheck}" :value="${x => x.value}" type="${x => x.type}" aria-atomic="${x => x.ariaAtomic}" aria-busy="${x => x.ariaBusy}" aria-controls="${x => x.ariaControls}" aria-current="${x => x.ariaCurrent}" aria-describedby="${x => x.ariaDescribedby}" aria-details="${x => x.ariaDetails}" aria-disabled="${x => x.ariaDisabled}" aria-errormessage="${x => x.ariaErrormessage}" aria-flowto="${x => x.ariaFlowto}" aria-haspopup="${x => x.ariaHaspopup}" aria-hidden="${x => x.ariaHidden}" aria-invalid="${x => x.ariaInvalid}" aria-keyshortcuts="${x => x.ariaKeyshortcuts}" aria-label="${x => x.ariaLabel}" aria-labelledby="${x => x.ariaLabelledby}" aria-live="${x => x.ariaLive}" aria-owns="${x => x.ariaOwns}" aria-relevant="${x => x.ariaRelevant}" aria-roledescription="${x => x.ariaRoledescription}" ${ref("control")} />${endSlotTemplate(options)}</div>`;
|
|
8842
|
+
}
|
|
8843
|
+
|
|
8626
8844
|
/**
|
|
8627
8845
|
* A CSS fragment to set `display: none;` when the host is hidden using the [hidden] attribute.
|
|
8628
8846
|
* @public
|
|
@@ -8644,9 +8862,9 @@ function display(displayValue) {
|
|
|
8644
8862
|
*/
|
|
8645
8863
|
class Accordion extends FASTAccordion {}
|
|
8646
8864
|
|
|
8647
|
-
const template$
|
|
8865
|
+
const template$p = accordionTemplate();
|
|
8648
8866
|
|
|
8649
|
-
const styles$
|
|
8867
|
+
const styles$o = css`
|
|
8650
8868
|
${display('flex')}
|
|
8651
8869
|
|
|
8652
8870
|
:host{flex-direction:column;width:100%;contain:content}`;
|
|
@@ -8666,10 +8884,10 @@ const FluentDesignSystem = Object.freeze({
|
|
|
8666
8884
|
* @remarks
|
|
8667
8885
|
* HTML Element: \<fluent-accordion\>
|
|
8668
8886
|
*/
|
|
8669
|
-
const definition$
|
|
8887
|
+
const definition$p = Accordion.compose({
|
|
8670
8888
|
name: `${FluentDesignSystem.prefix}-accordion`,
|
|
8671
|
-
template: template$
|
|
8672
|
-
styles: styles$
|
|
8889
|
+
template: template$p,
|
|
8890
|
+
styles: styles$o
|
|
8673
8891
|
});
|
|
8674
8892
|
|
|
8675
8893
|
/**
|
|
@@ -9489,7 +9707,7 @@ var tokens = /*#__PURE__*/Object.freeze({
|
|
|
9489
9707
|
shadow64Brand: shadow64Brand
|
|
9490
9708
|
});
|
|
9491
9709
|
|
|
9492
|
-
const styles$
|
|
9710
|
+
const styles$n = css`
|
|
9493
9711
|
${display('block')}
|
|
9494
9712
|
|
|
9495
9713
|
:host{max-width:fit-content;contain:content}.heading{height:44px;display:grid;position:relative;vertical-align:middle;padding-inline:${spacingHorizontalM} ${spacingHorizontalMNudge};border-radius:${borderRadiusMedium};font-family:${fontFamilyBase};font-size:${fontSizeBase300};font-weight:${fontWeightRegular};line-height:${lineHeightBase300};grid-template-columns:auto auto 1fr auto}.heading-content{height:100%;display:flex;align-items:center}.button{box-sizing:border-box;appearance:none;border:none;outline:none;text-align:start;cursor:pointer;font-family:inherit;height:44px;color:${colorNeutralForeground1};background:${colorTransparentBackground};line-height:${lineHeightBase300};height:auto;padding:0;font-size:inherit;grid-column:auto / span 2;grid-row:1}.button::before{content:'';position:absolute;inset:0px;cursor:pointer;border-radius:${borderRadiusSmall}}.icon{display:flex;align-items:center;justify-content:center;pointer-events:none;position:relative;height:100%;padding-right:${spacingHorizontalS};grid-column:1 / span 1;grid-row:1}.region{margin:0 ${spacingHorizontalM}}::slotted([slot='start']),::slotted([slot='end']){justify-content:center;align-items:center;padding-right:${spacingHorizontalS};grid-column:2 / span 1;grid-row:1 / span 1}button:focus-visible::after{content:'';position:absolute;inset:0px;cursor:pointer;border-radius:${borderRadiusSmall};outline:none;border:2px solid ${colorStrokeFocus1};box-shadow:inset 0 0 0 1px ${colorStrokeFocus2}}:host([disabled]) .button{color:${colorNeutralForegroundDisabled}}:host([disabled]) svg{filter:invert(89%) sepia(0%) saturate(569%) hue-rotate(155deg) brightness(88%) contrast(87%)}:host([expanded]) .region{display:block}:host([expanded]) .default-collapsed-icon,:host([expanded]) ::slotted([slot='collapsed-icon']),:host(:not([expanded])) .default-expanded-icon,:host(:not([expanded])) ::slotted([slot='expanded-icon']),:host([expanded]) ::slotted([slot='end']),::slotted([slot='start']),.region{display:none}:host([expanded]) ::slotted([slot='start']),:host([expanded]) ::slotted([slot='expanded-icon']),:host(:not([expanded])) ::slotted([slot='collapsed-icon']),::slotted([slot='end']){display:flex}.heading{font-size:${fontSizeBase300};line-height:${lineHeightBase300}}:host([size='small']) .heading{font-size:${fontSizeBase200};line-height:${lineHeightBase200}}:host([size='large']) .heading{font-size:${fontSizeBase400};line-height:${lineHeightBase400}}:host([size='extra-large']) .heading{font-size:${fontSizeBase500};line-height:${lineHeightBase500}}:host([expand-icon-position='end']) :slotted(span[slot='start']),:host([expand-icon-position='end']) ::slotted(span[slot='end']){grid-column:1 / span 1;grid-row:1}:host([expand-icon-position='end']) ::slotted(span[slot='start']),:host([expand-icon-position='end']) ::slotted(span[slot='end']){grid-column:1 / span 1;grid-row:1}:host([expand-icon-position='end']) .icon{grid-column:4 / span 1;grid-row:1;display:flex;padding-left:10px;padding-right:0}:host([expand-icon-position='end']) .button{grid-column:2 / span 3;grid-row:1}:host([block]){max-width:100%}:host([expand-icon-position='end']) .heading{grid-template-columns:auto auto 28px}:host([expand-icon-position='end']) .icon{grid-column:5 / span 1}:host([block][expand-icon-position='end']) .heading{grid-template-columns:auto 1fr}:host([block][expand-icon-position='end']) .icon{grid-column:5 / span 1}`;
|
|
@@ -9524,7 +9742,7 @@ const chevronDown20Filled = html.partial(`<svg
|
|
|
9524
9742
|
* The template for the fluent-accordion component.
|
|
9525
9743
|
* @public
|
|
9526
9744
|
*/
|
|
9527
|
-
const template$
|
|
9745
|
+
const template$o = accordionItemTemplate({
|
|
9528
9746
|
collapsedIcon: chevronRight20Filled,
|
|
9529
9747
|
expandedIcon: chevronDown20Filled
|
|
9530
9748
|
});
|
|
@@ -9538,10 +9756,10 @@ const template$n = accordionItemTemplate({
|
|
|
9538
9756
|
* @remarks
|
|
9539
9757
|
* HTML Element: \<fluent-accordion-item\>
|
|
9540
9758
|
*/
|
|
9541
|
-
const definition$
|
|
9759
|
+
const definition$o = AccordionItem.compose({
|
|
9542
9760
|
name: `${FluentDesignSystem.prefix}-accordion-item`,
|
|
9543
|
-
template: template$
|
|
9544
|
-
styles: styles$
|
|
9761
|
+
template: template$o,
|
|
9762
|
+
styles: styles$n
|
|
9545
9763
|
});
|
|
9546
9764
|
|
|
9547
9765
|
/**
|
|
@@ -9678,18 +9896,18 @@ const AnchorButtonSize = ButtonSize;
|
|
|
9678
9896
|
* The template for the Button component.
|
|
9679
9897
|
* @public
|
|
9680
9898
|
*/
|
|
9681
|
-
const template$
|
|
9899
|
+
const template$n = anchorTemplate();
|
|
9682
9900
|
|
|
9683
9901
|
// Need to support icon hover styles
|
|
9684
|
-
const styles$
|
|
9902
|
+
const styles$m = css`
|
|
9685
9903
|
${display('inline-flex')}
|
|
9686
9904
|
|
|
9687
9905
|
:host{--icon-spacing:${spacingHorizontalSNudge};contain:layout style;vertical-align:middle}:host .control{display:inline-flex;align-items:center;box-sizing:border-box;justify-content:center;text-decoration-line:none;margin:0;min-height:32px;outline-style:none;background-color:${colorNeutralBackground1};color:${colorNeutralForeground1};border:${strokeWidthThin} solid ${colorNeutralStroke1};padding:0 ${spacingHorizontalM};min-width:96px;border-radius:${borderRadiusMedium};font-size:${fontSizeBase300};font-family:${fontFamilyBase};font-weight:${fontWeightSemibold};line-height:${lineHeightBase300};transition-duration:${durationFaster};transition-property:background,border,color;transition-timing-function:${curveEasyEase};cursor:pointer}.content{display:inherit}:host(:hover) .control{background-color:${colorNeutralBackground1Hover};color:${colorNeutralForeground1Hover};border-color:${colorNeutralStroke1Hover}}:host(:hover:active) .control{background-color:${colorNeutralBackground1Pressed};border-color:${colorNeutralStroke1Pressed};color:${colorNeutralForeground1Pressed};outline-style:none}:host .control:focus-visible{border-color:${colorTransparentStroke};outline:${strokeWidthThick} solid ${colorTransparentStroke};box-shadow:${shadow4},0 0 0 2px ${colorStrokeFocus2}}@media screen and (prefers-reduced-motion:reduce){transition-duration:0.01ms}::slotted(svg){font-size:20px;height:20px;width:20px;fill:currentColor}[slot='start'],::slotted([slot='start']){margin-inline-end:var(--icon-spacing)}[slot='end'],::slotted([slot='end']){margin-inline-start:var(--icon-spacing)}:host([icon-only]) .control{min-width:32px;max-width:32px}:host([size='small']){--icon-spacing:${spacingHorizontalXS}}:host([size='small']) .control{min-height:24px;min-width:64px;padding:0 ${spacingHorizontalS};border-radius:${borderRadiusSmall};font-size:${fontSizeBase200};line-height:${lineHeightBase200};font-weight:${fontWeightRegular}}:host([size='small'][icon-only]) .control{min-width:24px;max-width:24px}:host([size='large']) .control{min-height:40px;border-radius:${borderRadiusLarge};padding:0 ${spacingHorizontalL};font-size:${fontSizeBase400};line-height:${lineHeightBase400}}:host([size='large'][icon-only]) .control{min-width:40px;max-width:40px}:host([size='large']) ::slotted(svg){font-size:24px;height:24px;width:24px}:host([shape='circular']) .control,:host([shape='circular']) .control:focus-visible{border-radius:${borderRadiusCircular}}:host([shape='square']) .control,:host([shape='square']) .control:focus-visible{border-radius:${borderRadiusNone}}:host([appearance='primary']) .control{background-color:${colorBrandBackground};color:${colorNeutralForegroundOnBrand};border-color:transparent}:host([appearance='primary']:hover) .control{background-color:${colorBrandBackgroundHover}}:host([appearance='primary']:hover) .control,:host([appearance='primary']:hover:active) .control{border-color:transparent;color:${colorNeutralForegroundOnBrand}}:host([appearance='primary']:hover:active) .control{background-color:${colorBrandBackgroundPressed}}:host([appearance='primary']) .control:focus-visible{border-color:${colorNeutralForegroundOnBrand};box-shadow:${shadow2},0 0 0 2px ${colorStrokeFocus2}}:host(is:([disabled][appearance='primary'],[disabled-focusabale][appearance="primary"])) .control,:host(is:([disabled][appearance='primary'],[disabled-focusabale][appearance="primary"]):hover) .control,:host(is:([disabled][appearance='primary'],[disabled-focusabale][appearance="primary"]):hover:active) .control{border-color:transparent}:host([appearance='outline']) .control{background-color:${colorTransparentBackground}}:host([appearance='outline']:hover) .control{background-color:${colorTransparentBackgroundHover}}:host([appearance='outline']:hover:active) .control{background-color:${colorTransparentBackgroundPressed}}:host(is:([disabled][appearance='outline'],[disabled-focusabale][appearance="outline"])) .control,:host(is:([disabled][appearance='outline'],[disabled-focusabale][appearance="outline"]):hover) .control,:host(is:([disabled][appearance='outline'],[disabled-focusabale][appearance="outline"]):hover:active) .control{background-color:${colorTransparentBackground}}:host([appearance='subtle']) .control{background-color:${colorSubtleBackground};color:${colorNeutralForeground2};border-color:transparent}:host([appearance='subtle']:hover) .control{background-color:${colorSubtleBackgroundHover};color:${colorNeutralForeground2Hover};border-color:transparent}:host([appearance='subtle']:hover:active) .control{background-color:${colorSubtleBackgroundPressed};color:${colorNeutralForeground2Pressed};border-color:transparent}:host(is:([disabled][appearance='subtle'],[disabled-focusabale][appearance="subtle"])) .control,:host(is:([disabled][appearance='subtle'],[disabled-focusabale][appearance="subtle"]):hover) .control,:host(is:([disabled][appearance='subtle'],[disabled-focusabale][appearance="subtle"]):hover:active) .control{background-color:${colorTransparentBackground};border-color:transparent}:host([appearance='subtle']:hover) ::slotted(svg){fill:${colorNeutralForeground2BrandHover}}:host([appearance='subtle']:hover:active) ::slotted(svg){fill:${colorNeutralForeground2BrandPressed}}:host([appearance='transparent']) .control{background-color:${colorTransparentBackground};color:${colorNeutralForeground2}}:host([appearance='transparent']:hover) .control{background-color:${colorTransparentBackgroundHover};color:${colorNeutralForeground2BrandHover}}:host([appearance='transparent']:hover:active) .control{background-color:${colorTransparentBackgroundPressed};color:${colorNeutralForeground2BrandPressed}}:host([appearance='transparent']) .control,:host([appearance='transparent']:hover) .control,:host([appearance='transparent']:hover:active) .control{border-color:transparent}:host(is:([disabled][appearance='transparent'],[disabled-focusabale][appearance="transparent"])) .control,:host(is:([disabled][appearance='transparent'],[disabled-focusabale][appearance="transparent"]):hover) .control,:host(is:([disabled][appearance='transparent'],[disabled-focusabale][appearance="transparent"]):hover:active) .control{border-color:transparent;background-color:${colorTransparentBackground}}:host(:is([disabled],[disabled-focusable],[appearance][disabled],[appearance][disabled-focusable])) .control,:host(:is([disabled],[disabled-focusable],[appearance][disabled],[appearance][disabled-focusable]):hover) .control,:host(:is([disabled],[disabled-focusable],[appearance][disabled],[appearance][disabled-focusable]):hover:active)
|
|
9688
9906
|
.control{background-color:${colorNeutralBackgroundDisabled};border-color:${colorNeutralStrokeDisabled};color:${colorNeutralForegroundDisabled};cursor:not-allowed}`;
|
|
9689
9907
|
|
|
9690
9908
|
// Need to support icon hover styles
|
|
9691
|
-
const styles$
|
|
9692
|
-
${styles$
|
|
9909
|
+
const styles$l = css`
|
|
9910
|
+
${styles$m}
|
|
9693
9911
|
|
|
9694
9912
|
.content{text-align:center}`;
|
|
9695
9913
|
|
|
@@ -9701,10 +9919,10 @@ const styles$k = css`
|
|
|
9701
9919
|
* @remarks
|
|
9702
9920
|
* HTML Element: \<fluent-anchor-button\>
|
|
9703
9921
|
*/
|
|
9704
|
-
const definition$
|
|
9922
|
+
const definition$n = AnchorButton.compose({
|
|
9705
9923
|
name: `${FluentDesignSystem.prefix}-anchor-button`,
|
|
9706
|
-
template: template$
|
|
9707
|
-
styles: styles$
|
|
9924
|
+
template: template$n,
|
|
9925
|
+
styles: styles$l,
|
|
9708
9926
|
shadowOptions: {
|
|
9709
9927
|
delegatesFocus: true
|
|
9710
9928
|
}
|
|
@@ -9961,7 +10179,7 @@ const defaultIconTemplate = html`<svg width="1em" height="1em" viewBox="0 0 20 2
|
|
|
9961
10179
|
function avatarTemplate() {
|
|
9962
10180
|
return html`<template role="img" data-color=${x => x.generateColor()}><slot>${x => x.name || x.initials ? x.generateInitials() : defaultIconTemplate}</slot><slot name="badge"></slot></template>`;
|
|
9963
10181
|
}
|
|
9964
|
-
const template$
|
|
10182
|
+
const template$m = avatarTemplate();
|
|
9965
10183
|
|
|
9966
10184
|
const animations = {
|
|
9967
10185
|
fastOutSlowInMax: curveDecelerateMax,
|
|
@@ -9977,7 +10195,7 @@ const animations = {
|
|
|
9977
10195
|
/** Avatar styles
|
|
9978
10196
|
* @public
|
|
9979
10197
|
*/
|
|
9980
|
-
const styles$
|
|
10198
|
+
const styles$k = css`
|
|
9981
10199
|
${display('inline-flex')} :host{position:relative;align-items:center;justify-content:center;flex-shrink:0;width:32px;height:32px;font-family:${fontFamilyBase};font-weight:${fontWeightSemibold};font-size:${fontSizeBase300};border-radius:${borderRadiusCircular};color:${colorNeutralForeground3};background-color:${colorNeutralBackground6};contain:layout style}.default-icon,::slotted(svg){width:20px;height:20px;font-size:20px}::slotted(img){box-sizing:border-box;width:100%;height:100%;border-radius:${borderRadiusCircular}}::slotted([slot='badge']){position:absolute;bottom:0;right:0;box-shadow:0 0 0 ${strokeWidthThin} ${colorNeutralBackground1}}:host([size='64']) ::slotted([slot='badge']),:host([size='72']) ::slotted([slot='badge']),:host([size='96']) ::slotted([slot='badge']),:host([size='120']) ::slotted([slot='badge']),:host([size='128']) ::slotted([slot='badge']){box-shadow:0 0 0 ${strokeWidthThick} ${colorNeutralBackground1}}:host([size='16']),:host([size='20']),:host([size='24']){font-size:${fontSizeBase100};font-weight:${fontWeightRegular}}:host([size='16']){width:16px;height:16px}:host([size='20']){width:20px;height:20px}:host([size='24']){width:24px;height:24px}:host([size='16']) .default-icon,:host([size='16']) ::slotted(svg){width:12px;height:12px;font-size:12px}:host([size='20']) .default-icon,:host([size='24']) .default-icon,:host([size='20']) ::slotted(svg),:host([size='24']) ::slotted(svg){width:16px;height:16px;font-size:16px}:host([size='28']){width:28px;height:28px;font-size:${fontSizeBase200}}:host([size='36']){width:36px;height:36px}:host([size='40']){width:40px;height:40px}:host([size='48']),:host([size='56']){font-size:${fontSizeBase400}}:host([size='48']){width:48px;height:48px}:host([size='48']) .default-icon,:host([size='48']) ::slotted(svg){width:24px;height:24px;font-size:24px}:host([size='56']){width:56px;height:56px}:host([size='56']) .default-icon,:host([size='56']) ::slotted(svg){width:28px;height:28px;font-size:28px}:host([size='64']),:host([size='72']),:host([size='96']){font-size:${fontSizeBase500}}:host([size='64']) .default-icon,:host([size='72']) .default-icon,:host([size='64']) ::slotted(svg),:host([size='72']) ::slotted(svg){width:32px;height:32px;font-size:32px}:host([size='64']){width:64px;height:64px}:host([size='72']){width:72px;height:72px}:host([size='96']){width:96px;height:96px}:host([size='96']) .default-icon,:host([size='120']) .default-icon,:host([size='128']) .default-icon,:host([size='96']) ::slotted(svg),:host([size='120']) ::slotted(svg),:host([size='128']) ::slotted(svg){width:48px;height:48px;font-size:48px}:host([size='120']),:host([size='128']){font-size:${fontSizeBase600}}:host([size='120']){width:120px;height:120px}:host([size='128']){width:128px;height:128px}:host([shape='square']){border-radius:${borderRadiusMedium}}:host([shape='square'][size='20']),:host([shape='square'][size='24']){border-radius:${borderRadiusSmall}}:host([shape='square'][size='56']),:host([shape='square'][size='64']),:host([shape='square'][size='72']){border-radius:${borderRadiusLarge}}:host([shape='square'][size='96']),:host([shape='square'][size='120']),:host([shape='square'][size='128']){border-radius:${borderRadiusXLarge}}:host([data-color='brand']){color:${colorNeutralForegroundStaticInverted};background-color:${colorBrandBackgroundStatic}}:host([data-color='dark-red']){color:${colorPaletteDarkRedForeground2};background-color:${colorPaletteDarkRedBackground2}}:host([data-color='cranberry']){color:${colorPaletteCranberryForeground2};background-color:${colorPaletteCranberryBackground2}}:host([data-color='red']){color:${colorPaletteRedForeground2};background-color:${colorPaletteRedBackground2}}:host([data-color='pumpkin']){color:${colorPalettePumpkinForeground2};background-color:${colorPalettePumpkinBackground2}}:host([data-color='peach']){color:${colorPalettePeachForeground2};background-color:${colorPalettePeachBackground2}}:host([data-color='marigold']){color:${colorPaletteMarigoldForeground2};background-color:${colorPaletteMarigoldBackground2}}:host([data-color='gold']){color:${colorPaletteGoldForeground2};background-color:${colorPaletteGoldBackground2}}:host([data-color='brass']){color:${colorPaletteBrassForeground2};background-color:${colorPaletteBrassBackground2}}:host([data-color='brown']){color:${colorPaletteBrownForeground2};background-color:${colorPaletteBrownBackground2}}:host([data-color='forest']){color:${colorPaletteForestForeground2};background-color:${colorPaletteForestBackground2}}:host([data-color='seafoam']){color:${colorPaletteSeafoamForeground2};background-color:${colorPaletteSeafoamBackground2}}:host([data-color='dark-green']){color:${colorPaletteDarkGreenForeground2};background-color:${colorPaletteDarkGreenBackground2}}:host([data-color='light-teal']){color:${colorPaletteLightTealForeground2};background-color:${colorPaletteLightTealBackground2}}:host([data-color='teal']){color:${colorPaletteTealForeground2};background-color:${colorPaletteTealBackground2}}:host([data-color='steel']){color:${colorPaletteSteelForeground2};background-color:${colorPaletteSteelBackground2}}:host([data-color='blue']){color:${colorPaletteBlueForeground2};background-color:${colorPaletteBlueBackground2}}:host([data-color='royal-blue']){color:${colorPaletteRoyalBlueForeground2};background-color:${colorPaletteRoyalBlueBackground2}}:host([data-color='cornflower']){color:${colorPaletteCornflowerForeground2};background-color:${colorPaletteCornflowerBackground2}}:host([data-color='navy']){color:${colorPaletteNavyForeground2};background-color:${colorPaletteNavyBackground2}}:host([data-color='lavender']){color:${colorPaletteLavenderForeground2};background-color:${colorPaletteLavenderBackground2}}:host([data-color='purple']){color:${colorPalettePurpleForeground2};background-color:${colorPalettePurpleBackground2}}:host([data-color='grape']){color:${colorPaletteGrapeForeground2};background-color:${colorPaletteGrapeBackground2}}:host([data-color='lilac']){color:${colorPaletteLilacForeground2};background-color:${colorPaletteLilacBackground2}}:host([data-color='pink']){color:${colorPalettePinkForeground2};background-color:${colorPalettePinkBackground2}}:host([data-color='magenta']){color:${colorPaletteMagentaForeground2};background-color:${colorPaletteMagentaBackground2}}:host([data-color='plum']){color:${colorPalettePlumForeground2};background-color:${colorPalettePlumBackground2}}:host([data-color='beige']){color:${colorPaletteBeigeForeground2};background-color:${colorPaletteBeigeBackground2}}:host([data-color='mink']){color:${colorPaletteMinkForeground2};background-color:${colorPaletteMinkBackground2}}:host([data-color='platinum']){color:${colorPalettePlatinumForeground2};background-color:${colorPalettePlatinumBackground2}}:host([data-color='anchor']){color:${colorPaletteAnchorForeground2};background-color:${colorPaletteAnchorBackground2}}:host([active]){transform:perspective(1px);transition-property:transform,opacity;transition-duration:${durationUltraSlow},${durationFaster};transition-delay:${animations.fastEase},${animations.nullEasing}}:host([active])::before{content:'';position:absolute;top:0;left:0;bottom:0;right:0;border-radius:inherit;transition-property:margin,opacity;transition-duration:${durationUltraSlow},${durationSlower};transition-delay:${animations.fastEase},${animations.nullEasing}}:host([active])::before{box-shadow:${shadow8};border-style:solid;border-color:${colorBrandBackgroundStatic}}:host([active][appearance='shadow'])::before{border-style:none;border-color:none}:host([active]:not([appearance='shadow']))::before{margin:calc(-2 * ${strokeWidthThick});border-width:${strokeWidthThick}}:host([size='56'][active]:not([appearance='shadow']))::before,:host([size='64'][active]:not([appearance='shadow']))::before{margin:calc(-2 * ${strokeWidthThicker});border-width:${strokeWidthThicker}}:host([size='72'][active]:not([appearance='shadow']))::before,:host([size='96'][active]:not([appearance='shadow']))::before,:host([size='120'][active]:not([appearance='shadow']))::before,:host([size='128'][active]:not([appearance='shadow']))::before{margin:calc(-2 * ${strokeWidthThickest});border-width:${strokeWidthThickest}}:host([size='20'][active][appearance])::before,:host([size='24'][active][appearance])::before,:host([size='28'][active][appearance])::before{box-shadow:${shadow4}}:host([size='56'][active][appearance])::before,:host([size='64'][active][appearance])::before{box-shadow:${shadow16}}:host([size='72'][active][appearance])::before,:host([size='96'][active][appearance])::before,:host([size='120'][active][appearance])::before,:host([size='128'][active][appearance])::before{box-shadow:${shadow28}}:host([active][appearance='ring'])::before{box-shadow:none}:host([active='inactive']){opacity:0.8;transform:scale(0.875);transition-property:transform,opacity;transition-duration:${durationUltraSlow},${durationFaster};transition-delay:${animations.fastOutSlowInMin},${animations.nullEasing}}:host([active='inactive'])::before{margin:0;opacity:0;transition-property:margin,opacity;transition-duration:${durationUltraSlow},${durationSlower};transition-delay:${animations.fastOutSlowInMin},${animations.nullEasing}}@media screen and (prefers-reduced-motion:reduce){:host([active]){transition-duration:0.01ms}:host([active])::before{transition-duration:0.01ms;transition-delay:0.01ms}}`;
|
|
9982
10200
|
|
|
9983
10201
|
/**
|
|
@@ -9987,10 +10205,10 @@ const styles$j = css`
|
|
|
9987
10205
|
* @remarks
|
|
9988
10206
|
* HTML Element: \<fluent-badge\>
|
|
9989
10207
|
*/
|
|
9990
|
-
const definition$
|
|
10208
|
+
const definition$m = Avatar.compose({
|
|
9991
10209
|
name: `${FluentDesignSystem.prefix}-avatar`,
|
|
9992
|
-
template: template$
|
|
9993
|
-
styles: styles$
|
|
10210
|
+
template: template$m,
|
|
10211
|
+
styles: styles$k
|
|
9994
10212
|
});
|
|
9995
10213
|
|
|
9996
10214
|
/**
|
|
@@ -10077,7 +10295,7 @@ applyMixins(Badge, StartEnd);
|
|
|
10077
10295
|
function badgeTemplate(options = {}) {
|
|
10078
10296
|
return html` ${startSlotTemplate(options)}<slot>${staticallyCompose(options.defaultContent)}</slot>${endSlotTemplate(options)} `;
|
|
10079
10297
|
}
|
|
10080
|
-
const template$
|
|
10298
|
+
const template$l = badgeTemplate();
|
|
10081
10299
|
|
|
10082
10300
|
const textPadding = spacingHorizontalXXS;
|
|
10083
10301
|
const badgeBaseStyles = css.partial`
|
|
@@ -10354,7 +10572,7 @@ const badgeTintStyles = css.partial`
|
|
|
10354
10572
|
/** Badge styles
|
|
10355
10573
|
* @public
|
|
10356
10574
|
*/
|
|
10357
|
-
const styles$
|
|
10575
|
+
const styles$j = css`
|
|
10358
10576
|
:host([shape='square']){border-radius:${borderRadiusNone}}:host([shape='rounded']){border-radius:${borderRadiusMedium}}:host([shape='rounded'][size='tiny']),:host([shape='rounded'][size='extra-small']),:host([shape='rounded'][size='small']){border-radius:${borderRadiusSmall}}${badgeSizeStyles}
|
|
10359
10577
|
${badgeFilledStyles}
|
|
10360
10578
|
${badgeGhostStyles}
|
|
@@ -10372,10 +10590,10 @@ const styles$i = css`
|
|
|
10372
10590
|
* @remarks
|
|
10373
10591
|
* HTML Element: \<fluent-badge\>
|
|
10374
10592
|
*/
|
|
10375
|
-
const definition$
|
|
10593
|
+
const definition$l = Badge.compose({
|
|
10376
10594
|
name: `${FluentDesignSystem.prefix}-badge`,
|
|
10377
|
-
template: template$
|
|
10378
|
-
styles: styles$
|
|
10595
|
+
template: template$l,
|
|
10596
|
+
styles: styles$j
|
|
10379
10597
|
});
|
|
10380
10598
|
|
|
10381
10599
|
/**
|
|
@@ -10446,7 +10664,7 @@ __decorate([attr({
|
|
|
10446
10664
|
* The template for the Button component.
|
|
10447
10665
|
* @public
|
|
10448
10666
|
*/
|
|
10449
|
-
const template$
|
|
10667
|
+
const template$k = buttonTemplate$1();
|
|
10450
10668
|
|
|
10451
10669
|
/**
|
|
10452
10670
|
* The Fluent Button Element. Implements {@link @microsoft/fast-foundation#Button },
|
|
@@ -10456,10 +10674,10 @@ const template$j = buttonTemplate$1();
|
|
|
10456
10674
|
* @remarks
|
|
10457
10675
|
* HTML Element: \<fluent-button\>
|
|
10458
10676
|
*/
|
|
10459
|
-
const definition$
|
|
10677
|
+
const definition$k = Button.compose({
|
|
10460
10678
|
name: `${FluentDesignSystem.prefix}-button`,
|
|
10461
|
-
template: template$
|
|
10462
|
-
styles: styles$
|
|
10679
|
+
template: template$k,
|
|
10680
|
+
styles: styles$m,
|
|
10463
10681
|
shadowOptions: {
|
|
10464
10682
|
delegatesFocus: true
|
|
10465
10683
|
}
|
|
@@ -10498,11 +10716,11 @@ function buttonTemplate(options = {}) {
|
|
|
10498
10716
|
* The template for the Button component.
|
|
10499
10717
|
* @public
|
|
10500
10718
|
*/
|
|
10501
|
-
const template$
|
|
10719
|
+
const template$j = buttonTemplate();
|
|
10502
10720
|
|
|
10503
10721
|
// Need to support icon hover styles
|
|
10504
|
-
const styles$
|
|
10505
|
-
${styles$
|
|
10722
|
+
const styles$i = css`
|
|
10723
|
+
${styles$m}
|
|
10506
10724
|
|
|
10507
10725
|
:host .control,:host(:is([size])) .control{gap:12px;height:auto;padding-top:14px;padding-inline:12px;padding-bottom:16px;font-size:${fontSizeBase300};line-height:${lineHeightBase300}}.content{display:flex;flex-direction:column;text-align:start}::slotted([slot='description']){color:${colorNeutralForeground2};line-height:100%;font-size:${fontSizeBase200};font-weight:${fontWeightRegular}}::slotted(svg),:host([size='large']) ::slotted(svg){font-size:40px;height:40px;width:40px}:host(:hover) ::slotted([slot='description']){color:${colorNeutralForeground2Hover}}:host(:active) ::slotted([slot='description']){color:${colorNeutralForeground2Pressed}}:host(:is([appearance='primary'],[appearance='primary']:hover,[appearance='primary']:active))
|
|
10508
10726
|
::slotted([slot='description']){color:${colorNeutralForegroundOnBrand}}:host(:is([appearance='subtle'],[appearance='subtle']:hover,[appearance='subtle']:active))
|
|
@@ -10517,10 +10735,10 @@ const styles$h = css`
|
|
|
10517
10735
|
* @remarks
|
|
10518
10736
|
* HTML Element: \<fluent-comopund-button\>
|
|
10519
10737
|
*/
|
|
10520
|
-
const definition$
|
|
10738
|
+
const definition$j = CompoundButton.compose({
|
|
10521
10739
|
name: `${FluentDesignSystem.prefix}-compound-button`,
|
|
10522
|
-
template: template$
|
|
10523
|
-
styles: styles$
|
|
10740
|
+
template: template$j,
|
|
10741
|
+
styles: styles$i,
|
|
10524
10742
|
shadowOptions: {
|
|
10525
10743
|
delegatesFocus: true
|
|
10526
10744
|
}
|
|
@@ -10659,12 +10877,12 @@ function composeTemplate(options = {}) {
|
|
|
10659
10877
|
* The template for the Counter Badge component.
|
|
10660
10878
|
* @public
|
|
10661
10879
|
*/
|
|
10662
|
-
const template$
|
|
10880
|
+
const template$i = composeTemplate();
|
|
10663
10881
|
|
|
10664
10882
|
/** Badge styles
|
|
10665
10883
|
* @public
|
|
10666
10884
|
*/
|
|
10667
|
-
const styles$
|
|
10885
|
+
const styles$h = css`
|
|
10668
10886
|
:host([shape='rounded']){border-radius:${borderRadiusMedium}}:host([shape='rounded'][size='tiny']),:host([shape='rounded'][size='extra-small']),:host([shape='rounded'][size='small']){border-radius:${borderRadiusSmall}}${badgeSizeStyles}
|
|
10669
10887
|
${badgeFilledStyles}
|
|
10670
10888
|
${badgeGhostStyles}
|
|
@@ -10681,10 +10899,10 @@ const styles$g = css`
|
|
|
10681
10899
|
* @remarks
|
|
10682
10900
|
* HTML Element: \<fluent-counter-badge\>
|
|
10683
10901
|
*/
|
|
10684
|
-
const definition$
|
|
10902
|
+
const definition$i = CounterBadge.compose({
|
|
10685
10903
|
name: `${FluentDesignSystem.prefix}-counter-badge`,
|
|
10686
|
-
template: template$
|
|
10687
|
-
styles: styles$
|
|
10904
|
+
template: template$i,
|
|
10905
|
+
styles: styles$h
|
|
10688
10906
|
});
|
|
10689
10907
|
|
|
10690
10908
|
/**
|
|
@@ -10726,12 +10944,12 @@ const DividerAppearance = {
|
|
|
10726
10944
|
* Template for the Divider component
|
|
10727
10945
|
* @public
|
|
10728
10946
|
*/
|
|
10729
|
-
const template$
|
|
10947
|
+
const template$h = dividerTemplate();
|
|
10730
10948
|
|
|
10731
10949
|
/** Divider styles
|
|
10732
10950
|
* @public
|
|
10733
10951
|
*/
|
|
10734
|
-
const styles$
|
|
10952
|
+
const styles$g = css`
|
|
10735
10953
|
${display('flex')}
|
|
10736
10954
|
|
|
10737
10955
|
:host{contain:content}:host::after,:host::before{align-self:center;background:${colorNeutralStroke2};box-sizing:border-box;content:'';display:flex;flex-grow:1;height:${strokeWidthThin}}:host([inset]){padding:0 12px}:host ::slotted(*){color:${colorNeutralForeground2};font-family:${fontFamilyBase};font-size:${fontSizeBase200};font-weight:${fontWeightRegular};margin:0;padding:0 12px}:host([align-content='start'])::before,:host([align-content='end'])::after{flex-basis:12px;flex-grow:0;flex-shrink:0}:host([orientation='vertical']){height:100%;min-height:84px}:host([orientation='vertical']):empty{min-height:20px}:host([orientation='vertical']){flex-direction:column;align-items:center}:host([orientation='vertical'][inset])::before{margin-top:12px}:host([orientation='vertical'][inset])::after{margin-bottom:12px}:host([orientation='vertical']):empty::before,:host([orientation='vertical']):empty::after{height:10px;min-height:10px;flex-grow:0}:host([orientation='vertical'])::before,:host([orientation='vertical'])::after{width:${strokeWidthThin};min-height:20px;height:100%}:host([orientation='vertical']) ::slotted(*){display:flex;flex-direction:column;padding:12px 0;line-height:20px}:host([orientation='vertical'][align-content='start'])::before{min-height:8px}:host([orientation='vertical'][align-content='end'])::after{min-height:8px}:host([appearance='strong'])::before,:host([appearance='strong'])::after{background:${colorNeutralStroke1}}:host([appearance='strong']) ::slotted(*){color:${colorNeutralForeground1}}:host([appearance='brand'])::before,:host([appearance='brand'])::after{background:${colorBrandStroke1}}:host([appearance='brand']) ::slotted(*){color:${colorBrandForeground1}}:host([appearance='subtle'])::before,:host([appearance='subtle'])::after{background:${colorNeutralStroke3}}:host([appearance='subtle']) ::slotted(*){color:${colorNeutralForeground3}}`;
|
|
@@ -10743,10 +10961,10 @@ const styles$f = css`
|
|
|
10743
10961
|
* @remarks
|
|
10744
10962
|
* HTML Element: \<fluent-divider\>
|
|
10745
10963
|
*/
|
|
10746
|
-
const definition$
|
|
10964
|
+
const definition$h = Divider.compose({
|
|
10747
10965
|
name: `${FluentDesignSystem.prefix}-divider`,
|
|
10748
|
-
template: template$
|
|
10749
|
-
styles: styles$
|
|
10966
|
+
template: template$h,
|
|
10967
|
+
styles: styles$g
|
|
10750
10968
|
});
|
|
10751
10969
|
|
|
10752
10970
|
/**
|
|
@@ -10791,13 +11009,13 @@ const ImageShape = {
|
|
|
10791
11009
|
* Template for the Image component
|
|
10792
11010
|
* @public
|
|
10793
11011
|
*/
|
|
10794
|
-
const template$
|
|
11012
|
+
const template$g = html`<slot></slot>`;
|
|
10795
11013
|
|
|
10796
11014
|
/** Image styles
|
|
10797
11015
|
*
|
|
10798
11016
|
* @public
|
|
10799
11017
|
*/
|
|
10800
|
-
const styles$
|
|
11018
|
+
const styles$f = css`
|
|
10801
11019
|
:host{contain:content}:host ::slotted(img){box-sizing:border-box;min-height:8px;min-width:8px;display:inline-block}:host([block]) ::slotted(img){width:100%;height:auto}:host([bordered]) ::slotted(img){border:${strokeWidthThin} solid ${colorNeutralStroke2}}:host([fit='none']) ::slotted(img){object-fit:none;object-position:top left;height:100%;width:100%}:host([fit='center']) ::slotted(img){object-fit:none;object-position:center;height:100%;width:100%}:host([fit='contain']) ::slotted(img){object-fit:contain;object-position:center;height:100%;width:100%}:host([fit='cover']) ::slotted(img){object-fit:cover;object-position:center;height:100%;width:100%}:host([shadow]) ::slotted(img){box-shadow:${shadow4}}:host([shape='circular']) ::slotted(img){border-radius:${borderRadiusCircular}}:host([shape='rounded']) ::slotted(img){border-radius:${borderRadiusMedium}}`;
|
|
10802
11020
|
|
|
10803
11021
|
/**
|
|
@@ -10807,10 +11025,10 @@ const styles$e = css`
|
|
|
10807
11025
|
* @remarks
|
|
10808
11026
|
* HTML Element: \<fluent-image\>
|
|
10809
11027
|
*/
|
|
10810
|
-
const definition$
|
|
11028
|
+
const definition$g = Image.compose({
|
|
10811
11029
|
name: `${FluentDesignSystem.prefix}-image`,
|
|
10812
|
-
template: template$
|
|
10813
|
-
styles: styles$
|
|
11030
|
+
template: template$g,
|
|
11031
|
+
styles: styles$f
|
|
10814
11032
|
});
|
|
10815
11033
|
|
|
10816
11034
|
/**
|
|
@@ -10850,7 +11068,7 @@ __decorate([attr({
|
|
|
10850
11068
|
/** Label styles
|
|
10851
11069
|
* @public
|
|
10852
11070
|
*/
|
|
10853
|
-
const styles$
|
|
11071
|
+
const styles$e = css`
|
|
10854
11072
|
${display('flex')}
|
|
10855
11073
|
|
|
10856
11074
|
:host{font-family:${fontFamilyBase};font-size:${fontSizeBase300};line-height:${lineHeightBase300};font-weight:${fontWeightRegular};color:${colorNeutralForeground1}}.asterisk{color:${colorPaletteRedForeground1};margin-left:${spacingHorizontalXS}}:host([size='small']){font-size:${fontSizeBase200};line-height:${lineHeightBase200}}:host([size='large']){font-size:${fontSizeBase400};line-height:${lineHeightBase400};font-weight:${fontWeightSemibold}}:host([weight='semibold']){font-weight:${fontWeightSemibold}}:host([disabled]),:host([disabled]) .asterisk{color:${colorNeutralForegroundDisabled}}`;
|
|
@@ -10862,7 +11080,7 @@ const styles$d = css`
|
|
|
10862
11080
|
function labelTemplate() {
|
|
10863
11081
|
return html`<slot></slot><span part="asterisk" class="asterisk" ?hidden="${x => !x.required}">*</span>`;
|
|
10864
11082
|
}
|
|
10865
|
-
const template$
|
|
11083
|
+
const template$f = labelTemplate();
|
|
10866
11084
|
|
|
10867
11085
|
/**
|
|
10868
11086
|
* The Fluent Label Element.
|
|
@@ -10872,10 +11090,10 @@ const template$e = labelTemplate();
|
|
|
10872
11090
|
* @remarks
|
|
10873
11091
|
* HTML Element: \<fluent-label\>
|
|
10874
11092
|
*/
|
|
10875
|
-
const definition$
|
|
11093
|
+
const definition$f = Label.compose({
|
|
10876
11094
|
name: `${FluentDesignSystem.prefix}-label`,
|
|
10877
|
-
template: template$
|
|
10878
|
-
styles: styles$
|
|
11095
|
+
template: template$f,
|
|
11096
|
+
styles: styles$e
|
|
10879
11097
|
});
|
|
10880
11098
|
|
|
10881
11099
|
/**
|
|
@@ -10904,7 +11122,7 @@ const MenuButtonSize = ButtonSize;
|
|
|
10904
11122
|
* The template for the Button component.
|
|
10905
11123
|
* @public
|
|
10906
11124
|
*/
|
|
10907
|
-
const template$
|
|
11125
|
+
const template$e = buttonTemplate$1({
|
|
10908
11126
|
end: html.partial(`<svg slot="end" fill="currentColor" aria-hidden="true" width="1em" height="1em" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M15.85 7.65c.2.2.2.5 0 .7l-5.46 5.49a.55.55 0 0 1-.78 0L4.15 8.35a.5.5 0 1 1 .7-.7L10 12.8l5.15-5.16c.2-.2.5-.2.7 0Z" fill="currentColor"></path></svg>`)
|
|
10909
11127
|
});
|
|
10910
11128
|
|
|
@@ -10916,10 +11134,10 @@ const template$d = buttonTemplate$1({
|
|
|
10916
11134
|
* @remarks
|
|
10917
11135
|
* HTML Element: \<fluent-button\>
|
|
10918
11136
|
*/
|
|
10919
|
-
const definition$
|
|
11137
|
+
const definition$e = MenuButton.compose({
|
|
10920
11138
|
name: `${FluentDesignSystem.prefix}-menu-button`,
|
|
10921
|
-
template: template$
|
|
10922
|
-
styles: styles$
|
|
11139
|
+
template: template$e,
|
|
11140
|
+
styles: styles$m,
|
|
10923
11141
|
shadowOptions: {
|
|
10924
11142
|
delegatesFocus: true
|
|
10925
11143
|
}
|
|
@@ -10933,7 +11151,7 @@ class MenuItem extends FASTMenuItem {}
|
|
|
10933
11151
|
|
|
10934
11152
|
const Checkmark16Filled = html.partial(`<svg fill="currentColor" class="___12fm75w f1w7gpdv fez10in fg4l7m0" aria-hidden="true" width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.05 3.49c.28.3.27.77-.04 1.06l-7.93 7.47A.85.85 0 014.9 12L2.22 9.28a.75.75 0 111.06-1.06l2.24 2.27 7.47-7.04a.75.75 0 011.06.04z" fill="currentColor"></path></svg>`);
|
|
10935
11153
|
const chevronRight16Filled = html.partial(`<svg fill="currentColor" class="___12fm75w f1w7gpdv fez10in fg4l7m0" aria-hidden="true" width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M5.74 3.2a.75.75 0 00-.04 1.06L9.23 8 5.7 11.74a.75.75 0 101.1 1.02l4-4.25a.75.75 0 000-1.02l-4-4.25a.75.75 0 00-1.06-.04z" fill="currentColor"></path></svg>`);
|
|
10936
|
-
const template$
|
|
11154
|
+
const template$d = menuItemTemplate({
|
|
10937
11155
|
checkboxIndicator: Checkmark16Filled,
|
|
10938
11156
|
expandCollapseGlyph: chevronRight16Filled,
|
|
10939
11157
|
radioIndicator: Checkmark16Filled
|
|
@@ -10942,7 +11160,7 @@ const template$c = menuItemTemplate({
|
|
|
10942
11160
|
/** MenuItem styles
|
|
10943
11161
|
* @public
|
|
10944
11162
|
*/
|
|
10945
|
-
const styles$
|
|
11163
|
+
const styles$d = css`
|
|
10946
11164
|
${display('grid')}
|
|
10947
11165
|
|
|
10948
11166
|
:host{grid-template-columns:20px 20px auto 20px;align-items:center;grid-gap:4px;height:32px;background:${colorNeutralBackground1};font:${fontWeightRegular} ${fontSizeBase300} / ${lineHeightBase300} ${fontFamilyBase};border-radius:${borderRadiusMedium};color:${colorNeutralForeground2};padding:0 10px;cursor:pointer;overflow:visible;contain:layout}:host(:hover){background:${colorNeutralBackground1Hover}}.content{white-space:nowrap;flex-grow:1;grid-column:auto / span 2;padding:0 2px}.checkbox,.radio{display:none}.input-container,.expand-collapse-glyph-container,::slotted([slot='start']),::slotted([slot='end']),:host([checked]) .checkbox,:host([checked]) .radio{display:inline-flex;justify-content:center;align-items:center;color:${colorNeutralForeground2}}.expand-collapse-glyph-container,::slotted([slot='start']),::slotted([slot='end']){height:32px;font-size:${fontSizeBase500};width:fit-content}.input-container{width:20px}::slotted([slot='end']){color:${colorNeutralForeground3};font:${fontWeightRegular} ${fontSizeBase200} / ${lineHeightBase200} ${fontFamilyBase};white-space:nowrap;grid-column:4 / span 1;justify-self:flex-end}.expand-collapse-glyph-container{grid-column:4 / span 1;justify-self:flex-end}:host(:hover) .input-container,:host(:hover) .expand-collapse-glyph-container,:host(:hover) .content{color:${colorNeutralForeground2Hover}}:host([icon]:hover) ::slotted([slot='start']){color:${colorCompoundBrandForeground1Hover}}:host(:active){background-color:${colorNeutralBackground1Selected}}:host(:active) .input-container,:host(:active) .expand-collapse-glyph-container,:host(:active) .content{color:${colorNeutralForeground2Pressed}}:host(:active) ::slotted([slot='start']){color:${colorCompoundBrandForeground1Pressed}}:host([disabled]){background-color:${colorNeutralBackgroundDisabled}}:host([disabled]) .content,:host([disabled]) .expand-collapse-glyph-container,:host([disabled]) ::slotted([slot='end']),:host([disabled]) ::slotted([slot='start']){color:${colorNeutralForegroundDisabled}}:host([data-indent]){display:grid}:host([data-indent='1']) .content{grid-column:2 / span 1}:host([data-indent='1'][role='menuitemcheckbox']){display:grid}:host([data-indent='2'][aria-haspopup='menu']) ::slotted([slot='end']){grid-column:4 / span 1}:host([data-indent='2'][aria-haspopup='menu']) .expand-collapse-glyph-container{grid-column:5 / span 1}:host([data-indent='1']) .content{grid-column:2 / span 1}:host([data-indent='1'][role='menuitemcheckbox']) .content,:host([data-indent='1'][role='menuitemradio']) .content{grid-column:auto / span 1}:host([icon]) ::slotted([slot='end']),:host([data-indent='1']) ::slotted([slot='end']){grid-column:4 / span 1;justify-self:flex-end}:host([data-indent='2']){display:grid;grid-template-columns:20px 20px auto auto}:host([data-indent='2']) .content{grid-column:3 / span 1}:host([data-indent='2']) .input-container{grid-column:1 / span 1}:host([data-indent='2']) ::slotted([slot='start']){grid-column:2 / span 1}:host([aria-haspopup='menu']){grid-template-columns:20px auto auto 20px}:host([data-indent='2'][aria-haspopup='menu']){grid-template-columns:20px 20px auto auto 20px}:host([aria-haspopup='menu']) ::slotted([slot='end']){grid-column:3 / span 1;justify-self:flex-end}:host([data-indent='2'][aria-haspopup='menu']) ::slotted([slot='end']){grid-column:4 / span 1;justify-self:flex-end}`;
|
|
@@ -10956,10 +11174,10 @@ const styles$c = css`
|
|
|
10956
11174
|
* @remarks
|
|
10957
11175
|
* HTML Element: <fluent-menu-item>
|
|
10958
11176
|
*/
|
|
10959
|
-
const definition$
|
|
11177
|
+
const definition$d = MenuItem.compose({
|
|
10960
11178
|
name: `${FluentDesignSystem.prefix}-menu-item`,
|
|
10961
|
-
template: template$
|
|
10962
|
-
styles: styles$
|
|
11179
|
+
template: template$d,
|
|
11180
|
+
styles: styles$d
|
|
10963
11181
|
});
|
|
10964
11182
|
|
|
10965
11183
|
/**
|
|
@@ -10996,12 +11214,12 @@ class MenuList extends FASTMenu {
|
|
|
10996
11214
|
}
|
|
10997
11215
|
}
|
|
10998
11216
|
|
|
10999
|
-
const template$
|
|
11217
|
+
const template$c = menuTemplate();
|
|
11000
11218
|
|
|
11001
11219
|
/** MenuList styles
|
|
11002
11220
|
* @public
|
|
11003
11221
|
*/
|
|
11004
|
-
const styles$
|
|
11222
|
+
const styles$c = css`
|
|
11005
11223
|
${display('flex')}
|
|
11006
11224
|
|
|
11007
11225
|
:host{flex-direction:column;height:fit-content;max-width:300px;min-width:160px;width:auto;background-color:${colorNeutralBackground1};border:1px solid ${colorTransparentStroke};border-radius:${borderRadiusMedium};box-shadow:${shadow16};padding:4px;row-gap:2px}`;
|
|
@@ -11015,10 +11233,10 @@ const styles$b = css`
|
|
|
11015
11233
|
* @remarks
|
|
11016
11234
|
* HTML Element: <fluent-menu-list>
|
|
11017
11235
|
*/
|
|
11018
|
-
const definition$
|
|
11236
|
+
const definition$c = MenuList.compose({
|
|
11019
11237
|
name: `${FluentDesignSystem.prefix}-menu-list`,
|
|
11020
|
-
template: template$
|
|
11021
|
-
styles: styles$
|
|
11238
|
+
template: template$c,
|
|
11239
|
+
styles: styles$c
|
|
11022
11240
|
});
|
|
11023
11241
|
|
|
11024
11242
|
/**
|
|
@@ -11072,7 +11290,7 @@ const ProgressBarValidationState = {
|
|
|
11072
11290
|
/** ProgressBar styles
|
|
11073
11291
|
* @public
|
|
11074
11292
|
*/
|
|
11075
|
-
const styles$
|
|
11293
|
+
const styles$b = css`
|
|
11076
11294
|
${display('flex')}
|
|
11077
11295
|
|
|
11078
11296
|
:host{align-items:center;height:2px;overflow-x:hidden;border-radius:${borderRadiusMedium};contain:content}:host([thickness='large']),:host([thickness='large']) .progress,:host([thickness='large']) .determinate{height:4px}:host([shape='square']),:host([shape='square']) .progress,:host([shape='square']) .determinate{border-radius:0}:host([validation-state='error']) .determinate{background-color:${colorPaletteRedBackground3}}:host([validation-state='error']) .indeterminate-indicator-1,:host([validation-state='error']) .indeterminate-indicator-2{background:linear-gradient(
|
|
@@ -11087,7 +11305,7 @@ const styles$a = css`
|
|
|
11087
11305
|
to right,${colorBrandBackground2} 0%,${colorCompoundBrandBackground} 50%,${colorBrandBackground2}
|
|
11088
11306
|
);border-radius:${borderRadiusMedium};animation-timing-function:cubic-bezier(0.4,0,0.6,1);width:60%;animation:indeterminate-2 3s infinite}@keyframes indeterminate-1{0%{opacity:1;transform:translateX(-100%)}70%{opacity:1;transform:translateX(300%)}70.01%{opacity:0}100%{opacity:0;transform:translateX(300%)}}@keyframes indeterminate-2{0%{opacity:0;transform:translateX(-150%)}29.99%{opacity:0}30%{opacity:1;transform:translateX(-150%)}100%{transform:translateX(166.66%);opacity:1}}`;
|
|
11089
11307
|
|
|
11090
|
-
const template$
|
|
11308
|
+
const template$b = progressTemplate({
|
|
11091
11309
|
indeterminateIndicator1: `<span class="indeterminate-indicator-1" part="indeterminate-indicator-1></span>`,
|
|
11092
11310
|
indeterminateIndicator2: `<span class="indeterminate-indicator-2" part="indeterminate-indicator-2"></span>`
|
|
11093
11311
|
});
|
|
@@ -11100,10 +11318,10 @@ const template$a = progressTemplate({
|
|
|
11100
11318
|
* @remarks
|
|
11101
11319
|
* HTML Element: \<fluent-progress-bar\>
|
|
11102
11320
|
*/
|
|
11103
|
-
const definition$
|
|
11321
|
+
const definition$b = ProgressBar.compose({
|
|
11104
11322
|
name: `${FluentDesignSystem.prefix}-progress-bar`,
|
|
11105
|
-
template: template$
|
|
11106
|
-
styles: styles$
|
|
11323
|
+
template: template$b,
|
|
11324
|
+
styles: styles$b
|
|
11107
11325
|
});
|
|
11108
11326
|
|
|
11109
11327
|
/**
|
|
@@ -11115,12 +11333,12 @@ class Radio extends FASTRadio {}
|
|
|
11115
11333
|
/** Radio styles
|
|
11116
11334
|
* @public
|
|
11117
11335
|
*/
|
|
11118
|
-
const styles$
|
|
11336
|
+
const styles$a = css`
|
|
11119
11337
|
${display('inline-grid')}
|
|
11120
11338
|
|
|
11121
11339
|
:host{grid-auto-flow:column;grid-template-columns:max-content;gap:${spacingHorizontalXS};align-items:center;height:32px;cursor:pointer;outline:none;position:relative;user-select:none;color:blue;color:var(--state-color,${colorNeutralForeground3});padding-inline-end:${spacingHorizontalS};--control-border-color:${colorNeutralStrokeAccessible};--checked-indicator-background-color:${colorCompoundBrandForeground1};--state-color:${colorNeutralForeground3}}:host([disabled]){--control-border-color:${colorNeutralForegroundDisabled};--checked-indicator-background-color:${colorNeutralForegroundDisabled};--state-color:${colorNeutralForegroundDisabled}}.label{cursor:pointer;font-family:${fontFamilyBase};font-size:${fontSizeBase300};font-weight:${fontWeightRegular};line-height:${lineHeightBase300}}.label__hidden{display:none}.control{box-sizing:border-box;align-items:center;border:1px solid var(--control-border-color,${colorNeutralStrokeAccessible});border-radius:${borderRadiusCircular};display:flex;height:16px;justify-content:center;margin:${spacingVerticalS} ${spacingHorizontalS};position:relative;width:16px;justify-self:center}.checked-indicator{border-radius:${borderRadiusCircular};height:10px;opacity:0;width:10px}:host([aria-checked='false']:hover) .control{color:${colorNeutralForeground2}}:host(:focus-visible){border-radius:${borderRadiusSmall};box-shadow:0 0 0 3px ${colorStrokeFocus2};outline:1px solid ${colorStrokeFocus1}}:host(:hover) .control{border-color:${colorNeutralStrokeAccessibleHover}}:host(:active) .control{border-color:${colorNeutralStrokeAccessiblePressed}}:host([aria-checked='true']) .checked-indicator{opacity:1}:host([aria-checked='true']) .control{border-color:var(--control-border-color,${colorNeutralStrokeAccessible})}:host([aria-checked='true']) .checked-indicator{background-color:var(--checked-indicator-background-color,${colorCompoundBrandForeground1})}:host([aria-checked='true']:hover) .control{border-color:${colorCompoundBrandStrokeHover}}:host([aria-checked='true']:hover) .checked-indicator{background-color:${colorCompoundBrandStrokeHover}}:host([aria-checked='true']:active) .control{border-color:${colorCompoundBrandStrokePressed}}:host([aria-checked='true']:active) .checked-indicator{background:${colorCompoundBrandForeground1Pressed}}:host([disabled]){color:${colorNeutralForegroundDisabled};pointer-events:none}:host([disabled]) .control{pointer-events:none;border-color:${colorNeutralForegroundDisabled}}:host([disabled]) .checked-indicator{background:${colorNeutralForegroundDisabled}}`;
|
|
11122
11340
|
|
|
11123
|
-
const template$
|
|
11341
|
+
const template$a = radioTemplate({
|
|
11124
11342
|
checkedIndicator: html`<div part="checked-indicator" class="checked-indicator"></div>`
|
|
11125
11343
|
});
|
|
11126
11344
|
|
|
@@ -11132,10 +11350,10 @@ const template$9 = radioTemplate({
|
|
|
11132
11350
|
* @remarks
|
|
11133
11351
|
* HTML Element: \<fluent-radio\>
|
|
11134
11352
|
*/
|
|
11135
|
-
const definition$
|
|
11353
|
+
const definition$a = Radio.compose({
|
|
11136
11354
|
name: `${FluentDesignSystem.prefix}-radio`,
|
|
11137
|
-
template: template$
|
|
11138
|
-
styles: styles$
|
|
11355
|
+
template: template$a,
|
|
11356
|
+
styles: styles$a
|
|
11139
11357
|
});
|
|
11140
11358
|
|
|
11141
11359
|
/**
|
|
@@ -11162,12 +11380,12 @@ __decorate([attr({
|
|
|
11162
11380
|
/** RadioGroup styles
|
|
11163
11381
|
* @public
|
|
11164
11382
|
*/
|
|
11165
|
-
const styles$
|
|
11383
|
+
const styles$9 = css`
|
|
11166
11384
|
${display('flex')}
|
|
11167
11385
|
|
|
11168
11386
|
:host{align-items:flex-start;flex-direction:column;row-gap:${spacingVerticalS}}:host([disabled]) ::slotted([role='radio']){--control-border-color:${colorNeutralForegroundDisabled};--checked-indicator-background-color:${colorNeutralForegroundDisabled};--state-color:${colorNeutralForegroundDisabled}}::slotted([slot='label']){color:${colorNeutralForeground1};padding:${spacingVerticalS} ${spacingHorizontalS} ${spacingVerticalS} ${spacingHorizontalXS};font:${fontWeightRegular} ${fontSizeBase300} / ${lineHeightBase300} ${fontFamilyBase};cursor:default}.positioning-region{display:flex;flex-wrap:wrap}:host([orientation='vertical']) .positioning-region{flex-direction:column;justify-content:flex-start}:host([orientation='horizontal']) .positioning-region{flex-direction:row}:host([orientation='horizontal']) ::slotted([role='radio']){padding-inline-end:${spacingHorizontalS}}:host([orientation='horizontal'][stacked]) ::slotted([role='radio']){display:flex;flex-direction:column;padding-inline:${spacingHorizontalS};height:auto;align-items:center;justify-content:center}:host([disabled]) ::slotted([role='radio']){pointer-events:none}`;
|
|
11169
11387
|
|
|
11170
|
-
const template$
|
|
11388
|
+
const template$9 = radioGroupTemplate();
|
|
11171
11389
|
|
|
11172
11390
|
/**
|
|
11173
11391
|
* The Fluent RadioGroup Element.
|
|
@@ -11177,10 +11395,10 @@ const template$8 = radioGroupTemplate();
|
|
|
11177
11395
|
* @remarks
|
|
11178
11396
|
* HTML Element: \<fluent-radio-group\>
|
|
11179
11397
|
*/
|
|
11180
|
-
const definition$
|
|
11398
|
+
const definition$9 = RadioGroup.compose({
|
|
11181
11399
|
name: `${FluentDesignSystem.prefix}-radio-group`,
|
|
11182
|
-
template: template$
|
|
11183
|
-
styles: styles$
|
|
11400
|
+
template: template$9,
|
|
11401
|
+
styles: styles$9
|
|
11184
11402
|
});
|
|
11185
11403
|
|
|
11186
11404
|
/**
|
|
@@ -11242,12 +11460,12 @@ const SliderSize = {
|
|
|
11242
11460
|
/** Text styles
|
|
11243
11461
|
* @public
|
|
11244
11462
|
*/
|
|
11245
|
-
const styles$
|
|
11463
|
+
const styles$8 = css`
|
|
11246
11464
|
${display('inline-grid')} :host{--thumb-size:18px;--thumb-padding:3px;--thumb-translate:calc(var(--thumb-size) * -0.5 + var(--track-width) / 2);--track-overhang:-2px;--track-width:4px;--fast-slider-height:calc(var(--thumb-size) * 10);--slider-direction:90deg;align-items:center;box-sizing:border-box;outline:none;cursor:pointer;user-select:none;border-radius:${borderRadiusSmall};touch-action:pan-y;min-width:calc(var(--thumb-size) * 1px);width:100%}:host([size='small']){--thumb-size:14px;--track-width:2px;--thumb-padding:3px}:host([orientation='vertical']){--slider-direction:0deg;height:160px;min-height:var(--thumb-size);touch-action:pan-x;padding:8px 0;width:auto;min-width:auto}:host([disabled]:hover){cursor:initial}:host(:focus-visible){box-shadow:0 0 0 2pt ${colorStrokeFocus2};outline:1px solid ${colorStrokeFocus1}}.thumb-cursor:focus{outline:0}.thumb-container{position:absolute;height:var(--thumb-size);width:var(--thumb-size);transition:all 0.2s ease}.thumb-container{transform:translateX(calc(var(--thumb-size) * 0.5)) translateY(calc(var(--thumb-translate) * -1.5))}:host([size='small']) .thumb-container{transform:translateX(calc(var(--thumb-size) * 0.5)) translateY(calc(var(--thumb-translate) * -1.35))}:host([orientation='vertical']) .thumb-container{transform:translateX(calc(var(--thumb-translate) * -1.5)) translateY(calc(var(--thumb-size) * -0.5))}:host([orientation='vertical'][size='small']) .thumb-container{transform:translateX(calc(var(--thumb-translate) * -1.35)) translateY(calc(var(--thumb-size) * -0.5))}.thumb-cursor{height:var(--thumb-size);width:var(--thumb-size);background-color:${colorBrandBackground};border-radius:${borderRadiusCircular};box-shadow:inset 0 0 0 var(--thumb-padding) ${colorNeutralBackground1},0 0 0 1px ${colorNeutralStroke1}}.thumb-cursor:hover{background-color:${colorCompoundBrandBackgroundHover}}.thumb-cursor:active{background-color:${colorCompoundBrandBackgroundPressed}}:host([disabled]) .thumb-cursor{background-color:${colorNeutralForegroundDisabled};box-shadow:inset 0 0 0 var(--thumb-padding) ${colorNeutralBackground1},0 0 0 1px ${colorNeutralStrokeDisabled}}.positioning-region{position:relative;display:grid}:host([orientation='horizontal']) .positioning-region{margin:0 8px;grid-template-rows:var(--thumb-size) var(--thumb-size)}:host([orientation='vertical']) .positioning-region{margin:8px 0;height:100%;grid-template-columns:var(--thumb-size) var(--thumb-size)}.track{align-self:start;position:absolute;background-color:${colorNeutralStrokeAccessible};border-radius:${borderRadiusMedium};overflow:hidden}:host([step]) .track::after{content:'';position:absolute;border-radius:${borderRadiusMedium};width:100%;inset:0 2px;background-image:repeating-linear-gradient(
|
|
11247
11465
|
var(--slider-direction),#0000 0%,#0000 calc(var(--step-rate) - 1px),${colorNeutralBackground1} calc(var(--step-rate) - 1px),${colorNeutralBackground1} var(--step-rate)
|
|
11248
11466
|
)}:host([orientation='vertical'][step]) .track::after{inset:-2px 0}:host([disabled]) .track{background-color:${colorNeutralBackgroundDisabled}}:host([orientation='horizontal']) .track{right:var(--track-overhang);left:var(--track-overhang);align-self:start;height:var(--track-width);grid-row:2 / auto}:host([orientation='vertical']) .track{top:var(--track-overhang);bottom:var(--track-overhang);width:var(--track-width);height:100%;grid-column:2 / auto}.track-start{background-color:${colorCompoundBrandBackground};position:absolute;height:100%;left:0;border-radius:${borderRadiusMedium}}:host([disabled]) .track-start{background-color:${colorNeutralForegroundDisabled}}:host(:hover) .track-start{background-color:${colorCompoundBrandBackgroundHover}}:host([disabled]:hover) .track-start{background-color:${colorNeutralForegroundDisabled}}.track-start:active{background-color:${colorCompoundBrandBackgroundPressed}}:host([orientation='vertical']) .track-start{height:auto;width:100%;bottom:0}`;
|
|
11249
11467
|
|
|
11250
|
-
const template$
|
|
11468
|
+
const template$8 = sliderTemplate({
|
|
11251
11469
|
thumb: `<div class="thumb-cursor" tabindex="0"></div>`
|
|
11252
11470
|
});
|
|
11253
11471
|
|
|
@@ -11259,10 +11477,10 @@ const template$7 = sliderTemplate({
|
|
|
11259
11477
|
* @remarks
|
|
11260
11478
|
* HTML Element: \<fluent-slider\>
|
|
11261
11479
|
*/
|
|
11262
|
-
const definition$
|
|
11480
|
+
const definition$8 = Slider.compose({
|
|
11263
11481
|
name: `${FluentDesignSystem.prefix}-slider`,
|
|
11264
|
-
template: template$
|
|
11265
|
-
styles: styles$
|
|
11482
|
+
template: template$8,
|
|
11483
|
+
styles: styles$8
|
|
11266
11484
|
});
|
|
11267
11485
|
|
|
11268
11486
|
/**
|
|
@@ -11295,7 +11513,7 @@ const SpinnerSize = {
|
|
|
11295
11513
|
huge: 'huge'
|
|
11296
11514
|
};
|
|
11297
11515
|
|
|
11298
|
-
const template$
|
|
11516
|
+
const template$7 = progressRingTemplate({
|
|
11299
11517
|
indeterminateIndicator: `
|
|
11300
11518
|
<svg class="progress" part="progress" viewBox="0 0 16 16">
|
|
11301
11519
|
<circle
|
|
@@ -11316,7 +11534,7 @@ const template$6 = progressRingTemplate({
|
|
|
11316
11534
|
`
|
|
11317
11535
|
});
|
|
11318
11536
|
|
|
11319
|
-
const styles$
|
|
11537
|
+
const styles$7 = css`
|
|
11320
11538
|
${display('flex')}
|
|
11321
11539
|
|
|
11322
11540
|
:host{display:flex;align-items:center;height:32px;width:32px;contain:content}:host([size='tiny']){height:20px;width:20px}:host([size='extra-small']){height:24px;width:24px}:host([size='small']){height:28px;width:28px}:host([size='large']){height:36px;width:36px}:host([size='extra-large']){height:40px;width:40px}:host([size='huge']){height:44px;width:44px}.progress{height:100%;width:100%}.background{fill:none;stroke:${colorBrandStroke2};stroke-width:1.5px}:host([appearance='inverted']) .background{stroke:rgba(255,255,255,0.2)}.determinate{stroke:${colorBrandStroke1};fill:none;stroke-width:1.5px;stroke-linecap:round;transform-origin:50% 50%;transform:rotate(-90deg);transition:all 0.2s ease-in-out}:host([appearance='inverted']) .determinite{stroke:${colorNeutralStrokeOnBrand2}}.indeterminate-indicator-1{stroke:${colorBrandStroke1};fill:none;stroke-width:1.5px;stroke-linecap:round;transform-origin:50% 50%;transform:rotate(-90deg);transition:all 0.2s ease-in-out;animation:spin-infinite 3s cubic-bezier(0.53,0.21,0.29,0.67) infinite}:host([appearance='inverted']) .indeterminate-indicator-1{stroke:${colorNeutralStrokeOnBrand2}}@keyframes spin-infinite{0%{stroke-dasharray:0.01px 43.97px;transform:rotate(0deg)}50%{stroke-dasharray:21.99px 21.99px;transform:rotate(450deg)}100%{stroke-dasharray:0.01px 43.97px;transform:rotate(1080deg)}}`;
|
|
@@ -11330,10 +11548,10 @@ const styles$6 = css`
|
|
|
11330
11548
|
* @remarks
|
|
11331
11549
|
* HTML Element: \<fluent-spinner\>
|
|
11332
11550
|
*/
|
|
11333
|
-
const definition$
|
|
11551
|
+
const definition$7 = Spinner.compose({
|
|
11334
11552
|
name: `${FluentDesignSystem.prefix}-spinner`,
|
|
11335
|
-
template: template$
|
|
11336
|
-
styles: styles$
|
|
11553
|
+
template: template$7,
|
|
11554
|
+
styles: styles$7
|
|
11337
11555
|
});
|
|
11338
11556
|
|
|
11339
11557
|
class Switch extends FASTSwitch {}
|
|
@@ -11351,11 +11569,11 @@ const SwitchLabelPosition = {
|
|
|
11351
11569
|
before: 'before'
|
|
11352
11570
|
};
|
|
11353
11571
|
|
|
11354
|
-
const template$
|
|
11572
|
+
const template$6 = switchTemplate({
|
|
11355
11573
|
switch: `<span class="checked-indicator" part="checked-indicator"></span>`
|
|
11356
11574
|
});
|
|
11357
11575
|
|
|
11358
|
-
const styles$
|
|
11576
|
+
const styles$6 = css`
|
|
11359
11577
|
${display('inline-flex')}
|
|
11360
11578
|
|
|
11361
11579
|
:host{align-items:center;flex-direction:row-reverse;outline:none;user-select:none;contain:content}:host([label-position='before']){flex-direction:row}:host([label-position='above']){flex-direction:column;align-items:flex-start}:host([disabled]) .label,:host([readonly]) .label,:host([readonly]) .switch,:host([disabled]) .switch{cursor:not-allowed}.label{position:relative;color:${colorNeutralForeground1};line-height:${lineHeightBase300};font-size:${fontSizeBase300};font-weight:${fontWeightRegular};font-family:${fontFamilyBase};padding:${spacingVerticalXS} ${spacingHorizontalXS};cursor:pointer}.label__hidden{display:none}.switch{display:flex;align-items:center;padding:0 ${spacingHorizontalXXS};box-sizing:border-box;width:40px;height:20px;background-color:${colorTransparentBackground};border:1px solid ${colorNeutralStrokeAccessible};border-radius:${borderRadiusCircular};outline:none;cursor:pointer;margin:${spacingVerticalS} ${spacingHorizontalS}}:host(:hover) .switch{background:none;border-color:${colorNeutralStrokeAccessibleHover}}:host(:active) .switch{border-color:${colorNeutralStrokeAccessiblePressed}}:host([disabled]) .switch,:host([readonly]) .switch{border:1px solid ${colorNeutralStrokeDisabled};background-color:none;pointer:default}:host([aria-checked='true']) .switch{background:${colorCompoundBrandBackground}}:host([aria-checked='true']:hover) .switch{background:${colorCompoundBrandBackgroundHover};border-color:${colorCompoundBrandBackgroundHover}}:host([aria-checked='true']:active) .switch{background:${colorCompoundBrandBackgroundPressed};border-color:${colorCompoundBrandBackgroundPressed}}:host([aria-checked='true'][disabled]) .switch{background:${colorNeutralBackgroundDisabled};border-color:${colorNeutralStrokeDisabled}}.checked-indicator{height:14px;width:14px;border-radius:50%;background-color:${colorNeutralForeground3};transition-duration:${durationNormal};transition-timing-function:${curveEasyEase};transition-property:transform}:host([aria-checked='true']) .checked-indicator{background-color:${colorNeutralForegroundInverted};transform:translateX(20px)}:host([aria-checked='true']:hover) .checked-indicator{background:${colorNeutralForegroundInvertedHover}}:host([aria-checked='true']:active) .checked-indicator{background:${colorNeutralForegroundInvertedPressed}}:host(:hover) .checked-indicator{background-color:${colorNeutralForeground3Hover}}:host(:active) .checked-indicator{background-color:${colorNeutralForeground3Pressed}}:host([disabled]) .checked-indicator,:host([readonly]) .checked-indicator{background:${colorNeutralForegroundDisabled}}:host([aria-checked='true'][disabled]) .checked-indicator{background:${colorNeutralForegroundDisabled}}`;
|
|
@@ -11367,10 +11585,10 @@ const styles$5 = css`
|
|
|
11367
11585
|
* @remarks
|
|
11368
11586
|
* HTML Element: \<fluent-switch\>
|
|
11369
11587
|
*/
|
|
11370
|
-
const definition$
|
|
11588
|
+
const definition$6 = Switch.compose({
|
|
11371
11589
|
name: `${FluentDesignSystem.prefix}-switch`,
|
|
11372
|
-
template: template$
|
|
11373
|
-
styles: styles$
|
|
11590
|
+
template: template$6,
|
|
11591
|
+
styles: styles$6
|
|
11374
11592
|
});
|
|
11375
11593
|
|
|
11376
11594
|
const TabsAppearance = {
|
|
@@ -11532,17 +11750,17 @@ __decorate([attr({
|
|
|
11532
11750
|
})], Tabs.prototype, "disabled", void 0);
|
|
11533
11751
|
__decorate([attr], Tabs.prototype, "size", void 0);
|
|
11534
11752
|
|
|
11535
|
-
const template$
|
|
11753
|
+
const template$5 = tabsTemplate({});
|
|
11536
11754
|
|
|
11537
|
-
const styles$
|
|
11755
|
+
const styles$5 = css`
|
|
11538
11756
|
${display('grid')}
|
|
11539
11757
|
|
|
11540
11758
|
:host{box-sizing:border-box;font-family:${fontFamilyBase};font-size:${fontSizeBase300};line-height:${lineHeightBase300};color:${colorNeutralForeground2};grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr}:host([disabled]){cursor:not-allowed;color:${colorNeutralForegroundDisabled}}:host([disabled]) ::slotted(fluent-tab){pointer-events:none;cursor:not-allowed;color:${colorNeutralForegroundDisabled}}:host([disabled]) ::slotted(fluent-tab:after){background-color:${colorNeutralForegroundDisabled}}:host([disabled]) ::slotted(fluent-tab[aria-selected='true'])::after{background-color:${colorNeutralForegroundDisabled}}:host([disabled]) ::slotted(fluent-tab:hover):before{content:unset}:host ::slotted(fluent-tab){border-radius:${borderRadiusMedium}}:host ::slotted(fluent-tab[aria-selected='true'])::before{background-color:${colorNeutralForegroundDisabled}}.tablist{display:grid;grid-template-rows:auto auto;grid-template-columns:auto;position:relative;width:max-content;align-self:end;box-sizing:border-box}::slotted([slot='start']),::slotted([slot='end']){display:flex;align-self:center}::slotted([slot='start']){margin-inline-end:11px}::slotted([slot='end']){margin-inline-start:11px}.tabpanel{grid-row:2;grid-column-start:1;grid-column-end:4;position:relative}:host([orientation='vertical']){grid-template-rows:auto 1fr auto;grid-template-columns:auto 1fr}:host([orientation='vertical']) .tablist{grid-row-start:2;grid-row-end:2;display:grid;grid-template-rows:auto;grid-template-columns:auto 1fr;position:relative;width:max-content;justify-self:end;align-self:flex-start;width:100%}:host([orientation='vertical']) .tabpanel{grid-column:2;grid-row-start:1;grid-row-end:4}:host([orientation='vertical']) ::slotted([slot='end']){grid-row:3}:host([appearance='subtle']) ::slotted(fluent-tab:hover){background-color:${colorSubtleBackgroundHover};color:${colorNeutralForeground1Hover};fill:${colorCompoundBrandForeground1Hover}}:host([appearance='subtle']) ::slotted(fluent-tab:active){background-color:${colorSubtleBackgroundPressed};fill:${colorSubtleBackgroundPressed};color:${colorNeutralForeground1}}:host([size='small']) ::slotted(fluent-tab){font-size:${fontSizeBase300};line-height:${lineHeightBase300};padding:${spacingVerticalSNudge} ${spacingHorizontalSNudge}}:host([size='large']) ::slotted(fluent-tab){font-size:${fontSizeBase400};line-height:${lineHeightBase400};padding:${spacingVerticalL} ${spacingHorizontalMNudge}}:host ::slotted(fluent-tab[data-animate='true'])::after{transition-property:transform;transition-duration:${durationSlow};transition-timing-function:${curveDecelerateMax}}:host ::slotted(fluent-tab)::after{height:${strokeWidthThicker};margin-top:auto;transform-origin:left;transform:translateX(var(--tabIndicatorOffset)) scaleX(var(--tabIndicatorScale))}:host([orientation='vertical']) ::slotted(fluent-tab)::after{width:${strokeWidthThicker};height:unset;margin-top:unset;transform-origin:top;transform:translateY(var(--tabIndicatorOffset)) scaleY(var(--tabIndicatorScale))}:host ::slotted(fluent-tab)::before{height:${strokeWidthThicker};border-radius:${borderRadiusCircular};content:'';inset:0;position:absolute;margin-top:auto}:host([orientation='vertical']) ::slotted(fluent-tab)::before{height:unset;width:${strokeWidthThicker};margin-inline-end:auto;transform-origin:top}:host ::slotted(fluent-tab[aria-selected='false']:hover)::after{height:${strokeWidthThicker};margin-top:auto;transform-origin:left}:host([orientation='vertical']) ::slotted(fluent-tab[aria-selected='false']:hover)::after{height:unset;margin-inline-end:auto;transform-origin:top;width:${strokeWidthThicker}}:host([orientation='vertical']) ::slotted(fluent-tab){align-items:flex-start;grid-column:2;padding-top:${spacingVerticalSNudge};padding-bottom:${spacingVerticalSNudge}}:host([orientation='vertical'][size='small']) ::slotted(fluent-tab){padding-top:${spacingVerticalXXS};padding-bottom:${spacingVerticalXXS}}:host([orientation='vertical'][size='large']) ::slotted(fluent-tab){padding-top:${spacingVerticalS};padding-bottom:${spacingVerticalS}}:host([size='small']) ::slotted(fluent-tab)::after,:host([size='small']) ::slotted(fluent-tab)::before,:host([size='small']) ::slotted(fluent-tab:hover)::after{right:${spacingHorizontalSNudge};left:${spacingHorizontalSNudge}}:host ::slotted(fluent-tab)::after,:host ::slotted(fluent-tab)::before,:host ::slotted(fluent-tab:hover)::after{right:${spacingHorizontalMNudge};left:${spacingHorizontalMNudge}}:host([size='large']) ::slotted(fluent-tab)::after,:host([size='large']) ::slotted(fluent-tab)::before,:host([size='large']) ::slotted(fluent-tab:hover)::after{right:${spacingHorizontalMNudge};left:${spacingHorizontalMNudge}}:host([orientation='vertical'][size='small']) ::slotted(fluent-tab)::after,:host([orientation='vertical'][size='small']) ::slotted(fluent-tab)::before,:host([orientation='vertical'][size='small']) ::slotted(fluent-tab:hover)::after{right:0;left:0;top:${spacingVerticalSNudge};bottom:${spacingVerticalSNudge}}:host([orientation='vertical']) ::slotted(fluent-tab)::after,:host([orientation='vertical']) ::slotted(fluent-tab)::before,:host([orientation='vertical']) ::slotted(fluent-tab:hover)::after{right:0;left:0;top:${spacingVerticalS};bottom:${spacingVerticalS}}:host([orientation='vertical'][size='large']) ::slotted(fluent-tab)::after,:host([orientation='vertical'][size='large']) ::slotted(fluent-tab)::before,:host([orientation='vertical'][size='large']) ::slotted(fluent-tab:hover)::after{right:0;left:0;top:${spacingVerticalMNudge};bottom:${spacingVerticalMNudge}}`;
|
|
11541
11759
|
|
|
11542
|
-
const definition$
|
|
11760
|
+
const definition$5 = Tabs.compose({
|
|
11543
11761
|
name: `${FluentDesignSystem.prefix}-tabs`,
|
|
11544
|
-
template: template$
|
|
11545
|
-
styles: styles$
|
|
11762
|
+
template: template$5,
|
|
11763
|
+
styles: styles$5
|
|
11546
11764
|
});
|
|
11547
11765
|
|
|
11548
11766
|
/**
|
|
@@ -11563,32 +11781,32 @@ class Tab extends FASTTab {
|
|
|
11563
11781
|
function tabTemplate(options = {}) {
|
|
11564
11782
|
return html`<template slot="tab" role="tab" aria-disabled="${x => x.disabled}">${startSlotTemplate(options)}<span class="tab-content"><slot></slot></span>${endSlotTemplate(options)}</template>`;
|
|
11565
11783
|
}
|
|
11566
|
-
const template$
|
|
11784
|
+
const template$4 = tabTemplate({});
|
|
11567
11785
|
|
|
11568
|
-
const styles$
|
|
11786
|
+
const styles$4 = css`
|
|
11569
11787
|
${display('inline-flex')}
|
|
11570
11788
|
|
|
11571
11789
|
:host{position:relative;flex-direction:column;cursor:pointer;box-sizing:border-box;justify-content:center;line-height:${lineHeightBase300};font-family:${fontFamilyBase};font-size:${fontSizeBase300};color:${colorNeutralForeground2};fill:currentcolor;grid-row:1;padding:${spacingHorizontalM} ${spacingHorizontalMNudge};border-radius:${borderRadiusMedium}}:host .tab-content{display:inline-flex;flex-direction:column;padding:0 2px}:host([aria-selected='true']){color:${colorNeutralForeground1};font-weight:${fontWeightSemibold}}:host .tab-content::after{content:var(--textContent);visibility:hidden;height:0;line-height:${lineHeightBase300};font-weight:${fontWeightSemibold}}:host([aria-selected='true'])::after{background-color:${colorCompoundBrandStroke};border-radius:${borderRadiusCircular};content:'';inset:0;position:absolute;z-index:2}:host([aria-selected='false']:hover)::after{background-color:${colorNeutralStroke1Hover};border-radius:${borderRadiusCircular};content:'';inset:0;position:absolute;z-index:1}:host([aria-selected='true'][disabled])::after{background-color:${colorNeutralForegroundDisabled}}::slotted([slot='start']),::slotted([slot='end']){display:flex}::slotted([slot='start']){margin-inline-end:11px}::slotted([slot='end']){margin-inline-start:11px}:host([disabled]){cursor:not-allowed;fill:${colorNeutralForegroundDisabled};color:${colorNeutralForegroundDisabled}}:host([disabled]:hover)::after{background-color:unset}:host(:focus){outline:none}:host(:focus-visible){border-radius:${borderRadiusSmall};box-shadow:0 0 0 3px ${colorStrokeFocus2};outline:1px solid ${colorStrokeFocus1}}`;
|
|
11572
11790
|
|
|
11573
|
-
const definition$
|
|
11791
|
+
const definition$4 = Tab.compose({
|
|
11574
11792
|
name: `${FluentDesignSystem.prefix}-tab`,
|
|
11575
|
-
template: template$
|
|
11576
|
-
styles: styles$
|
|
11793
|
+
template: template$4,
|
|
11794
|
+
styles: styles$4
|
|
11577
11795
|
});
|
|
11578
11796
|
|
|
11579
11797
|
class TabPanel extends FASTTabPanel {}
|
|
11580
11798
|
|
|
11581
|
-
const template$
|
|
11799
|
+
const template$3 = tabPanelTemplate();
|
|
11582
11800
|
|
|
11583
|
-
const styles$
|
|
11801
|
+
const styles$3 = css`
|
|
11584
11802
|
${display('block')}
|
|
11585
11803
|
|
|
11586
11804
|
:host{box-sizing:border-box;padding:${spacingHorizontalM} ${spacingHorizontalMNudge}}`;
|
|
11587
11805
|
|
|
11588
|
-
const definition$
|
|
11806
|
+
const definition$3 = TabPanel.compose({
|
|
11589
11807
|
name: `${FluentDesignSystem.prefix}-tab-panel`,
|
|
11590
|
-
template: template$
|
|
11591
|
-
styles: styles$
|
|
11808
|
+
template: template$3,
|
|
11809
|
+
styles: styles$3
|
|
11592
11810
|
});
|
|
11593
11811
|
|
|
11594
11812
|
/**
|
|
@@ -11722,12 +11940,12 @@ const TextAlign = {
|
|
|
11722
11940
|
/**
|
|
11723
11941
|
* @internal
|
|
11724
11942
|
*/
|
|
11725
|
-
const template$
|
|
11943
|
+
const template$2 = html`<slot></slot>`;
|
|
11726
11944
|
|
|
11727
11945
|
/** Text styles
|
|
11728
11946
|
* @public
|
|
11729
11947
|
*/
|
|
11730
|
-
const styles$
|
|
11948
|
+
const styles$2 = css`
|
|
11731
11949
|
${display('inline')}
|
|
11732
11950
|
|
|
11733
11951
|
:host{contain:content}::slotted(*){font-family:${fontFamilyBase};font-size:${fontSizeBase300};line-height:${lineHeightBase300};font-weight:${fontWeightRegular};text-align:start;white-space:normal;overflow:visible;text-overflow:clip;margin:0;display:inline}:host([nowrap]) ::slotted(*){white-space:nowrap;overflow:hidden}:host([truncate]) ::slotted(*){text-overflow:ellipsis}:host([block]),:host([block]) ::slotted(*){display:block}:host([italic]) ::slotted(*){font-style:italic}:host([underline]) ::slotted(*){text-decoration-line:underline}:host([strikethrough]) ::slotted(*){text-decoration-line:line-through}:host([underline][strikethrough]) ::slotted(*){text-decoration-line:line-through underline}:host([size='100']) ::slotted(*){font-size:${fontSizeBase100};line-height:${lineHeightBase100}}:host([size='200']) ::slotted(*){font-size:${fontSizeBase200};line-height:${lineHeightBase200}}:host([size='400']) ::slotted(*){font-size:${fontSizeBase400};line-height:${lineHeightBase400}}:host([size='500']) ::slotted(*){font-size:${fontSizeBase500};line-height:${lineHeightBase500}}:host([size='600']) ::slotted(*){font-size:${fontSizeBase600};line-height:${lineHeightBase600}}:host([size='700']) ::slotted(*){font-size:${fontSizeHero700};line-height:${lineHeightHero700}}:host([size='800']) ::slotted(*){font-size:${fontSizeHero800};line-height:${lineHeightHero800}}:host([size='900']) ::slotted(*){font-size:${fontSizeHero900};line-height:${lineHeightHero900}}:host([size='1000']) ::slotted(*){font-size:${fontSizeHero1000};line-height:${lineHeightHero1000}}:host([font='monospace']) ::slotted(*){font-family:${fontFamilyMonospace}}:host([font='numeric']) ::slotted(*){font-family:${fontFamilyNumeric}}:host([weight='medium']) ::slotted(*){font-weight:${fontWeightMedium}}:host([weight='semibold']) ::slotted(*){font-weight:${fontWeightSemibold}}:host([weight='bold']) ::slotted(*){font-weight:${fontWeightBold}}:host([align='center']) ::slotted(*){text-align:center}:host([align='end']) ::slotted(*){text-align:end}:host([align='justify']) ::slotted(*){text-align:justify}`;
|
|
@@ -11740,8 +11958,65 @@ const styles$1 = css`
|
|
|
11740
11958
|
* @remarks
|
|
11741
11959
|
* HTML Element: \<fluent-text\>
|
|
11742
11960
|
*/
|
|
11743
|
-
const definition$
|
|
11961
|
+
const definition$2 = Text.compose({
|
|
11744
11962
|
name: `${FluentDesignSystem.prefix}-text`,
|
|
11963
|
+
template: template$2,
|
|
11964
|
+
styles: styles$2
|
|
11965
|
+
});
|
|
11966
|
+
|
|
11967
|
+
/**
|
|
11968
|
+
* The base class used for constructing a fluent-text-input custom element
|
|
11969
|
+
* @public
|
|
11970
|
+
*/
|
|
11971
|
+
class TextInput extends FASTTextField {}
|
|
11972
|
+
__decorate([attr({
|
|
11973
|
+
attribute: 'control-size'
|
|
11974
|
+
})], TextInput.prototype, "controlSize", void 0);
|
|
11975
|
+
__decorate([attr], TextInput.prototype, "appearance", void 0);
|
|
11976
|
+
|
|
11977
|
+
/**
|
|
11978
|
+
* TextInput size constants
|
|
11979
|
+
* @public
|
|
11980
|
+
*/
|
|
11981
|
+
const TextInputControlSize = {
|
|
11982
|
+
small: 'small',
|
|
11983
|
+
medium: 'medium',
|
|
11984
|
+
large: 'large'
|
|
11985
|
+
};
|
|
11986
|
+
/**
|
|
11987
|
+
* TextInput appearance constants
|
|
11988
|
+
* @public
|
|
11989
|
+
*/
|
|
11990
|
+
const TextInputAppearance = {
|
|
11991
|
+
outline: 'outline',
|
|
11992
|
+
underline: 'underline',
|
|
11993
|
+
filledLighter: 'filled-lighter',
|
|
11994
|
+
filledDarker: 'filled-darker'
|
|
11995
|
+
};
|
|
11996
|
+
|
|
11997
|
+
/**
|
|
11998
|
+
* @internal
|
|
11999
|
+
*/
|
|
12000
|
+
const template$1 = textFieldTemplate();
|
|
12001
|
+
|
|
12002
|
+
/** TextInput styles
|
|
12003
|
+
* @public
|
|
12004
|
+
*/
|
|
12005
|
+
const styles$1 = css`
|
|
12006
|
+
${display('block')}
|
|
12007
|
+
|
|
12008
|
+
:host{font-family:${fontFamilyBase};font-size:${fontSizeBase300};font-weight:${fontWeightRegular};line-height:${lineHeightBase300};max-width:400px}.label{display:flex;color:${colorNeutralForeground1};padding-bottom:${spacingVerticalXS};flex-shrink:0;padding-inline-end:${spacingHorizontalXS}}.label__hidden{display:none}.root{position:relative;box-sizing:border-box;height:32px;display:inline-flex;align-items:center;flex-direction:row;width:100%;padding:0 ${spacingHorizontalMNudge};border:${strokeWidthThin} solid ${colorNeutralStroke1};border-bottom-color:${colorNeutralStrokeAccessible};border-radius:${borderRadiusMedium};gap:${spacingHorizontalXXS}}.root::after{box-sizing:border-box;content:'';position:absolute;left:-1px;bottom:0px;right:-1px;height:max(2px,${borderRadiusMedium});border-radius:0 0 ${borderRadiusMedium} ${borderRadiusMedium};border-bottom:2px solid ${colorCompoundBrandStroke};clip-path:inset(calc(100% - 2px) 1px 0px);transform:scaleX(0);transition-property:transform;transition-duration:${durationUltraFast};transition-delay:${curveAccelerateMid}}.control{width:100%;height:100%;box-sizing:border-box;color:${colorNeutralForeground1};border-radius:${borderRadiusMedium};background:${colorTransparentBackground};font-family:${fontFamilyBase};font-weight:${fontWeightRegular};font-size:${fontSizeBase300};border:none;background:transparent;vertical-align:center}.control:focus-visible{outline:0;border:0}.control::placeholder{color:${colorNeutralForeground4}}:host ::slotted([slot='start']),:host ::slotted([slot='end']){display:flex;align-items:center;justify-content:center;color:${colorNeutralForeground3};font-size:${fontSizeBase500}}:host ::slotted([slot='start']){padding-right:${spacingHorizontalXXS}}:host ::slotted([slot='end']){padding-left:${spacingHorizontalXXS};gap:${spacingHorizontalXS}}:host(:hover) .root{border-color:${colorNeutralStroke1Hover};border-bottom-color:${colorNeutralStrokeAccessibleHover}}:host(:active) .root{border-color:${colorNeutralStroke1Pressed}}:host(:focus-within) .root{outline:transparent solid 2px;border-bottom:0}:host(:focus-within) .root::after{transform:scaleX(1);transition-property:transform;transition-duration:${durationNormal};transition-delay:${curveDecelerateMid}}:host(:focus-within:active) .root:after{border-bottom-color:${colorCompoundBrandStrokePressed}}:host([appearance='outline']:focus-within) .root{border:${strokeWidthThin} solid ${colorNeutralStroke1}}:host(:focus-within) .control{color:${colorNeutralForeground1}}:host([disabled]) .root{background:${colorTransparentBackground};border:${strokeWidthThin} solid ${colorNeutralStrokeDisabled}}:host([disabled]) .control::placeholder,:host([disabled]) ::slotted([slot='start']),:host([disabled]) ::slotted([slot='end']){color:${colorNeutralForegroundDisabled}}::selection{color:${colorNeutralForegroundInverted};background-color:${colorNeutralBackgroundInverted}}:host([control-size='small']) .control{font-size:${fontSizeBase200};font-weight:${fontWeightRegular};line-height:${lineHeightBase200}}:host([control-size='small']) .root{height:24px;gap:${spacingHorizontalXXS};padding:0 ${spacingHorizontalSNudge}}:host([control-size='small']) ::slotted([slot='start']),:host([control-size='small']) ::slotted([slot='end']){font-size:${fontSizeBase400}}:host([control-size='large']) .control{font-size:${fontSizeBase400};font-weight:${fontWeightRegular};line-height:${lineHeightBase400}}:host([control-size='large']) .root{height:40px;gap:${spacingHorizontalS};padding:0 ${spacingHorizontalM}}:host([control-size='large']) ::slotted([slot='start']),:host([control-size='large']) ::slotted([slot='end']){font-size:${fontSizeBase600}}:host([appearance='underline']) .root{background:${colorTransparentBackground};border:0;border-radius:0;border-bottom:${strokeWidthThin} solid ${colorNeutralStrokeAccessible}}:host([appearance='underline']:hover) .root{border-bottom-color:${colorNeutralStrokeAccessibleHover}}:host([appearance='underline']:active) .root{border-bottom-color:${colorNeutralStrokeAccessiblePressed}}:host([appearance='underline']:focus-within) .root{border:0;border-bottom-color:${colorNeutralStrokeAccessiblePressed}}:host([appearance='underline'][disabled]) .root{border-bottom-color:${colorNeutralStrokeDisabled}}:host([appearance='filled-lighter']) .root,:host([appearance='filled-darker']) .root{border:${strokeWidthThin} solid ${colorTransparentStroke};box-shadow:${shadow2}}:host([appearance='filled-lighter']) .root{background:${colorNeutralBackground1}}:host([appearance='filled-darker']) .root{background:${colorNeutralBackground3}}:host([appearance='filled-lighter']:hover) .root,:host([appearance='filled-darker']:hover) .root{border-color:${colorTransparentStrokeInteractive}}:host([appearance='filled-lighter']:active) .root,:host([appearance='filled-darker']:active) .root{border-color:${colorTransparentStrokeInteractive};background:${colorNeutralBackground3}}`;
|
|
12009
|
+
|
|
12010
|
+
/**
|
|
12011
|
+
* The Fluent TextInput Element.
|
|
12012
|
+
*
|
|
12013
|
+
*
|
|
12014
|
+
* @public
|
|
12015
|
+
* @remarks
|
|
12016
|
+
* HTML Element: \<fluent-text-input\>
|
|
12017
|
+
*/
|
|
12018
|
+
const definition$1 = TextInput.compose({
|
|
12019
|
+
name: `${FluentDesignSystem.prefix}-text-input`,
|
|
11745
12020
|
template: template$1,
|
|
11746
12021
|
styles: styles$1
|
|
11747
12022
|
});
|
|
@@ -11864,7 +12139,7 @@ const template = buttonTemplate$1();
|
|
|
11864
12139
|
|
|
11865
12140
|
// Need to support icon hover styles
|
|
11866
12141
|
const styles = css`
|
|
11867
|
-
${styles$
|
|
12142
|
+
${styles$m}
|
|
11868
12143
|
|
|
11869
12144
|
:host([aria-pressed="true"]) .control{border-color:${colorNeutralStroke1};background-color:${colorNeutralBackground1Selected};color:${colorNeutralForeground1};border-width:${strokeWidthThin}}:host([aria-pressed='true']:hover) .control{border-color:${colorNeutralStroke1Hover};background-color:${colorNeutralBackground1Hover}}:host([aria-pressed='true']:active) .control{border-color:${colorNeutralStroke1Pressed};background-color:${colorNeutralBackground1Pressed}}:host([aria-pressed='true'][appearance='primary']) .control{border-color:transparent;background-color:${colorBrandBackgroundSelected};color:${colorNeutralForegroundOnBrand}}:host([aria-pressed='true'][appearance='primary']:hover) .control{background-color:${colorBrandBackgroundHover}}:host([aria-pressed='true'][appearance='primary']:active) .control{background-color:${colorBrandBackgroundPressed}}:host([aria-pressed='true'][appearance='subtle']) .control{border-color:transparent;background-color:${colorSubtleBackgroundSelected};color:${colorNeutralForeground2Selected}}:host([aria-pressed='true'][appearance='subtle']:hover) .control{background-color:${colorSubtleBackgroundHover};color:${colorNeutralForeground2Hover}}:host([aria-pressed='true'][appearance='subtle']:active) .control{background-color:${colorSubtleBackgroundPressed};color:${colorNeutralForeground2Pressed}}:host([aria-pressed='true'][appearance='outline']) .control,:host([aria-pressed='true'][appearance='transparent']) .control{background-color:${colorTransparentBackgroundSelected}}:host([aria-pressed='true'][appearance='outline']:hover) .control,:host([aria-pressed='true'][appearance='transparent']:hover) .control{background-color:${colorTransparentBackgroundHover}}:host([aria-pressed='true'][appearance='outline']:active) .control,:host([aria-pressed='true'][appearance='transparent']:active) .control{background-color:${colorTransparentBackgroundPressed}}:host([aria-pressed='true'][appearance='transparent']) .control{border-color:transparent;color:${colorNeutralForeground2BrandSelected}}:host([aria-pressed='true'][appearance='transparent']:hover) .control{color:${colorNeutralForeground2BrandHover}}:host([aria-pressed='true'][appearance='transparent']:active) .control{color:${colorNeutralForeground2BrandPressed}}`;
|
|
11870
12145
|
|
|
@@ -11896,4 +12171,4 @@ const setTheme = theme => {
|
|
|
11896
12171
|
}
|
|
11897
12172
|
};
|
|
11898
12173
|
|
|
11899
|
-
export { Accordion, AccordionItem, AccordionItemExpandIconPosition, AccordionItemSize, AnchorButton, AnchorButtonAppearance, definition$m as AnchorButtonDefinition, AnchorButtonShape, AnchorButtonSize, template$m as AnchorButtonTemplate, Avatar, AvatarActive, AvatarAppearance, AvatarColor, definition$l as AvatarDefinition, AvatarNamedColor, AvatarShape, AvatarSize, styles$j as AvatarStyles, template$l as AvatarTemplate, Badge, BadgeAppearance, BadgeColor, definition$k as BadgeDefinition, BadgeShape, BadgeSize, styles$i as BadgeStyles, template$k as BadgeTemplate, Button, ButtonAppearance, definition$j as ButtonDefinition, ButtonShape, ButtonSize, styles$l as ButtonStyles, template$j as ButtonTemplate, CompoundButton, CompoundButtonAppearance, definition$i as CompoundButtonDefinition, CompoundButtonShape, CompoundButtonSize, styles$h as CompoundButtonStyles, template$i as CompoundButtonTemplate, CounterBadge, CounterBadgeAppearance, CounterBadgeColor, definition$h as CounterBadgeDefinition, CounterBadgeShape, CounterBadgeSize, styles$g as CounterBadgeStyles, template$h as CounterBadgeTemplate, Divider, DividerAlignContent, DividerAppearance, definition$g as DividerDefinition, DividerOrientation, DividerRole, styles$f as DividerStyles, template$g as DividerTemplate, Image, definition$f as ImageDefinition, ImageFit, ImageShape, styles$e as ImageStyles, template$f as ImageTemplate, Label, definition$e as LabelDefinition, styles$d as LabelStyles, template$e as LabelTemplate, MenuButton, MenuButtonAppearance, definition$d as MenuButtonDefinition, MenuButtonShape, MenuButtonSize, styles$l as MenuButtonStyles, template$d as MenuButtonTemplate, MenuItem, definition$c as MenuItemDefinition, styles$c as MenuItemStyles, template$c as MenuItemTemplate, MenuList, definition$b as MenuListDefinition, styles$b as MenuListStyles, template$b as MenuListTemplate, ProgressBar, definition$a as ProgressBarDefinition, ProgressBarShape, styles$a as ProgressBarStyles, template$a as ProgressBarTemplate, ProgressBarThickness, ProgressBarValidationState, Radio, definition$9 as RadioDefinition, RadioGroup, definition$8 as RadioGroupDefinition, RadioGroupOrientation, styles$8 as RadioGroupStyles, template$8 as RadioGroupTemplate, styles$9 as RadioStyles, template$9 as RadioTemplate, Slider, definition$7 as SliderDefinition, SliderOrientation, SliderSize, styles$7 as SliderStyles, template$7 as SliderTemplate, Spinner, SpinnerAppearance, definition$6 as SpinnerDefinition, SpinnerSize, styles$6 as SpinnerStyles, template$6 as SpinnerTemplate, Switch, definition$5 as SwitchDefinition, SwitchLabelPosition, styles$5 as SwitchStyles, template$5 as SwitchTemplate, Tab, definition$3 as TabDefinition, TabPanel, definition$2 as TabPanelDefinition, styles$2 as TabPanelStyles, template$2 as TabPanelTemplate, styles$3 as TabStyles, template$3 as TabTemplate, Tabs, TabsAppearance, definition$4 as TabsDefinition, TabsOrientation, TabsSize, styles$4 as TabsStyles, template$4 as TabsTemplate, Text, TextAlign, definition$1 as TextDefinition, TextFont, TextSize, styles$1 as TextStyles, template$1 as TextTemplate, TextWeight, ToggleButton, ToggleButtonAppearance, definition as ToggleButtonDefinition, ToggleButtonShape, ToggleButtonSize, styles as ToggleButtonStyles, template as ToggleButtonTemplate, definition$o as accordionDefinition, definition$n as accordionItemDefinition, styles$m as accordionItemStyles, template$n as accordionItemTemplate, styles$n as accordionStyles, template$o as accordionTemplate, borderRadiusCircular, borderRadiusLarge, borderRadiusMedium, borderRadiusNone, borderRadiusSmall, borderRadiusXLarge, colorBackgroundOverlay, colorBrandBackground, colorBrandBackground2, colorBrandBackgroundHover, colorBrandBackgroundInverted, colorBrandBackgroundInvertedHover, colorBrandBackgroundInvertedPressed, colorBrandBackgroundInvertedSelected, colorBrandBackgroundPressed, colorBrandBackgroundSelected, colorBrandBackgroundStatic, colorBrandForeground1, colorBrandForeground2, colorBrandForegroundInverted, colorBrandForegroundInvertedHover, colorBrandForegroundInvertedPressed, colorBrandForegroundLink, colorBrandForegroundLinkHover, colorBrandForegroundLinkPressed, colorBrandForegroundLinkSelected, colorBrandForegroundOnLight, colorBrandForegroundOnLightHover, colorBrandForegroundOnLightPressed, colorBrandForegroundOnLightSelected, colorBrandShadowAmbient, colorBrandShadowKey, colorBrandStroke1, colorBrandStroke2, colorCompoundBrandBackground, colorCompoundBrandBackgroundHover, colorCompoundBrandBackgroundPressed, colorCompoundBrandForeground1, colorCompoundBrandForeground1Hover, colorCompoundBrandForeground1Pressed, colorCompoundBrandStroke, colorCompoundBrandStrokeHover, colorCompoundBrandStrokePressed, colorNeutralBackground1, colorNeutralBackground1Hover, colorNeutralBackground1Pressed, colorNeutralBackground1Selected, colorNeutralBackground2, colorNeutralBackground2Hover, colorNeutralBackground2Pressed, colorNeutralBackground2Selected, colorNeutralBackground3, colorNeutralBackground3Hover, colorNeutralBackground3Pressed, colorNeutralBackground3Selected, colorNeutralBackground4, colorNeutralBackground4Hover, colorNeutralBackground4Pressed, colorNeutralBackground4Selected, colorNeutralBackground5, colorNeutralBackground5Hover, colorNeutralBackground5Pressed, colorNeutralBackground5Selected, colorNeutralBackground6, colorNeutralBackgroundDisabled, colorNeutralBackgroundInverted, colorNeutralBackgroundInvertedDisabled, colorNeutralBackgroundStatic, colorNeutralForeground1, colorNeutralForeground1Hover, colorNeutralForeground1Pressed, colorNeutralForeground1Selected, colorNeutralForeground1Static, colorNeutralForeground2, colorNeutralForeground2BrandHover, colorNeutralForeground2BrandPressed, colorNeutralForeground2BrandSelected, colorNeutralForeground2Hover, colorNeutralForeground2Link, colorNeutralForeground2LinkHover, colorNeutralForeground2LinkPressed, colorNeutralForeground2LinkSelected, colorNeutralForeground2Pressed, colorNeutralForeground2Selected, colorNeutralForeground3, colorNeutralForeground3BrandHover, colorNeutralForeground3BrandPressed, colorNeutralForeground3BrandSelected, colorNeutralForeground3Hover, colorNeutralForeground3Pressed, colorNeutralForeground3Selected, colorNeutralForeground4, colorNeutralForegroundDisabled, colorNeutralForegroundInverted, colorNeutralForegroundInverted2, colorNeutralForegroundInvertedDisabled, colorNeutralForegroundInvertedHover, colorNeutralForegroundInvertedLink, colorNeutralForegroundInvertedLinkHover, colorNeutralForegroundInvertedLinkPressed, colorNeutralForegroundInvertedLinkSelected, colorNeutralForegroundInvertedPressed, colorNeutralForegroundInvertedSelected, colorNeutralForegroundOnBrand, colorNeutralForegroundStaticInverted, colorNeutralShadowAmbient, colorNeutralShadowAmbientDarker, colorNeutralShadowAmbientLighter, colorNeutralShadowKey, colorNeutralShadowKeyDarker, colorNeutralShadowKeyLighter, colorNeutralStencil1, colorNeutralStencil1Alpha, colorNeutralStencil2, colorNeutralStencil2Alpha, colorNeutralStroke1, colorNeutralStroke1Hover, colorNeutralStroke1Pressed, colorNeutralStroke1Selected, colorNeutralStroke2, colorNeutralStroke3, colorNeutralStrokeAccessible, colorNeutralStrokeAccessibleHover, colorNeutralStrokeAccessiblePressed, colorNeutralStrokeAccessibleSelected, colorNeutralStrokeDisabled, colorNeutralStrokeInvertedDisabled, colorNeutralStrokeOnBrand, colorNeutralStrokeOnBrand2, colorNeutralStrokeOnBrand2Hover, colorNeutralStrokeOnBrand2Pressed, colorNeutralStrokeOnBrand2Selected, colorPaletteAnchorBackground2, colorPaletteAnchorBorderActive, colorPaletteAnchorForeground2, colorPaletteBeigeBackground2, colorPaletteBeigeBorderActive, colorPaletteBeigeForeground2, colorPaletteBerryBackground1, colorPaletteBerryBackground2, colorPaletteBerryBackground3, colorPaletteBerryBorder1, colorPaletteBerryBorder2, colorPaletteBerryBorderActive, colorPaletteBerryForeground1, colorPaletteBerryForeground2, colorPaletteBerryForeground3, colorPaletteBlueBackground2, colorPaletteBlueBorderActive, colorPaletteBlueForeground2, colorPaletteBrassBackground2, colorPaletteBrassBorderActive, colorPaletteBrassForeground2, colorPaletteBrownBackground2, colorPaletteBrownBorderActive, colorPaletteBrownForeground2, colorPaletteCornflowerBackground2, colorPaletteCornflowerBorderActive, colorPaletteCornflowerForeground2, colorPaletteCranberryBackground2, colorPaletteCranberryBorderActive, colorPaletteCranberryForeground2, colorPaletteDarkGreenBackground2, colorPaletteDarkGreenBorderActive, colorPaletteDarkGreenForeground2, colorPaletteDarkOrangeBackground1, colorPaletteDarkOrangeBackground2, colorPaletteDarkOrangeBackground3, colorPaletteDarkOrangeBorder1, colorPaletteDarkOrangeBorder2, colorPaletteDarkOrangeBorderActive, colorPaletteDarkOrangeForeground1, colorPaletteDarkOrangeForeground2, colorPaletteDarkOrangeForeground3, colorPaletteDarkRedBackground2, colorPaletteDarkRedBorderActive, colorPaletteDarkRedForeground2, colorPaletteForestBackground2, colorPaletteForestBorderActive, colorPaletteForestForeground2, colorPaletteGoldBackground2, colorPaletteGoldBorderActive, colorPaletteGoldForeground2, colorPaletteGrapeBackground2, colorPaletteGrapeBorderActive, colorPaletteGrapeForeground2, colorPaletteGreenBackground1, colorPaletteGreenBackground2, colorPaletteGreenBackground3, colorPaletteGreenBorder1, colorPaletteGreenBorder2, colorPaletteGreenBorderActive, colorPaletteGreenForeground1, colorPaletteGreenForeground2, colorPaletteGreenForeground3, colorPaletteGreenForegroundInverted, colorPaletteLavenderBackground2, colorPaletteLavenderBorderActive, colorPaletteLavenderForeground2, colorPaletteLightGreenBackground1, colorPaletteLightGreenBackground2, colorPaletteLightGreenBackground3, colorPaletteLightGreenBorder1, colorPaletteLightGreenBorder2, colorPaletteLightGreenBorderActive, colorPaletteLightGreenForeground1, colorPaletteLightGreenForeground2, colorPaletteLightGreenForeground3, colorPaletteLightTealBackground2, colorPaletteLightTealBorderActive, colorPaletteLightTealForeground2, colorPaletteLilacBackground2, colorPaletteLilacBorderActive, colorPaletteLilacForeground2, colorPaletteMagentaBackground2, colorPaletteMagentaBorderActive, colorPaletteMagentaForeground2, colorPaletteMarigoldBackground1, colorPaletteMarigoldBackground2, colorPaletteMarigoldBackground3, colorPaletteMarigoldBorder1, colorPaletteMarigoldBorder2, colorPaletteMarigoldBorderActive, colorPaletteMarigoldForeground1, colorPaletteMarigoldForeground2, colorPaletteMarigoldForeground3, colorPaletteMinkBackground2, colorPaletteMinkBorderActive, colorPaletteMinkForeground2, colorPaletteNavyBackground2, colorPaletteNavyBorderActive, colorPaletteNavyForeground2, colorPalettePeachBackground2, colorPalettePeachBorderActive, colorPalettePeachForeground2, colorPalettePinkBackground2, colorPalettePinkBorderActive, colorPalettePinkForeground2, colorPalettePlatinumBackground2, colorPalettePlatinumBorderActive, colorPalettePlatinumForeground2, colorPalettePlumBackground2, colorPalettePlumBorderActive, colorPalettePlumForeground2, colorPalettePumpkinBackground2, colorPalettePumpkinBorderActive, colorPalettePumpkinForeground2, colorPalettePurpleBackground2, colorPalettePurpleBorderActive, colorPalettePurpleForeground2, colorPaletteRedBackground1, colorPaletteRedBackground2, colorPaletteRedBackground3, colorPaletteRedBorder1, colorPaletteRedBorder2, colorPaletteRedBorderActive, colorPaletteRedForeground1, colorPaletteRedForeground2, colorPaletteRedForeground3, colorPaletteRedForegroundInverted, colorPaletteRoyalBlueBackground2, colorPaletteRoyalBlueBorderActive, colorPaletteRoyalBlueForeground2, colorPaletteSeafoamBackground2, colorPaletteSeafoamBorderActive, colorPaletteSeafoamForeground2, colorPaletteSteelBackground2, colorPaletteSteelBorderActive, colorPaletteSteelForeground2, colorPaletteTealBackground2, colorPaletteTealBorderActive, colorPaletteTealForeground2, colorPaletteYellowBackground1, colorPaletteYellowBackground2, colorPaletteYellowBackground3, colorPaletteYellowBorder1, colorPaletteYellowBorder2, colorPaletteYellowBorderActive, colorPaletteYellowForeground1, colorPaletteYellowForeground2, colorPaletteYellowForeground3, colorPaletteYellowForegroundInverted, colorScrollbarOverlay, colorStrokeFocus1, colorStrokeFocus2, colorSubtleBackground, colorSubtleBackgroundHover, colorSubtleBackgroundInverted, colorSubtleBackgroundInvertedHover, colorSubtleBackgroundInvertedPressed, colorSubtleBackgroundInvertedSelected, colorSubtleBackgroundLightAlphaHover, colorSubtleBackgroundLightAlphaPressed, colorSubtleBackgroundLightAlphaSelected, colorSubtleBackgroundPressed, colorSubtleBackgroundSelected, colorTransparentBackground, colorTransparentBackgroundHover, colorTransparentBackgroundPressed, colorTransparentBackgroundSelected, colorTransparentStroke, colorTransparentStrokeDisabled, colorTransparentStrokeInteractive, curveAccelerateMax, curveAccelerateMid, curveAccelerateMin, curveDecelerateMax, curveDecelerateMid, curveDecelerateMin, curveEasyEase, curveEasyEaseMax, curveLinear, durationFast, durationFaster, durationNormal, durationSlow, durationSlower, durationUltraFast, durationUltraSlow, fontFamilyBase, fontFamilyMonospace, fontFamilyNumeric, fontSizeBase100, fontSizeBase200, fontSizeBase300, fontSizeBase400, fontSizeBase500, fontSizeBase600, fontSizeHero1000, fontSizeHero700, fontSizeHero800, fontSizeHero900, fontWeightBold, fontWeightMedium, fontWeightRegular, fontWeightSemibold, lineHeightBase100, lineHeightBase200, lineHeightBase300, lineHeightBase400, lineHeightBase500, lineHeightBase600, lineHeightHero1000, lineHeightHero700, lineHeightHero800, lineHeightHero900, setTheme, shadow16, shadow16Brand, shadow2, shadow28, shadow28Brand, shadow2Brand, shadow4, shadow4Brand, shadow64, shadow64Brand, shadow8, shadow8Brand, spacingHorizontalL, spacingHorizontalM, spacingHorizontalMNudge, spacingHorizontalNone, spacingHorizontalS, spacingHorizontalSNudge, spacingHorizontalXL, spacingHorizontalXS, spacingHorizontalXXL, spacingHorizontalXXS, spacingHorizontalXXXL, spacingVerticalL, spacingVerticalM, spacingVerticalMNudge, spacingVerticalNone, spacingVerticalS, spacingVerticalSNudge, spacingVerticalXL, spacingVerticalXS, spacingVerticalXXL, spacingVerticalXXS, spacingVerticalXXXL, strokeWidthThick, strokeWidthThicker, strokeWidthThickest, strokeWidthThin };
|
|
12174
|
+
export { Accordion, AccordionItem, AccordionItemExpandIconPosition, AccordionItemSize, AnchorButton, AnchorButtonAppearance, definition$n as AnchorButtonDefinition, AnchorButtonShape, AnchorButtonSize, template$n as AnchorButtonTemplate, Avatar, AvatarActive, AvatarAppearance, AvatarColor, definition$m as AvatarDefinition, AvatarNamedColor, AvatarShape, AvatarSize, styles$k as AvatarStyles, template$m as AvatarTemplate, Badge, BadgeAppearance, BadgeColor, definition$l as BadgeDefinition, BadgeShape, BadgeSize, styles$j as BadgeStyles, template$l as BadgeTemplate, Button, ButtonAppearance, definition$k as ButtonDefinition, ButtonShape, ButtonSize, styles$m as ButtonStyles, template$k as ButtonTemplate, CompoundButton, CompoundButtonAppearance, definition$j as CompoundButtonDefinition, CompoundButtonShape, CompoundButtonSize, styles$i as CompoundButtonStyles, template$j as CompoundButtonTemplate, CounterBadge, CounterBadgeAppearance, CounterBadgeColor, definition$i as CounterBadgeDefinition, CounterBadgeShape, CounterBadgeSize, styles$h as CounterBadgeStyles, template$i as CounterBadgeTemplate, Divider, DividerAlignContent, DividerAppearance, definition$h as DividerDefinition, DividerOrientation, DividerRole, styles$g as DividerStyles, template$h as DividerTemplate, Image, definition$g as ImageDefinition, ImageFit, ImageShape, styles$f as ImageStyles, template$g as ImageTemplate, Label, definition$f as LabelDefinition, styles$e as LabelStyles, template$f as LabelTemplate, MenuButton, MenuButtonAppearance, definition$e as MenuButtonDefinition, MenuButtonShape, MenuButtonSize, styles$m as MenuButtonStyles, template$e as MenuButtonTemplate, MenuItem, definition$d as MenuItemDefinition, MenuItemRole, styles$d as MenuItemStyles, template$d as MenuItemTemplate, MenuList, definition$c as MenuListDefinition, styles$c as MenuListStyles, template$c as MenuListTemplate, ProgressBar, definition$b as ProgressBarDefinition, ProgressBarShape, styles$b as ProgressBarStyles, template$b as ProgressBarTemplate, ProgressBarThickness, ProgressBarValidationState, Radio, definition$a as RadioDefinition, RadioGroup, definition$9 as RadioGroupDefinition, RadioGroupOrientation, styles$9 as RadioGroupStyles, template$9 as RadioGroupTemplate, styles$a as RadioStyles, template$a as RadioTemplate, Slider, definition$8 as SliderDefinition, SliderOrientation, SliderSize, styles$8 as SliderStyles, template$8 as SliderTemplate, Spinner, SpinnerAppearance, definition$7 as SpinnerDefinition, SpinnerSize, styles$7 as SpinnerStyles, template$7 as SpinnerTemplate, Switch, definition$6 as SwitchDefinition, SwitchLabelPosition, styles$6 as SwitchStyles, template$6 as SwitchTemplate, Tab, definition$4 as TabDefinition, TabPanel, definition$3 as TabPanelDefinition, styles$3 as TabPanelStyles, template$3 as TabPanelTemplate, styles$4 as TabStyles, template$4 as TabTemplate, Tabs, TabsAppearance, definition$5 as TabsDefinition, TabsOrientation, TabsSize, styles$5 as TabsStyles, template$5 as TabsTemplate, Text, TextAlign, definition$2 as TextDefinition, TextFont, TextInput, TextInputAppearance, TextInputControlSize, definition$1 as TextInputDefinition, styles$1 as TextInputStyles, template$1 as TextInputTemplate, TextFieldType as TextInputType, TextSize, styles$2 as TextStyles, template$2 as TextTemplate, TextWeight, ToggleButton, ToggleButtonAppearance, definition as ToggleButtonDefinition, ToggleButtonShape, ToggleButtonSize, styles as ToggleButtonStyles, template as ToggleButtonTemplate, definition$p as accordionDefinition, definition$o as accordionItemDefinition, styles$n as accordionItemStyles, template$o as accordionItemTemplate, styles$o as accordionStyles, template$p as accordionTemplate, borderRadiusCircular, borderRadiusLarge, borderRadiusMedium, borderRadiusNone, borderRadiusSmall, borderRadiusXLarge, colorBackgroundOverlay, colorBrandBackground, colorBrandBackground2, colorBrandBackgroundHover, colorBrandBackgroundInverted, colorBrandBackgroundInvertedHover, colorBrandBackgroundInvertedPressed, colorBrandBackgroundInvertedSelected, colorBrandBackgroundPressed, colorBrandBackgroundSelected, colorBrandBackgroundStatic, colorBrandForeground1, colorBrandForeground2, colorBrandForegroundInverted, colorBrandForegroundInvertedHover, colorBrandForegroundInvertedPressed, colorBrandForegroundLink, colorBrandForegroundLinkHover, colorBrandForegroundLinkPressed, colorBrandForegroundLinkSelected, colorBrandForegroundOnLight, colorBrandForegroundOnLightHover, colorBrandForegroundOnLightPressed, colorBrandForegroundOnLightSelected, colorBrandShadowAmbient, colorBrandShadowKey, colorBrandStroke1, colorBrandStroke2, colorCompoundBrandBackground, colorCompoundBrandBackgroundHover, colorCompoundBrandBackgroundPressed, colorCompoundBrandForeground1, colorCompoundBrandForeground1Hover, colorCompoundBrandForeground1Pressed, colorCompoundBrandStroke, colorCompoundBrandStrokeHover, colorCompoundBrandStrokePressed, colorNeutralBackground1, colorNeutralBackground1Hover, colorNeutralBackground1Pressed, colorNeutralBackground1Selected, colorNeutralBackground2, colorNeutralBackground2Hover, colorNeutralBackground2Pressed, colorNeutralBackground2Selected, colorNeutralBackground3, colorNeutralBackground3Hover, colorNeutralBackground3Pressed, colorNeutralBackground3Selected, colorNeutralBackground4, colorNeutralBackground4Hover, colorNeutralBackground4Pressed, colorNeutralBackground4Selected, colorNeutralBackground5, colorNeutralBackground5Hover, colorNeutralBackground5Pressed, colorNeutralBackground5Selected, colorNeutralBackground6, colorNeutralBackgroundDisabled, colorNeutralBackgroundInverted, colorNeutralBackgroundInvertedDisabled, colorNeutralBackgroundStatic, colorNeutralForeground1, colorNeutralForeground1Hover, colorNeutralForeground1Pressed, colorNeutralForeground1Selected, colorNeutralForeground1Static, colorNeutralForeground2, colorNeutralForeground2BrandHover, colorNeutralForeground2BrandPressed, colorNeutralForeground2BrandSelected, colorNeutralForeground2Hover, colorNeutralForeground2Link, colorNeutralForeground2LinkHover, colorNeutralForeground2LinkPressed, colorNeutralForeground2LinkSelected, colorNeutralForeground2Pressed, colorNeutralForeground2Selected, colorNeutralForeground3, colorNeutralForeground3BrandHover, colorNeutralForeground3BrandPressed, colorNeutralForeground3BrandSelected, colorNeutralForeground3Hover, colorNeutralForeground3Pressed, colorNeutralForeground3Selected, colorNeutralForeground4, colorNeutralForegroundDisabled, colorNeutralForegroundInverted, colorNeutralForegroundInverted2, colorNeutralForegroundInvertedDisabled, colorNeutralForegroundInvertedHover, colorNeutralForegroundInvertedLink, colorNeutralForegroundInvertedLinkHover, colorNeutralForegroundInvertedLinkPressed, colorNeutralForegroundInvertedLinkSelected, colorNeutralForegroundInvertedPressed, colorNeutralForegroundInvertedSelected, colorNeutralForegroundOnBrand, colorNeutralForegroundStaticInverted, colorNeutralShadowAmbient, colorNeutralShadowAmbientDarker, colorNeutralShadowAmbientLighter, colorNeutralShadowKey, colorNeutralShadowKeyDarker, colorNeutralShadowKeyLighter, colorNeutralStencil1, colorNeutralStencil1Alpha, colorNeutralStencil2, colorNeutralStencil2Alpha, colorNeutralStroke1, colorNeutralStroke1Hover, colorNeutralStroke1Pressed, colorNeutralStroke1Selected, colorNeutralStroke2, colorNeutralStroke3, colorNeutralStrokeAccessible, colorNeutralStrokeAccessibleHover, colorNeutralStrokeAccessiblePressed, colorNeutralStrokeAccessibleSelected, colorNeutralStrokeDisabled, colorNeutralStrokeInvertedDisabled, colorNeutralStrokeOnBrand, colorNeutralStrokeOnBrand2, colorNeutralStrokeOnBrand2Hover, colorNeutralStrokeOnBrand2Pressed, colorNeutralStrokeOnBrand2Selected, colorPaletteAnchorBackground2, colorPaletteAnchorBorderActive, colorPaletteAnchorForeground2, colorPaletteBeigeBackground2, colorPaletteBeigeBorderActive, colorPaletteBeigeForeground2, colorPaletteBerryBackground1, colorPaletteBerryBackground2, colorPaletteBerryBackground3, colorPaletteBerryBorder1, colorPaletteBerryBorder2, colorPaletteBerryBorderActive, colorPaletteBerryForeground1, colorPaletteBerryForeground2, colorPaletteBerryForeground3, colorPaletteBlueBackground2, colorPaletteBlueBorderActive, colorPaletteBlueForeground2, colorPaletteBrassBackground2, colorPaletteBrassBorderActive, colorPaletteBrassForeground2, colorPaletteBrownBackground2, colorPaletteBrownBorderActive, colorPaletteBrownForeground2, colorPaletteCornflowerBackground2, colorPaletteCornflowerBorderActive, colorPaletteCornflowerForeground2, colorPaletteCranberryBackground2, colorPaletteCranberryBorderActive, colorPaletteCranberryForeground2, colorPaletteDarkGreenBackground2, colorPaletteDarkGreenBorderActive, colorPaletteDarkGreenForeground2, colorPaletteDarkOrangeBackground1, colorPaletteDarkOrangeBackground2, colorPaletteDarkOrangeBackground3, colorPaletteDarkOrangeBorder1, colorPaletteDarkOrangeBorder2, colorPaletteDarkOrangeBorderActive, colorPaletteDarkOrangeForeground1, colorPaletteDarkOrangeForeground2, colorPaletteDarkOrangeForeground3, colorPaletteDarkRedBackground2, colorPaletteDarkRedBorderActive, colorPaletteDarkRedForeground2, colorPaletteForestBackground2, colorPaletteForestBorderActive, colorPaletteForestForeground2, colorPaletteGoldBackground2, colorPaletteGoldBorderActive, colorPaletteGoldForeground2, colorPaletteGrapeBackground2, colorPaletteGrapeBorderActive, colorPaletteGrapeForeground2, colorPaletteGreenBackground1, colorPaletteGreenBackground2, colorPaletteGreenBackground3, colorPaletteGreenBorder1, colorPaletteGreenBorder2, colorPaletteGreenBorderActive, colorPaletteGreenForeground1, colorPaletteGreenForeground2, colorPaletteGreenForeground3, colorPaletteGreenForegroundInverted, colorPaletteLavenderBackground2, colorPaletteLavenderBorderActive, colorPaletteLavenderForeground2, colorPaletteLightGreenBackground1, colorPaletteLightGreenBackground2, colorPaletteLightGreenBackground3, colorPaletteLightGreenBorder1, colorPaletteLightGreenBorder2, colorPaletteLightGreenBorderActive, colorPaletteLightGreenForeground1, colorPaletteLightGreenForeground2, colorPaletteLightGreenForeground3, colorPaletteLightTealBackground2, colorPaletteLightTealBorderActive, colorPaletteLightTealForeground2, colorPaletteLilacBackground2, colorPaletteLilacBorderActive, colorPaletteLilacForeground2, colorPaletteMagentaBackground2, colorPaletteMagentaBorderActive, colorPaletteMagentaForeground2, colorPaletteMarigoldBackground1, colorPaletteMarigoldBackground2, colorPaletteMarigoldBackground3, colorPaletteMarigoldBorder1, colorPaletteMarigoldBorder2, colorPaletteMarigoldBorderActive, colorPaletteMarigoldForeground1, colorPaletteMarigoldForeground2, colorPaletteMarigoldForeground3, colorPaletteMinkBackground2, colorPaletteMinkBorderActive, colorPaletteMinkForeground2, colorPaletteNavyBackground2, colorPaletteNavyBorderActive, colorPaletteNavyForeground2, colorPalettePeachBackground2, colorPalettePeachBorderActive, colorPalettePeachForeground2, colorPalettePinkBackground2, colorPalettePinkBorderActive, colorPalettePinkForeground2, colorPalettePlatinumBackground2, colorPalettePlatinumBorderActive, colorPalettePlatinumForeground2, colorPalettePlumBackground2, colorPalettePlumBorderActive, colorPalettePlumForeground2, colorPalettePumpkinBackground2, colorPalettePumpkinBorderActive, colorPalettePumpkinForeground2, colorPalettePurpleBackground2, colorPalettePurpleBorderActive, colorPalettePurpleForeground2, colorPaletteRedBackground1, colorPaletteRedBackground2, colorPaletteRedBackground3, colorPaletteRedBorder1, colorPaletteRedBorder2, colorPaletteRedBorderActive, colorPaletteRedForeground1, colorPaletteRedForeground2, colorPaletteRedForeground3, colorPaletteRedForegroundInverted, colorPaletteRoyalBlueBackground2, colorPaletteRoyalBlueBorderActive, colorPaletteRoyalBlueForeground2, colorPaletteSeafoamBackground2, colorPaletteSeafoamBorderActive, colorPaletteSeafoamForeground2, colorPaletteSteelBackground2, colorPaletteSteelBorderActive, colorPaletteSteelForeground2, colorPaletteTealBackground2, colorPaletteTealBorderActive, colorPaletteTealForeground2, colorPaletteYellowBackground1, colorPaletteYellowBackground2, colorPaletteYellowBackground3, colorPaletteYellowBorder1, colorPaletteYellowBorder2, colorPaletteYellowBorderActive, colorPaletteYellowForeground1, colorPaletteYellowForeground2, colorPaletteYellowForeground3, colorPaletteYellowForegroundInverted, colorScrollbarOverlay, colorStrokeFocus1, colorStrokeFocus2, colorSubtleBackground, colorSubtleBackgroundHover, colorSubtleBackgroundInverted, colorSubtleBackgroundInvertedHover, colorSubtleBackgroundInvertedPressed, colorSubtleBackgroundInvertedSelected, colorSubtleBackgroundLightAlphaHover, colorSubtleBackgroundLightAlphaPressed, colorSubtleBackgroundLightAlphaSelected, colorSubtleBackgroundPressed, colorSubtleBackgroundSelected, colorTransparentBackground, colorTransparentBackgroundHover, colorTransparentBackgroundPressed, colorTransparentBackgroundSelected, colorTransparentStroke, colorTransparentStrokeDisabled, colorTransparentStrokeInteractive, curveAccelerateMax, curveAccelerateMid, curveAccelerateMin, curveDecelerateMax, curveDecelerateMid, curveDecelerateMin, curveEasyEase, curveEasyEaseMax, curveLinear, durationFast, durationFaster, durationNormal, durationSlow, durationSlower, durationUltraFast, durationUltraSlow, fontFamilyBase, fontFamilyMonospace, fontFamilyNumeric, fontSizeBase100, fontSizeBase200, fontSizeBase300, fontSizeBase400, fontSizeBase500, fontSizeBase600, fontSizeHero1000, fontSizeHero700, fontSizeHero800, fontSizeHero900, fontWeightBold, fontWeightMedium, fontWeightRegular, fontWeightSemibold, lineHeightBase100, lineHeightBase200, lineHeightBase300, lineHeightBase400, lineHeightBase500, lineHeightBase600, lineHeightHero1000, lineHeightHero700, lineHeightHero800, lineHeightHero900, setTheme, shadow16, shadow16Brand, shadow2, shadow28, shadow28Brand, shadow2Brand, shadow4, shadow4Brand, shadow64, shadow64Brand, shadow8, shadow8Brand, spacingHorizontalL, spacingHorizontalM, spacingHorizontalMNudge, spacingHorizontalNone, spacingHorizontalS, spacingHorizontalSNudge, spacingHorizontalXL, spacingHorizontalXS, spacingHorizontalXXL, spacingHorizontalXXS, spacingHorizontalXXXL, spacingVerticalL, spacingVerticalM, spacingVerticalMNudge, spacingVerticalNone, spacingVerticalS, spacingVerticalSNudge, spacingVerticalXL, spacingVerticalXS, spacingVerticalXXL, spacingVerticalXXS, spacingVerticalXXXL, strokeWidthThick, strokeWidthThicker, strokeWidthThickest, strokeWidthThin };
|