@design.estate/dees-catalog 3.76.0 → 3.76.1
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 +429 -407
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/dist_ts_web/elements/00group-input/dees-input-checkbox/dees-input-checkbox.demo.js +96 -94
- package/dist_ts_web/elements/00group-input/dees-input-dropdown/dees-input-dropdown.demo.js +27 -25
- package/dist_ts_web/elements/00group-input/dees-input-fileupload/demo.js +36 -36
- package/dist_ts_web/elements/00group-input/dees-input-iban/dees-input-iban.demo.js +20 -18
- package/dist_ts_web/elements/00group-input/dees-input-list/dees-input-list.demo.js +22 -20
- package/dist_ts_web/elements/00group-input/dees-input-multitoggle/dees-input-multitoggle.demo.js +67 -65
- package/dist_ts_web/elements/00group-input/dees-input-phone/dees-input-phone.demo.js +20 -18
- package/dist_ts_web/elements/00group-input/dees-input-quantityselector/dees-input-quantityselector.demo.js +4 -4
- package/dist_ts_web/elements/00group-input/dees-input-radiogroup/dees-input-radiogroup.demo.js +54 -48
- package/dist_ts_web/elements/00group-input/dees-input-tags/dees-input-tags.demo.js +21 -19
- package/dist_ts_web/elements/00group-input/dees-input-text/dees-input-text.demo.js +37 -35
- package/dist_ts_web/elements/00group-input/dees-input-toggle/dees-input-toggle.demo.js +35 -33
- package/dist_ts_web/elements/00group-input/dees-input-typelist/dees-input-typelist.demo.js +19 -19
- package/package.json +1 -1
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/elements/00group-input/dees-input-checkbox/dees-input-checkbox.demo.ts +95 -93
- package/ts_web/elements/00group-input/dees-input-dropdown/dees-input-dropdown.demo.ts +40 -38
- package/ts_web/elements/00group-input/dees-input-fileupload/demo.ts +35 -35
- package/ts_web/elements/00group-input/dees-input-iban/dees-input-iban.demo.ts +19 -17
- package/ts_web/elements/00group-input/dees-input-list/dees-input-list.demo.ts +21 -19
- package/ts_web/elements/00group-input/dees-input-multitoggle/dees-input-multitoggle.demo.ts +66 -64
- package/ts_web/elements/00group-input/dees-input-phone/dees-input-phone.demo.ts +19 -17
- package/ts_web/elements/00group-input/dees-input-quantityselector/dees-input-quantityselector.demo.ts +4 -4
- package/ts_web/elements/00group-input/dees-input-radiogroup/dees-input-radiogroup.demo.ts +53 -47
- package/ts_web/elements/00group-input/dees-input-tags/dees-input-tags.demo.ts +20 -18
- package/ts_web/elements/00group-input/dees-input-text/dees-input-text.demo.ts +36 -34
- package/ts_web/elements/00group-input/dees-input-toggle/dees-input-toggle.demo.ts +34 -32
- package/ts_web/elements/00group-input/dees-input-typelist/dees-input-typelist.demo.ts +18 -18
package/dist_bundle/bundle.js
CHANGED
|
@@ -138730,90 +138730,92 @@ var demoFunc8 = /* @__PURE__ */ __name(() => b2`
|
|
|
138730
138730
|
|
|
138731
138731
|
<div class="demo-container">
|
|
138732
138732
|
<dees-panel .title=${"Basic Checkboxes"} .subtitle=${"Simple checkbox examples with various labels"}>
|
|
138733
|
-
<
|
|
138734
|
-
<dees-input-checkbox
|
|
138735
|
-
.label=${"I agree to the Terms and Conditions"}
|
|
138733
|
+
<dees-form>
|
|
138734
|
+
<dees-input-checkbox
|
|
138735
|
+
.label=${"I agree to the Terms and Conditions"}
|
|
138736
138736
|
.value=${true}
|
|
138737
138737
|
.key=${"terms"}
|
|
138738
138738
|
></dees-input-checkbox>
|
|
138739
|
-
|
|
138740
|
-
<dees-input-checkbox
|
|
138741
|
-
.label=${"Subscribe to newsletter"}
|
|
138739
|
+
|
|
138740
|
+
<dees-input-checkbox
|
|
138741
|
+
.label=${"Subscribe to newsletter"}
|
|
138742
138742
|
.value=${false}
|
|
138743
138743
|
.key=${"newsletter"}
|
|
138744
138744
|
></dees-input-checkbox>
|
|
138745
|
-
|
|
138746
|
-
<dees-input-checkbox
|
|
138747
|
-
.label=${"Enable notifications"}
|
|
138745
|
+
|
|
138746
|
+
<dees-input-checkbox
|
|
138747
|
+
.label=${"Enable notifications"}
|
|
138748
138748
|
.value=${false}
|
|
138749
138749
|
.description=${"Receive email updates about your account"}
|
|
138750
138750
|
.key=${"notifications"}
|
|
138751
138751
|
></dees-input-checkbox>
|
|
138752
|
-
</
|
|
138752
|
+
</dees-form>
|
|
138753
138753
|
</dees-panel>
|
|
138754
138754
|
|
|
138755
138755
|
<dees-panel .title=${"Checkbox States"} .subtitle=${"Different checkbox states and configurations"}>
|
|
138756
|
-
<
|
|
138757
|
-
<dees-input-checkbox
|
|
138758
|
-
.label=${"Default state"}
|
|
138756
|
+
<dees-form>
|
|
138757
|
+
<dees-input-checkbox
|
|
138758
|
+
.label=${"Default state"}
|
|
138759
138759
|
.value=${false}
|
|
138760
138760
|
></dees-input-checkbox>
|
|
138761
|
-
|
|
138762
|
-
<dees-input-checkbox
|
|
138763
|
-
.label=${"Checked state"}
|
|
138761
|
+
|
|
138762
|
+
<dees-input-checkbox
|
|
138763
|
+
.label=${"Checked state"}
|
|
138764
138764
|
.value=${true}
|
|
138765
138765
|
></dees-input-checkbox>
|
|
138766
|
-
|
|
138767
|
-
<dees-input-checkbox
|
|
138768
|
-
.label=${"Disabled unchecked"}
|
|
138766
|
+
|
|
138767
|
+
<dees-input-checkbox
|
|
138768
|
+
.label=${"Disabled unchecked"}
|
|
138769
138769
|
.value=${false}
|
|
138770
138770
|
.disabled=${true}
|
|
138771
138771
|
></dees-input-checkbox>
|
|
138772
|
-
|
|
138773
|
-
<dees-input-checkbox
|
|
138774
|
-
.label=${"Disabled checked"}
|
|
138772
|
+
|
|
138773
|
+
<dees-input-checkbox
|
|
138774
|
+
.label=${"Disabled checked"}
|
|
138775
138775
|
.value=${true}
|
|
138776
138776
|
.disabled=${true}
|
|
138777
138777
|
></dees-input-checkbox>
|
|
138778
|
-
|
|
138779
|
-
<dees-input-checkbox
|
|
138780
|
-
.label=${"Required checkbox"}
|
|
138778
|
+
|
|
138779
|
+
<dees-input-checkbox
|
|
138780
|
+
.label=${"Required checkbox"}
|
|
138781
138781
|
.required=${true}
|
|
138782
138782
|
.key=${"required"}
|
|
138783
138783
|
></dees-input-checkbox>
|
|
138784
|
-
</
|
|
138784
|
+
</dees-form>
|
|
138785
138785
|
</dees-panel>
|
|
138786
138786
|
|
|
138787
138787
|
<dees-panel .title=${"Horizontal Layout"} .subtitle=${"Checkboxes arranged horizontally for compact forms"}>
|
|
138788
|
-
<
|
|
138789
|
-
<
|
|
138790
|
-
|
|
138791
|
-
|
|
138792
|
-
|
|
138793
|
-
|
|
138794
|
-
|
|
138795
|
-
|
|
138796
|
-
|
|
138797
|
-
|
|
138798
|
-
|
|
138799
|
-
|
|
138800
|
-
|
|
138801
|
-
|
|
138802
|
-
|
|
138803
|
-
|
|
138804
|
-
|
|
138805
|
-
|
|
138806
|
-
|
|
138807
|
-
|
|
138808
|
-
|
|
138809
|
-
|
|
138810
|
-
|
|
138811
|
-
|
|
138812
|
-
|
|
138813
|
-
|
|
138814
|
-
|
|
138815
|
-
|
|
138816
|
-
|
|
138788
|
+
<dees-form>
|
|
138789
|
+
<div class="horizontal-checkboxes">
|
|
138790
|
+
<dees-input-checkbox
|
|
138791
|
+
.label=${"Option A"}
|
|
138792
|
+
.value=${false}
|
|
138793
|
+
.layoutMode=${"horizontal"}
|
|
138794
|
+
.key=${"optionA"}
|
|
138795
|
+
></dees-input-checkbox>
|
|
138796
|
+
|
|
138797
|
+
<dees-input-checkbox
|
|
138798
|
+
.label=${"Option B"}
|
|
138799
|
+
.value=${true}
|
|
138800
|
+
.layoutMode=${"horizontal"}
|
|
138801
|
+
.key=${"optionB"}
|
|
138802
|
+
></dees-input-checkbox>
|
|
138803
|
+
|
|
138804
|
+
<dees-input-checkbox
|
|
138805
|
+
.label=${"Option C"}
|
|
138806
|
+
.value=${false}
|
|
138807
|
+
.layoutMode=${"horizontal"}
|
|
138808
|
+
.key=${"optionC"}
|
|
138809
|
+
></dees-input-checkbox>
|
|
138810
|
+
|
|
138811
|
+
<dees-input-checkbox
|
|
138812
|
+
.label=${"Option D"}
|
|
138813
|
+
.value=${true}
|
|
138814
|
+
.layoutMode=${"horizontal"}
|
|
138815
|
+
.key=${"optionD"}
|
|
138816
|
+
></dees-input-checkbox>
|
|
138817
|
+
</div>
|
|
138818
|
+
</dees-form>
|
|
138817
138819
|
</dees-panel>
|
|
138818
138820
|
|
|
138819
138821
|
<dees-panel .title=${"Feature Selection Example"} .subtitle=${"Common use case for feature toggles with batch operations"}>
|
|
@@ -138823,76 +138825,76 @@ var demoFunc8 = /* @__PURE__ */ __name(() => b2`
|
|
|
138823
138825
|
</div>
|
|
138824
138826
|
|
|
138825
138827
|
<div class="feature-list">
|
|
138826
|
-
<
|
|
138827
|
-
<dees-input-checkbox
|
|
138828
|
-
.label=${"Dark Mode Support"}
|
|
138828
|
+
<dees-form>
|
|
138829
|
+
<dees-input-checkbox
|
|
138830
|
+
.label=${"Dark Mode Support"}
|
|
138829
138831
|
.value=${true}
|
|
138830
138832
|
.key=${"feature1"}
|
|
138831
138833
|
></dees-input-checkbox>
|
|
138832
|
-
|
|
138833
|
-
<dees-input-checkbox
|
|
138834
|
-
.label=${"Email Notifications"}
|
|
138834
|
+
|
|
138835
|
+
<dees-input-checkbox
|
|
138836
|
+
.label=${"Email Notifications"}
|
|
138835
138837
|
.value=${true}
|
|
138836
138838
|
.key=${"feature2"}
|
|
138837
138839
|
></dees-input-checkbox>
|
|
138838
|
-
|
|
138839
|
-
<dees-input-checkbox
|
|
138840
|
-
.label=${"Two-Factor Authentication"}
|
|
138840
|
+
|
|
138841
|
+
<dees-input-checkbox
|
|
138842
|
+
.label=${"Two-Factor Authentication"}
|
|
138841
138843
|
.value=${false}
|
|
138842
138844
|
.key=${"feature3"}
|
|
138843
138845
|
></dees-input-checkbox>
|
|
138844
|
-
|
|
138845
|
-
<dees-input-checkbox
|
|
138846
|
-
.label=${"API Access"}
|
|
138846
|
+
|
|
138847
|
+
<dees-input-checkbox
|
|
138848
|
+
.label=${"API Access"}
|
|
138847
138849
|
.value=${true}
|
|
138848
138850
|
.key=${"feature4"}
|
|
138849
138851
|
></dees-input-checkbox>
|
|
138850
|
-
|
|
138851
|
-
<dees-input-checkbox
|
|
138852
|
-
.label=${"Advanced Analytics"}
|
|
138852
|
+
|
|
138853
|
+
<dees-input-checkbox
|
|
138854
|
+
.label=${"Advanced Analytics"}
|
|
138853
138855
|
.value=${false}
|
|
138854
138856
|
.key=${"feature5"}
|
|
138855
138857
|
></dees-input-checkbox>
|
|
138856
|
-
</
|
|
138858
|
+
</dees-form>
|
|
138857
138859
|
</div>
|
|
138858
138860
|
</dees-panel>
|
|
138859
138861
|
|
|
138860
138862
|
<dees-panel .title=${"Privacy Settings Example"} .subtitle=${"Checkboxes in a typical form context"}>
|
|
138861
138863
|
<div class="form-section">
|
|
138862
138864
|
<h4 class="section-title">Privacy Preferences</h4>
|
|
138863
|
-
|
|
138864
|
-
<
|
|
138865
|
-
<dees-input-checkbox
|
|
138866
|
-
.label=${"Share analytics data"}
|
|
138865
|
+
|
|
138866
|
+
<dees-form>
|
|
138867
|
+
<dees-input-checkbox
|
|
138868
|
+
.label=${"Share analytics data"}
|
|
138867
138869
|
.value=${true}
|
|
138868
138870
|
.description=${"Help us improve by sharing anonymous usage data"}
|
|
138869
138871
|
></dees-input-checkbox>
|
|
138870
|
-
|
|
138871
|
-
<dees-input-checkbox
|
|
138872
|
-
.label=${"Personalized recommendations"}
|
|
138872
|
+
|
|
138873
|
+
<dees-input-checkbox
|
|
138874
|
+
.label=${"Personalized recommendations"}
|
|
138873
138875
|
.value=${true}
|
|
138874
138876
|
.description=${"Get suggestions based on your activity"}
|
|
138875
138877
|
></dees-input-checkbox>
|
|
138876
|
-
|
|
138877
|
-
<dees-input-checkbox
|
|
138878
|
-
.label=${"Marketing communications"}
|
|
138878
|
+
|
|
138879
|
+
<dees-input-checkbox
|
|
138880
|
+
.label=${"Marketing communications"}
|
|
138879
138881
|
.value=${false}
|
|
138880
138882
|
.description=${"Receive promotional emails and special offers"}
|
|
138881
138883
|
></dees-input-checkbox>
|
|
138882
|
-
|
|
138883
|
-
<dees-input-checkbox
|
|
138884
|
-
.label=${"Third-party integrations"}
|
|
138884
|
+
|
|
138885
|
+
<dees-input-checkbox
|
|
138886
|
+
.label=${"Third-party integrations"}
|
|
138885
138887
|
.value=${false}
|
|
138886
138888
|
.description=${"Allow approved partners to access your data"}
|
|
138887
138889
|
></dees-input-checkbox>
|
|
138888
|
-
</
|
|
138890
|
+
</dees-form>
|
|
138889
138891
|
</div>
|
|
138890
138892
|
</dees-panel>
|
|
138891
138893
|
|
|
138892
138894
|
<dees-panel .title=${"Interactive Example"} .subtitle=${"Click checkboxes to see value changes"}>
|
|
138893
|
-
<
|
|
138894
|
-
<dees-input-checkbox
|
|
138895
|
-
.label=${"Feature toggle"}
|
|
138895
|
+
<dees-form>
|
|
138896
|
+
<dees-input-checkbox
|
|
138897
|
+
.label=${"Feature toggle"}
|
|
138896
138898
|
.value=${false}
|
|
138897
138899
|
@changeSubject=${(event) => {
|
|
138898
138900
|
const output = document.querySelector("#checkbox-output");
|
|
@@ -138902,9 +138904,9 @@ var demoFunc8 = /* @__PURE__ */ __name(() => b2`
|
|
|
138902
138904
|
}
|
|
138903
138905
|
}}
|
|
138904
138906
|
></dees-input-checkbox>
|
|
138905
|
-
|
|
138906
|
-
<dees-input-checkbox
|
|
138907
|
-
.label=${"Debug mode"}
|
|
138907
|
+
|
|
138908
|
+
<dees-input-checkbox
|
|
138909
|
+
.label=${"Debug mode"}
|
|
138908
138910
|
.value=${false}
|
|
138909
138911
|
@changeSubject=${(event) => {
|
|
138910
138912
|
const output = document.querySelector("#debug-output");
|
|
@@ -138914,8 +138916,8 @@ var demoFunc8 = /* @__PURE__ */ __name(() => b2`
|
|
|
138914
138916
|
}
|
|
138915
138917
|
}}
|
|
138916
138918
|
></dees-input-checkbox>
|
|
138917
|
-
</
|
|
138918
|
-
|
|
138919
|
+
</dees-form>
|
|
138920
|
+
|
|
138919
138921
|
<div class="interactive-section">
|
|
138920
138922
|
<div id="checkbox-output" class="output-text">Feature is disabled</div>
|
|
138921
138923
|
<div id="debug-output" class="output-text" style="margin-top: 8px;">Debug mode: OFF</div>
|
|
@@ -143116,7 +143118,7 @@ var demoFunc13 = /* @__PURE__ */ __name(() => b2`
|
|
|
143116
143118
|
}
|
|
143117
143119
|
}}>
|
|
143118
143120
|
<dees-panel .title=${"Basic Text Inputs"} .subtitle=${"Standard text inputs with labels and descriptions"}>
|
|
143119
|
-
<
|
|
143121
|
+
<dees-form>
|
|
143120
143122
|
<dees-input-text
|
|
143121
143123
|
.label=${"Username"}
|
|
143122
143124
|
.value=${"johndoe"}
|
|
@@ -143137,7 +143139,7 @@ var demoFunc13 = /* @__PURE__ */ __name(() => b2`
|
|
|
143137
143139
|
.value=${"secret123"}
|
|
143138
143140
|
.key=${"password"}
|
|
143139
143141
|
></dees-input-text>
|
|
143140
|
-
</
|
|
143142
|
+
</dees-form>
|
|
143141
143143
|
</dees-panel>
|
|
143142
143144
|
</dees-demowrapper>
|
|
143143
143145
|
|
|
@@ -143160,28 +143162,30 @@ var demoFunc13 = /* @__PURE__ */ __name(() => b2`
|
|
|
143160
143162
|
}
|
|
143161
143163
|
}}>
|
|
143162
143164
|
<dees-panel .title=${"Horizontal Layout"} .subtitle=${"Multiple inputs arranged horizontally for compact forms"}>
|
|
143163
|
-
<
|
|
143164
|
-
<
|
|
143165
|
-
|
|
143166
|
-
|
|
143167
|
-
|
|
143168
|
-
|
|
143169
|
-
|
|
143170
|
-
|
|
143171
|
-
|
|
143172
|
-
|
|
143173
|
-
|
|
143174
|
-
|
|
143175
|
-
|
|
143176
|
-
|
|
143177
|
-
|
|
143178
|
-
|
|
143179
|
-
|
|
143180
|
-
|
|
143181
|
-
|
|
143182
|
-
|
|
143183
|
-
|
|
143184
|
-
|
|
143165
|
+
<dees-form>
|
|
143166
|
+
<div class="horizontal-group">
|
|
143167
|
+
<dees-input-text
|
|
143168
|
+
.label=${"First Name"}
|
|
143169
|
+
.value=${"John"}
|
|
143170
|
+
.layoutMode=${"horizontal"}
|
|
143171
|
+
.key=${"firstName"}
|
|
143172
|
+
></dees-input-text>
|
|
143173
|
+
|
|
143174
|
+
<dees-input-text
|
|
143175
|
+
.label=${"Last Name"}
|
|
143176
|
+
.value=${"Doe"}
|
|
143177
|
+
.layoutMode=${"horizontal"}
|
|
143178
|
+
.key=${"lastName"}
|
|
143179
|
+
></dees-input-text>
|
|
143180
|
+
|
|
143181
|
+
<dees-input-text
|
|
143182
|
+
.label=${"Age"}
|
|
143183
|
+
.value=${"28"}
|
|
143184
|
+
.layoutMode=${"horizontal"}
|
|
143185
|
+
.key=${"age"}
|
|
143186
|
+
></dees-input-text>
|
|
143187
|
+
</div>
|
|
143188
|
+
</dees-form>
|
|
143185
143189
|
</dees-panel>
|
|
143186
143190
|
</dees-demowrapper>
|
|
143187
143191
|
|
|
@@ -143197,7 +143201,7 @@ var demoFunc13 = /* @__PURE__ */ __name(() => b2`
|
|
|
143197
143201
|
}
|
|
143198
143202
|
}}>
|
|
143199
143203
|
<dees-panel .title=${"Label Positions"} .subtitle=${"Different label positioning options for various layouts"}>
|
|
143200
|
-
<
|
|
143204
|
+
<dees-form>
|
|
143201
143205
|
<dees-input-text
|
|
143202
143206
|
.label=${"Label on Top (Default)"}
|
|
143203
143207
|
.value=${"Standard layout"}
|
|
@@ -143211,25 +143215,25 @@ var demoFunc13 = /* @__PURE__ */ __name(() => b2`
|
|
|
143211
143215
|
></dees-input-text>
|
|
143212
143216
|
|
|
143213
143217
|
<div class="grid-layout">
|
|
143214
|
-
<dees-input-text
|
|
143215
|
-
.label=${"City"}
|
|
143216
|
-
.value=${"New York"}
|
|
143218
|
+
<dees-input-text
|
|
143219
|
+
.label=${"City"}
|
|
143220
|
+
.value=${"New York"}
|
|
143217
143221
|
.labelPosition=${"left"}
|
|
143218
143222
|
></dees-input-text>
|
|
143219
|
-
|
|
143223
|
+
|
|
143220
143224
|
<dees-input-text
|
|
143221
143225
|
.label=${"ZIP Code"}
|
|
143222
143226
|
.value=${"10001"}
|
|
143223
143227
|
.labelPosition=${"left"}
|
|
143224
143228
|
></dees-input-text>
|
|
143225
143229
|
</div>
|
|
143226
|
-
</
|
|
143230
|
+
</dees-form>
|
|
143227
143231
|
</dees-panel>
|
|
143228
143232
|
</dees-demowrapper>
|
|
143229
143233
|
|
|
143230
143234
|
<dees-demowrapper>
|
|
143231
143235
|
<dees-panel .title=${"Validation & States"} .subtitle=${"Different validation states and input configurations"}>
|
|
143232
|
-
<
|
|
143236
|
+
<dees-form>
|
|
143233
143237
|
<dees-input-text
|
|
143234
143238
|
.label=${"Required Field"}
|
|
143235
143239
|
.required=${true}
|
|
@@ -143253,7 +143257,7 @@ var demoFunc13 = /* @__PURE__ */ __name(() => b2`
|
|
|
143253
143257
|
return { valid: false, message: "Please enter a valid email address" };
|
|
143254
143258
|
}}
|
|
143255
143259
|
></dees-input-text>
|
|
143256
|
-
</
|
|
143260
|
+
</dees-form>
|
|
143257
143261
|
</dees-panel>
|
|
143258
143262
|
</dees-demowrapper>
|
|
143259
143263
|
|
|
@@ -143277,7 +143281,7 @@ var demoFunc13 = /* @__PURE__ */ __name(() => b2`
|
|
|
143277
143281
|
});
|
|
143278
143282
|
}}>
|
|
143279
143283
|
<dees-panel .title=${"Advanced Features"} .subtitle=${"Password visibility toggle and other advanced features"}>
|
|
143280
|
-
<
|
|
143284
|
+
<dees-form>
|
|
143281
143285
|
<dees-input-text
|
|
143282
143286
|
.label=${"Password with Toggle"}
|
|
143283
143287
|
.isPasswordBool=${true}
|
|
@@ -143291,7 +143295,7 @@ var demoFunc13 = /* @__PURE__ */ __name(() => b2`
|
|
|
143291
143295
|
.value=${"sk-1234567890abcdef"}
|
|
143292
143296
|
.infoText=${"Keep this key secure and never share it"}
|
|
143293
143297
|
></dees-input-text>
|
|
143294
|
-
</
|
|
143298
|
+
</dees-form>
|
|
143295
143299
|
</dees-panel>
|
|
143296
143300
|
</dees-demowrapper>
|
|
143297
143301
|
|
|
@@ -144433,7 +144437,7 @@ var demoFunc15 = /* @__PURE__ */ __name(() => b2`
|
|
|
144433
144437
|
|
|
144434
144438
|
<div class="demo-container">
|
|
144435
144439
|
<dees-panel .title=${"Basic Quantity Selector"} .subtitle=${"Simple quantity input with increment/decrement buttons"}>
|
|
144436
|
-
<
|
|
144440
|
+
<dees-form>
|
|
144437
144441
|
<dees-input-quantityselector
|
|
144438
144442
|
.label=${"Quantity"}
|
|
144439
144443
|
.infoText=${"Select the desired quantity"}
|
|
@@ -144446,7 +144450,7 @@ var demoFunc15 = /* @__PURE__ */ __name(() => b2`
|
|
|
144446
144450
|
.infoText=${"Adjust the quantity of items"}
|
|
144447
144451
|
.value=${3}
|
|
144448
144452
|
></dees-input-quantityselector>
|
|
144449
|
-
</
|
|
144453
|
+
</dees-form>
|
|
144450
144454
|
</dees-panel>
|
|
144451
144455
|
|
|
144452
144456
|
<dees-panel .title=${"Shopping Cart"} .subtitle=${"Modern e-commerce product cards with interactive quantity selectors"} .runAfterRender=${async (elementArg) => {
|
|
@@ -144538,7 +144542,7 @@ var demoFunc15 = /* @__PURE__ */ __name(() => b2`
|
|
|
144538
144542
|
</dees-panel>
|
|
144539
144543
|
|
|
144540
144544
|
<dees-panel .title=${"Required & Disabled States"} .subtitle=${"Different states for validation and restrictions"}>
|
|
144541
|
-
<
|
|
144545
|
+
<dees-form>
|
|
144542
144546
|
<dees-input-quantityselector
|
|
144543
144547
|
.label=${"Number of Licenses"}
|
|
144544
144548
|
.infoText=${"Select how many licenses you need"}
|
|
@@ -144552,7 +144556,7 @@ var demoFunc15 = /* @__PURE__ */ __name(() => b2`
|
|
|
144552
144556
|
.disabled=${true}
|
|
144553
144557
|
.value=${5}
|
|
144554
144558
|
></dees-input-quantityselector>
|
|
144555
|
-
</
|
|
144559
|
+
</dees-form>
|
|
144556
144560
|
</dees-panel>
|
|
144557
144561
|
|
|
144558
144562
|
<dees-panel .title=${"Order Form"} .subtitle=${"Complete order form with quantity selection"}>
|
|
@@ -144813,25 +144817,27 @@ var demoFunc16 = /* @__PURE__ */ __name(() => b2`
|
|
|
144813
144817
|
|
|
144814
144818
|
<div class="demo-container">
|
|
144815
144819
|
<dees-panel .title=${"1. Basic Radio Groups"} .subtitle=${"Simple string options for common use cases"}>
|
|
144816
|
-
<
|
|
144817
|
-
<
|
|
144818
|
-
|
|
144819
|
-
|
|
144820
|
-
|
|
144821
|
-
|
|
144822
|
-
|
|
144823
|
-
|
|
144824
|
-
|
|
144825
|
-
|
|
144826
|
-
|
|
144827
|
-
|
|
144828
|
-
|
|
144829
|
-
|
|
144830
|
-
|
|
144820
|
+
<dees-form>
|
|
144821
|
+
<div class="demo-grid">
|
|
144822
|
+
<dees-input-radiogroup
|
|
144823
|
+
.label=${"Subscription Plan"}
|
|
144824
|
+
.options=${["Basic - $9/month", "Pro - $29/month", "Enterprise - $99/month"]}
|
|
144825
|
+
.selectedOption=${"Pro - $29/month"}
|
|
144826
|
+
.description=${"Choose your subscription tier"}
|
|
144827
|
+
></dees-input-radiogroup>
|
|
144828
|
+
|
|
144829
|
+
<dees-input-radiogroup
|
|
144830
|
+
.label=${"Priority Level"}
|
|
144831
|
+
.options=${["High", "Medium", "Low"]}
|
|
144832
|
+
.selectedOption=${"Medium"}
|
|
144833
|
+
.required=${true}
|
|
144834
|
+
></dees-input-radiogroup>
|
|
144835
|
+
</div>
|
|
144836
|
+
</dees-form>
|
|
144831
144837
|
</dees-panel>
|
|
144832
144838
|
|
|
144833
144839
|
<dees-panel .title=${"2. Horizontal Layout"} .subtitle=${"Radio groups with horizontal arrangement"}>
|
|
144834
|
-
<
|
|
144840
|
+
<dees-form>
|
|
144835
144841
|
<dees-input-radiogroup
|
|
144836
144842
|
.label=${"Do you agree with the terms?"}
|
|
144837
144843
|
.options=${["Yes", "No", "Maybe"]}
|
|
@@ -144846,7 +144852,7 @@ var demoFunc16 = /* @__PURE__ */ __name(() => b2`
|
|
|
144846
144852
|
.selectedOption=${"Intermediate"}
|
|
144847
144853
|
.description=${"Select your experience level with web development"}
|
|
144848
144854
|
></dees-input-radiogroup>
|
|
144849
|
-
</
|
|
144855
|
+
</dees-form>
|
|
144850
144856
|
</dees-panel>
|
|
144851
144857
|
|
|
144852
144858
|
<dees-panel .title=${"3. Advanced Options"} .subtitle=${"Using object format with keys and payloads"}>
|
|
@@ -144871,41 +144877,45 @@ var demoFunc16 = /* @__PURE__ */ __name(() => b2`
|
|
|
144871
144877
|
</dees-panel>
|
|
144872
144878
|
|
|
144873
144879
|
<dees-panel .title=${"4. Survey Example"} .subtitle=${"Multiple radio groups for surveys and forms"}>
|
|
144874
|
-
<
|
|
144875
|
-
<
|
|
144876
|
-
|
|
144877
|
-
|
|
144878
|
-
|
|
144879
|
-
|
|
144880
|
-
|
|
144881
|
-
|
|
144882
|
-
|
|
144883
|
-
|
|
144884
|
-
|
|
144885
|
-
|
|
144886
|
-
|
|
144880
|
+
<dees-form>
|
|
144881
|
+
<div class="demo-grid">
|
|
144882
|
+
<dees-input-radiogroup
|
|
144883
|
+
.label=${"How satisfied are you?"}
|
|
144884
|
+
.options=${["Very Satisfied", "Satisfied", "Neutral", "Dissatisfied", "Very Dissatisfied"]}
|
|
144885
|
+
.selectedOption=${"Satisfied"}
|
|
144886
|
+
></dees-input-radiogroup>
|
|
144887
|
+
|
|
144888
|
+
<dees-input-radiogroup
|
|
144889
|
+
.label=${"Would you recommend us?"}
|
|
144890
|
+
.options=${["Definitely", "Probably", "Not Sure", "Probably Not", "Definitely Not"]}
|
|
144891
|
+
.selectedOption=${"Probably"}
|
|
144892
|
+
></dees-input-radiogroup>
|
|
144893
|
+
</div>
|
|
144894
|
+
</dees-form>
|
|
144887
144895
|
</dees-panel>
|
|
144888
144896
|
|
|
144889
144897
|
<dees-panel .title=${"5. States & Validation"} .subtitle=${"Different states and validation examples"}>
|
|
144890
|
-
<
|
|
144891
|
-
<
|
|
144892
|
-
|
|
144893
|
-
|
|
144894
|
-
|
|
144895
|
-
|
|
144896
|
-
|
|
144897
|
-
|
|
144898
|
-
|
|
144899
|
-
|
|
144900
|
-
|
|
144901
|
-
|
|
144902
|
-
|
|
144903
|
-
|
|
144904
|
-
|
|
144898
|
+
<dees-form>
|
|
144899
|
+
<div class="demo-grid">
|
|
144900
|
+
<dees-input-radiogroup
|
|
144901
|
+
.label=${"Required Selection"}
|
|
144902
|
+
.options=${["Option A", "Option B", "Option C"]}
|
|
144903
|
+
.required=${true}
|
|
144904
|
+
.description=${"This field is required"}
|
|
144905
|
+
></dees-input-radiogroup>
|
|
144906
|
+
|
|
144907
|
+
<dees-input-radiogroup
|
|
144908
|
+
.label=${"Disabled State"}
|
|
144909
|
+
.options=${["Disabled Option 1", "Disabled Option 2", "Disabled Option 3"]}
|
|
144910
|
+
.selectedOption=${"Disabled Option 2"}
|
|
144911
|
+
.disabled=${true}
|
|
144912
|
+
></dees-input-radiogroup>
|
|
144913
|
+
</div>
|
|
144914
|
+
</dees-form>
|
|
144905
144915
|
</dees-panel>
|
|
144906
144916
|
|
|
144907
144917
|
<dees-panel .title=${"6. Settings Example"} .subtitle=${"Common patterns in application settings"}>
|
|
144908
|
-
<
|
|
144918
|
+
<dees-form>
|
|
144909
144919
|
<dees-input-radiogroup
|
|
144910
144920
|
.label=${"Theme Preference"}
|
|
144911
144921
|
.options=${[
|
|
@@ -144930,7 +144940,7 @@ var demoFunc16 = /* @__PURE__ */ __name(() => b2`
|
|
|
144930
144940
|
.selectedOption=${"English"}
|
|
144931
144941
|
.direction=${"horizontal"}
|
|
144932
144942
|
></dees-input-radiogroup>
|
|
144933
|
-
</
|
|
144943
|
+
</dees-form>
|
|
144934
144944
|
</dees-panel>
|
|
144935
144945
|
|
|
144936
144946
|
<dees-panel .title=${"7. Form Integration"} .subtitle=${"Works seamlessly with dees-form"}>
|
|
@@ -145531,7 +145541,7 @@ var demoFunc18 = /* @__PURE__ */ __name(() => b2`
|
|
|
145531
145541
|
}
|
|
145532
145542
|
}}>
|
|
145533
145543
|
<dees-panel .title=${"1. Basic Dropdowns"} .subtitle=${"Standard dropdown with search functionality and various options"}>
|
|
145534
|
-
<
|
|
145544
|
+
<dees-form>
|
|
145535
145545
|
<dees-input-dropdown
|
|
145536
145546
|
.label=${"Select Country"}
|
|
145537
145547
|
.description=${"Choose the country where your business is registered"}
|
|
@@ -145557,7 +145567,7 @@ var demoFunc18 = /* @__PURE__ */ __name(() => b2`
|
|
|
145557
145567
|
{ option: "Guest", key: "guest" }
|
|
145558
145568
|
]}
|
|
145559
145569
|
></dees-input-dropdown>
|
|
145560
|
-
</
|
|
145570
|
+
</dees-form>
|
|
145561
145571
|
</dees-panel>
|
|
145562
145572
|
</dees-demowrapper>
|
|
145563
145573
|
|
|
@@ -145593,40 +145603,42 @@ var demoFunc18 = /* @__PURE__ */ __name(() => b2`
|
|
|
145593
145603
|
});
|
|
145594
145604
|
}}>
|
|
145595
145605
|
<dees-panel .title=${"3. Horizontal Layout"} .subtitle=${"Multiple dropdowns in a horizontal layout for compact forms"}>
|
|
145596
|
-
<
|
|
145597
|
-
<
|
|
145598
|
-
|
|
145599
|
-
|
|
145600
|
-
|
|
145606
|
+
<dees-form>
|
|
145607
|
+
<div class="horizontal-group">
|
|
145608
|
+
<dees-input-dropdown
|
|
145609
|
+
.label=${"Department"}
|
|
145610
|
+
.layoutMode=${"horizontal"}
|
|
145611
|
+
.options=${[
|
|
145601
145612
|
{ option: "Engineering", key: "eng" },
|
|
145602
145613
|
{ option: "Design", key: "design" },
|
|
145603
145614
|
{ option: "Marketing", key: "marketing" },
|
|
145604
145615
|
{ option: "Sales", key: "sales" }
|
|
145605
145616
|
]}
|
|
145606
|
-
|
|
145607
|
-
|
|
145608
|
-
|
|
145609
|
-
|
|
145610
|
-
|
|
145611
|
-
|
|
145612
|
-
|
|
145617
|
+
></dees-input-dropdown>
|
|
145618
|
+
|
|
145619
|
+
<dees-input-dropdown
|
|
145620
|
+
.label=${"Team Size"}
|
|
145621
|
+
.layoutMode=${"horizontal"}
|
|
145622
|
+
.enableSearch=${false}
|
|
145623
|
+
.options=${[
|
|
145613
145624
|
{ option: "1-5", key: "small" },
|
|
145614
145625
|
{ option: "6-20", key: "medium" },
|
|
145615
145626
|
{ option: "21-50", key: "large" },
|
|
145616
145627
|
{ option: "50+", key: "xlarge" }
|
|
145617
145628
|
]}
|
|
145618
|
-
|
|
145619
|
-
|
|
145620
|
-
|
|
145621
|
-
|
|
145622
|
-
|
|
145623
|
-
|
|
145629
|
+
></dees-input-dropdown>
|
|
145630
|
+
|
|
145631
|
+
<dees-input-dropdown
|
|
145632
|
+
.label=${"Location"}
|
|
145633
|
+
.layoutMode=${"horizontal"}
|
|
145634
|
+
.options=${[
|
|
145624
145635
|
{ option: "Remote", key: "remote" },
|
|
145625
145636
|
{ option: "On-site", key: "onsite" },
|
|
145626
145637
|
{ option: "Hybrid", key: "hybrid" }
|
|
145627
145638
|
]}
|
|
145628
|
-
|
|
145629
|
-
|
|
145639
|
+
></dees-input-dropdown>
|
|
145640
|
+
</div>
|
|
145641
|
+
</dees-form>
|
|
145630
145642
|
</dees-panel>
|
|
145631
145643
|
</dees-demowrapper>
|
|
145632
145644
|
|
|
@@ -145639,7 +145651,7 @@ var demoFunc18 = /* @__PURE__ */ __name(() => b2`
|
|
|
145639
145651
|
}
|
|
145640
145652
|
}}>
|
|
145641
145653
|
<dees-panel .title=${"4. States"} .subtitle=${"Different states and configurations"}>
|
|
145642
|
-
<
|
|
145654
|
+
<dees-form>
|
|
145643
145655
|
<dees-input-dropdown
|
|
145644
145656
|
.label=${"Required Field"}
|
|
145645
145657
|
.required=${true}
|
|
@@ -145658,7 +145670,7 @@ var demoFunc18 = /* @__PURE__ */ __name(() => b2`
|
|
|
145658
145670
|
]}
|
|
145659
145671
|
.selectedOption=${{ option: "Cannot Select", key: "disabled" }}
|
|
145660
145672
|
></dees-input-dropdown>
|
|
145661
|
-
</
|
|
145673
|
+
</dees-form>
|
|
145662
145674
|
</dees-panel>
|
|
145663
145675
|
</dees-demowrapper>
|
|
145664
145676
|
|
|
@@ -146431,41 +146443,43 @@ var demoFunc19 = /* @__PURE__ */ __name(() => b2`
|
|
|
146431
146443
|
.title=${"Modern file uploader"}
|
|
146432
146444
|
.subtitle=${"Shadcn-inspired layout with drag & drop, previews and validation"}
|
|
146433
146445
|
>
|
|
146434
|
-
<
|
|
146435
|
-
<div class="demo-
|
|
146436
|
-
<
|
|
146437
|
-
|
|
146438
|
-
|
|
146439
|
-
|
|
146440
|
-
|
|
146441
|
-
|
|
146442
|
-
|
|
146443
|
-
|
|
146444
|
-
<dees-input-fileupload
|
|
146445
|
-
.label=${"Brand assets"}
|
|
146446
|
-
.infoText=${"Upload high-resolution imagery (JPG/PNG)"}
|
|
146447
|
-
.accept=${"image/jpeg,image/png"}
|
|
146448
|
-
.multiple=${false}
|
|
146449
|
-
.maxSize=${5 * 1024 * 1024}
|
|
146450
|
-
.buttonText=${"Select cover image"}
|
|
146451
|
-
></dees-input-fileupload>
|
|
146452
|
-
</div>
|
|
146446
|
+
<dees-form>
|
|
146447
|
+
<div class="demo-grid demo-grid--two">
|
|
146448
|
+
<div class="demo-stack">
|
|
146449
|
+
<dees-input-fileupload
|
|
146450
|
+
.label=${"Attachments"}
|
|
146451
|
+
.infoText=${"Upload supporting documents for your request"}
|
|
146452
|
+
.description=${"Accepted formats: images, PDF, and ZIP archives up to 10MB"}
|
|
146453
|
+
.accept=${"image/*,.pdf,.zip"}
|
|
146454
|
+
.maxSize=${10 * 1024 * 1024}
|
|
146455
|
+
></dees-input-fileupload>
|
|
146453
146456
|
|
|
146454
|
-
|
|
146455
|
-
|
|
146456
|
-
|
|
146457
|
-
|
|
146458
|
-
|
|
146459
|
-
|
|
146460
|
-
|
|
146461
|
-
|
|
146462
|
-
|
|
146463
|
-
|
|
146464
|
-
|
|
146465
|
-
|
|
146466
|
-
|
|
146457
|
+
<dees-input-fileupload
|
|
146458
|
+
.label=${"Brand assets"}
|
|
146459
|
+
.infoText=${"Upload high-resolution imagery (JPG/PNG)"}
|
|
146460
|
+
.accept=${"image/jpeg,image/png"}
|
|
146461
|
+
.multiple=${false}
|
|
146462
|
+
.maxSize=${5 * 1024 * 1024}
|
|
146463
|
+
.buttonText=${"Select cover image"}
|
|
146464
|
+
></dees-input-fileupload>
|
|
146465
|
+
</div>
|
|
146466
|
+
|
|
146467
|
+
<div class="demo-stack">
|
|
146468
|
+
<dees-input-fileupload
|
|
146469
|
+
.label=${"Audio uploads"}
|
|
146470
|
+
.infoText=${"Share podcast drafts (MP3/WAV, max 25MB each)"}
|
|
146471
|
+
.accept=${"audio/*"}
|
|
146472
|
+
.maxSize=${25 * 1024 * 1024}
|
|
146473
|
+
></dees-input-fileupload>
|
|
146474
|
+
|
|
146475
|
+
<dees-input-fileupload
|
|
146476
|
+
.label=${"Disabled example"}
|
|
146477
|
+
.infoText=${"Uploader is disabled while moderation is pending"}
|
|
146478
|
+
.disabled=${true}
|
|
146479
|
+
></dees-input-fileupload>
|
|
146480
|
+
</div>
|
|
146467
146481
|
</div>
|
|
146468
|
-
</
|
|
146482
|
+
</dees-form>
|
|
146469
146483
|
</dees-panel>
|
|
146470
146484
|
|
|
146471
146485
|
<dees-panel
|
|
@@ -146474,7 +146488,6 @@ var demoFunc19 = /* @__PURE__ */ __name(() => b2`
|
|
|
146474
146488
|
>
|
|
146475
146489
|
<div class="demo-grid">
|
|
146476
146490
|
<dees-form>
|
|
146477
|
-
<div class="demo-stack">
|
|
146478
146491
|
<dees-input-text
|
|
146479
146492
|
.label=${"Project name"}
|
|
146480
146493
|
.infoText=${"How should we refer to this project internally?"}
|
|
@@ -146516,7 +146529,6 @@ var demoFunc19 = /* @__PURE__ */ __name(() => b2`
|
|
|
146516
146529
|
></dees-input-text>
|
|
146517
146530
|
|
|
146518
146531
|
<dees-form-submit .text=${"Submit briefing"}></dees-form-submit>
|
|
146519
|
-
</div>
|
|
146520
146532
|
</dees-form>
|
|
146521
146533
|
|
|
146522
146534
|
<div class="demo-note">
|
|
@@ -148775,7 +148787,7 @@ var demoFunc20 = /* @__PURE__ */ __name(() => b2`
|
|
|
148775
148787
|
|
|
148776
148788
|
<div class="demo-container">
|
|
148777
148789
|
<dees-panel .title=${"Basic IBAN Input"} .subtitle=${"International Bank Account Number with automatic formatting"}>
|
|
148778
|
-
<
|
|
148790
|
+
<dees-form>
|
|
148779
148791
|
<dees-input-iban
|
|
148780
148792
|
.label=${"Bank Account IBAN"}
|
|
148781
148793
|
.infoText=${"Enter your International Bank Account Number"}
|
|
@@ -148787,27 +148799,29 @@ var demoFunc20 = /* @__PURE__ */ __name(() => b2`
|
|
|
148787
148799
|
.infoText=${"This IBAN has been verified"}
|
|
148788
148800
|
.value=${"DE89370400440532013000"}
|
|
148789
148801
|
></dees-input-iban>
|
|
148790
|
-
</
|
|
148802
|
+
</dees-form>
|
|
148791
148803
|
</dees-panel>
|
|
148792
148804
|
|
|
148793
148805
|
<dees-panel .title=${"Payment Information"} .subtitle=${"IBAN input with horizontal layout for payment forms"}>
|
|
148794
|
-
<
|
|
148795
|
-
<
|
|
148796
|
-
|
|
148797
|
-
|
|
148798
|
-
|
|
148799
|
-
|
|
148800
|
-
|
|
148801
|
-
|
|
148802
|
-
|
|
148803
|
-
|
|
148804
|
-
|
|
148805
|
-
|
|
148806
|
-
|
|
148806
|
+
<dees-form>
|
|
148807
|
+
<div class="payment-group">
|
|
148808
|
+
<dees-input-text
|
|
148809
|
+
.label=${"Account Holder"}
|
|
148810
|
+
.layoutMode=${"horizontal"}
|
|
148811
|
+
.value=${"John Doe"}
|
|
148812
|
+
></dees-input-text>
|
|
148813
|
+
|
|
148814
|
+
<dees-input-iban
|
|
148815
|
+
.label=${"IBAN"}
|
|
148816
|
+
.layoutMode=${"horizontal"}
|
|
148817
|
+
.value=${"GB82WEST12345698765432"}
|
|
148818
|
+
></dees-input-iban>
|
|
148819
|
+
</div>
|
|
148820
|
+
</dees-form>
|
|
148807
148821
|
</dees-panel>
|
|
148808
148822
|
|
|
148809
148823
|
<dees-panel .title=${"Validation & States"} .subtitle=${"Required fields and disabled states"}>
|
|
148810
|
-
<
|
|
148824
|
+
<dees-form>
|
|
148811
148825
|
<dees-input-iban
|
|
148812
148826
|
.label=${"Payment Account"}
|
|
148813
148827
|
.infoText=${"Required for processing payments"}
|
|
@@ -148820,7 +148834,7 @@ var demoFunc20 = /* @__PURE__ */ __name(() => b2`
|
|
|
148820
148834
|
.value=${"FR1420041010050500013M02606"}
|
|
148821
148835
|
.disabled=${true}
|
|
148822
148836
|
></dees-input-iban>
|
|
148823
|
-
</
|
|
148837
|
+
</dees-form>
|
|
148824
148838
|
</dees-panel>
|
|
148825
148839
|
|
|
148826
148840
|
<dees-panel .title=${"Bank Transfer Form"} .subtitle=${"Complete form example with IBAN validation"}>
|
|
@@ -148984,81 +148998,83 @@ var demoFunc21 = /* @__PURE__ */ __name(() => b2`
|
|
|
148984
148998
|
<div class="section">
|
|
148985
148999
|
<div class="section-title">Multi-Option Toggle</div>
|
|
148986
149000
|
<div class="section-description">Select from multiple options with a smooth sliding indicator animation.</div>
|
|
148987
|
-
|
|
148988
|
-
<dees-
|
|
148989
|
-
|
|
148990
|
-
|
|
148991
|
-
|
|
148992
|
-
|
|
148993
|
-
|
|
148994
|
-
|
|
148995
|
-
|
|
148996
|
-
|
|
148997
|
-
|
|
148998
|
-
|
|
148999
|
-
|
|
149000
|
-
|
|
149001
|
-
|
|
149002
|
-
|
|
149003
|
-
|
|
149001
|
+
|
|
149002
|
+
<dees-form>
|
|
149003
|
+
<dees-input-multitoggle
|
|
149004
|
+
.label=${"Display Mode"}
|
|
149005
|
+
.infoText=${"Choose how content is displayed"}
|
|
149006
|
+
.description=${"This setting affects how items appear on your dashboard"}
|
|
149007
|
+
.options=${["List View", "Grid View", "Compact"]}
|
|
149008
|
+
.selectedOption=${"Grid View"}
|
|
149009
|
+
></dees-input-multitoggle>
|
|
149010
|
+
|
|
149011
|
+
<dees-input-multitoggle
|
|
149012
|
+
.label=${"T-Shirt Size"}
|
|
149013
|
+
.infoText=${"Select your preferred size"}
|
|
149014
|
+
.options=${["XS", "S", "M", "L", "XL", "XXL"]}
|
|
149015
|
+
.selectedOption=${"M"}
|
|
149016
|
+
></dees-input-multitoggle>
|
|
149017
|
+
</dees-form>
|
|
149004
149018
|
</div>
|
|
149005
149019
|
|
|
149006
149020
|
<div class="section">
|
|
149007
149021
|
<div class="section-title">Boolean Toggle</div>
|
|
149008
149022
|
<div class="section-description">Simple on/off switches with customizable labels for clearer context.</div>
|
|
149009
|
-
|
|
149010
|
-
<dees-
|
|
149011
|
-
.label=${"Notifications"}
|
|
149012
|
-
.infoText=${"Enable or disable push notifications"}
|
|
149013
|
-
.type=${"boolean"}
|
|
149014
|
-
.selectedOption=${"true"}
|
|
149015
|
-
></dees-input-multitoggle>
|
|
149016
|
-
|
|
149017
|
-
<br><br>
|
|
149018
|
-
|
|
149019
|
-
<dees-input-multitoggle
|
|
149020
|
-
.label=${"Theme Mode"}
|
|
149021
|
-
.infoText=${"Switch between light and dark theme"}
|
|
149022
|
-
.type=${"boolean"}
|
|
149023
|
-
.booleanTrueName=${"Dark"}
|
|
149024
|
-
.booleanFalseName=${"Light"}
|
|
149025
|
-
.selectedOption=${"Dark"}
|
|
149026
|
-
></dees-input-multitoggle>
|
|
149027
|
-
</div>
|
|
149028
|
-
|
|
149029
|
-
<div class="section">
|
|
149030
|
-
<div class="section-title">Settings Grid</div>
|
|
149031
|
-
<div class="section-description">Configuration options arranged in a responsive grid layout.</div>
|
|
149032
|
-
|
|
149033
|
-
<div class="settings-grid">
|
|
149023
|
+
|
|
149024
|
+
<dees-form>
|
|
149034
149025
|
<dees-input-multitoggle
|
|
149035
|
-
.label=${"
|
|
149026
|
+
.label=${"Notifications"}
|
|
149027
|
+
.infoText=${"Enable or disable push notifications"}
|
|
149036
149028
|
.type=${"boolean"}
|
|
149037
|
-
.
|
|
149038
|
-
.booleanFalseName=${"Disabled"}
|
|
149039
|
-
.selectedOption=${"Enabled"}
|
|
149040
|
-
></dees-input-multitoggle>
|
|
149041
|
-
|
|
149042
|
-
<dees-input-multitoggle
|
|
149043
|
-
.label=${"Language"}
|
|
149044
|
-
.options=${["English", "German", "French", "Spanish"]}
|
|
149045
|
-
.selectedOption=${"English"}
|
|
149046
|
-
></dees-input-multitoggle>
|
|
149047
|
-
|
|
149048
|
-
<dees-input-multitoggle
|
|
149049
|
-
.label=${"Quality"}
|
|
149050
|
-
.options=${["Low", "Medium", "High", "Ultra"]}
|
|
149051
|
-
.selectedOption=${"High"}
|
|
149029
|
+
.selectedOption=${"true"}
|
|
149052
149030
|
></dees-input-multitoggle>
|
|
149053
|
-
|
|
149031
|
+
|
|
149054
149032
|
<dees-input-multitoggle
|
|
149055
|
-
.label=${"
|
|
149033
|
+
.label=${"Theme Mode"}
|
|
149034
|
+
.infoText=${"Switch between light and dark theme"}
|
|
149056
149035
|
.type=${"boolean"}
|
|
149057
|
-
.booleanTrueName=${"
|
|
149058
|
-
.booleanFalseName=${"
|
|
149059
|
-
.selectedOption=${"
|
|
149036
|
+
.booleanTrueName=${"Dark"}
|
|
149037
|
+
.booleanFalseName=${"Light"}
|
|
149038
|
+
.selectedOption=${"Dark"}
|
|
149060
149039
|
></dees-input-multitoggle>
|
|
149061
|
-
</
|
|
149040
|
+
</dees-form>
|
|
149041
|
+
</div>
|
|
149042
|
+
|
|
149043
|
+
<div class="section">
|
|
149044
|
+
<div class="section-title">Settings Grid</div>
|
|
149045
|
+
<div class="section-description">Configuration options arranged in a responsive grid layout.</div>
|
|
149046
|
+
|
|
149047
|
+
<dees-form>
|
|
149048
|
+
<div class="settings-grid">
|
|
149049
|
+
<dees-input-multitoggle
|
|
149050
|
+
.label=${"Auto-Save"}
|
|
149051
|
+
.type=${"boolean"}
|
|
149052
|
+
.booleanTrueName=${"Enabled"}
|
|
149053
|
+
.booleanFalseName=${"Disabled"}
|
|
149054
|
+
.selectedOption=${"Enabled"}
|
|
149055
|
+
></dees-input-multitoggle>
|
|
149056
|
+
|
|
149057
|
+
<dees-input-multitoggle
|
|
149058
|
+
.label=${"Language"}
|
|
149059
|
+
.options=${["English", "German", "French", "Spanish"]}
|
|
149060
|
+
.selectedOption=${"English"}
|
|
149061
|
+
></dees-input-multitoggle>
|
|
149062
|
+
|
|
149063
|
+
<dees-input-multitoggle
|
|
149064
|
+
.label=${"Quality"}
|
|
149065
|
+
.options=${["Low", "Medium", "High", "Ultra"]}
|
|
149066
|
+
.selectedOption=${"High"}
|
|
149067
|
+
></dees-input-multitoggle>
|
|
149068
|
+
|
|
149069
|
+
<dees-input-multitoggle
|
|
149070
|
+
.label=${"Privacy"}
|
|
149071
|
+
.type=${"boolean"}
|
|
149072
|
+
.booleanTrueName=${"Private"}
|
|
149073
|
+
.booleanFalseName=${"Public"}
|
|
149074
|
+
.selectedOption=${"Private"}
|
|
149075
|
+
></dees-input-multitoggle>
|
|
149076
|
+
</div>
|
|
149077
|
+
</dees-form>
|
|
149062
149078
|
</div>
|
|
149063
149079
|
|
|
149064
149080
|
<div class="section">
|
|
@@ -149354,7 +149370,7 @@ var demoFunc22 = /* @__PURE__ */ __name(() => b2`
|
|
|
149354
149370
|
|
|
149355
149371
|
<div class="demo-container">
|
|
149356
149372
|
<dees-panel .title=${"Basic Phone Input"} .subtitle=${"Automatic formatting for phone numbers"}>
|
|
149357
|
-
<
|
|
149373
|
+
<dees-form>
|
|
149358
149374
|
<dees-input-phone
|
|
149359
149375
|
.label=${"Phone Number"}
|
|
149360
149376
|
.infoText=${"Enter your phone number with country code"}
|
|
@@ -149368,27 +149384,29 @@ var demoFunc22 = /* @__PURE__ */ __name(() => b2`
|
|
|
149368
149384
|
.required=${true}
|
|
149369
149385
|
.placeholder=${"+1 (555) 000-0000"}
|
|
149370
149386
|
></dees-input-phone>
|
|
149371
|
-
</
|
|
149387
|
+
</dees-form>
|
|
149372
149388
|
</dees-panel>
|
|
149373
149389
|
|
|
149374
149390
|
<dees-panel .title=${"Horizontal Layout"} .subtitle=${"Phone inputs arranged horizontally"}>
|
|
149375
|
-
<
|
|
149376
|
-
<
|
|
149377
|
-
|
|
149378
|
-
|
|
149379
|
-
|
|
149380
|
-
|
|
149381
|
-
|
|
149382
|
-
|
|
149383
|
-
|
|
149384
|
-
|
|
149385
|
-
|
|
149386
|
-
|
|
149387
|
-
|
|
149391
|
+
<dees-form>
|
|
149392
|
+
<div class="horizontal-group">
|
|
149393
|
+
<dees-input-phone
|
|
149394
|
+
.label=${"Mobile"}
|
|
149395
|
+
.layoutMode=${"horizontal"}
|
|
149396
|
+
.value=${"4155551234"}
|
|
149397
|
+
></dees-input-phone>
|
|
149398
|
+
|
|
149399
|
+
<dees-input-phone
|
|
149400
|
+
.label=${"Office"}
|
|
149401
|
+
.layoutMode=${"horizontal"}
|
|
149402
|
+
.placeholder=${"+1 (800) 555-0000"}
|
|
149403
|
+
></dees-input-phone>
|
|
149404
|
+
</div>
|
|
149405
|
+
</dees-form>
|
|
149388
149406
|
</dees-panel>
|
|
149389
149407
|
|
|
149390
149408
|
<dees-panel .title=${"International Numbers"} .subtitle=${"Supports formatting for numbers with country codes"}>
|
|
149391
|
-
<
|
|
149409
|
+
<dees-form>
|
|
149392
149410
|
<dees-input-phone
|
|
149393
149411
|
.label=${"International Contact"}
|
|
149394
149412
|
.infoText=${"Automatically formats international numbers"}
|
|
@@ -149400,7 +149418,7 @@ var demoFunc22 = /* @__PURE__ */ __name(() => b2`
|
|
|
149400
149418
|
.value=${"911"}
|
|
149401
149419
|
.disabled=${true}
|
|
149402
149420
|
></dees-input-phone>
|
|
149403
|
-
</
|
|
149421
|
+
</dees-form>
|
|
149404
149422
|
</dees-panel>
|
|
149405
149423
|
|
|
149406
149424
|
<dees-panel .title=${"Form Integration"} .subtitle=${"Phone input as part of a contact form"}>
|
|
@@ -149632,7 +149650,7 @@ var demoFunc23 = /* @__PURE__ */ __name(() => b2`
|
|
|
149632
149650
|
|
|
149633
149651
|
<div class="demo-container">
|
|
149634
149652
|
<dees-panel .title=${"Basic Toggle"} .subtitle=${"Simple on/off toggle switch with drag support"}>
|
|
149635
|
-
<
|
|
149653
|
+
<dees-form>
|
|
149636
149654
|
<dees-input-toggle
|
|
149637
149655
|
.label=${"Enable feature"}
|
|
149638
149656
|
.value=${false}
|
|
@@ -149651,12 +149669,12 @@ var demoFunc23 = /* @__PURE__ */ __name(() => b2`
|
|
|
149651
149669
|
.description=${"This toggle has additional helper text explaining its purpose"}
|
|
149652
149670
|
.key=${"withDesc"}
|
|
149653
149671
|
></dees-input-toggle>
|
|
149654
|
-
</
|
|
149672
|
+
</dees-form>
|
|
149655
149673
|
<p class="drag-hint">Tip: You can drag the toggle knob to switch states</p>
|
|
149656
149674
|
</dees-panel>
|
|
149657
149675
|
|
|
149658
149676
|
<dees-panel .title=${"Toggle States"} .subtitle=${"Different toggle states and configurations"}>
|
|
149659
|
-
<
|
|
149677
|
+
<dees-form>
|
|
149660
149678
|
<dees-input-toggle
|
|
149661
149679
|
.label=${"Default (off)"}
|
|
149662
149680
|
.value=${false}
|
|
@@ -149685,42 +149703,44 @@ var demoFunc23 = /* @__PURE__ */ __name(() => b2`
|
|
|
149685
149703
|
.required=${true}
|
|
149686
149704
|
.description=${"This toggle cannot be turned off"}
|
|
149687
149705
|
></dees-input-toggle>
|
|
149688
|
-
</
|
|
149706
|
+
</dees-form>
|
|
149689
149707
|
</dees-panel>
|
|
149690
149708
|
|
|
149691
149709
|
<dees-panel .title=${"Horizontal Layout"} .subtitle=${"Toggles arranged horizontally for compact interfaces"}>
|
|
149692
|
-
<
|
|
149693
|
-
<
|
|
149694
|
-
|
|
149695
|
-
|
|
149696
|
-
|
|
149697
|
-
|
|
149710
|
+
<dees-form>
|
|
149711
|
+
<div class="horizontal-toggles">
|
|
149712
|
+
<dees-input-toggle
|
|
149713
|
+
.label=${"WiFi"}
|
|
149714
|
+
.value=${true}
|
|
149715
|
+
.layoutMode=${"horizontal"}
|
|
149716
|
+
></dees-input-toggle>
|
|
149698
149717
|
|
|
149699
|
-
|
|
149700
|
-
|
|
149701
|
-
|
|
149702
|
-
|
|
149703
|
-
|
|
149718
|
+
<dees-input-toggle
|
|
149719
|
+
.label=${"Bluetooth"}
|
|
149720
|
+
.value=${false}
|
|
149721
|
+
.layoutMode=${"horizontal"}
|
|
149722
|
+
></dees-input-toggle>
|
|
149704
149723
|
|
|
149705
|
-
|
|
149706
|
-
|
|
149707
|
-
|
|
149708
|
-
|
|
149709
|
-
|
|
149724
|
+
<dees-input-toggle
|
|
149725
|
+
.label=${"GPS"}
|
|
149726
|
+
.value=${true}
|
|
149727
|
+
.layoutMode=${"horizontal"}
|
|
149728
|
+
></dees-input-toggle>
|
|
149710
149729
|
|
|
149711
|
-
|
|
149712
|
-
|
|
149713
|
-
|
|
149714
|
-
|
|
149715
|
-
|
|
149716
|
-
|
|
149730
|
+
<dees-input-toggle
|
|
149731
|
+
.label=${"NFC"}
|
|
149732
|
+
.value=${false}
|
|
149733
|
+
.layoutMode=${"horizontal"}
|
|
149734
|
+
></dees-input-toggle>
|
|
149735
|
+
</div>
|
|
149736
|
+
</dees-form>
|
|
149717
149737
|
</dees-panel>
|
|
149718
149738
|
|
|
149719
149739
|
<dees-panel .title=${"Settings Example"} .subtitle=${"Toggles in a typical settings context"}>
|
|
149720
149740
|
<div class="settings-section">
|
|
149721
149741
|
<h4 class="section-title">Notification Settings</h4>
|
|
149722
149742
|
|
|
149723
|
-
<
|
|
149743
|
+
<dees-form>
|
|
149724
149744
|
<dees-input-toggle
|
|
149725
149745
|
.label=${"Push notifications"}
|
|
149726
149746
|
.value=${true}
|
|
@@ -149748,7 +149768,7 @@ var demoFunc23 = /* @__PURE__ */ __name(() => b2`
|
|
|
149748
149768
|
.description=${"Vibrate for notifications"}
|
|
149749
149769
|
.key=${"vibration"}
|
|
149750
149770
|
></dees-input-toggle>
|
|
149751
|
-
</
|
|
149771
|
+
</dees-form>
|
|
149752
149772
|
</div>
|
|
149753
149773
|
</dees-panel>
|
|
149754
149774
|
|
|
@@ -149759,7 +149779,7 @@ var demoFunc23 = /* @__PURE__ */ __name(() => b2`
|
|
|
149759
149779
|
</div>
|
|
149760
149780
|
|
|
149761
149781
|
<div class="feature-toggles">
|
|
149762
|
-
<
|
|
149782
|
+
<dees-form>
|
|
149763
149783
|
<dees-input-toggle
|
|
149764
149784
|
.label=${"Dark Mode"}
|
|
149765
149785
|
.value=${true}
|
|
@@ -149789,12 +149809,12 @@ var demoFunc23 = /* @__PURE__ */ __name(() => b2`
|
|
|
149789
149809
|
.value=${false}
|
|
149790
149810
|
.key=${"beta"}
|
|
149791
149811
|
></dees-input-toggle>
|
|
149792
|
-
</
|
|
149812
|
+
</dees-form>
|
|
149793
149813
|
</div>
|
|
149794
149814
|
</dees-panel>
|
|
149795
149815
|
|
|
149796
149816
|
<dees-panel .title=${"Interactive Example"} .subtitle=${"Toggle to see value changes in real-time"}>
|
|
149797
|
-
<
|
|
149817
|
+
<dees-form>
|
|
149798
149818
|
<dees-input-toggle
|
|
149799
149819
|
.label=${"Airplane mode"}
|
|
149800
149820
|
.value=${false}
|
|
@@ -149816,7 +149836,7 @@ var demoFunc23 = /* @__PURE__ */ __name(() => b2`
|
|
|
149816
149836
|
}
|
|
149817
149837
|
}}
|
|
149818
149838
|
></dees-input-toggle>
|
|
149819
|
-
</
|
|
149839
|
+
</dees-form>
|
|
149820
149840
|
|
|
149821
149841
|
<div class="interactive-section">
|
|
149822
149842
|
<div id="airplane-output" class="output-text">Airplane mode: OFF</div>
|
|
@@ -150193,7 +150213,7 @@ var demoFunc24 = /* @__PURE__ */ __name(() => b2`
|
|
|
150193
150213
|
|
|
150194
150214
|
<div class="demo-container">
|
|
150195
150215
|
<dees-panel .title=${"Basic Type List"} .subtitle=${"Add and remove items from a list"}>
|
|
150196
|
-
<
|
|
150216
|
+
<dees-form>
|
|
150197
150217
|
<dees-input-typelist
|
|
150198
150218
|
.label=${"Tags"}
|
|
150199
150219
|
.infoText=${"Add tags by typing and pressing Enter"}
|
|
@@ -150206,11 +150226,11 @@ var demoFunc24 = /* @__PURE__ */ __name(() => b2`
|
|
|
150206
150226
|
.infoText=${"Add email addresses of team members"}
|
|
150207
150227
|
.value=${["alice@example.com", "bob@example.com"]}
|
|
150208
150228
|
></dees-input-typelist>
|
|
150209
|
-
</
|
|
150229
|
+
</dees-form>
|
|
150210
150230
|
</dees-panel>
|
|
150211
150231
|
|
|
150212
150232
|
<dees-panel .title=${"Skills & Keywords"} .subtitle=${"Manage lists of skills and keywords"}>
|
|
150213
|
-
<
|
|
150233
|
+
<dees-form>
|
|
150214
150234
|
<dees-input-typelist
|
|
150215
150235
|
.label=${"Your Skills"}
|
|
150216
150236
|
.infoText=${"List your professional skills"}
|
|
@@ -150218,23 +150238,23 @@ var demoFunc24 = /* @__PURE__ */ __name(() => b2`
|
|
|
150218
150238
|
></dees-input-typelist>
|
|
150219
150239
|
|
|
150220
150240
|
<div class="horizontal-group">
|
|
150221
|
-
|
|
150222
|
-
|
|
150223
|
-
|
|
150224
|
-
|
|
150225
|
-
|
|
150226
|
-
|
|
150227
|
-
|
|
150228
|
-
|
|
150229
|
-
|
|
150230
|
-
|
|
150231
|
-
|
|
150232
|
-
|
|
150233
|
-
</
|
|
150241
|
+
<dees-input-typelist
|
|
150242
|
+
.label=${"Categories"}
|
|
150243
|
+
.layoutMode=${"horizontal"}
|
|
150244
|
+
.value=${["Technology", "Design", "Business"]}
|
|
150245
|
+
></dees-input-typelist>
|
|
150246
|
+
|
|
150247
|
+
<dees-input-typelist
|
|
150248
|
+
.label=${"Keywords"}
|
|
150249
|
+
.layoutMode=${"horizontal"}
|
|
150250
|
+
.value=${["innovation", "startup", "growth"]}
|
|
150251
|
+
></dees-input-typelist>
|
|
150252
|
+
</div>
|
|
150253
|
+
</dees-form>
|
|
150234
150254
|
</dees-panel>
|
|
150235
150255
|
|
|
150236
150256
|
<dees-panel .title=${"Required & Disabled States"} .subtitle=${"Different input states for validation"}>
|
|
150237
|
-
<
|
|
150257
|
+
<dees-form>
|
|
150238
150258
|
<dees-input-typelist
|
|
150239
150259
|
.label=${"Project Dependencies"}
|
|
150240
150260
|
.infoText=${"List all required npm packages"}
|
|
@@ -150248,7 +150268,7 @@ var demoFunc24 = /* @__PURE__ */ __name(() => b2`
|
|
|
150248
150268
|
.disabled=${true}
|
|
150249
150269
|
.value=${["system", "protected", "readonly"]}
|
|
150250
150270
|
></dees-input-typelist>
|
|
150251
|
-
</
|
|
150271
|
+
</dees-form>
|
|
150252
150272
|
</dees-panel>
|
|
150253
150273
|
|
|
150254
150274
|
<dees-panel .title=${"Article Publishing Form"} .subtitle=${"Complete form with tag management"}>
|
|
@@ -150484,7 +150504,7 @@ var DeesInputTypelist = _DeesInputTypelist;
|
|
|
150484
150504
|
// ts_web/elements/00group-input/dees-input-tags/dees-input-tags.demo.ts
|
|
150485
150505
|
init_dist_ts30();
|
|
150486
150506
|
var _a34;
|
|
150487
|
-
var demoFunc25 = /* @__PURE__ */ __name(() => b2(_a34 || (_a34 = __template(["\n <dees-demowrapper>\n <style>\n ", '\n </style>\n \n <div class="demo-container">\n <dees-panel .title=', " .subtitle=", ">\n <dees-input-tags\n .label=", "\n .placeholder=", "\n .value=", "\n .description=", "\n ></dees-input-tags>\n </dees-panel>\n\n <dees-panel .title=", " .subtitle=", ">\n <dees-input-tags\n .label=", "\n .placeholder=", "\n .suggestions=", "\n .value=", "\n .description=", "\n ></dees-input-tags>\n </dees-panel>\n\n <dees-panel .title=", " .subtitle=", '>\n <div class="grid-layout">\n
|
|
150507
|
+
var demoFunc25 = /* @__PURE__ */ __name(() => b2(_a34 || (_a34 = __template(["\n <dees-demowrapper>\n <style>\n ", '\n </style>\n \n <div class="demo-container">\n <dees-panel .title=', " .subtitle=", ">\n <dees-input-tags\n .label=", "\n .placeholder=", "\n .value=", "\n .description=", "\n ></dees-input-tags>\n </dees-panel>\n\n <dees-panel .title=", " .subtitle=", ">\n <dees-input-tags\n .label=", "\n .placeholder=", "\n .suggestions=", "\n .value=", "\n .description=", "\n ></dees-input-tags>\n </dees-panel>\n\n <dees-panel .title=", " .subtitle=", '>\n <dees-form>\n <div class="grid-layout">\n <dees-input-tags\n .label=', "\n .placeholder=", "\n .maxTags=", "\n .value=", "\n .description=", "\n ></dees-input-tags>\n\n <dees-input-tags\n .label=", "\n .placeholder=", "\n .maxTags=", "\n .suggestions=", "\n .value=", "\n .description=", "\n ></dees-input-tags>\n </div>\n </dees-form>\n </dees-panel>\n\n <dees-panel .title=", " .subtitle=", ">\n <dees-input-tags\n .label=", "\n .placeholder=", "\n .required=", "\n .description=", "\n ></dees-input-tags>\n </dees-panel>\n\n <dees-panel .title=", " .subtitle=", ">\n <dees-input-tags\n .label=", "\n .value=", "\n .disabled=", "\n .description=", "\n ></dees-input-tags>\n </dees-panel>\n\n <dees-panel .title=", " .subtitle=", ">\n <dees-form>\n <dees-input-text\n .label=", "\n .placeholder=", "\n .required=", "\n .key=", '\n ></dees-input-text>\n \n <div class="grid-layout">\n <dees-input-tags\n .label=', "\n .placeholder=", "\n .required=", "\n .key=", "\n .suggestions=", "\n ></dees-input-tags>\n \n <dees-input-tags\n .label=", "\n .placeholder=", "\n .key=", "\n .maxTags=", "\n .suggestions=", "\n ></dees-input-tags>\n </div>\n \n <dees-input-text\n .label=", "\n .inputType=", "\n .placeholder=", "\n .key=", "\n ></dees-input-text>\n \n <dees-form-submit .text=", "></dees-form-submit>\n </dees-form>\n </dees-panel>\n\n <dees-panel .title=", " .subtitle=", '>\n <dees-input-tags\n id="interactive-tags"\n .label=', "\n .placeholder=", "\n .suggestions=", "\n @change=", `
|
|
150488
150508
|
></dees-input-tags>
|
|
150489
150509
|
|
|
150490
150510
|
<div class="tag-preview" id="tags-preview">
|
|
@@ -151173,25 +151193,27 @@ var demoFunc26 = /* @__PURE__ */ __name(() => b2`
|
|
|
151173
151193
|
</dees-panel>
|
|
151174
151194
|
|
|
151175
151195
|
<dees-panel .title=${"3. Validation & Constraints"} .subtitle=${"Lists with minimum/maximum items and duplicate prevention"}>
|
|
151176
|
-
<
|
|
151177
|
-
<
|
|
151178
|
-
|
|
151179
|
-
|
|
151180
|
-
|
|
151181
|
-
|
|
151182
|
-
|
|
151183
|
-
|
|
151184
|
-
|
|
151185
|
-
|
|
151186
|
-
|
|
151187
|
-
|
|
151188
|
-
|
|
151189
|
-
|
|
151190
|
-
|
|
151191
|
-
|
|
151192
|
-
|
|
151193
|
-
|
|
151194
|
-
|
|
151196
|
+
<dees-form>
|
|
151197
|
+
<div class="grid-layout">
|
|
151198
|
+
<dees-input-list
|
|
151199
|
+
.label=${"Team Members (Min 2, Max 5)"}
|
|
151200
|
+
.placeholder=${"Add team member..."}
|
|
151201
|
+
.minItems=${2}
|
|
151202
|
+
.maxItems=${5}
|
|
151203
|
+
.value=${["Alice", "Bob"]}
|
|
151204
|
+
.required=${true}
|
|
151205
|
+
.description=${"Add 2-5 team members"}
|
|
151206
|
+
></dees-input-list>
|
|
151207
|
+
|
|
151208
|
+
<dees-input-list
|
|
151209
|
+
.label=${"Unique Tags (No Duplicates)"}
|
|
151210
|
+
.placeholder=${"Add unique tag..."}
|
|
151211
|
+
.allowDuplicates=${false}
|
|
151212
|
+
.value=${["frontend", "backend", "database"]}
|
|
151213
|
+
.description=${"Duplicate items are not allowed"}
|
|
151214
|
+
></dees-input-list>
|
|
151215
|
+
</div>
|
|
151216
|
+
</dees-form>
|
|
151195
151217
|
</dees-panel>
|
|
151196
151218
|
|
|
151197
151219
|
<dees-panel .title=${"4. Delete Confirmation"} .subtitle=${"Require confirmation before deleting items"}>
|
|
@@ -201426,7 +201448,7 @@ init_group_runtime();
|
|
|
201426
201448
|
// ts_web/00_commitinfo_data.ts
|
|
201427
201449
|
var commitinfo = {
|
|
201428
201450
|
name: "@design.estate/dees-catalog",
|
|
201429
|
-
version: "3.76.
|
|
201451
|
+
version: "3.76.1",
|
|
201430
201452
|
description: "A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript."
|
|
201431
201453
|
};
|
|
201432
201454
|
export {
|
|
@@ -203391,4 +203413,4 @@ ibantools/jsnext/ibantools.js:
|
|
|
203391
203413
|
* @preferred
|
|
203392
203414
|
*)
|
|
203393
203415
|
*/
|
|
203394
|
-
//# sourceMappingURL=bundle-
|
|
203416
|
+
//# sourceMappingURL=bundle-1776020698391.js.map
|