@design.estate/dees-catalog 3.42.2 → 3.43.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.
- package/dist_bundle/bundle.js +317 -247
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/dist_ts_web/elements/00group-form/dees-form/dees-form.d.ts +2 -1
- package/dist_ts_web/elements/00group-form/dees-form/dees-form.js +18 -7
- package/dist_ts_web/elements/00group-input/dees-input-base/dees-input-base.js +2 -19
- package/dist_ts_web/elements/00group-input/dees-input-dropdown/dees-input-dropdown.demo.js +33 -23
- package/dist_ts_web/elements/00group-input/dees-input-iban/dees-input-iban.demo.js +33 -23
- package/dist_ts_web/elements/00group-input/dees-input-phone/dees-input-phone.demo.js +34 -24
- package/dist_ts_web/elements/00group-input/dees-input-quantityselector/dees-input-quantityselector.demo.js +35 -25
- package/dist_ts_web/elements/00group-input/dees-input-radiogroup/dees-input-radiogroup.demo.js +45 -35
- package/dist_ts_web/elements/00group-input/dees-input-text/dees-input-text.demo.js +81 -67
- package/dist_ts_web/elements/00group-input/dees-input-typelist/dees-input-typelist.demo.js +44 -32
- package/dist_watch/bundle.js +1566 -1471
- package/dist_watch/bundle.js.map +3 -3
- package/package.json +1 -1
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/elements/00group-form/dees-form/dees-form.ts +18 -5
- package/ts_web/elements/00group-input/dees-input-base/dees-input-base.ts +1 -18
- package/ts_web/elements/00group-input/dees-input-dropdown/dees-input-dropdown.demo.ts +52 -42
- package/ts_web/elements/00group-input/dees-input-iban/dees-input-iban.demo.ts +32 -22
- package/ts_web/elements/00group-input/dees-input-phone/dees-input-phone.demo.ts +33 -23
- package/ts_web/elements/00group-input/dees-input-quantityselector/dees-input-quantityselector.demo.ts +34 -24
- package/ts_web/elements/00group-input/dees-input-radiogroup/dees-input-radiogroup.demo.ts +48 -38
- package/ts_web/elements/00group-input/dees-input-text/dees-input-text.demo.ts +80 -66
- package/ts_web/elements/00group-input/dees-input-typelist/dees-input-typelist.demo.ts +43 -31
package/dist_bundle/bundle.js
CHANGED
|
@@ -94121,37 +94121,20 @@ var DeesInputBase = class extends (_a12 = DeesElement, _layoutMode_dec = [n5({ t
|
|
|
94121
94121
|
/* CSS Variables for consistent spacing */
|
|
94122
94122
|
:host {
|
|
94123
94123
|
--dees-input-spacing-unit: 8px;
|
|
94124
|
-
--dees-input-vertical-gap: calc(var(--dees-input-spacing-unit) * 2); /* 16px */
|
|
94125
|
-
--dees-input-horizontal-gap: calc(var(--dees-input-spacing-unit) * 2); /* 16px */
|
|
94126
94124
|
--dees-input-label-gap: var(--dees-input-spacing-unit); /* 8px */
|
|
94127
94125
|
}
|
|
94128
94126
|
|
|
94129
|
-
/* Default
|
|
94127
|
+
/* Default block display with no margins - spacing is container-driven */
|
|
94130
94128
|
:host {
|
|
94131
94129
|
display: block;
|
|
94132
94130
|
margin: 0;
|
|
94133
|
-
margin-bottom: var(--dees-input-vertical-gap);
|
|
94134
|
-
}
|
|
94135
|
-
|
|
94136
|
-
/* Last child in container should have no bottom margin */
|
|
94137
|
-
:host(:last-child) {
|
|
94138
|
-
margin-bottom: 0;
|
|
94139
94131
|
}
|
|
94140
94132
|
|
|
94141
94133
|
/* Horizontal layout mode - activated by attribute */
|
|
94142
94134
|
:host([layout-mode="horizontal"]) {
|
|
94143
94135
|
display: inline-block;
|
|
94144
|
-
margin: 0;
|
|
94145
|
-
margin-right: var(--dees-input-horizontal-gap);
|
|
94146
|
-
margin-bottom: 0;
|
|
94147
94136
|
}
|
|
94148
94137
|
|
|
94149
|
-
:host([layout-mode="horizontal"]:last-child) {
|
|
94150
|
-
margin-right: 0;
|
|
94151
|
-
}
|
|
94152
|
-
|
|
94153
|
-
/* Auto mode - inherit from parent dees-form if present */
|
|
94154
|
-
|
|
94155
94138
|
/* Label position variations */
|
|
94156
94139
|
:host([label-position="left"]) .input-wrapper {
|
|
94157
94140
|
display: grid;
|
|
@@ -98082,6 +98065,12 @@ var demoFunc12 = () => b2`
|
|
|
98082
98065
|
flex-wrap: wrap;
|
|
98083
98066
|
}
|
|
98084
98067
|
|
|
98068
|
+
.input-group {
|
|
98069
|
+
display: flex;
|
|
98070
|
+
flex-direction: column;
|
|
98071
|
+
gap: 16px;
|
|
98072
|
+
}
|
|
98073
|
+
|
|
98085
98074
|
.grid-layout {
|
|
98086
98075
|
display: grid;
|
|
98087
98076
|
grid-template-columns: 1fr 1fr;
|
|
@@ -98130,25 +98119,27 @@ var demoFunc12 = () => b2`
|
|
|
98130
98119
|
}
|
|
98131
98120
|
}}>
|
|
98132
98121
|
<dees-panel .title=${"Basic Text Inputs"} .subtitle=${"Standard text inputs with labels and descriptions"}>
|
|
98133
|
-
<
|
|
98134
|
-
|
|
98135
|
-
|
|
98136
|
-
|
|
98137
|
-
|
|
98138
|
-
|
|
98139
|
-
|
|
98140
|
-
|
|
98141
|
-
|
|
98142
|
-
|
|
98143
|
-
|
|
98144
|
-
|
|
98145
|
-
|
|
98146
|
-
|
|
98147
|
-
|
|
98148
|
-
|
|
98149
|
-
|
|
98150
|
-
|
|
98151
|
-
|
|
98122
|
+
<div class="input-group">
|
|
98123
|
+
<dees-input-text
|
|
98124
|
+
.label=${"Username"}
|
|
98125
|
+
.value=${"johndoe"}
|
|
98126
|
+
.key=${"username"}
|
|
98127
|
+
></dees-input-text>
|
|
98128
|
+
|
|
98129
|
+
<dees-input-text
|
|
98130
|
+
.label=${"Email Address"}
|
|
98131
|
+
.value=${"john@example.com"}
|
|
98132
|
+
.description=${"We will never share your email with anyone"}
|
|
98133
|
+
.key=${"email"}
|
|
98134
|
+
></dees-input-text>
|
|
98135
|
+
|
|
98136
|
+
<dees-input-text
|
|
98137
|
+
.label=${"Password"}
|
|
98138
|
+
.isPasswordBool=${true}
|
|
98139
|
+
.value=${"secret123"}
|
|
98140
|
+
.key=${"password"}
|
|
98141
|
+
></dees-input-text>
|
|
98142
|
+
</div>
|
|
98152
98143
|
</dees-panel>
|
|
98153
98144
|
</dees-demowrapper>
|
|
98154
98145
|
|
|
@@ -98208,31 +98199,33 @@ var demoFunc12 = () => b2`
|
|
|
98208
98199
|
}
|
|
98209
98200
|
}}>
|
|
98210
98201
|
<dees-panel .title=${"Label Positions"} .subtitle=${"Different label positioning options for various layouts"}>
|
|
98211
|
-
<
|
|
98212
|
-
|
|
98213
|
-
|
|
98214
|
-
|
|
98215
|
-
|
|
98216
|
-
|
|
98217
|
-
|
|
98218
|
-
|
|
98219
|
-
|
|
98220
|
-
|
|
98221
|
-
|
|
98222
|
-
|
|
98223
|
-
|
|
98202
|
+
<div class="input-group">
|
|
98203
|
+
<dees-input-text
|
|
98204
|
+
.label=${"Label on Top (Default)"}
|
|
98205
|
+
.value=${"Standard layout"}
|
|
98206
|
+
.labelPosition=${"top"}
|
|
98207
|
+
></dees-input-text>
|
|
98208
|
+
|
|
98209
|
+
<dees-input-text
|
|
98210
|
+
.label=${"Label on Left"}
|
|
98211
|
+
.value=${"Inline label"}
|
|
98212
|
+
.labelPosition=${"left"}
|
|
98213
|
+
></dees-input-text>
|
|
98214
|
+
|
|
98215
|
+
<div class="grid-layout">
|
|
98224
98216
|
<dees-input-text
|
|
98225
98217
|
.label=${"City"}
|
|
98226
98218
|
.value=${"New York"}
|
|
98227
98219
|
.labelPosition=${"left"}
|
|
98228
98220
|
></dees-input-text>
|
|
98229
98221
|
|
|
98230
|
-
<dees-input-text
|
|
98231
|
-
.label=${"ZIP Code"}
|
|
98232
|
-
.value=${"10001"}
|
|
98222
|
+
<dees-input-text
|
|
98223
|
+
.label=${"ZIP Code"}
|
|
98224
|
+
.value=${"10001"}
|
|
98233
98225
|
.labelPosition=${"left"}
|
|
98234
98226
|
></dees-input-text>
|
|
98235
98227
|
</div>
|
|
98228
|
+
</div>
|
|
98236
98229
|
</dees-panel>
|
|
98237
98230
|
</dees-demowrapper>
|
|
98238
98231
|
|
|
@@ -98263,24 +98256,26 @@ var demoFunc12 = () => b2`
|
|
|
98263
98256
|
}
|
|
98264
98257
|
}}>
|
|
98265
98258
|
<dees-panel .title=${"Validation & States"} .subtitle=${"Different validation states and input configurations"}>
|
|
98266
|
-
<
|
|
98267
|
-
|
|
98268
|
-
|
|
98269
|
-
|
|
98270
|
-
|
|
98271
|
-
|
|
98272
|
-
|
|
98273
|
-
|
|
98274
|
-
|
|
98275
|
-
|
|
98276
|
-
|
|
98277
|
-
|
|
98278
|
-
|
|
98279
|
-
|
|
98280
|
-
|
|
98281
|
-
|
|
98282
|
-
|
|
98283
|
-
|
|
98259
|
+
<div class="input-group">
|
|
98260
|
+
<dees-input-text
|
|
98261
|
+
.label=${"Required Field"}
|
|
98262
|
+
.required=${true}
|
|
98263
|
+
.key=${"requiredField"}
|
|
98264
|
+
></dees-input-text>
|
|
98265
|
+
|
|
98266
|
+
<dees-input-text
|
|
98267
|
+
.label=${"Disabled Field"}
|
|
98268
|
+
.value=${"Cannot edit this"}
|
|
98269
|
+
.disabled=${true}
|
|
98270
|
+
></dees-input-text>
|
|
98271
|
+
|
|
98272
|
+
<dees-input-text
|
|
98273
|
+
.label=${"Field with Error"}
|
|
98274
|
+
.value=${"invalid@"}
|
|
98275
|
+
.validationText=${"Please enter a valid email address"}
|
|
98276
|
+
.validationState=${"invalid"}
|
|
98277
|
+
></dees-input-text>
|
|
98278
|
+
</div>
|
|
98284
98279
|
</dees-panel>
|
|
98285
98280
|
</dees-demowrapper>
|
|
98286
98281
|
|
|
@@ -98303,19 +98298,21 @@ var demoFunc12 = () => b2`
|
|
|
98303
98298
|
});
|
|
98304
98299
|
}}>
|
|
98305
98300
|
<dees-panel .title=${"Advanced Features"} .subtitle=${"Password visibility toggle and other advanced features"}>
|
|
98306
|
-
<
|
|
98307
|
-
|
|
98308
|
-
|
|
98309
|
-
|
|
98310
|
-
|
|
98311
|
-
|
|
98312
|
-
|
|
98313
|
-
|
|
98314
|
-
|
|
98315
|
-
|
|
98316
|
-
|
|
98317
|
-
|
|
98318
|
-
|
|
98301
|
+
<div class="input-group">
|
|
98302
|
+
<dees-input-text
|
|
98303
|
+
.label=${"Password with Toggle"}
|
|
98304
|
+
.isPasswordBool=${true}
|
|
98305
|
+
.value=${"mySecurePassword123"}
|
|
98306
|
+
.description=${"Click the eye icon to show/hide password"}
|
|
98307
|
+
></dees-input-text>
|
|
98308
|
+
|
|
98309
|
+
<dees-input-text
|
|
98310
|
+
.label=${"API Key"}
|
|
98311
|
+
.isPasswordBool=${true}
|
|
98312
|
+
.value=${"sk-1234567890abcdef"}
|
|
98313
|
+
.description=${"Keep this key secure and never share it"}
|
|
98314
|
+
></dees-input-text>
|
|
98315
|
+
</div>
|
|
98319
98316
|
</dees-panel>
|
|
98320
98317
|
</dees-demowrapper>
|
|
98321
98318
|
|
|
@@ -99257,6 +99254,12 @@ var demoFunc14 = () => b2`
|
|
|
99257
99254
|
margin: 0 auto;
|
|
99258
99255
|
}
|
|
99259
99256
|
|
|
99257
|
+
.input-group {
|
|
99258
|
+
display: flex;
|
|
99259
|
+
flex-direction: column;
|
|
99260
|
+
gap: 16px;
|
|
99261
|
+
}
|
|
99262
|
+
|
|
99260
99263
|
.shopping-grid {
|
|
99261
99264
|
display: grid;
|
|
99262
99265
|
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
|
@@ -99303,17 +99306,19 @@ var demoFunc14 = () => b2`
|
|
|
99303
99306
|
|
|
99304
99307
|
<div class="demo-container">
|
|
99305
99308
|
<dees-panel .title=${"Basic Quantity Selector"} .subtitle=${"Simple quantity input with increment/decrement buttons"}>
|
|
99306
|
-
<
|
|
99307
|
-
|
|
99308
|
-
|
|
99309
|
-
|
|
99310
|
-
|
|
99311
|
-
|
|
99312
|
-
|
|
99313
|
-
|
|
99314
|
-
|
|
99315
|
-
|
|
99316
|
-
|
|
99309
|
+
<div class="input-group">
|
|
99310
|
+
<dees-input-quantityselector
|
|
99311
|
+
.label=${"Quantity"}
|
|
99312
|
+
.description=${"Select the desired quantity"}
|
|
99313
|
+
.value=${1}
|
|
99314
|
+
></dees-input-quantityselector>
|
|
99315
|
+
|
|
99316
|
+
<dees-input-quantityselector
|
|
99317
|
+
.label=${"Items in Cart"}
|
|
99318
|
+
.description=${"Adjust the quantity of items"}
|
|
99319
|
+
.value=${3}
|
|
99320
|
+
></dees-input-quantityselector>
|
|
99321
|
+
</div>
|
|
99317
99322
|
</dees-panel>
|
|
99318
99323
|
|
|
99319
99324
|
<dees-panel .title=${"Shopping Cart"} .subtitle=${"Modern e-commerce product cards with interactive quantity selectors"} .runAfterRender=${async (elementArg) => {
|
|
@@ -99405,19 +99410,21 @@ var demoFunc14 = () => b2`
|
|
|
99405
99410
|
</dees-panel>
|
|
99406
99411
|
|
|
99407
99412
|
<dees-panel .title=${"Required & Disabled States"} .subtitle=${"Different states for validation and restrictions"}>
|
|
99408
|
-
<
|
|
99409
|
-
|
|
99410
|
-
|
|
99411
|
-
|
|
99412
|
-
|
|
99413
|
-
|
|
99414
|
-
|
|
99415
|
-
|
|
99416
|
-
|
|
99417
|
-
|
|
99418
|
-
|
|
99419
|
-
|
|
99420
|
-
|
|
99413
|
+
<div class="input-group">
|
|
99414
|
+
<dees-input-quantityselector
|
|
99415
|
+
.label=${"Number of Licenses"}
|
|
99416
|
+
.description=${"Select how many licenses you need"}
|
|
99417
|
+
.required=${true}
|
|
99418
|
+
.value=${1}
|
|
99419
|
+
></dees-input-quantityselector>
|
|
99420
|
+
|
|
99421
|
+
<dees-input-quantityselector
|
|
99422
|
+
.label=${"Fixed Quantity"}
|
|
99423
|
+
.description=${"This quantity cannot be changed"}
|
|
99424
|
+
.disabled=${true}
|
|
99425
|
+
.value=${5}
|
|
99426
|
+
></dees-input-quantityselector>
|
|
99427
|
+
</div>
|
|
99421
99428
|
</dees-panel>
|
|
99422
99429
|
|
|
99423
99430
|
<dees-panel .title=${"Order Form"} .subtitle=${"Complete order form with quantity selection"}>
|
|
@@ -99650,6 +99657,12 @@ var demoFunc15 = () => b2`
|
|
|
99650
99657
|
margin-bottom: 0;
|
|
99651
99658
|
}
|
|
99652
99659
|
|
|
99660
|
+
.input-group {
|
|
99661
|
+
display: flex;
|
|
99662
|
+
flex-direction: column;
|
|
99663
|
+
gap: 16px;
|
|
99664
|
+
}
|
|
99665
|
+
|
|
99653
99666
|
.demo-grid {
|
|
99654
99667
|
display: grid;
|
|
99655
99668
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
@@ -99687,20 +99700,22 @@ var demoFunc15 = () => b2`
|
|
|
99687
99700
|
</dees-panel>
|
|
99688
99701
|
|
|
99689
99702
|
<dees-panel .title=${"2. Horizontal Layout"} .subtitle=${"Radio groups with horizontal arrangement"}>
|
|
99690
|
-
<
|
|
99691
|
-
|
|
99692
|
-
|
|
99693
|
-
|
|
99694
|
-
|
|
99695
|
-
|
|
99696
|
-
|
|
99697
|
-
|
|
99698
|
-
|
|
99699
|
-
|
|
99700
|
-
|
|
99701
|
-
|
|
99702
|
-
|
|
99703
|
-
|
|
99703
|
+
<div class="input-group">
|
|
99704
|
+
<dees-input-radiogroup
|
|
99705
|
+
.label=${"Do you agree with the terms?"}
|
|
99706
|
+
.options=${["Yes", "No", "Maybe"]}
|
|
99707
|
+
.direction=${"horizontal"}
|
|
99708
|
+
.selectedOption=${"Yes"}
|
|
99709
|
+
></dees-input-radiogroup>
|
|
99710
|
+
|
|
99711
|
+
<dees-input-radiogroup
|
|
99712
|
+
.label=${"Experience Level"}
|
|
99713
|
+
.options=${["Beginner", "Intermediate", "Expert"]}
|
|
99714
|
+
.direction=${"horizontal"}
|
|
99715
|
+
.selectedOption=${"Intermediate"}
|
|
99716
|
+
.description=${"Select your experience level with web development"}
|
|
99717
|
+
></dees-input-radiogroup>
|
|
99718
|
+
</div>
|
|
99704
99719
|
</dees-panel>
|
|
99705
99720
|
|
|
99706
99721
|
<dees-panel .title=${"3. Advanced Options"} .subtitle=${"Using object format with keys and payloads"}>
|
|
@@ -99759,30 +99774,32 @@ var demoFunc15 = () => b2`
|
|
|
99759
99774
|
</dees-panel>
|
|
99760
99775
|
|
|
99761
99776
|
<dees-panel .title=${"6. Settings Example"} .subtitle=${"Common patterns in application settings"}>
|
|
99762
|
-
<
|
|
99763
|
-
|
|
99764
|
-
|
|
99777
|
+
<div class="input-group">
|
|
99778
|
+
<dees-input-radiogroup
|
|
99779
|
+
.label=${"Theme Preference"}
|
|
99780
|
+
.options=${[
|
|
99765
99781
|
{ option: "Light Theme", key: "light", payload: "light" },
|
|
99766
99782
|
{ option: "Dark Theme", key: "dark", payload: "dark" },
|
|
99767
99783
|
{ option: "System Default", key: "system", payload: "auto" }
|
|
99768
99784
|
]}
|
|
99769
|
-
|
|
99770
|
-
|
|
99771
|
-
|
|
99772
|
-
|
|
99773
|
-
|
|
99774
|
-
|
|
99775
|
-
|
|
99776
|
-
|
|
99777
|
-
|
|
99778
|
-
|
|
99779
|
-
|
|
99780
|
-
|
|
99781
|
-
|
|
99782
|
-
|
|
99783
|
-
|
|
99784
|
-
|
|
99785
|
-
|
|
99785
|
+
.selectedOption=${"dark"}
|
|
99786
|
+
.description=${"Choose how the application should appear"}
|
|
99787
|
+
></dees-input-radiogroup>
|
|
99788
|
+
|
|
99789
|
+
<dees-input-radiogroup
|
|
99790
|
+
.label=${"Notification Frequency"}
|
|
99791
|
+
.options=${["All Notifications", "Important Only", "None"]}
|
|
99792
|
+
.selectedOption=${"Important Only"}
|
|
99793
|
+
.description=${"Control how often you receive notifications"}
|
|
99794
|
+
></dees-input-radiogroup>
|
|
99795
|
+
|
|
99796
|
+
<dees-input-radiogroup
|
|
99797
|
+
.label=${"Language"}
|
|
99798
|
+
.options=${["English", "German", "French", "Spanish", "Japanese"]}
|
|
99799
|
+
.selectedOption=${"English"}
|
|
99800
|
+
.direction=${"horizontal"}
|
|
99801
|
+
></dees-input-radiogroup>
|
|
99802
|
+
</div>
|
|
99786
99803
|
</dees-panel>
|
|
99787
99804
|
|
|
99788
99805
|
<dees-panel .title=${"7. Form Integration"} .subtitle=${"Works seamlessly with dees-form"}>
|
|
@@ -100348,6 +100365,12 @@ var demoFunc17 = () => b2`
|
|
|
100348
100365
|
flex-wrap: wrap;
|
|
100349
100366
|
}
|
|
100350
100367
|
|
|
100368
|
+
.input-group {
|
|
100369
|
+
display: flex;
|
|
100370
|
+
flex-direction: column;
|
|
100371
|
+
gap: 16px;
|
|
100372
|
+
}
|
|
100373
|
+
|
|
100351
100374
|
.spacer {
|
|
100352
100375
|
height: 200px;
|
|
100353
100376
|
display: flex;
|
|
@@ -100375,9 +100398,10 @@ var demoFunc17 = () => b2`
|
|
|
100375
100398
|
}
|
|
100376
100399
|
}}>
|
|
100377
100400
|
<dees-panel .title=${"1. Basic Dropdowns"} .subtitle=${"Standard dropdown with search functionality and various options"}>
|
|
100378
|
-
<
|
|
100379
|
-
|
|
100380
|
-
|
|
100401
|
+
<div class="input-group">
|
|
100402
|
+
<dees-input-dropdown
|
|
100403
|
+
.label=${"Select Country"}
|
|
100404
|
+
.options=${[
|
|
100381
100405
|
{ option: "United States", key: "us" },
|
|
100382
100406
|
{ option: "Canada", key: "ca" },
|
|
100383
100407
|
{ option: "Germany", key: "de" },
|
|
@@ -100387,18 +100411,19 @@ var demoFunc17 = () => b2`
|
|
|
100387
100411
|
{ option: "Japan", key: "jp" },
|
|
100388
100412
|
{ option: "Brazil", key: "br" }
|
|
100389
100413
|
]}
|
|
100390
|
-
|
|
100391
|
-
|
|
100392
|
-
|
|
100393
|
-
|
|
100394
|
-
|
|
100395
|
-
|
|
100414
|
+
.selectedOption=${{ option: "United States", key: "us" }}
|
|
100415
|
+
></dees-input-dropdown>
|
|
100416
|
+
|
|
100417
|
+
<dees-input-dropdown
|
|
100418
|
+
.label=${"Select Role"}
|
|
100419
|
+
.options=${[
|
|
100396
100420
|
{ option: "Administrator", key: "admin" },
|
|
100397
100421
|
{ option: "Editor", key: "editor" },
|
|
100398
100422
|
{ option: "Viewer", key: "viewer" },
|
|
100399
100423
|
{ option: "Guest", key: "guest" }
|
|
100400
100424
|
]}
|
|
100401
|
-
|
|
100425
|
+
></dees-input-dropdown>
|
|
100426
|
+
</div>
|
|
100402
100427
|
</dees-panel>
|
|
100403
100428
|
</dees-demowrapper>
|
|
100404
100429
|
|
|
@@ -100480,24 +100505,26 @@ var demoFunc17 = () => b2`
|
|
|
100480
100505
|
}
|
|
100481
100506
|
}}>
|
|
100482
100507
|
<dees-panel .title=${"4. States"} .subtitle=${"Different states and configurations"}>
|
|
100483
|
-
<
|
|
100484
|
-
|
|
100485
|
-
|
|
100486
|
-
|
|
100508
|
+
<div class="input-group">
|
|
100509
|
+
<dees-input-dropdown
|
|
100510
|
+
.label=${"Required Field"}
|
|
100511
|
+
.required=${true}
|
|
100512
|
+
.options=${[
|
|
100487
100513
|
{ option: "Option A", key: "a" },
|
|
100488
100514
|
{ option: "Option B", key: "b" },
|
|
100489
100515
|
{ option: "Option C", key: "c" }
|
|
100490
100516
|
]}
|
|
100491
|
-
|
|
100492
|
-
|
|
100493
|
-
|
|
100494
|
-
|
|
100495
|
-
|
|
100496
|
-
|
|
100517
|
+
></dees-input-dropdown>
|
|
100518
|
+
|
|
100519
|
+
<dees-input-dropdown
|
|
100520
|
+
.label=${"Disabled Dropdown"}
|
|
100521
|
+
.disabled=${true}
|
|
100522
|
+
.options=${[
|
|
100497
100523
|
{ option: "Cannot Select", key: "disabled" }
|
|
100498
100524
|
]}
|
|
100499
|
-
|
|
100500
|
-
|
|
100525
|
+
.selectedOption=${{ option: "Cannot Select", key: "disabled" }}
|
|
100526
|
+
></dees-input-dropdown>
|
|
100527
|
+
</div>
|
|
100501
100528
|
</dees-panel>
|
|
100502
100529
|
</dees-demowrapper>
|
|
100503
100530
|
|
|
@@ -103427,6 +103454,12 @@ var demoFunc19 = () => b2`
|
|
|
103427
103454
|
margin: 0 auto;
|
|
103428
103455
|
}
|
|
103429
103456
|
|
|
103457
|
+
.input-group {
|
|
103458
|
+
display: flex;
|
|
103459
|
+
flex-direction: column;
|
|
103460
|
+
gap: 16px;
|
|
103461
|
+
}
|
|
103462
|
+
|
|
103430
103463
|
.payment-group {
|
|
103431
103464
|
display: flex;
|
|
103432
103465
|
align-items: center;
|
|
@@ -103438,16 +103471,18 @@ var demoFunc19 = () => b2`
|
|
|
103438
103471
|
|
|
103439
103472
|
<div class="demo-container">
|
|
103440
103473
|
<dees-panel .title=${"Basic IBAN Input"} .subtitle=${"International Bank Account Number with automatic formatting"}>
|
|
103441
|
-
<
|
|
103442
|
-
|
|
103443
|
-
|
|
103444
|
-
|
|
103445
|
-
|
|
103446
|
-
|
|
103447
|
-
|
|
103448
|
-
|
|
103449
|
-
|
|
103450
|
-
|
|
103474
|
+
<div class="input-group">
|
|
103475
|
+
<dees-input-iban
|
|
103476
|
+
.label=${"Bank Account IBAN"}
|
|
103477
|
+
.description=${"Enter your International Bank Account Number"}
|
|
103478
|
+
></dees-input-iban>
|
|
103479
|
+
|
|
103480
|
+
<dees-input-iban
|
|
103481
|
+
.label=${"Verified IBAN"}
|
|
103482
|
+
.description=${"This IBAN has been verified"}
|
|
103483
|
+
.value=${"DE89370400440532013000"}
|
|
103484
|
+
></dees-input-iban>
|
|
103485
|
+
</div>
|
|
103451
103486
|
</dees-panel>
|
|
103452
103487
|
|
|
103453
103488
|
<dees-panel .title=${"Payment Information"} .subtitle=${"IBAN input with horizontal layout for payment forms"}>
|
|
@@ -103467,18 +103502,20 @@ var demoFunc19 = () => b2`
|
|
|
103467
103502
|
</dees-panel>
|
|
103468
103503
|
|
|
103469
103504
|
<dees-panel .title=${"Validation & States"} .subtitle=${"Required fields and disabled states"}>
|
|
103470
|
-
<
|
|
103471
|
-
|
|
103472
|
-
|
|
103473
|
-
|
|
103474
|
-
|
|
103475
|
-
|
|
103476
|
-
|
|
103477
|
-
|
|
103478
|
-
|
|
103479
|
-
|
|
103480
|
-
|
|
103481
|
-
|
|
103505
|
+
<div class="input-group">
|
|
103506
|
+
<dees-input-iban
|
|
103507
|
+
.label=${"Payment Account"}
|
|
103508
|
+
.description=${"Required for processing payments"}
|
|
103509
|
+
.required=${true}
|
|
103510
|
+
></dees-input-iban>
|
|
103511
|
+
|
|
103512
|
+
<dees-input-iban
|
|
103513
|
+
.label=${"Locked IBAN"}
|
|
103514
|
+
.description=${"This IBAN cannot be changed"}
|
|
103515
|
+
.value=${"FR1420041010050500013M02606"}
|
|
103516
|
+
.disabled=${true}
|
|
103517
|
+
></dees-input-iban>
|
|
103518
|
+
</div>
|
|
103482
103519
|
</dees-panel>
|
|
103483
103520
|
|
|
103484
103521
|
<dees-panel .title=${"Bank Transfer Form"} .subtitle=${"Complete form example with IBAN validation"}>
|
|
@@ -103982,6 +104019,12 @@ var demoFunc21 = () => b2`
|
|
|
103982
104019
|
margin: 0 auto;
|
|
103983
104020
|
}
|
|
103984
104021
|
|
|
104022
|
+
.input-group {
|
|
104023
|
+
display: flex;
|
|
104024
|
+
flex-direction: column;
|
|
104025
|
+
gap: 16px;
|
|
104026
|
+
}
|
|
104027
|
+
|
|
103985
104028
|
.horizontal-group {
|
|
103986
104029
|
display: flex;
|
|
103987
104030
|
align-items: center;
|
|
@@ -103993,18 +104036,20 @@ var demoFunc21 = () => b2`
|
|
|
103993
104036
|
|
|
103994
104037
|
<div class="demo-container">
|
|
103995
104038
|
<dees-panel .title=${"Basic Phone Input"} .subtitle=${"Automatic formatting for phone numbers"}>
|
|
103996
|
-
<
|
|
103997
|
-
|
|
103998
|
-
|
|
103999
|
-
|
|
104000
|
-
|
|
104001
|
-
|
|
104002
|
-
|
|
104003
|
-
|
|
104004
|
-
|
|
104005
|
-
|
|
104006
|
-
|
|
104007
|
-
|
|
104039
|
+
<div class="input-group">
|
|
104040
|
+
<dees-input-phone
|
|
104041
|
+
.label=${"Phone Number"}
|
|
104042
|
+
.description=${"Enter your phone number with country code"}
|
|
104043
|
+
.value=${"5551234567"}
|
|
104044
|
+
></dees-input-phone>
|
|
104045
|
+
|
|
104046
|
+
<dees-input-phone
|
|
104047
|
+
.label=${"Contact Phone"}
|
|
104048
|
+
.description=${"Required for account verification"}
|
|
104049
|
+
.required=${true}
|
|
104050
|
+
.placeholder=${"+1 (555) 000-0000"}
|
|
104051
|
+
></dees-input-phone>
|
|
104052
|
+
</div>
|
|
104008
104053
|
</dees-panel>
|
|
104009
104054
|
|
|
104010
104055
|
<dees-panel .title=${"Horizontal Layout"} .subtitle=${"Phone inputs arranged horizontally"}>
|
|
@@ -104024,17 +104069,19 @@ var demoFunc21 = () => b2`
|
|
|
104024
104069
|
</dees-panel>
|
|
104025
104070
|
|
|
104026
104071
|
<dees-panel .title=${"International Numbers"} .subtitle=${"Supports formatting for numbers with country codes"}>
|
|
104027
|
-
<
|
|
104028
|
-
|
|
104029
|
-
|
|
104030
|
-
|
|
104031
|
-
|
|
104032
|
-
|
|
104033
|
-
|
|
104034
|
-
|
|
104035
|
-
|
|
104036
|
-
|
|
104037
|
-
|
|
104072
|
+
<div class="input-group">
|
|
104073
|
+
<dees-input-phone
|
|
104074
|
+
.label=${"International Contact"}
|
|
104075
|
+
.description=${"Automatically formats international numbers"}
|
|
104076
|
+
.value=${"441234567890"}
|
|
104077
|
+
></dees-input-phone>
|
|
104078
|
+
|
|
104079
|
+
<dees-input-phone
|
|
104080
|
+
.label=${"Emergency Contact"}
|
|
104081
|
+
.value=${"911"}
|
|
104082
|
+
.disabled=${true}
|
|
104083
|
+
></dees-input-phone>
|
|
104084
|
+
</div>
|
|
104038
104085
|
</dees-panel>
|
|
104039
104086
|
|
|
104040
104087
|
<dees-panel .title=${"Form Integration"} .subtitle=${"Phone input as part of a contact form"}>
|
|
@@ -104794,6 +104841,12 @@ var demoFunc23 = () => b2`
|
|
|
104794
104841
|
margin: 0 auto;
|
|
104795
104842
|
}
|
|
104796
104843
|
|
|
104844
|
+
.input-group {
|
|
104845
|
+
display: flex;
|
|
104846
|
+
flex-direction: column;
|
|
104847
|
+
gap: 16px;
|
|
104848
|
+
}
|
|
104849
|
+
|
|
104797
104850
|
.horizontal-group {
|
|
104798
104851
|
display: flex;
|
|
104799
104852
|
gap: 24px;
|
|
@@ -104820,27 +104873,30 @@ var demoFunc23 = () => b2`
|
|
|
104820
104873
|
|
|
104821
104874
|
<div class="demo-container">
|
|
104822
104875
|
<dees-panel .title=${"Basic Type List"} .subtitle=${"Add and remove items from a list"}>
|
|
104823
|
-
<
|
|
104824
|
-
|
|
104825
|
-
|
|
104826
|
-
|
|
104827
|
-
|
|
104828
|
-
|
|
104829
|
-
|
|
104830
|
-
|
|
104831
|
-
|
|
104832
|
-
|
|
104833
|
-
|
|
104876
|
+
<div class="input-group">
|
|
104877
|
+
<dees-input-typelist
|
|
104878
|
+
.label=${"Tags"}
|
|
104879
|
+
.description=${"Add tags by typing and pressing Enter"}
|
|
104880
|
+
.value=${["javascript", "typescript", "web-components"]}
|
|
104881
|
+
></dees-input-typelist>
|
|
104882
|
+
|
|
104883
|
+
<dees-input-typelist
|
|
104884
|
+
.label=${"Team Members"}
|
|
104885
|
+
.description=${"Add email addresses of team members"}
|
|
104886
|
+
.value=${["alice@example.com", "bob@example.com"]}
|
|
104887
|
+
></dees-input-typelist>
|
|
104888
|
+
</div>
|
|
104834
104889
|
</dees-panel>
|
|
104835
104890
|
|
|
104836
104891
|
<dees-panel .title=${"Skills & Keywords"} .subtitle=${"Manage lists of skills and keywords"}>
|
|
104837
|
-
<
|
|
104838
|
-
|
|
104839
|
-
|
|
104840
|
-
|
|
104841
|
-
|
|
104842
|
-
|
|
104843
|
-
|
|
104892
|
+
<div class="input-group">
|
|
104893
|
+
<dees-input-typelist
|
|
104894
|
+
.label=${"Your Skills"}
|
|
104895
|
+
.description=${"List your professional skills"}
|
|
104896
|
+
.value=${["HTML", "CSS", "JavaScript", "Node.js", "React"]}
|
|
104897
|
+
></dees-input-typelist>
|
|
104898
|
+
|
|
104899
|
+
<div class="horizontal-group">
|
|
104844
104900
|
<dees-input-typelist
|
|
104845
104901
|
.label=${"Categories"}
|
|
104846
104902
|
.layoutMode=${"horizontal"}
|
|
@@ -104853,22 +104909,25 @@ var demoFunc23 = () => b2`
|
|
|
104853
104909
|
.value=${["innovation", "startup", "growth"]}
|
|
104854
104910
|
></dees-input-typelist>
|
|
104855
104911
|
</div>
|
|
104912
|
+
</div>
|
|
104856
104913
|
</dees-panel>
|
|
104857
104914
|
|
|
104858
104915
|
<dees-panel .title=${"Required & Disabled States"} .subtitle=${"Different input states for validation"}>
|
|
104859
|
-
<
|
|
104860
|
-
|
|
104861
|
-
|
|
104862
|
-
|
|
104863
|
-
|
|
104864
|
-
|
|
104865
|
-
|
|
104866
|
-
|
|
104867
|
-
|
|
104868
|
-
|
|
104869
|
-
|
|
104870
|
-
|
|
104871
|
-
|
|
104916
|
+
<div class="input-group">
|
|
104917
|
+
<dees-input-typelist
|
|
104918
|
+
.label=${"Project Dependencies"}
|
|
104919
|
+
.description=${"List all required npm packages"}
|
|
104920
|
+
.required=${true}
|
|
104921
|
+
.value=${["@design.estate/dees-element", "@design.estate/dees-domtools"]}
|
|
104922
|
+
></dees-input-typelist>
|
|
104923
|
+
|
|
104924
|
+
<dees-input-typelist
|
|
104925
|
+
.label=${"System Tags"}
|
|
104926
|
+
.description=${"These tags are managed by the system"}
|
|
104927
|
+
.disabled=${true}
|
|
104928
|
+
.value=${["system", "protected", "readonly"]}
|
|
104929
|
+
></dees-input-typelist>
|
|
104930
|
+
</div>
|
|
104872
104931
|
</dees-panel>
|
|
104873
104932
|
|
|
104874
104933
|
<dees-panel .title=${"Article Publishing Form"} .subtitle=${"Complete form with tag management"}>
|
|
@@ -107501,11 +107560,6 @@ var DeesForm = class extends (_a32 = DeesElement, _horizontalLayout_dec = [n5({
|
|
|
107501
107560
|
}
|
|
107502
107561
|
render() {
|
|
107503
107562
|
return b2`
|
|
107504
|
-
<style>
|
|
107505
|
-
:host {
|
|
107506
|
-
display: contents;
|
|
107507
|
-
}
|
|
107508
|
-
</style>
|
|
107509
107563
|
<slot></slot>
|
|
107510
107564
|
`;
|
|
107511
107565
|
}
|
|
@@ -107663,6 +107717,22 @@ __decorateElement(_init30, 4, "horizontalLayout", _horizontalLayout_dec, DeesFor
|
|
|
107663
107717
|
DeesForm = __decorateElement(_init30, 0, "DeesForm", _DeesForm_decorators, DeesForm);
|
|
107664
107718
|
__publicField(DeesForm, "demo", demoFunc25);
|
|
107665
107719
|
__publicField(DeesForm, "demoGroups", ["Form"]);
|
|
107720
|
+
__publicField(DeesForm, "styles", [
|
|
107721
|
+
i`
|
|
107722
|
+
:host {
|
|
107723
|
+
display: flex;
|
|
107724
|
+
flex-direction: column;
|
|
107725
|
+
gap: 16px;
|
|
107726
|
+
}
|
|
107727
|
+
|
|
107728
|
+
:host([horizontal-layout]) {
|
|
107729
|
+
flex-direction: row;
|
|
107730
|
+
flex-wrap: wrap;
|
|
107731
|
+
align-items: flex-start;
|
|
107732
|
+
gap: 16px;
|
|
107733
|
+
}
|
|
107734
|
+
`
|
|
107735
|
+
]);
|
|
107666
107736
|
__runInitializers(_init30, 1, DeesForm);
|
|
107667
107737
|
|
|
107668
107738
|
// ts_web/elements/00group-button/dees-button/dees-button.demo.ts
|
|
@@ -147998,7 +148068,7 @@ init_group_runtime();
|
|
|
147998
148068
|
// ts_web/00_commitinfo_data.ts
|
|
147999
148069
|
var commitinfo = {
|
|
148000
148070
|
name: "@design.estate/dees-catalog",
|
|
148001
|
-
version: "3.
|
|
148071
|
+
version: "3.43.0",
|
|
148002
148072
|
description: "A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript."
|
|
148003
148073
|
};
|
|
148004
148074
|
export {
|
|
@@ -148243,4 +148313,4 @@ ibantools/jsnext/ibantools.js:
|
|
|
148243
148313
|
* @preferred
|
|
148244
148314
|
*)
|
|
148245
148315
|
*/
|
|
148246
|
-
//# sourceMappingURL=bundle-
|
|
148316
|
+
//# sourceMappingURL=bundle-1771349705003.js.map
|