@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.
Files changed (25) hide show
  1. package/dist_bundle/bundle.js +317 -247
  2. package/dist_ts_web/00_commitinfo_data.js +1 -1
  3. package/dist_ts_web/elements/00group-form/dees-form/dees-form.d.ts +2 -1
  4. package/dist_ts_web/elements/00group-form/dees-form/dees-form.js +18 -7
  5. package/dist_ts_web/elements/00group-input/dees-input-base/dees-input-base.js +2 -19
  6. package/dist_ts_web/elements/00group-input/dees-input-dropdown/dees-input-dropdown.demo.js +33 -23
  7. package/dist_ts_web/elements/00group-input/dees-input-iban/dees-input-iban.demo.js +33 -23
  8. package/dist_ts_web/elements/00group-input/dees-input-phone/dees-input-phone.demo.js +34 -24
  9. package/dist_ts_web/elements/00group-input/dees-input-quantityselector/dees-input-quantityselector.demo.js +35 -25
  10. package/dist_ts_web/elements/00group-input/dees-input-radiogroup/dees-input-radiogroup.demo.js +45 -35
  11. package/dist_ts_web/elements/00group-input/dees-input-text/dees-input-text.demo.js +81 -67
  12. package/dist_ts_web/elements/00group-input/dees-input-typelist/dees-input-typelist.demo.js +44 -32
  13. package/dist_watch/bundle.js +1566 -1471
  14. package/dist_watch/bundle.js.map +3 -3
  15. package/package.json +1 -1
  16. package/ts_web/00_commitinfo_data.ts +1 -1
  17. package/ts_web/elements/00group-form/dees-form/dees-form.ts +18 -5
  18. package/ts_web/elements/00group-input/dees-input-base/dees-input-base.ts +1 -18
  19. package/ts_web/elements/00group-input/dees-input-dropdown/dees-input-dropdown.demo.ts +52 -42
  20. package/ts_web/elements/00group-input/dees-input-iban/dees-input-iban.demo.ts +32 -22
  21. package/ts_web/elements/00group-input/dees-input-phone/dees-input-phone.demo.ts +33 -23
  22. package/ts_web/elements/00group-input/dees-input-quantityselector/dees-input-quantityselector.demo.ts +34 -24
  23. package/ts_web/elements/00group-input/dees-input-radiogroup/dees-input-radiogroup.demo.ts +48 -38
  24. package/ts_web/elements/00group-input/dees-input-text/dees-input-text.demo.ts +80 -66
  25. package/ts_web/elements/00group-input/dees-input-typelist/dees-input-typelist.demo.ts +43 -31
