@decidables/decidables-elements 0.0.2 → 0.1.0

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.
Files changed (40) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/LICENSE.md +641 -750
  3. package/README.md +283 -25
  4. package/lib/decidablesElements.esm.js +32 -32
  5. package/lib/decidablesElements.esm.js.map +1 -1
  6. package/lib/decidablesElements.esm.min.js +2 -2
  7. package/lib/decidablesElements.esm.min.js.map +1 -1
  8. package/lib/decidablesElements.umd.js +32 -32
  9. package/lib/decidablesElements.umd.js.map +1 -1
  10. package/lib/decidablesElements.umd.min.js +1 -1
  11. package/lib/decidablesElements.umd.min.js.map +1 -1
  12. package/package.json +17 -8
  13. package/gulpfile.js +0 -25
  14. package/test/button.test.js +0 -29
  15. package/test/converter-array.test.js +0 -14
  16. package/test/converter-set.test.js +0 -15
  17. package/test/coverage/lcov-report/base.css +0 -224
  18. package/test/coverage/lcov-report/block-navigation.js +0 -87
  19. package/test/coverage/lcov-report/button.js.html +0 -364
  20. package/test/coverage/lcov-report/converter-array.js.html +0 -130
  21. package/test/coverage/lcov-report/converter-set.js.html +0 -130
  22. package/test/coverage/lcov-report/decidables-element.js.html +0 -877
  23. package/test/coverage/lcov-report/favicon.png +0 -0
  24. package/test/coverage/lcov-report/index.html +0 -236
  25. package/test/coverage/lcov-report/prettify.css +0 -1
  26. package/test/coverage/lcov-report/prettify.js +0 -2
  27. package/test/coverage/lcov-report/slider.js.html +0 -1084
  28. package/test/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  29. package/test/coverage/lcov-report/sorter.js +0 -196
  30. package/test/coverage/lcov-report/spinner.js.html +0 -532
  31. package/test/coverage/lcov-report/switch.js.html +0 -622
  32. package/test/coverage/lcov-report/toggle-option.js.html +0 -574
  33. package/test/coverage/lcov-report/toggle.js.html +0 -259
  34. package/test/coverage/lcov.info +0 -1480
  35. package/test/decidables-element.test.js +0 -10
  36. package/test/slider.test.js +0 -64
  37. package/test/spinner.test.js +0 -55
  38. package/test/switch.test.js +0 -71
  39. package/test/toggle-option.test.js +0 -62
  40. package/test/toggle.test.js +0 -98
package/README.md CHANGED
@@ -1,25 +1,279 @@
1
1
  <!--lint ignore first-heading-level-->
2
2
 
