@universal-material/web 3.5.4 → 3.5.6

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/list/list-item.js CHANGED
@@ -16,7 +16,7 @@ let UmListItem = class UmListItem extends LitElement {
16
16
  `;
17
17
  const containerClasses = classMap({ selectable: this.selectable });
18
18
  return html `
19
- <div class="container ${containerClasses}">
19
+ <div class="container ${containerClasses}" part="container">
20
20
  ${this.selectable ? ripple : nothing}
21
21
  <slot name="leading-icon" part="leading"></slot>
22
22
  <div class="content" part="content">
@@ -1 +1 @@
1
- {"version":3,"file":"list-item.js","sourceRoot":"","sources":["../../src/list/list-item.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,IAAI,EAAsB,UAAU,EAAE,OAAO,EAAE,MAAM,KAAK,CAAC;AACpE,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAC5D,OAAO,EAAE,QAAQ,EAAE,MAAM,6BAA6B,CAAC;AAEvD,OAAO,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAC;AAE/C,OAAO,qBAAqB,CAAC;AAGtB,IAAM,UAAU,GAAhB,MAAM,UAAW,SAAQ,UAAU;IAAnC;;QAGuC,eAAU,GAAG,KAAK,CAAC;IAyBjE,CAAC;aA3BiB,WAAM,GAAG,MAAM,AAAT,CAAU;IAIvB,MAAM;QACb,MAAM,MAAM,GAAG,IAAI,CAAA;;KAElB,CAAC;QAEF,MAAM,gBAAgB,GAAG,QAAQ,CAAC,EAAE,UAAU,EAAE,IAAI,CAAC,UAAU,EAAE,CAAC,CAAC;QAEnE,OAAO,IAAI,CAAA;8BACe,gBAAgB;UACpC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO;;;;;;;;;;;;KAYvC,CAAC;IACJ,CAAC;;AAxB2C;IAA3C,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;8CAAoB;AAHpD,UAAU;IADtB,aAAa,CAAC,aAAa,CAAC;GAChB,UAAU,CA4BtB","sourcesContent":["import { html, HTMLTemplateResult, LitElement, nothing } from 'lit';\nimport { customElement, property } from 'lit/decorators.js';\nimport { classMap } from 'lit/directives/class-map.js';\n\nimport { styles } from './list-item.styles.js';\n\nimport '../ripple/ripple.js';\n\n@customElement('u-list-item')\nexport class UmListItem extends LitElement {\n static override styles = styles;\n\n @property({ type: Boolean, reflect: true }) selectable = false;\n\n override render(): HTMLTemplateResult {\n const ripple = html`\n <u-ripple></u-ripple>\n `;\n\n const containerClasses = classMap({ selectable: this.selectable });\n\n return html`\n <div class=\"container ${containerClasses}\">\n ${this.selectable ? ripple : nothing}\n <slot name=\"leading-icon\" part=\"leading\"></slot>\n <div class=\"content\" part=\"content\">\n <div class=\"headline\" part=\"headline\">\n <slot></slot>\n </div>\n <div class=\"supporting-text\" part=\"supporting-text\">\n <slot name=\"supporting-text\"></slot>\n </div>\n </div>\n <slot name=\"trailing-icon\" part=\"trailing\"></slot>\n </div>\n `;\n }\n}\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'u-list-item': UmListItem;\n }\n}\n"]}
1
+ {"version":3,"file":"list-item.js","sourceRoot":"","sources":["../../src/list/list-item.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,IAAI,EAAsB,UAAU,EAAE,OAAO,EAAE,MAAM,KAAK,CAAC;AACpE,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAC5D,OAAO,EAAE,QAAQ,EAAE,MAAM,6BAA6B,CAAC;AAEvD,OAAO,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAC;AAE/C,OAAO,qBAAqB,CAAC;AAGtB,IAAM,UAAU,GAAhB,MAAM,UAAW,SAAQ,UAAU;IAAnC;;QAGuC,eAAU,GAAG,KAAK,CAAC;IAyBjE,CAAC;aA3BiB,WAAM,GAAG,MAAM,AAAT,CAAU;IAIvB,MAAM;QACb,MAAM,MAAM,GAAG,IAAI,CAAA;;KAElB,CAAC;QAEF,MAAM,gBAAgB,GAAG,QAAQ,CAAC,EAAE,UAAU,EAAE,IAAI,CAAC,UAAU,EAAE,CAAC,CAAC;QAEnE,OAAO,IAAI,CAAA;8BACe,gBAAgB;UACpC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO;;;;;;;;;;;;KAYvC,CAAC;IACJ,CAAC;;AAxB2C;IAA3C,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;8CAAoB;AAHpD,UAAU;IADtB,aAAa,CAAC,aAAa,CAAC;GAChB,UAAU,CA4BtB","sourcesContent":["import { html, HTMLTemplateResult, LitElement, nothing } from 'lit';\nimport { customElement, property } from 'lit/decorators.js';\nimport { classMap } from 'lit/directives/class-map.js';\n\nimport { styles } from './list-item.styles.js';\n\nimport '../ripple/ripple.js';\n\n@customElement('u-list-item')\nexport class UmListItem extends LitElement {\n static override styles = styles;\n\n @property({ type: Boolean, reflect: true }) selectable = false;\n\n override render(): HTMLTemplateResult {\n const ripple = html`\n <u-ripple></u-ripple>\n `;\n\n const containerClasses = classMap({ selectable: this.selectable });\n\n return html`\n <div class=\"container ${containerClasses}\" part=\"container\">\n ${this.selectable ? ripple : nothing}\n <slot name=\"leading-icon\" part=\"leading\"></slot>\n <div class=\"content\" part=\"content\">\n <div class=\"headline\" part=\"headline\">\n <slot></slot>\n </div>\n <div class=\"supporting-text\" part=\"supporting-text\">\n <slot name=\"supporting-text\"></slot>\n </div>\n </div>\n <slot name=\"trailing-icon\" part=\"trailing\"></slot>\n </div>\n `;\n }\n}\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'u-list-item': UmListItem;\n }\n}\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@universal-material/web",
3
- "version": "3.5.4",
3
+ "version": "3.5.6",
4
4
  "description": "Material web components",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -28,7 +28,7 @@ export const mixinSelectionControlListItem = (base) => {
28
28
  return html `
29
29
  <label>
30
30
  <u-list-item ?selectable=${!this.disabled}>
31
- <div slot="${this.leading ? 'leading' : 'trailing'}">${super.render()}</div>
31
+ <div slot="${this.leading ? 'leading-icon' : 'trailing-icon'}">${super.render()}</div>
32
32
  <span id="label"><slot></slot></span>
33
33
  <span id="description" slot="supporting-text"><slot name="supporting-text"></slot></span>
34
34
  </u-list-item>
@@ -1 +1 @@
1
- {"version":3,"file":"selection-control-list-item.js","sourceRoot":"","sources":["../../../src/shared/selection-control/selection-control-list-item.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,IAAI,EAAkC,MAAM,KAAK,CAAC;AAChE,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAK7C,aAAa;AACb,MAAM,CAAC,MAAM,6BAA6B,GAAG,CAA0C,IAAO,EAAkB,EAAE;IAChH,aAAa;IACb,MAAe,wBAAyB,SAAQ,IAAI;QAApD;;YAe+B,YAAO,GAAG,KAAK,CAAC;YAE1B,uBAAkB,GAAG,aAAa,CAAC;YACnC,sBAAiB,GAAG,OAAO,CAAC;QAajD,CAAC;iBA9BQ,WAAM,GAAG;YACb,IAAqC,CAAC,MAAM,IAAI,EAAE;YACnD,GAAG,CAAA;;;;;;;;;OASF;SACF,AAZY,CAYX;QAOO,MAAM;YACb,OAAO,IAAI,CAAA;;qCAEoB,CAAC,IAAI,CAAC,QAAQ;yBAC1B,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,UAAU,KAAK,KAAK,CAAC,MAAM,EAAE;;;;;OAK1E,CAAC;QACJ,CAAC;;IAf4B;QAA5B,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC;6DAAiB;IAkB/C,OAAO,wBAAwB,CAAC;AAClC,CAAC,CAAC","sourcesContent":["import { css, html, HTMLTemplateResult, LitElement } from 'lit';\nimport { property } from 'lit/decorators.js';\n\nimport { MixinBase, MixinReturn } from '../mixin.js';\nimport { UmSelectionControl } from './selection-control.js';\n\n// @ts-ignore\nexport const mixinSelectionControlListItem = <T extends MixinBase<UmSelectionControl>>(base: T): MixinReturn<T> => {\n // @ts-ignore\n abstract class SelectionControlListItem extends base {\n static styles = [\n (base as unknown as typeof LitElement).styles ?? [],\n css`\n :host {\n --u-list-item-block-padding: 0;\n display: block;\n }\n\n :host(:not([disabled])) {\n cursor: pointer;\n }\n `,\n ];\n\n @property({ type: Boolean }) leading = false;\n\n protected override inputDescribedById = 'description';\n protected override inputLabelledById = 'label';\n\n override render(): HTMLTemplateResult {\n return html`\n <label>\n <u-list-item ?selectable=${!this.disabled}>\n <div slot=\"${this.leading ? 'leading' : 'trailing'}\">${super.render()}</div>\n <span id=\"label\"><slot></slot></span>\n <span id=\"description\" slot=\"supporting-text\"><slot name=\"supporting-text\"></slot></span>\n </u-list-item>\n </label>\n `;\n }\n }\n\n return SelectionControlListItem;\n};\n"]}
1
+ {"version":3,"file":"selection-control-list-item.js","sourceRoot":"","sources":["../../../src/shared/selection-control/selection-control-list-item.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,IAAI,EAAkC,MAAM,KAAK,CAAC;AAChE,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAK7C,aAAa;AACb,MAAM,CAAC,MAAM,6BAA6B,GAAG,CAA0C,IAAO,EAAkB,EAAE;IAChH,aAAa;IACb,MAAe,wBAAyB,SAAQ,IAAI;QAApD;;YAe+B,YAAO,GAAG,KAAK,CAAC;YAE1B,uBAAkB,GAAG,aAAa,CAAC;YACnC,sBAAiB,GAAG,OAAO,CAAC;QAajD,CAAC;iBA9BQ,WAAM,GAAG;YACb,IAAqC,CAAC,MAAM,IAAI,EAAE;YACnD,GAAG,CAAA;;;;;;;;;OASF;SACF,AAZY,CAYX;QAOO,MAAM;YACb,OAAO,IAAI,CAAA;;qCAEoB,CAAC,IAAI,CAAC,QAAQ;yBAC1B,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,eAAe,KAAK,KAAK,CAAC,MAAM,EAAE;;;;;OAKpF,CAAC;QACJ,CAAC;;IAf4B;QAA5B,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC;6DAAiB;IAkB/C,OAAO,wBAAwB,CAAC;AAClC,CAAC,CAAC","sourcesContent":["import { css, html, HTMLTemplateResult, LitElement } from 'lit';\nimport { property } from 'lit/decorators.js';\n\nimport { MixinBase, MixinReturn } from '../mixin.js';\nimport { UmSelectionControl } from './selection-control.js';\n\n// @ts-ignore\nexport const mixinSelectionControlListItem = <T extends MixinBase<UmSelectionControl>>(base: T): MixinReturn<T> => {\n // @ts-ignore\n abstract class SelectionControlListItem extends base {\n static styles = [\n (base as unknown as typeof LitElement).styles ?? [],\n css`\n :host {\n --u-list-item-block-padding: 0;\n display: block;\n }\n\n :host(:not([disabled])) {\n cursor: pointer;\n }\n `,\n ];\n\n @property({ type: Boolean }) leading = false;\n\n protected override inputDescribedById = 'description';\n protected override inputLabelledById = 'label';\n\n override render(): HTMLTemplateResult {\n return html`\n <label>\n <u-list-item ?selectable=${!this.disabled}>\n <div slot=\"${this.leading ? 'leading-icon' : 'trailing-icon'}\">${super.render()}</div>\n <span id=\"label\"><slot></slot></span>\n <span id=\"description\" slot=\"supporting-text\"><slot name=\"supporting-text\"></slot></span>\n </u-list-item>\n </label>\n `;\n }\n }\n\n return SelectionControlListItem;\n};\n"]}
@@ -77,234 +77,6 @@
77
77
  ],
78
78
  "references": []
79
79
  },
80
- {
81
- "name": "u-button-field",
82
- "description": "\n---\n",
83
- "attributes": [
84
- {
85
- "name": "value",
86
- "values": []
87
- },
88
- {
89
- "name": "placeholder",
90
- "values": []
91
- },
92
- {
93
- "name": "variant",
94
- "values": [
95
- {
96
- "name": "filled"
97
- },
98
- {
99
- "name": "outlined"
100
- }
101
- ]
102
- },
103
- {
104
- "name": "label",
105
- "description": "The floating label for the field",
106
- "values": []
107
- },
108
- {
109
- "name": "counter",
110
- "values": []
111
- },
112
- {
113
- "name": "hide-counter",
114
- "values": []
115
- },
116
- {
117
- "name": "supporting-text",
118
- "description": "Supporting text conveys additional information about the field, such as how it will be used",
119
- "values": []
120
- },
121
- {
122
- "name": "error-text",
123
- "description": "For text fields that validate their content (such as passwords), replace supporting text with error text when applicable.\nIf `errorText` is not an empty string, changing the property `invalid` to `true` will show the `errorText` instead of `supportingText`",
124
- "values": []
125
- },
126
- {
127
- "name": "empty",
128
- "description": "Whether the field is empty or not. This changes the behavior of the floating label when the field is not focused.",
129
- "values": []
130
- },
131
- {
132
- "name": "disabled",
133
- "values": []
134
- },
135
- {
136
- "name": "invalid",
137
- "description": "Get or sets where or not the field is in a visually invalid state.",
138
- "values": []
139
- },
140
- {
141
- "name": "has-leading-icon",
142
- "description": "Whether the field has a leading icon or not\n\n_Note:_ Readonly",
143
- "values": []
144
- },
145
- {
146
- "name": "has-trailing-icon",
147
- "description": "Whether the field has a trailing icon or not\n\n_Note:_ Readonly",
148
- "values": []
149
- },
150
- {
151
- "name": "has-error-text",
152
- "description": "Whether the field has an error text or not\n\n_Note:_ Readonly",
153
- "values": []
154
- }
155
- ],
156
- "references": []
157
- },
158
- {
159
- "name": "u-calendar",
160
- "description": "\n---\n\n\n### **Events:**\n - **input**\n- **change**",
161
- "attributes": [
162
- {
163
- "name": "value",
164
- "values": []
165
- },
166
- {
167
- "name": "dateOutsideMonth",
168
- "values": []
169
- },
170
- {
171
- "name": "locale",
172
- "values": []
173
- }
174
- ],
175
- "references": []
176
- },
177
- {
178
- "name": "u-range-calendar",
179
- "description": "\n---\n\n\n### **Events:**\n - **input**\n- **change**",
180
- "attributes": [
181
- {
182
- "name": "value",
183
- "values": []
184
- },
185
- {
186
- "name": "dateOutsideMonth",
187
- "values": []
188
- },
189
- {
190
- "name": "locale",
191
- "values": []
192
- }
193
- ],
194
- "references": []
195
- },
196
- {
197
- "name": "u-card-content",
198
- "description": "\n---\n",
199
- "attributes": [
200
- {
201
- "name": "has-content",
202
- "values": []
203
- }
204
- ],
205
- "references": []
206
- },
207
- {
208
- "name": "u-card-media",
209
- "description": "\n---\n",
210
- "attributes": [
211
- {
212
- "name": "wide",
213
- "values": []
214
- }
215
- ],
216
- "references": []
217
- },
218
- {
219
- "name": "u-card",
220
- "description": "\n---\n",
221
- "attributes": [
222
- {
223
- "name": "variant",
224
- "description": "The Card variant to render.",
225
- "values": [
226
- {
227
- "name": "filled"
228
- },
229
- {
230
- "name": "elevated"
231
- },
232
- {
233
- "name": "outlined"
234
- }
235
- ]
236
- }
237
- ],
238
- "references": []
239
- },
240
- {
241
- "name": "u-checkbox-list-item",
242
- "description": "\n---\n",
243
- "attributes": [
244
- {
245
- "name": "leading",
246
- "values": []
247
- },
248
- {
249
- "name": "hide-state-layer",
250
- "values": []
251
- },
252
- {
253
- "name": "indeterminate",
254
- "values": []
255
- },
256
- {
257
- "name": "name",
258
- "values": []
259
- },
260
- {
261
- "name": "disabled",
262
- "values": []
263
- },
264
- {
265
- "name": "value",
266
- "description": "The element value to use in form submission when checked.",
267
- "values": []
268
- },
269
- {
270
- "name": "checked",
271
- "values": []
272
- }
273
- ],
274
- "references": []
275
- },
276
- {
277
- "name": "u-checkbox",
278
- "description": "\n---\n",
279
- "attributes": [
280
- {
281
- "name": "hide-state-layer",
282
- "values": []
283
- },
284
- {
285
- "name": "indeterminate",
286
- "values": []
287
- },
288
- {
289
- "name": "name",
290
- "values": []
291
- },
292
- {
293
- "name": "disabled",
294
- "values": []
295
- },
296
- {
297
- "name": "value",
298
- "description": "The element value to use in form submission when checked.",
299
- "values": []
300
- },
301
- {
302
- "name": "checked",
303
- "values": []
304
- }
305
- ],
306
- "references": []
307
- },
308
80
  {
309
81
  "name": "u-button-set",
310
82
  "description": "\n---\n",
@@ -747,6 +519,234 @@
747
519
  ],
748
520
  "references": []
749
521
  },
522
+ {
523
+ "name": "u-button-field",
524
+ "description": "\n---\n",
525
+ "attributes": [
526
+ {
527
+ "name": "value",
528
+ "values": []
529
+ },
530
+ {
531
+ "name": "placeholder",
532
+ "values": []
533
+ },
534
+ {
535
+ "name": "variant",
536
+ "values": [
537
+ {
538
+ "name": "filled"
539
+ },
540
+ {
541
+ "name": "outlined"
542
+ }
543
+ ]
544
+ },
545
+ {
546
+ "name": "label",
547
+ "description": "The floating label for the field",
548
+ "values": []
549
+ },
550
+ {
551
+ "name": "counter",
552
+ "values": []
553
+ },
554
+ {
555
+ "name": "hide-counter",
556
+ "values": []
557
+ },
558
+ {
559
+ "name": "supporting-text",
560
+ "description": "Supporting text conveys additional information about the field, such as how it will be used",
561
+ "values": []
562
+ },
563
+ {
564
+ "name": "error-text",
565
+ "description": "For text fields that validate their content (such as passwords), replace supporting text with error text when applicable.\nIf `errorText` is not an empty string, changing the property `invalid` to `true` will show the `errorText` instead of `supportingText`",
566
+ "values": []
567
+ },
568
+ {
569
+ "name": "empty",
570
+ "description": "Whether the field is empty or not. This changes the behavior of the floating label when the field is not focused.",
571
+ "values": []
572
+ },
573
+ {
574
+ "name": "disabled",
575
+ "values": []
576
+ },
577
+ {
578
+ "name": "invalid",
579
+ "description": "Get or sets where or not the field is in a visually invalid state.",
580
+ "values": []
581
+ },
582
+ {
583
+ "name": "has-leading-icon",
584
+ "description": "Whether the field has a leading icon or not\n\n_Note:_ Readonly",
585
+ "values": []
586
+ },
587
+ {
588
+ "name": "has-trailing-icon",
589
+ "description": "Whether the field has a trailing icon or not\n\n_Note:_ Readonly",
590
+ "values": []
591
+ },
592
+ {
593
+ "name": "has-error-text",
594
+ "description": "Whether the field has an error text or not\n\n_Note:_ Readonly",
595
+ "values": []
596
+ }
597
+ ],
598
+ "references": []
599
+ },
600
+ {
601
+ "name": "u-calendar",
602
+ "description": "\n---\n\n\n### **Events:**\n - **input**\n- **change**",
603
+ "attributes": [
604
+ {
605
+ "name": "value",
606
+ "values": []
607
+ },
608
+ {
609
+ "name": "dateOutsideMonth",
610
+ "values": []
611
+ },
612
+ {
613
+ "name": "locale",
614
+ "values": []
615
+ }
616
+ ],
617
+ "references": []
618
+ },
619
+ {
620
+ "name": "u-range-calendar",
621
+ "description": "\n---\n\n\n### **Events:**\n - **input**\n- **change**",
622
+ "attributes": [
623
+ {
624
+ "name": "value",
625
+ "values": []
626
+ },
627
+ {
628
+ "name": "dateOutsideMonth",
629
+ "values": []
630
+ },
631
+ {
632
+ "name": "locale",
633
+ "values": []
634
+ }
635
+ ],
636
+ "references": []
637
+ },
638
+ {
639
+ "name": "u-card-content",
640
+ "description": "\n---\n",
641
+ "attributes": [
642
+ {
643
+ "name": "has-content",
644
+ "values": []
645
+ }
646
+ ],
647
+ "references": []
648
+ },
649
+ {
650
+ "name": "u-card-media",
651
+ "description": "\n---\n",
652
+ "attributes": [
653
+ {
654
+ "name": "wide",
655
+ "values": []
656
+ }
657
+ ],
658
+ "references": []
659
+ },
660
+ {
661
+ "name": "u-card",
662
+ "description": "\n---\n",
663
+ "attributes": [
664
+ {
665
+ "name": "variant",
666
+ "description": "The Card variant to render.",
667
+ "values": [
668
+ {
669
+ "name": "filled"
670
+ },
671
+ {
672
+ "name": "elevated"
673
+ },
674
+ {
675
+ "name": "outlined"
676
+ }
677
+ ]
678
+ }
679
+ ],
680
+ "references": []
681
+ },
682
+ {
683
+ "name": "u-checkbox-list-item",
684
+ "description": "\n---\n",
685
+ "attributes": [
686
+ {
687
+ "name": "leading",
688
+ "values": []
689
+ },
690
+ {
691
+ "name": "hide-state-layer",
692
+ "values": []
693
+ },
694
+ {
695
+ "name": "indeterminate",
696
+ "values": []
697
+ },
698
+ {
699
+ "name": "name",
700
+ "values": []
701
+ },
702
+ {
703
+ "name": "disabled",
704
+ "values": []
705
+ },
706
+ {
707
+ "name": "value",
708
+ "description": "The element value to use in form submission when checked.",
709
+ "values": []
710
+ },
711
+ {
712
+ "name": "checked",
713
+ "values": []
714
+ }
715
+ ],
716
+ "references": []
717
+ },
718
+ {
719
+ "name": "u-checkbox",
720
+ "description": "\n---\n",
721
+ "attributes": [
722
+ {
723
+ "name": "hide-state-layer",
724
+ "values": []
725
+ },
726
+ {
727
+ "name": "indeterminate",
728
+ "values": []
729
+ },
730
+ {
731
+ "name": "name",
732
+ "values": []
733
+ },
734
+ {
735
+ "name": "disabled",
736
+ "values": []
737
+ },
738
+ {
739
+ "name": "value",
740
+ "description": "The element value to use in form submission when checked.",
741
+ "values": []
742
+ },
743
+ {
744
+ "name": "checked",
745
+ "values": []
746
+ }
747
+ ],
748
+ "references": []
749
+ },
750
750
  {
751
751
  "name": "u-chip-set",
752
752
  "description": "\n---\n",
@@ -928,6 +928,12 @@
928
928
  ],
929
929
  "references": []
930
930
  },
931
+ {
932
+ "name": "u-elevation",
933
+ "description": "\n---\n",
934
+ "attributes": [],
935
+ "references": []
936
+ },
931
937
  {
932
938
  "name": "u-field",
933
939
  "description": "\n---\n",
@@ -1003,13 +1009,24 @@
1003
1009
  "references": []
1004
1010
  },
1005
1011
  {
1006
- "name": "u-elevation",
1012
+ "name": "u-icon",
1007
1013
  "description": "\n---\n",
1008
1014
  "attributes": [],
1009
1015
  "references": []
1010
1016
  },
1011
1017
  {
1012
- "name": "u-icon",
1018
+ "name": "u-list-item",
1019
+ "description": "\n---\n",
1020
+ "attributes": [
1021
+ {
1022
+ "name": "selectable",
1023
+ "values": []
1024
+ }
1025
+ ],
1026
+ "references": []
1027
+ },
1028
+ {
1029
+ "name": "u-list",
1013
1030
  "description": "\n---\n",
1014
1031
  "attributes": [],
1015
1032
  "references": []
@@ -1130,23 +1147,6 @@
1130
1147
  ],
1131
1148
  "references": []
1132
1149
  },
1133
- {
1134
- "name": "u-list-item",
1135
- "description": "\n---\n",
1136
- "attributes": [
1137
- {
1138
- "name": "selectable",
1139
- "values": []
1140
- }
1141
- ],
1142
- "references": []
1143
- },
1144
- {
1145
- "name": "u-list",
1146
- "description": "\n---\n",
1147
- "attributes": [],
1148
- "references": []
1149
- },
1150
1150
  {
1151
1151
  "name": "u-drawer-headline",
1152
1152
  "description": "\n---\n",