@fluentui/web-components 3.0.0-beta.90 → 3.0.0-beta.91

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fluentui/web-components",
3
3
  "description": "A library of Fluent Web Components",
4
- "version": "3.0.0-beta.90",
4
+ "version": "3.0.0-beta.91",
5
5
  "author": {
6
6
  "name": "Microsoft",
7
7
  "url": "https://discord.gg/FcSNfg4"
@@ -1,104 +0,0 @@
1
- import type { Constructable, FASTElement } from '@microsoft/fast-element';
2
- /**
3
- * @alpha
4
- */
5
- export declare const supportsElementInternals: boolean;
6
- /**
7
- * Base class for providing Custom Element Form Association.
8
- *
9
- * @beta
10
- */
11
- export interface FormAssociated extends Omit<ElementInternals, 'labels'> {
12
- dirtyValue: boolean;
13
- disabled: boolean;
14
- readonly elementInternals: ElementInternals | null;
15
- readonly formAssociated: boolean;
16
- initialValue: string;
17
- readonly labels: ReadonlyArray<Node[]>;
18
- name: string;
19
- required: boolean;
20
- value: string;
21
- currentValue: string;
22
- attachProxy(): void;
23
- detachProxy(): void;
24
- disabledChanged?(previous: boolean, next: boolean): void;
25
- formDisabledCallback?(disabled: boolean): void;
26
- formResetCallback(): void;
27
- initialValueChanged?(previous: string, next: string): void;
28
- nameChanged?(previous: string, next: string): void;
29
- requiredChanged(prev: boolean, next: boolean): void;
30
- stopPropagation(e: Event): void;
31
- /**
32
- * Sets the validity of the custom element. By default this uses the proxy element to determine
33
- * validity, but this can be extended or replaced in implementation.
34
- *
35
- * @param anchor - The anchor element to provide to ElementInternals.setValidity for surfacing the browser's constraint validation UI
36
- */
37
- validate(anchor?: HTMLElement): void;
38
- valueChanged(previous: string, next: string): void;
39
- }
40
- /**
41
- * Base class for providing Custom Element Form Association with checkable features.
42
- *
43
- * @beta
44
- */
45
- export interface CheckableFormAssociated extends FormAssociated {
46
- currentChecked: boolean;
47
- dirtyChecked: boolean;
48
- checkedAttribute: boolean;
49
- defaultChecked: boolean;
50
- defaultCheckedChanged(oldValue: boolean | undefined, newValue: boolean): void;
51
- checked: boolean;
52
- checkedChanged(oldValue: boolean | undefined, newValue: boolean): void;
53
- }
54
- /**
55
- * Avaiable types for the `proxy` property.
56
- * @beta
57
- */
58
- export type ProxyElement = HTMLSelectElement | HTMLTextAreaElement | HTMLInputElement;
59
- /**
60
- * Identifies a class as having a proxy element and optional submethods related
61
- * to the proxy element.
62
- *
63
- * @beta
64
- */
65
- export interface FormAssociatedProxy {
66
- proxy: ProxyElement;
67
- disabledChanged?(previous: boolean, next: boolean): void;
68
- formDisabledCallback?(disabled: boolean): void;
69
- formResetCallback?(): void;
70
- initialValueChanged?(previous: string, next: string): void;
71
- valueChanged?(previous: string, next: string): void;
72
- nameChanged?(previous: string, next: string): void;
73
- }
74
- /**
75
- * Combined type to describe a Form-associated element.
76
- *
77
- * @beta
78
- */
79
- export type FormAssociatedElement = FormAssociated & FASTElement & HTMLElement & FormAssociatedProxy;
80
- /**
81
- * Combined type to describe a checkable Form-associated element.
82
- *
83
- * @beta
84
- */
85
- export type CheckableFormAssociatedElement = FormAssociatedElement & CheckableFormAssociated & {
86
- proxy: HTMLInputElement;
87
- };
88
- /**
89
- * Combined type to describe a Constructable Form-Associated type.
90
- *
91
- * @beta
92
- */
93
- export type ConstructableFormAssociated = Constructable<HTMLElement & FASTElement>;
94
- /**
95
- * Base function for providing Custom Element Form Association.
96
- *
97
- * @beta
98
- */
99
- export declare function FormAssociated<T extends ConstructableFormAssociated>(BaseCtor: T): T;
100
- /**
101
- * Creates a checkable form associated component.
102
- * @beta
103
- */
104
- export declare function CheckableFormAssociated<T extends ConstructableFormAssociated>(BaseCtor: T): T;
@@ -1,14 +0,0 @@
1
- import { FASTElement } from '@microsoft/fast-element';
2
- import { FormAssociated } from '../form-associated/form-associated.js';
3
- declare class _Slider extends FASTElement {
4
- }
5
- interface _Slider extends FormAssociated {
6
- }
7
- declare const FormAssociatedSlider_base: typeof _Slider;
8
- /**
9
- * @beta
10
- */
11
- export declare class FormAssociatedSlider extends FormAssociatedSlider_base {
12
- proxy: HTMLInputElement;
13
- }
14
- export {};
@@ -1,14 +0,0 @@
1
- import { FASTElement } from '@microsoft/fast-element';
2
- import { CheckableFormAssociated } from '../form-associated/form-associated.js';
3
- declare class _Switch extends FASTElement {
4
- }
5
- interface _Switch extends CheckableFormAssociated {
6
- }
7
- declare const FormAssociatedSwitch_base: typeof _Switch;
8
- /**
9
- * @beta
10
- */
11
- export declare class FormAssociatedSwitch extends FormAssociatedSwitch_base {
12
- proxy: HTMLInputElement;
13
- }
14
- export {};
@@ -1,456 +0,0 @@
1
- import { attr, booleanConverter, emptyArray, observable, Updates } from '@microsoft/fast-element';
2
- import { keyEnter } from '@microsoft/fast-web-utilities';
3
- const proxySlotName = 'form-associated-proxy';
4
- const ElementInternalsKey = 'ElementInternals';
5
- /**
6
- * @alpha
7
- */
8
- export const supportsElementInternals = ElementInternalsKey in window && 'setFormValue' in window[ElementInternalsKey].prototype;
9
- const InternalsMap = new WeakMap();
10
- /**
11
- * Base function for providing Custom Element Form Association.
12
- *
13
- * @beta
14
- */
15
- export function FormAssociated(BaseCtor) {
16
- const C = class extends BaseCtor {
17
- /**
18
- * Must evaluate to true to enable elementInternals.
19
- * Feature detects API support and resolve respectively
20
- *
21
- * @internal
22
- */
23
- static get formAssociated() {
24
- return supportsElementInternals;
25
- }
26
- /**
27
- * Returns the validity state of the element
28
- *
29
- * @beta
30
- */
31
- get validity() {
32
- return this.elementInternals ? this.elementInternals.validity : this.proxy.validity;
33
- }
34
- /**
35
- * Retrieve a reference to the associated form.
36
- * Returns null if not associated to any form.
37
- *
38
- * @beta
39
- */
40
- get form() {
41
- return this.elementInternals ? this.elementInternals.form : this.proxy.form;
42
- }
43
- /**
44
- * Retrieve the localized validation message,
45
- * or custom validation message if set.
46
- *
47
- * @beta
48
- */
49
- get validationMessage() {
50
- return this.elementInternals ? this.elementInternals.validationMessage : this.proxy.validationMessage;
51
- }
52
- /**
53
- * Whether the element will be validated when the
54
- * form is submitted
55
- */
56
- get willValidate() {
57
- return this.elementInternals ? this.elementInternals.willValidate : this.proxy.willValidate;
58
- }
59
- /**
60
- * A reference to all associated label elements
61
- */
62
- get labels() {
63
- if (this.elementInternals) {
64
- return Object.freeze(Array.from(this.elementInternals.labels));
65
- }
66
- else if (this.proxy instanceof HTMLElement && this.proxy.ownerDocument && this.id) {
67
- // Labels associated by wrapping the element: <label><custom-element></custom-element></label>
68
- const parentLabels = this.proxy.labels;
69
- // Labels associated using the `for` attribute
70
- const forLabels = Array.from(this.proxy.getRootNode().querySelectorAll(`[for='${this.id}']`));
71
- const labels = parentLabels ? forLabels.concat(Array.from(parentLabels)) : forLabels;
72
- return Object.freeze(labels);
73
- }
74
- else {
75
- return emptyArray;
76
- }
77
- }
78
- /**
79
- * Invoked when the `value` property changes
80
- * @param previous - the previous value
81
- * @param next - the new value
82
- *
83
- * @remarks
84
- * If elements extending `FormAssociated` implement a `valueChanged` method
85
- * They must be sure to invoke `super.valueChanged(previous, next)` to ensure
86
- * proper functioning of `FormAssociated`
87
- */
88
- valueChanged(previous, next) {
89
- this.dirtyValue = true;
90
- if (this.proxy instanceof HTMLElement) {
91
- this.proxy.value = this.value;
92
- }
93
- this.currentValue = this.value;
94
- this.setFormValue(this.value);
95
- this.validate();
96
- }
97
- currentValueChanged() {
98
- this.value = this.currentValue;
99
- }
100
- /**
101
- * Invoked when the `initialValue` property changes
102
- *
103
- * @param previous - the previous value
104
- * @param next - the new value
105
- *
106
- * @remarks
107
- * If elements extending `FormAssociated` implement a `initialValueChanged` method
108
- * They must be sure to invoke `super.initialValueChanged(previous, next)` to ensure
109
- * proper functioning of `FormAssociated`
110
- */
111
- initialValueChanged(previous, next) {
112
- // If the value is clean and the component is connected to the DOM
113
- // then set value equal to the attribute value.
114
- if (!this.dirtyValue) {
115
- this.value = this.initialValue;
116
- this.dirtyValue = false;
117
- }
118
- }
119
- /**
120
- * Invoked when the `disabled` property changes
121
- *
122
- * @param previous - the previous value
123
- * @param next - the new value
124
- *
125
- * @remarks
126
- * If elements extending `FormAssociated` implement a `disabledChanged` method
127
- * They must be sure to invoke `super.disabledChanged(previous, next)` to ensure
128
- * proper functioning of `FormAssociated`
129
- */
130
- disabledChanged(previous, next) {
131
- if (this.proxy instanceof HTMLElement) {
132
- this.proxy.disabled = this.disabled;
133
- }
134
- Updates.enqueue(() => this.classList.toggle('disabled', this.disabled));
135
- }
136
- /**
137
- * Invoked when the `name` property changes
138
- *
139
- * @param previous - the previous value
140
- * @param next - the new value
141
- *
142
- * @remarks
143
- * If elements extending `FormAssociated` implement a `nameChanged` method
144
- * They must be sure to invoke `super.nameChanged(previous, next)` to ensure
145
- * proper functioning of `FormAssociated`
146
- */
147
- nameChanged(previous, next) {
148
- if (this.proxy instanceof HTMLElement) {
149
- this.proxy.name = this.name;
150
- }
151
- }
152
- /**
153
- * Invoked when the `required` property changes
154
- *
155
- * @param previous - the previous value
156
- * @param next - the new value
157
- *
158
- * @remarks
159
- * If elements extending `FormAssociated` implement a `requiredChanged` method
160
- * They must be sure to invoke `super.requiredChanged(previous, next)` to ensure
161
- * proper functioning of `FormAssociated`
162
- */
163
- requiredChanged(prev, next) {
164
- if (this.proxy instanceof HTMLElement) {
165
- this.proxy.required = this.required;
166
- }
167
- Updates.enqueue(() => this.classList.toggle('required', this.required));
168
- this.validate();
169
- }
170
- /**
171
- * The element internals object. Will only exist
172
- * in browsers supporting the attachInternals API
173
- */
174
- get elementInternals() {
175
- if (!supportsElementInternals) {
176
- return null;
177
- }
178
- let internals = InternalsMap.get(this);
179
- if (!internals) {
180
- internals = this.attachInternals();
181
- InternalsMap.set(this, internals);
182
- }
183
- return internals;
184
- }
185
- constructor(...args) {
186
- super(...args);
187
- /**
188
- * Track whether the value has been changed from the initial value
189
- */
190
- this.dirtyValue = false;
191
- /**
192
- * The initial value of the form. This value sets the `value` property
193
- * only when the `value` property has not been explicitly set.
194
- *
195
- * @remarks
196
- * HTML Attribute: value
197
- */
198
- this.initialValue = '';
199
- /**
200
- * Sets the element's disabled state. A disabled element will not be included during form submission.
201
- *
202
- * @remarks
203
- * HTML Attribute: disabled
204
- */
205
- this.disabled = false;
206
- /**
207
- * These are events that are still fired by the proxy
208
- * element based on user / programmatic interaction.
209
- *
210
- * The proxy implementation should be transparent to
211
- * the app author, so block these events from emitting.
212
- */
213
- this.proxyEventsToBlock = ['change', 'click'];
214
- this.proxyInitialized = false;
215
- this.required = false;
216
- this.initialValue = this.initialValue || '';
217
- if (!this.elementInternals) {
218
- // When elementInternals is not supported, formResetCallback is
219
- // bound to an event listener, so ensure the handler's `this`
220
- // context is correct.
221
- this.formResetCallback = this.formResetCallback.bind(this);
222
- }
223
- }
224
- /**
225
- * @internal
226
- */
227
- connectedCallback() {
228
- super.connectedCallback();
229
- this.addEventListener('keypress', this._keypressHandler);
230
- if (!this.value) {
231
- this.value = this.initialValue;
232
- this.dirtyValue = false;
233
- }
234
- if (!this.elementInternals) {
235
- this.attachProxy();
236
- if (this.form) {
237
- this.form.addEventListener('reset', this.formResetCallback);
238
- }
239
- }
240
- }
241
- /**
242
- * @internal
243
- */
244
- disconnectedCallback() {
245
- this.proxyEventsToBlock.forEach(name => this.proxy.removeEventListener(name, this.stopPropagation));
246
- if (!this.elementInternals && this.form) {
247
- this.form.removeEventListener('reset', this.formResetCallback);
248
- }
249
- }
250
- /**
251
- * Return the current validity of the element.
252
- */
253
- checkValidity() {
254
- return this.elementInternals ? this.elementInternals.checkValidity() : this.proxy.checkValidity();
255
- }
256
- /**
257
- * Return the current validity of the element.
258
- * If false, fires an invalid event at the element.
259
- */
260
- reportValidity() {
261
- return this.elementInternals ? this.elementInternals.reportValidity() : this.proxy.reportValidity();
262
- }
263
- /**
264
- * Set the validity of the control. In cases when the elementInternals object is not
265
- * available (and the proxy element is used to report validity), this function will
266
- * do nothing unless a message is provided, at which point the setCustomValidity method
267
- * of the proxy element will be invoked with the provided message.
268
- * @param flags - Validity flags
269
- * @param message - Optional message to supply
270
- * @param anchor - Optional element used by UA to display an interactive validation UI
271
- */
272
- setValidity(flags, message, anchor) {
273
- if (this.elementInternals) {
274
- this.elementInternals.setValidity(flags, message, anchor);
275
- }
276
- else if (typeof message === 'string') {
277
- this.proxy.setCustomValidity(message);
278
- }
279
- }
280
- /**
281
- * Invoked when a connected component's form or fieldset has its disabled
282
- * state changed.
283
- * @param disabled - the disabled value of the form / fieldset
284
- */
285
- formDisabledCallback(disabled) {
286
- this.disabled = disabled;
287
- }
288
- formResetCallback() {
289
- this.value = this.initialValue;
290
- this.dirtyValue = false;
291
- }
292
- /**
293
- * Attach the proxy element to the DOM
294
- */
295
- attachProxy() {
296
- if (!this.proxyInitialized) {
297
- this.proxyInitialized = true;
298
- this.proxy.style.display = 'none';
299
- this.proxyEventsToBlock.forEach(name => this.proxy.addEventListener(name, this.stopPropagation));
300
- // These are typically mapped to the proxy during
301
- // property change callbacks, but during initialization
302
- // on the initial call of the callback, the proxy is
303
- // still undefined. We should find a better way to address this.
304
- this.proxy.disabled = this.disabled;
305
- this.proxy.required = this.required;
306
- if (typeof this.name === 'string') {
307
- this.proxy.name = this.name;
308
- }
309
- if (typeof this.value === 'string') {
310
- this.proxy.value = this.value;
311
- }
312
- this.proxy.setAttribute('slot', proxySlotName);
313
- this.proxySlot = document.createElement('slot');
314
- this.proxySlot.setAttribute('name', proxySlotName);
315
- }
316
- this.shadowRoot?.appendChild(this.proxySlot);
317
- this.appendChild(this.proxy);
318
- }
319
- /**
320
- * Detach the proxy element from the DOM
321
- */
322
- detachProxy() {
323
- this.removeChild(this.proxy);
324
- this.shadowRoot?.removeChild(this.proxySlot);
325
- }
326
- /** {@inheritDoc (FormAssociated:interface).validate} */
327
- validate(anchor) {
328
- if (this.proxy instanceof HTMLElement) {
329
- this.setValidity(this.proxy.validity, this.proxy.validationMessage, anchor);
330
- }
331
- }
332
- /**
333
- * Associates the provided value (and optional state) with the parent form.
334
- * @param value - The value to set
335
- * @param state - The state object provided to during session restores and when autofilling.
336
- */
337
- setFormValue(value, state) {
338
- if (this.elementInternals) {
339
- this.elementInternals.setFormValue(value, state || value);
340
- }
341
- }
342
- _keypressHandler(e) {
343
- switch (e.key) {
344
- case keyEnter:
345
- if (this.form instanceof HTMLFormElement) {
346
- // Implicit submission
347
- const defaultButton = this.form.querySelector('[type=submit]');
348
- defaultButton?.click();
349
- }
350
- break;
351
- }
352
- }
353
- /**
354
- * Used to stop propagation of proxy element events
355
- * @param e - Event object
356
- */
357
- stopPropagation(e) {
358
- e.stopPropagation();
359
- }
360
- };
361
- attr({ mode: 'boolean' })(C.prototype, 'disabled');
362
- attr({ mode: 'fromView', attribute: 'value' })(C.prototype, 'initialValue');
363
- attr({ attribute: 'current-value' })(C.prototype, 'currentValue');
364
- attr(C.prototype, 'name');
365
- attr({ mode: 'boolean' })(C.prototype, 'required');
366
- observable(C.prototype, 'value');
367
- return C;
368
- }
369
- /**
370
- * Creates a checkable form associated component.
371
- * @beta
372
- */
373
- export function CheckableFormAssociated(BaseCtor) {
374
- class C extends FormAssociated(BaseCtor) {
375
- }
376
- class D extends C {
377
- checkedAttributeChanged() {
378
- this.defaultChecked = this.checkedAttribute;
379
- }
380
- /**
381
- * @internal
382
- */
383
- defaultCheckedChanged() {
384
- if (!this.dirtyChecked) {
385
- // Setting this.checked will cause us to enter a dirty state,
386
- // but if we are clean when defaultChecked is changed, we want to stay
387
- // in a clean state, so reset this.dirtyChecked
388
- this.checked = this.defaultChecked;
389
- this.dirtyChecked = false;
390
- }
391
- }
392
- checkedChanged(prev, next) {
393
- if (!this.dirtyChecked) {
394
- this.dirtyChecked = true;
395
- }
396
- this.currentChecked = this.checked;
397
- this.updateForm();
398
- if (this.proxy instanceof HTMLInputElement) {
399
- this.proxy.checked = this.checked;
400
- }
401
- if (prev !== undefined) {
402
- this.$emit('change');
403
- }
404
- this.validate();
405
- }
406
- currentCheckedChanged(prev, next) {
407
- this.checked = this.currentChecked;
408
- }
409
- constructor(...args) {
410
- super(args);
411
- /**
412
- * Tracks whether the "checked" property has been changed.
413
- * This is necessary to provide consistent behavior with
414
- * normal input checkboxes
415
- */
416
- this.dirtyChecked = false;
417
- /**
418
- * Provides the default checkedness of the input element
419
- * Passed down to proxy
420
- *
421
- * @public
422
- * @remarks
423
- * HTML Attribute: checked
424
- */
425
- this.checkedAttribute = false;
426
- /**
427
- * The checked state of the control.
428
- *
429
- * @public
430
- */
431
- this.checked = false;
432
- // Re-initialize dirtyChecked because initialization of other values
433
- // causes it to become true
434
- this.dirtyChecked = false;
435
- }
436
- updateForm() {
437
- const value = this.checked ? this.value : null;
438
- this.setFormValue(value, value);
439
- }
440
- connectedCallback() {
441
- super.connectedCallback();
442
- this.updateForm();
443
- }
444
- formResetCallback() {
445
- super.formResetCallback();
446
- this.checked = !!this.checkedAttribute;
447
- this.dirtyChecked = false;
448
- }
449
- }
450
- attr({ attribute: 'checked', mode: 'boolean' })(D.prototype, 'checkedAttribute');
451
- attr({ attribute: 'current-checked', converter: booleanConverter })(D.prototype, 'currentChecked');
452
- observable(D.prototype, 'defaultChecked');
453
- observable(D.prototype, 'checked');
454
- return D;
455
- }
456
- //# sourceMappingURL=form-associated.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"form-associated.js","sourceRoot":"","sources":["../../../src/form-associated/form-associated.ts"],"names":[],"mappings":"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"}
@@ -1,14 +0,0 @@
1
- import { FASTElement } from '@microsoft/fast-element';
2
- import { FormAssociated } from '../form-associated/form-associated.js';
3
- class _Slider extends FASTElement {
4
- }
5
- /**
6
- * @beta
7
- */
8
- export class FormAssociatedSlider extends FormAssociated(_Slider) {
9
- constructor() {
10
- super(...arguments);
11
- this.proxy = document.createElement('input');
12
- }
13
- }
14
- //# sourceMappingURL=slider.form-associated.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"slider.form-associated.js","sourceRoot":"","sources":["../../../src/slider/slider.form-associated.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,uCAAuC,CAAC;AAEvE,MAAM,OAAQ,SAAQ,WAAW;CAAG;AAIpC;;GAEG;AACH,MAAM,OAAO,oBAAqB,SAAQ,cAAc,CAAC,OAAO,CAAC;IAAjE;;QACE,UAAK,GAAG,QAAQ,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;IAC1C,CAAC;CAAA"}
@@ -1,14 +0,0 @@
1
- import { FASTElement } from '@microsoft/fast-element';
2
- import { CheckableFormAssociated } from '../form-associated/form-associated.js';
3
- class _Switch extends FASTElement {
4
- }
5
- /**
6
- * @beta
7
- */
8
- export class FormAssociatedSwitch extends CheckableFormAssociated(_Switch) {
9
- constructor() {
10
- super(...arguments);
11
- this.proxy = document.createElement('input');
12
- }
13
- }
14
- //# sourceMappingURL=switch.form-associated.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"switch.form-associated.js","sourceRoot":"","sources":["../../../src/switch/switch.form-associated.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACtD,OAAO,EAAE,uBAAuB,EAAE,MAAM,uCAAuC,CAAC;AAEhF,MAAM,OAAQ,SAAQ,WAAW;CAAG;AAIpC;;GAEG;AACH,MAAM,OAAO,oBAAqB,SAAQ,uBAAuB,CAAC,OAAO,CAAC;IAA1E;;QACE,UAAK,GAAG,QAAQ,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;IAC1C,CAAC;CAAA"}