@@ -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 vertical stacking mode (for forms) */
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
- <dees-input-text
98134
- .label=${"Username"}
98135
- .value=${"johndoe"}
98136
- .key=${"username"}
98137
- ></dees-input-text>
98138
-
98139
- <dees-input-text
98140
- .label=${"Email Address"}
98141
- .value=${"john@example.com"}
98142
- .description=${"We will never share your email with anyone"}
98143
- .key=${"email"}
98144
- ></dees-input-text>
98145
-
98146
- <dees-input-text
98147
- .label=${"Password"}
98148
- .isPasswordBool=${true}
98149
- .value=${"secret123"}
98150
- .key=${"password"}
98151
- ></dees-input-text>
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
- <dees-input-text
98212
- .label=${"Label on Top (Default)"}
98213
- .value=${"Standard layout"}
98214
- .labelPosition=${"top"}
98215
- ></dees-input-text>
98216
-
98217
- <dees-input-text
98218
- .label=${"Label on Left"}
98219
- .value=${"Inline label"}
98220
- .labelPosition=${"left"}
98221
- ></dees-input-text>
98222
-
98223
- <div class="grid-layout">
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
- <dees-input-text
98267
- .label=${"Required Field"}
98268
- .required=${true}
98269
- .key=${"requiredField"}
98270
- ></dees-input-text>
98271
-
98272
- <dees-input-text
98273
- .label=${"Disabled Field"}
98274
- .value=${"Cannot edit this"}
98275
- .disabled=${true}
98276
- ></dees-input-text>
98277
-
98278
- <dees-input-text
98279
- .label=${"Field with Error"}
98280
- .value=${"invalid@"}
98281
- .validationText=${"Please enter a valid email address"}
98282
- .validationState=${"invalid"}
98283
- ></dees-input-text>
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
- <dees-input-text
98307
- .label=${"Password with Toggle"}
98308
- .isPasswordBool=${true}
98309
- .value=${"mySecurePassword123"}
98310
- .description=${"Click the eye icon to show/hide password"}
98311
- ></dees-input-text>
98312
-
98313
- <dees-input-text
98314
- .label=${"API Key"}
98315
- .isPasswordBool=${true}
98316
- .value=${"sk-1234567890abcdef"}
98317
- .description=${"Keep this key secure and never share it"}
98318
- ></dees-input-text>
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
- <dees-input-quantityselector
99307
- .label=${"Quantity"}
99308
- .description=${"Select the desired quantity"}
99309
- .value=${1}
99310
- ></dees-input-quantityselector>
99311
-
99312
- <dees-input-quantityselector
99313
- .label=${"Items in Cart"}
99314
- .description=${"Adjust the quantity of items"}
99315
- .value=${3}
99316
- ></dees-input-quantityselector>
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
- <dees-input-quantityselector
99409
- .label=${"Number of Licenses"}
99410
- .description=${"Select how many licenses you need"}
99411
- .required=${true}
99412
- .value=${1}
99413
- ></dees-input-quantityselector>
99414
-
99415
- <dees-input-quantityselector
99416
- .label=${"Fixed Quantity"}
99417
- .description=${"This quantity cannot be changed"}
99418
- .disabled=${true}
99419
- .value=${5}
99420
- ></dees-input-quantityselector>
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
- <dees-input-radiogroup
99691
- .label=${"Do you agree with the terms?"}
99692
- .options=${["Yes", "No", "Maybe"]}
99693
- .direction=${"horizontal"}
99694
- .selectedOption=${"Yes"}
99695
- ></dees-input-radiogroup>
99696
-
99697
- <dees-input-radiogroup
99698
- .label=${"Experience Level"}
99699
- .options=${["Beginner", "Intermediate", "Expert"]}
99700
- .direction=${"horizontal"}
99701
- .selectedOption=${"Intermediate"}
99702
- .description=${"Select your experience level with web development"}
99703
- ></dees-input-radiogroup>
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
- <dees-input-radiogroup
99763
- .label=${"Theme Preference"}
99764
- .options=${[
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
- .selectedOption=${"dark"}
99770
- .description=${"Choose how the application should appear"}
99771
- ></dees-input-radiogroup>
99772
-
99773
- <dees-input-radiogroup
99774
- .label=${"Notification Frequency"}
99775
- .options=${["All Notifications", "Important Only", "None"]}
99776
- .selectedOption=${"Important Only"}
99777
- .description=${"Control how often you receive notifications"}
99778
- ></dees-input-radiogroup>
99779
-
99780
- <dees-input-radiogroup
99781
- .label=${"Language"}
99782
- .options=${["English", "German", "French", "Spanish", "Japanese"]}
99783
- .selectedOption=${"English"}
99784
- .direction=${"horizontal"}
99785
- ></dees-input-radiogroup>
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
- <dees-input-dropdown
100379
- .label=${"Select Country"}
100380
- .options=${[
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
- .selectedOption=${{ option: "United States", key: "us" }}
100391
- ></dees-input-dropdown>
100392
-
100393
- <dees-input-dropdown
100394
- .label=${"Select Role"}
100395
- .options=${[
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
- ></dees-input-dropdown>
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
- <dees-input-dropdown
100484
- .label=${"Required Field"}
100485
- .required=${true}
100486
- .options=${[
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
- ></dees-input-dropdown>
100492
-
100493
- <dees-input-dropdown
100494
- .label=${"Disabled Dropdown"}
100495
- .disabled=${true}
100496
- .options=${[
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
- .selectedOption=${{ option: "Cannot Select", key: "disabled" }}
100500
- ></dees-input-dropdown>
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
- <dees-input-iban
103442
- .label=${"Bank Account IBAN"}
103443
- .description=${"Enter your International Bank Account Number"}
103444
- ></dees-input-iban>
103445
-
103446
- <dees-input-iban
103447
- .label=${"Verified IBAN"}
103448
- .description=${"This IBAN has been verified"}
103449
- .value=${"DE89370400440532013000"}
103450
- ></dees-input-iban>
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
- <dees-input-iban
103471
- .label=${"Payment Account"}
103472
- .description=${"Required for processing payments"}
103473
- .required=${true}
103474
- ></dees-input-iban>
103475
-
103476
- <dees-input-iban
103477
- .label=${"Locked IBAN"}
103478
- .description=${"This IBAN cannot be changed"}
103479
- .value=${"FR1420041010050500013M02606"}
103480
- .disabled=${true}
103481
- ></dees-input-iban>
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
- <dees-input-phone
103997
- .label=${"Phone Number"}
103998
- .description=${"Enter your phone number with country code"}
103999
- .value=${"5551234567"}
104000
- ></dees-input-phone>
104001
-
104002
- <dees-input-phone
104003
- .label=${"Contact Phone"}
104004
- .description=${"Required for account verification"}
104005
- .required=${true}
104006
- .placeholder=${"+1 (555) 000-0000"}
104007
- ></dees-input-phone>
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
- <dees-input-phone
104028
- .label=${"International Contact"}
104029
- .description=${"Automatically formats international numbers"}
104030
- .value=${"441234567890"}
104031
- ></dees-input-phone>
104032
-
104033
- <dees-input-phone
104034
- .label=${"Emergency Contact"}
104035
- .value=${"911"}
104036
- .disabled=${true}
104037
- ></dees-input-phone>
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
- <dees-input-typelist
104824
- .label=${"Tags"}
104825
- .description=${"Add tags by typing and pressing Enter"}
104826
- .value=${["javascript", "typescript", "web-components"]}
104827
- ></dees-input-typelist>
104828
-
104829
- <dees-input-typelist
104830
- .label=${"Team Members"}
104831
- .description=${"Add email addresses of team members"}
104832
- .value=${["alice@example.com", "bob@example.com"]}
104833
- ></dees-input-typelist>
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
- <dees-input-typelist
104838
- .label=${"Your Skills"}
104839
- .description=${"List your professional skills"}
104840
- .value=${["HTML", "CSS", "JavaScript", "Node.js", "React"]}
104841
- ></dees-input-typelist>
104842
-
104843
- <div class="horizontal-group">
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
- <dees-input-typelist
104860
- .label=${"Project Dependencies"}
104861
- .description=${"List all required npm packages"}
104862
- .required=${true}
104863
- .value=${["@design.estate/dees-element", "@design.estate/dees-domtools"]}
104864
- ></dees-input-typelist>
104865
-
104866
- <dees-input-typelist
104867
- .label=${"System Tags"}
104868
- .description=${"These tags are managed by the system"}
104869
- .disabled=${true}
104870
- .value=${["system", "protected", "readonly"]}
104871
- ></dees-input-typelist>
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.42.2",
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-1771262220474.js.map
148316
+ //# sourceMappingURL=bundle-1771349705003.js.map