@design.estate/dees-catalog 1.0.248 → 1.0.249
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/dist_bundle/bundle.js +374 -374
- package/dist_bundle/bundle.js.map +3 -3
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/dist_ts_web/elements/dees-input-multitoggle.d.ts +1 -0
- package/dist_ts_web/elements/dees-input-multitoggle.js +8 -2
- package/dist_watch/bundle.js +6 -1
- package/dist_watch/bundle.js.map +2 -2
- package/package.json +1 -1
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/elements/dees-input-multitoggle.ts +6 -1
package/package.json
CHANGED
|
@@ -21,6 +21,11 @@ export class DeesInputMultitoggle extends DeesElement {
|
|
|
21
21
|
})
|
|
22
22
|
public label: string;
|
|
23
23
|
|
|
24
|
+
@property({
|
|
25
|
+
type: String,
|
|
26
|
+
})
|
|
27
|
+
public description: string;
|
|
28
|
+
|
|
24
29
|
@property()
|
|
25
30
|
type: 'boolean' | 'multi' | 'single' = 'multi';
|
|
26
31
|
|
|
@@ -104,7 +109,7 @@ export class DeesInputMultitoggle extends DeesElement {
|
|
|
104
109
|
|
|
105
110
|
public render(): TemplateResult {
|
|
106
111
|
return html`
|
|
107
|
-
|
|
112
|
+
<dees-label .label=${this.label} .description=${this.description}></dees-label>
|
|
108
113
|
<div class="mainbox">
|
|
109
114
|
<div class="selections">
|
|
110
115
|
<div class="indicator"></div>
|