3
- # decidables-elements: Basic UI Web Components for [**decidables**](https://github.com/decidables/decidables)
3
+ # **`@decidables/decidables-elements`**<br>Web Components for Basic UI in [**decidables**](https://decidables.github.io)
4
+
5
+ [![npm version](https://img.shields.io/npm/v/@decidables/decidables-elements?logo=npm)](https://www.npmjs.com/package/@decidables/decidables-elements)
6
+ [![license](https://img.shields.io/npm/l/@decidables/decidables-elements?color=informational)](https://github.com/decidables/decidables/blob/main/LICENSE.md)
7
+
8
+ This package provides basic user interface web components for use in all of the explorables. This
9
+ facilitates a consistent look and feel. They try to use the native inputs when possible, but build
10
+ on them for new elements like a switch, and composite elements like a slider with a linked spinner.
11
+
12
+ ## Usage
13
+
14
+ ### Install
15
+
16
+ ```shell
17
+ yarn add @decidables/decidables-elements
18
+ ```
19
+
20
+ ### Use
21
+
22
+ ```javascript
23
+ import '@decidables/decidables-elements';
24
+ ```
25
+
26
+ A bare import is used to register the elements in the custom registry, so they are then available
27
+ for use in HTML.
4
28
 
5
29
  ## Contents
6
30
 
7
- - Base class
8
- - `DecidablesElement`: Base class for all *decidables* web components
9
- - Elements
10
- - `DecidablesButton`: Button for taking actions
11
- - `DecidablesSlider`: Slider w/spinner for selecting a numeric value from a range
12
- - `DecidablesSpinner`: Text field w/spinner arrows for selecting a continuous numeric value
13
- - `DecidablesSwitch`: Switch for turning an option on or off
14
- - `DecidablesToggle`: Toggle for selecting one option from a set
15
- - `DecidablesToggleOption`: One option in a toggle set
16
- - Utilities
17
- - `DecidablesConverterArray`: Utility for attributes that can take an array of values
18
- - `DecidablesConverterSet`: Utility for attributes that can take a set of values
31
+ ### Components
32
+
33
+ #### `DecidablesButton` / `<decidables-button>`
34
+
35
+ Button for taking actions
36
+
37
+ ##### Slots
38
+
39
+ - *unnamed*
40
+ - Inline content as label
41
+
42
+ ##### Attributes
43
+
44
+ - `disabled: boolean = false`
45
+ - In disabled state user can't interact
46
+
47
+ ##### Example
48
+
49
+ ```html
50
+ <decidables-button disabled>
51
+ Click me
52
+ </decidables-button>
53
+ ```
54
+
55
+ #### `DecidablesSlider` / `<decidables-slider>`
56
+
57
+ Slider w/spinner for selecting a numeric value from a range
58
+
59
+ ##### Slots
60
+
61
+ - *unnamed*
62
+ - Inline content as label
63
+
64
+ ##### Attributes
65
+
66
+ - `disabled: boolean = false`
67
+ - In disabled state user can't interact
68
+ - `max: number = undefined`
69
+ - Maximum value the slider can take
70
+ - `min: number = undefined`
71
+ - Minimum value the slider can take
72
+ - `step: number = undefined`
73
+ - Amount that value increments with smallest movement of the slider
74
+ - `value: number = undefined`
75
+ - Initial value of the slider
76
+
77
+ ##### Example
78
+
79
+ ```html
80
+ <decidables-slider disabled max="0" min="100" step="2" value="50">
81
+ Move me
82
+ </decidables-slider>
83
+ ```
84
+
85
+ #### `DecidablesSpinner` / `<decidables-spinner>`
86
+
87
+ Text field w/spinner arrows for selecting a continuous numeric value
88
+
89
+ ##### Slots
90
+
91
+ - *unnamed*
92
+ - Inline content as label
93
+
94
+ ##### Attributes
95
+
96
+ - `disabled: boolean = false`
97
+ - In disabled state user can't interact
98
+ - `max: number = undefined`
99
+ - Maximum value the slider can take
100
+ - `min: number = undefined`
101
+ - Minimum value the slider can take
102
+ - `step: number = undefined`
103
+ - Amount that value increments with smallest movement of the slider
104
+ - `value: number = undefined`
105
+ - Initial value of the slider
106
+
107
+ ##### Example
108
+
109
+ ```html
110
+ <decidables-spinner disabled max="0" min="100" step="2" value="50">
111
+ Change me
112
+ </decidables-spinner>
113
+ ```
114
+
115
+ #### `DecidablesSwitch` / `<decidables-switch>`
116
+
117
+ Switch for turning an option on or off
118
+
119
+ ##### Slots
120
+
121
+ - *unnamed*
122
+ - Inline content as label for **on** state
123
+ - `off-label`
124
+ - Inline content as label for **off** state
125
+
126
+ ##### Attributes
127
+
128
+ - `disabled: boolean = false`
129
+ - In disabled state user can't interact
130
+ - `checked: number = false`
131
+ - Whether the switch is **on** (`true`) or **off** (`false`)
132
+
133
+ ##### Example
134
+
135
+ ```html
136
+ <decidables-switch disabled checked>
137
+ <span>On</span>
138
+ <span slot="off-label">Off</span>
139
+ </decidables-switch>
140
+ ```
19
141
 
20
- ---
142
+ #### `DecidablesToggleOption` / `<decidables-toggle-option>`
21
143
 
22
- ## Features/Bugs/Notes
144
+ One option in a toggle set
145
+
146
+ ##### Slots
147
+
148
+ - *unnamed*
149
+ - Inline content as label for option
150
+
151
+ ##### Attributes
152
+
153
+ - `disabled: boolean = false`
154
+ - In disabled state user can't interact
155
+ - `checked: number = false`
156
+ - Whether the option is selected (`true`) or not ('false`)
157
+ - `name: string = undefined`
158
+ - An identifier to be shared by all options in a mutually exclusive group
159
+ - `value: string = undefined`
160
+ - An identifier specific to this option to uniquely identify it in the group
161
+
162
+ ##### Example
163
+
164
+ ```html
165
+ <decidables-toggle-option disabled name="flavors" value="chocolate" checked>
166
+ Chocolate
167
+ </decidables-toggle-option>
168
+ ```
169
+
170
+ #### `DecidablesToggle` / `<decidables-toggle>`
171
+
172
+ Toggle for selecting one option from a set
173
+
174
+ ##### Slots
175
+
176
+ - *unnamed*
177
+ - Inline content as label for set
178
+ - `label`
179
+ - Inline content as legend for options
180
+
181
+ ##### Attributes
182
+
183
+ - `disabled: boolean = false`
184
+ - In disabled state user can't interact
185
+
186
+ ##### Example
187
+
188
+ ```html
189
+ <decidables-toggle disabled>
190
+ <span>Pick one</span>
191
+ <span slot="label">Flavors</span>
192
+ <decidables-toggle-option disabled name="flavors" value="chocolate">
193
+ Chocolate
194
+ </decidables-toggle-option>
195
+ <decidables-toggle-option disabled name="flavors" value="strawberry">
196
+ Strawberry
197
+ </decidables-toggle-option>
198
+ <decidables-toggle-option disabled name="flavors" value="vanilla" checked>
199
+ Vanilla
200
+ </decidables-toggle-option>
201
+ </decidables-toggle>
202
+ ```
203
+
204
+ ### Base class
205
+
206
+ #### `DecidablesElement`
207
+
208
+ Base class for all *decidables* web components
209
+
210
+ To define a new element:
211
+
212
+ ```javascript
213
+ export default class DecidablesSomething extends DecidablesElement {
214
+ ...
215
+ }
216
+ ```
217
+
218
+ This library is built on `Lit`, so the resulting `DecidableElement` is also a `LitElement`
219
+
220
+ ### Utilities
221
+
222
+ #### `DecidablesConverterArray`
223
+
224
+ Utility for attributes that can take an array of values
225
+
226
+ If you are defining a `DecidablesElement` with an attribute that can take an array of numbers,
227
+ then you can use this to automatically convert between a space-separated list as the attribute
228
+ and an `Array` of numbers as the property:
229
+
230
+ ```javascript
231
+ static get properties() {
232
+ return {
233
+ stuff: {
234
+ attribute: 'values',
235
+ converter: DecidablesConverterArray,
236
+ reflect: true,
237
+ },
238
+ };
239
+ };
240
+ ```
241
+
242
+ ```html
243
+ <decidables-something values="1.23 3.56 -2.97"></decidables-something>
244
+ ```
245
+
246
+ And `this.values` will be the `Array`: `[1.23 3.56 -2.97]`
247
+
248
+ #### `DecidablesConverterSet`
249
+
250
+ Utility for attributes that can take a set of values
251
+
252
+ If you are defining a `DecidablesElement` with an attribute that can take a set of string
253
+ values, then you can use this to automatically convert between a space-separated list as the
254
+ attribute and a `Set` of strings as the property:
255
+
256
+ ```javascript
257
+ static get properties() {
258
+ return {
259
+ stuff: {
260
+ attribute: 'stuff',
261
+ converter: DecidablesConverterSet,
262
+ reflect: true,
263
+ },
264
+ };
265
+ };
266
+ ```
267
+
268
+ ```html
269
+ <decidables-something stuff="this that other"></decidables-something>
270
+ ```
271
+
272
+ And `this.stuff` will be a `Set` with members: `'this'`, `'that'`, and `'other'`
273
+
274
+ ## Development
275
+
276
+ ### Features/Bugs/Notes
23
277
 
24
278
  - Custom spinner that looks better than User Agent spinners?
25
279
  - Edge/IE11 - slider shadow is clipped
@@ -27,30 +281,34 @@
27
281
  - Firefox - spinner arrows look ugly and asymmetrical
28
282
  - IE11 - No CSS variables outside custom elements (and not patched by ShadyCSS!)
29
283
 
30
- ---
31
-
32
- ## Development Tooling
33
-
34
- ### Local Scripts
284
+ ### Package Scripts
35
285
 
36
286
  - `yarn lint`
37
287
  - Lints markdown, scripts and styles
38
288
  - `yarn test`
39
289
  - Runs all tests and reports coverage in `test/coverage/`
290
+ - `yarn test:watch`
291
+ - Runs all tests in watch mode and reports coverage in `test/coverage/`
40
292
  - `yarn test:file <filename>`
41
293
  - Runs tests for a single file and reports coverage in `test/coverage/`
42
294
  - `yarn build`
43
295
  - Builds bundles from `src/` to `lib/`
44
296
 
45
- ---
46
-
47
- ## File Organization
297
+ ### File Organization
48
298
 
49
299
  - `decidables-elements/`
50
300
  - `lib/` (Bundles created from `src/` by `build`) **\[autogenerated\]**
51
301
  - `src/` (Source files)
52
302
  - `test/` (Testing files)
53
303
  - `coverage/` (Code coverage results) **\[autogenerated\]**
54
- - `gulpfile.js` (Config for *gulp*)
55
- - `package.json` (Config for *yarn* and *npm*)
304
+ - `CHANGELOG.md` (Based on conventional commits) **\[autogenerated\]**
305
+ - `gulpfile.js` (Tasks for *gulp*)
306
+ - `package.json` (Package config for *yarn* and *npm*)
56
307
  - `README.md` (This file)
308
+
309
+ ## [License](https://github.com/decidables/decidables/blob/main/LICENSE.md)
310
+
311
+ The content of this project is licensed under [Creative Commons Attribution-ShareAlike 4.0
312
+ International License (CC-BY-SA-4.0)](https://creativecommons.org/licenses/by-sa/4.0/) and the
313
+ source code of this project is licensed under [GNU General Public License v3.0 or any later version
314
+ (GPL-3.0-or-later)](https://www.gnu.org/licenses/gpl-3.0.html).
@@ -655,12 +655,12 @@ var a$1 = /*#__PURE__*/function (_HTMLElement) {
655
655
  key: "requestUpdate",
656
656
  value: function requestUpdate(t, i, s) {
657
657
  var e = !0;
658
- void 0 !== t && (((s = s || this.constructor.getPropertyOptions(t)).hasChanged || n$2)(this[t], i) ? (this._$AL.has(t) || this._$AL.set(t, i), !0 === s.reflect && this._$Ei !== t && (void 0 === this._$E_ && (this._$E_ = new Map()), this._$E_.set(t, s))) : e = !1), !this.isUpdatePending && e && (this._$Ep = this._$EC());
658
+ void 0 !== t && (((s = s || this.constructor.getPropertyOptions(t)).hasChanged || n$2)(this[t], i) ? (this._$AL.has(t) || this._$AL.set(t, i), !0 === s.reflect && this._$Ei !== t && (void 0 === this._$EC && (this._$EC = new Map()), this._$EC.set(t, s))) : e = !1), !this.isUpdatePending && e && (this._$Ep = this._$E_());
659
659
  }
660
660
  }, {
661
- key: "_$EC",
661
+ key: "_$E_",
662
662
  value: function () {
663
- var _$EC2 = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() {
663
+ var _$E_2 = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() {
664
664
  var t;
665
665
  return regeneratorRuntime.wrap(function _callee$(_context) {
666
666
  while (1) {
@@ -703,11 +703,11 @@ var a$1 = /*#__PURE__*/function (_HTMLElement) {
703
703
  }, _callee, this, [[1, 6]]);
704
704
  }));
705
705
 
706
- function _$EC() {
707
- return _$EC2.apply(this, arguments);
706
+ function _$E_() {
707
+ return _$E_2.apply(this, arguments);
708
708
  }
709
709
 
710
- return _$EC;
710
+ return _$E_;
711
711
  }()
712
712
  }, {
713
713
  key: "scheduleUpdate",
@@ -775,9 +775,9 @@ var a$1 = /*#__PURE__*/function (_HTMLElement) {
775
775
  value: function update(t) {
776
776
  var _this5 = this;
777
777
 
778
- void 0 !== this._$E_ && (this._$E_.forEach(function (t, i) {
778
+ void 0 !== this._$EC && (this._$EC.forEach(function (t, i) {
779
779
  return _this5._$ES(i, _this5[i], t);
780
- }), this._$E_ = void 0), this._$EU();
780
+ }), this._$EC = void 0), this._$EU();
781
781
  }
782
782
  }, {
783
783
  key: "updated",
@@ -904,7 +904,7 @@ a$1.finalized = !0, a$1.elementProperties = new Map(), a$1.elementStyles = [], a
904
904
  mode: "open"
905
905
  }, null == h$1 || h$1({
906
906
  ReactiveElement: a$1
907
- }), (null !== (s$2 = globalThis.reactiveElementVersions) && void 0 !== s$2 ? s$2 : globalThis.reactiveElementVersions = []).push("1.1.2");
907
+ }), (null !== (s$2 = globalThis.reactiveElementVersions) && void 0 !== s$2 ? s$2 : globalThis.reactiveElementVersions = []).push("1.3.1");
908
908
 
909
909
  /**
910
910
  * @license
@@ -941,7 +941,7 @@ var i = globalThis.trustedTypes,
941
941
  f = />|[ \n \r](?:([^\s"'>=/]+)([ \n \r]*=[ \n \r]*(?:[^ \n \r"'`<>=]|("|')|))|$)/g,
942
942
  _ = /'/g,
943
943
  m = /"/g,
944
- g = /^(?:script|style|textarea)$/i,
944
+ g = /^(?:script|style|textarea|title)$/i,
945
945
  p = function p(t) {
946
946
  return function (i) {
947
947
  for (var _len = arguments.length, s = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
@@ -1230,23 +1230,23 @@ var N = /*#__PURE__*/function () {
1230
1230
  key: "_$AI",
1231
1231
  value: function _$AI(t) {
1232
1232
  var i = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : this;
1233
- t = P(this, t, i), r(t) ? t === w || null == t || "" === t ? (this._$AH !== w && this._$AR(), this._$AH = w) : t !== this._$AH && t !== b && this.$(t) : void 0 !== t._$litType$ ? this.T(t) : void 0 !== t.nodeType ? this.S(t) : u(t) ? this.A(t) : this.$(t);
1233
+ t = P(this, t, i), r(t) ? t === w || null == t || "" === t ? (this._$AH !== w && this._$AR(), this._$AH = w) : t !== this._$AH && t !== b && this.$(t) : void 0 !== t._$litType$ ? this.T(t) : void 0 !== t.nodeType ? this.k(t) : u(t) ? this.S(t) : this.$(t);
1234
1234
  }
1235
1235
  }, {
1236
- key: "M",
1237
- value: function M(t) {
1236
+ key: "A",
1237
+ value: function A(t) {
1238
1238
  var i = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : this._$AB;
1239
1239
  return this._$AA.parentNode.insertBefore(t, i);
1240
1240
  }
1241
1241
  }, {
1242
- key: "S",
1243
- value: function S(t) {
1244
- this._$AH !== t && (this._$AR(), this._$AH = this.M(t));
1242
+ key: "k",
1243
+ value: function k(t) {
1244
+ this._$AH !== t && (this._$AR(), this._$AH = this.A(t));
1245
1245
  }
1246
1246
  }, {
1247
1247
  key: "$",
1248
1248
  value: function $(t) {
1249
- this._$AH !== w && r(this._$AH) ? this._$AA.nextSibling.data = t : this.S(l$2.createTextNode(t)), this._$AH = t;
1249
+ this._$AH !== w && r(this._$AH) ? this._$AA.nextSibling.data = t : this.k(l$2.createTextNode(t)), this._$AH = t;
1250
1250
  }
1251
1251
  }, {
1252
1252
  key: "T",
@@ -1259,7 +1259,7 @@ var N = /*#__PURE__*/function () {
1259
1259
  var _t8 = new V(o, this),
1260
1260
  _i9 = _t8.p(this.options);
1261
1261
 
1262
- _t8.m(s), this.S(_i9), this._$AH = _t8;
1262
+ _t8.m(s), this.k(_i9), this._$AH = _t8;
1263
1263
  }
1264
1264
  }
1265
1265
  }, {
@@ -1269,8 +1269,8 @@ var N = /*#__PURE__*/function () {
1269
1269
  return void 0 === i && T.set(t.strings, i = new E(t)), i;
1270
1270
  }
1271
1271
  }, {
1272
- key: "A",
1273
- value: function A(t) {
1272
+ key: "S",
1273
+ value: function S(t) {
1274
1274
  d(this._$AH) || (this._$AH = [], this._$AR());
1275
1275
  var i = this._$AH;
1276
1276
  var s,
@@ -1282,7 +1282,7 @@ var N = /*#__PURE__*/function () {
1282
1282
  try {
1283
1283
  for (_iterator3.s(); !(_step3 = _iterator3.n()).done;) {
1284
1284
  var _o2 = _step3.value;
1285
- e === i.length ? i.push(s = new N(this.M(h()), this.M(h()), this, this.options)) : s = i[e], s._$AI(_o2), e++;
1285
+ e === i.length ? i.push(s = new N(this.A(h()), this.A(h()), this, this.options)) : s = i[e], s._$AI(_o2), e++;
1286
1286
  }
1287
1287
  } catch (err) {
1288
1288
  _iterator3.e(err);
@@ -1349,11 +1349,11 @@ var S = /*#__PURE__*/function () {
1349
1349
  _h = P(this, _e[s + _l], i, _l), _h === b && (_h = this._$AH[_l]), n || (n = !r(_h) || _h !== this._$AH[_l]), _h === w ? t = w : t !== w && (t += (null != _h ? _h : "") + o[_l + 1]), this._$AH[_l] = _h;
1350
1350
  }
1351
1351
  }
1352
- n && !e && this.k(t);
1352
+ n && !e && this.C(t);
1353
1353
  }
1354
1354
  }, {
1355
- key: "k",
1356
- value: function k(t) {
1355
+ key: "C",
1356
+ value: function C(t) {
1357
1357
  t === w ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, null != t ? t : "");
1358
1358
  }
1359
1359
  }]);
@@ -1376,8 +1376,8 @@ var M = /*#__PURE__*/function (_S) {
1376
1376
  }
1377
1377
 
1378
1378
  _createClass(M, [{
1379
- key: "k",
1380
- value: function k(t) {
1379
+ key: "C",
1380
+ value: function C(t) {
1381
1381
  this.element[this.name] = t === w ? void 0 : t;
1382
1382
  }
1383
1383
  }]);
@@ -1385,7 +1385,7 @@ var M = /*#__PURE__*/function (_S) {
1385
1385
  return M;
1386
1386
  }(S);
1387
1387
 
1388
- var _k = i ? i.emptyScript : "";
1388
+ var k = i ? i.emptyScript : "";
1389
1389
 
1390
1390
  var H = /*#__PURE__*/function (_S2) {
1391
1391
  _inherits(H, _S2);
@@ -1402,9 +1402,9 @@ var H = /*#__PURE__*/function (_S2) {
1402
1402
  }
1403
1403
 
1404
1404
  _createClass(H, [{
1405
- key: "k",
1406
- value: function k(t) {
1407
- t && t !== w ? this.element.setAttribute(this.name, _k) : this.element.removeAttribute(this.name);
1405
+ key: "C",
1406
+ value: function C(t) {
1407
+ t && t !== w ? this.element.setAttribute(this.name, k) : this.element.removeAttribute(this.name);
1408
1408
  }
1409
1409
  }]);
1410
1410
 
@@ -1470,7 +1470,7 @@ var L = /*#__PURE__*/function () {
1470
1470
  }();
1471
1471
 
1472
1472
  var z = window.litHtmlPolyfillSupport;
1473
- null == z || z(E, N), (null !== (t = globalThis.litHtmlVersions) && void 0 !== t ? t : globalThis.litHtmlVersions = []).push("2.1.1");
1473
+ null == z || z(E, N), (null !== (t = globalThis.litHtmlVersions) && void 0 !== t ? t : globalThis.litHtmlVersions = []).push("2.2.1");
1474
1474
 
1475
1475
  /**
1476
1476
  * @license
@@ -1540,7 +1540,7 @@ var n = globalThis.litElementPolyfillSupport;
1540
1540
  null == n || n({
1541
1541
  LitElement: s
1542
1542
  });
1543
- (null !== (o = globalThis.litElementVersions) && void 0 !== o ? o : globalThis.litElementVersions = []).push("3.1.1");
1543
+ (null !== (o = globalThis.litElementVersions) && void 0 !== o ? o : globalThis.litElementVersions = []).push("3.2.0");
1544
1544
 
1545
1545
  var noop = {
1546
1546
  value: function value() {}