dap-design-system 0.45.2 → 0.45.4

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.
@@ -1402,6 +1402,8 @@ declare const DapDSCalendarCell_base: typeof DdsElement & {
1402
1402
  * @slot close - The close button of the callout.
1403
1403
  *
1404
1404
  * @csspart base - The main callout container.
1405
+ * @csspart content - The content of the callout.
1406
+ * @csspart card-content - The content of the card.
1405
1407
  * @csspart icon - The icon of the callout.
1406
1408
  * @csspart title - The title of the callout.
1407
1409
  * @csspart description - The description of the callout.
@@ -1458,8 +1460,6 @@ declare const DapDSCalendarCell_base: typeof DdsElement & {
1458
1460
  * @cssproperty --dds-callout-negative-border - Negative variant border color. Default: var(--dds-border-negative-subtle)
1459
1461
  */
1460
1462
  export declare class DapDSCallout extends DdsElement {
1461
- /** @ignore */
1462
- actionSlot: Element[];
1463
1463
  /** The variant of the callout
1464
1464
  * @type { 'brand' | 'positive' | 'info' | 'warning' | 'negative' }
1465
1465
  */
@@ -1483,7 +1483,9 @@ export declare class DapDSCallout extends DdsElement {
1483
1483
  /** If the callout is opened */
1484
1484
  opened: string;
1485
1485
  static readonly styles: CSSResult;
1486
+ private _hasActions;
1486
1487
  private get hasActions();
1488
+ private handleActionsSlotChange;
1487
1489
  private static readonly defaultIcons;
1488
1490
  getDefaultIcon(variant: CalloutVariant): TemplateResult_2;
1489
1491
  handleClose(): void;
@@ -2293,23 +2295,43 @@ export declare class DapDSContentSwitcherItem extends DdsElement {
2293
2295
  * @event {{ void }} dds-focus - Emitted when the input gains focus.
2294
2296
  * @event {{ void }} dds-not-allowed - Emitted when the value cannot be copied.
2295
2297
  *
2296
- * @cssproperty --dds-input-height - The height of the input. Default is var(--dds-spacing-1000).
2297
- * @cssproperty --dds-input-padding - The padding of the input. Default is var(--dds-spacing-300).
2298
- * @cssproperty --dds-input-font-size - The font size of the input. Default is var(--dds-font-base).
2299
- * @cssproperty --dds-input-border-color - The border color of the input. Default is var(--dds-border-neutral-base).
2300
- * @cssproperty --dds-input-background-color - The background color of the input. Default is var(--dds-fields-background-default).
2298
+ * @cssproperty --dds-input-height-xs - The height of the extra small input. Default is var(--dds-spacing-800).
2299
+ * @cssproperty --dds-input-height-sm - The height of the small input. Default is var(--dds-spacing-1000).
2300
+ * @cssproperty --dds-input-height-lg - The height of the large input. Default is var(--dds-spacing-1200).
2301
+ * @cssproperty --dds-input-padding-xs - The padding of the extra small input. Default is 0 var(--dds-spacing-200).
2302
+ * @cssproperty --dds-input-padding-sm - The padding of the small input. Default is 0 var(--dds-spacing-300).
2303
+ * @cssproperty --dds-input-padding-lg - The padding of the large input. Default is 0 var(--dds-spacing-400).
2304
+ * @cssproperty --dds-input-font-size-xs - The font size of the extra small input. Default is var(--dds-font-sm).
2305
+ * @cssproperty --dds-input-font-size-sm - The font size of the small input. Default is var(--dds-font-base).
2306
+ * @cssproperty --dds-input-font-size-lg - The font size of the large input. Default is var(--dds-font-lg).
2307
+ * @cssproperty --dds-input-border - The border of the input. Default is var(--dds-border-width-base) solid var(--dds-border-neutral-base).
2308
+ * @cssproperty --dds-input-background - The background color of the input. Default is var(--dds-fields-background-default).
2301
2309
  * @cssproperty --dds-input-text-color - The text color of the input. Default is var(--dds-text-neutral-base).
2302
2310
  * @cssproperty --dds-input-border-radius - The border radius of the input. Default is var(--dds-radius-base).
2303
- * @cssproperty --dds-input-border-width - The border width of the input. Default is var(--dds-border-width-base).
2311
+ * @cssproperty --dds-input-disabled-border - The border of the disabled input. Default is 0 solid var(--dds-border-neutral-disabled).
2304
2312
  * @cssproperty --dds-input-disabled-background - The background color of the disabled input. Default is var(--dds-fields-background-disabled).
2305
2313
  * @cssproperty --dds-input-disabled-text - The text color of the disabled input. Default is var(--dds-text-neutral-disabled).
2314
+ * @cssproperty --dds-input-readonly-border - The border of the readonly input. Default is 0 solid var(--dds-border-neutral-subtle).
2306
2315
  * @cssproperty --dds-input-readonly-background - The background color of the readonly input. Default is var(--dds-fields-background-read-only).
2307
2316
  * @cssproperty --dds-input-readonly-text - The text color of the readonly input. Default is var(--dds-text-neutral-subtle).
2308
- * @cssproperty --dds-input-success-border - The border color of the success input. Default is var(--dds-border-positive-base).
2309
- * @cssproperty --dds-input-error-border - The border color of the error input. Default is var(--dds-border-negative-base).
2310
- * @cssproperty --dds-input-addon-background - The background color of the input addon. Default is var(--dds-background-ui-neutral-enabled).
2311
- * @cssproperty --dds-input-addon-success-background - The background color of the success input addon. Default is var(--dds-background-ui-positive-enabled).
2312
- * @cssproperty --dds-input-addon-error-background - The background color of the error input addon. Default is var(--dds-background-ui-negative-enabled).
2317
+ * @cssproperty --dds-input-success-border - The border of the success input. Default is var(--dds-border-width-base) solid var(--dds-border-positive-base).
2318
+ * @cssproperty --dds-input-error-border - The border of the error input. Default is var(--dds-border-width-base) solid var(--dds-border-negative-base).
2319
+ * @cssproperty --dds-input-addon-background - The background color of the input addon. Default is var(--dds-fields-background-default).
2320
+ * @cssproperty --dds-input-addon-success-background - The background color of the success input addon. Default is var(--dds-fields-background-default).
2321
+ * @cssproperty --dds-input-addon-error-background - The background color of the error input addon. Default is var(--dds-fields-background-default).
2322
+ * @cssproperty --dds-input-addon-border-before - The border of the addon before the input. Default is var(--dds-border-width-base) solid var(--dds-border-neutral-base).
2323
+ * @cssproperty --dds-input-addon-border-after - The border of the addon after the input. Default is var(--dds-border-width-base) solid var(--dds-border-neutral-base).
2324
+ * @cssproperty --dds-input-addon-border-width-before - The border width of the addon before the input. Default is var(--dds-border-width-base) 0 var(--dds-border-width-base) var(--dds-border-width-base).
2325
+ * @cssproperty --dds-input-addon-border-width-after - The border width of the addon after the input. Default is var(--dds-border-width-base) var(--dds-border-width-base) var(--dds-border-width-base) 0.
2326
+ * @cssproperty --dds-input-addon-success-border - The border of the success addon. Default is var(--dds-border-width-base) solid var(--dds-border-positive-base).
2327
+ * @cssproperty --dds-input-addon-success-border-before - The border of the success addon before the input. Default is var(--dds-border-width-base) solid var(--dds-border-positive-base).
2328
+ * @cssproperty --dds-input-addon-success-border-after - The border of the success addon after the input. Default is var(--dds-border-width-base) solid var(--dds-border-positive-base).
2329
+ * @cssproperty --dds-input-addon-success-border-width-before - The border width of the success addon before the input. Default is var(--dds-border-width-base) 0 var(--dds-border-width-base) var(--dds-border-width-base).
2330
+ * @cssproperty --dds-input-addon-success-border-width-after - The border width of the success addon after the input. Default is var(--dds-border-width-base) var(--dds-border-width-base) var(--dds-border-width-base) 0.
2331
+ * @cssproperty --dds-input-addon-error-border-before - The border of the error addon before the input. Default is var(--dds-border-width-base) solid var(--dds-border-negative-base).
2332
+ * @cssproperty --dds-input-addon-error-border-after - The border of the error addon after the input. Default is var(--dds-border-width-base) solid var(--dds-border-negative-base).
2333
+ * @cssproperty --dds-input-addon-error-border-width-before - The border width of the error addon before the input. Default is var(--dds-border-width-base) 0 var(--dds-border-width-base) var(--dds-border-width-base).
2334
+ * @cssproperty --dds-input-addon-error-border-width-after - The border width of the error addon after the input. Default is var(--dds-border-width-base) var(--dds-border-width-base) var(--dds-border-width-base) 0.
2313
2335
  *
2314
2336
  * @csspart base - The base container of the component.
2315
2337
  * @csspart postfix - The inner postfix icon part of the component.
@@ -2851,7 +2873,7 @@ declare const DapDSFeedback_base: typeof DdsElement & {
2851
2873
  * @event {{ file: File }} dds-upload-start - Fired when a file upload starts.
2852
2874
  * @event {{ file: File, progress: number }} dds-upload-progress - Fired during file upload progress.
2853
2875
  * @event {{ file: File, item: DapDSFileInputListItem, result: any }} dds-upload-complete - Fired when a file upload completes successfully.
2854
- * @event {{ file: File, item: DapDSFileInputListItem, error: Error } | { errors: Error[] }} dds-upload-error - Fired when a file upload encounters an error. Can contain a single error or an array of validation errors.
2876
+ * @event {{ file?: File, errors: Error[], item?: DapDSFileInputListItem }} dds-upload-error - Fired when a file upload encounters an error. Always contains an errors array, even if there is only one error.
2855
2877
  * @event {{ void }} dds-all-uploads-complete - Fired when all file uploads are complete.
2856
2878
  * @event {{ file: FileListElement }} dds-file-removed - Fired when a file is removed from the file input.
2857
2879
  * @event {{ file: FileListElement, error: Error }} dds-file-delete-error - Fired when a file deletion from server encounters an error.
@@ -3380,23 +3402,43 @@ export declare class DapDSIconButton extends DdsElement {
3380
3402
  * @property {string} inputmode - The inputmode of the input.
3381
3403
  * @property {string} pattern - The regex pattern of the input.
3382
3404
  *
3383
- * @cssproperty --dds-input-height - The height of the input. Default is var(--dds-spacing-1000).
3384
- * @cssproperty --dds-input-padding - The padding of the input. Default is var(--dds-spacing-300).
3385
- * @cssproperty --dds-input-font-size - The font size of the input. Default is var(--dds-font-base).
3386
- * @cssproperty --dds-input-border-color - The border color of the input. Default is var(--dds-border-neutral-base).
3387
- * @cssproperty --dds-input-background-color - The background color of the input. Default is var(--dds-fields-background-default).
3405
+ * @cssproperty --dds-input-height-xs - The height of the extra small input. Default is var(--dds-spacing-800).
3406
+ * @cssproperty --dds-input-height-sm - The height of the small input. Default is var(--dds-spacing-1000).
3407
+ * @cssproperty --dds-input-height-lg - The height of the large input. Default is var(--dds-spacing-1200).
3408
+ * @cssproperty --dds-input-padding-xs - The padding of the extra small input. Default is 0 var(--dds-spacing-200).
3409
+ * @cssproperty --dds-input-padding-sm - The padding of the small input. Default is 0 var(--dds-spacing-300).
3410
+ * @cssproperty --dds-input-padding-lg - The padding of the large input. Default is 0 var(--dds-spacing-400).
3411
+ * @cssproperty --dds-input-font-size-xs - The font size of the extra small input. Default is var(--dds-font-sm).
3412
+ * @cssproperty --dds-input-font-size-sm - The font size of the small input. Default is var(--dds-font-base).
3413
+ * @cssproperty --dds-input-font-size-lg - The font size of the large input. Default is var(--dds-font-lg).
3414
+ * @cssproperty --dds-input-border - The border of the input. Default is var(--dds-border-width-base) solid var(--dds-border-neutral-base).
3415
+ * @cssproperty --dds-input-background - The background color of the input. Default is var(--dds-fields-background-default).
3388
3416
  * @cssproperty --dds-input-text-color - The text color of the input. Default is var(--dds-text-neutral-base).
3389
3417
  * @cssproperty --dds-input-border-radius - The border radius of the input. Default is var(--dds-radius-base).
3390
- * @cssproperty --dds-input-border-width - The border width of the input. Default is var(--dds-border-width-base).
3418
+ * @cssproperty --dds-input-disabled-border - The border of the disabled input. Default is 0 solid var(--dds-border-neutral-disabled).
3391
3419
  * @cssproperty --dds-input-disabled-background - The background color of the disabled input. Default is var(--dds-fields-background-disabled).
3392
3420
  * @cssproperty --dds-input-disabled-text - The text color of the disabled input. Default is var(--dds-text-neutral-disabled).
3421
+ * @cssproperty --dds-input-readonly-border - The border of the readonly input. Default is 0 solid var(--dds-border-neutral-subtle).
3393
3422
  * @cssproperty --dds-input-readonly-background - The background color of the readonly input. Default is var(--dds-fields-background-read-only).
3394
3423
  * @cssproperty --dds-input-readonly-text - The text color of the readonly input. Default is var(--dds-text-neutral-subtle).
3395
- * @cssproperty --dds-input-success-border - The border color of the success input. Default is var(--dds-border-positive-base).
3396
- * @cssproperty --dds-input-error-border - The border color of the error input. Default is var(--dds-border-negative-base).
3397
- * @cssproperty --dds-input-addon-background - The background color of the input addon. Default is var(--dds-background-ui-neutral-enabled).
3398
- * @cssproperty --dds-input-addon-success-background - The background color of the success input addon. Default is var(--dds-background-ui-positive-enabled).
3399
- * @cssproperty --dds-input-addon-error-background - The background color of the error input addon. Default is var(--dds-background-ui-negative-enabled).
3424
+ * @cssproperty --dds-input-success-border - The border of the success input. Default is var(--dds-border-width-base) solid var(--dds-border-positive-base).
3425
+ * @cssproperty --dds-input-error-border - The border of the error input. Default is var(--dds-border-width-base) solid var(--dds-border-negative-base).
3426
+ * @cssproperty --dds-input-addon-background - The background color of the input addon. Default is var(--dds-fields-background-default).
3427
+ * @cssproperty --dds-input-addon-success-background - The background color of the success input addon. Default is var(--dds-fields-background-default).
3428
+ * @cssproperty --dds-input-addon-error-background - The background color of the error input addon. Default is var(--dds-fields-background-default).
3429
+ * @cssproperty --dds-input-addon-border-before - The border of the addon before the input. Default is var(--dds-border-width-base) solid var(--dds-border-neutral-base).
3430
+ * @cssproperty --dds-input-addon-border-after - The border of the addon after the input. Default is var(--dds-border-width-base) solid var(--dds-border-neutral-base).
3431
+ * @cssproperty --dds-input-addon-border-width-before - The border width of the addon before the input. Default is var(--dds-border-width-base) 0 var(--dds-border-width-base) var(--dds-border-width-base).
3432
+ * @cssproperty --dds-input-addon-border-width-after - The border width of the addon after the input. Default is var(--dds-border-width-base) var(--dds-border-width-base) var(--dds-border-width-base) 0.
3433
+ * @cssproperty --dds-input-addon-success-border - The border of the success addon. Default is var(--dds-border-width-base) solid var(--dds-border-positive-base).
3434
+ * @cssproperty --dds-input-addon-success-border-before - The border of the success addon before the input. Default is var(--dds-border-width-base) solid var(--dds-border-positive-base).
3435
+ * @cssproperty --dds-input-addon-success-border-after - The border of the success addon after the input. Default is var(--dds-border-width-base) solid var(--dds-border-positive-base).
3436
+ * @cssproperty --dds-input-addon-success-border-width-before - The border width of the success addon before the input. Default is var(--dds-border-width-base) 0 var(--dds-border-width-base) var(--dds-border-width-base).
3437
+ * @cssproperty --dds-input-addon-success-border-width-after - The border width of the success addon after the input. Default is var(--dds-border-width-base) var(--dds-border-width-base) var(--dds-border-width-base) 0.
3438
+ * @cssproperty --dds-input-addon-error-border-before - The border of the error addon before the input. Default is var(--dds-border-width-base) solid var(--dds-border-negative-base).
3439
+ * @cssproperty --dds-input-addon-error-border-after - The border of the error addon after the input. Default is var(--dds-border-width-base) solid var(--dds-border-negative-base).
3440
+ * @cssproperty --dds-input-addon-error-border-width-before - The border width of the error addon before the input. Default is var(--dds-border-width-base) 0 var(--dds-border-width-base) var(--dds-border-width-base).
3441
+ * @cssproperty --dds-input-addon-error-border-width-after - The border width of the error addon after the input. Default is var(--dds-border-width-base) var(--dds-border-width-base) var(--dds-border-width-base) 0.
3400
3442
  *
3401
3443
  * @event {{ value: string }} dds-change - Fired when the input value changes.
3402
3444
  * @event {{ value: string }} dds-input - Fired when the input value changes.
@@ -4014,23 +4056,43 @@ export declare class DapDSNotificationBadge extends DdsElement {
4014
4056
  *
4015
4057
  * @slot feedback-icon - The custom icon of the feedback.
4016
4058
  *
4017
- * @cssproperty --dds-input-height - The height of the input. Default is var(--dds-spacing-1000).
4018
- * @cssproperty --dds-input-padding - The padding of the input. Default is var(--dds-spacing-300).
4019
- * @cssproperty --dds-input-font-size - The font size of the input. Default is var(--dds-font-base).
4020
- * @cssproperty --dds-input-border-color - The border color of the input. Default is var(--dds-border-neutral-base).
4021
- * @cssproperty --dds-input-background-color - The background color of the input. Default is var(--dds-fields-background-default).
4059
+ * @cssproperty --dds-input-height-xs - The height of the extra small input. Default is var(--dds-spacing-800).
4060
+ * @cssproperty --dds-input-height-sm - The height of the small input. Default is var(--dds-spacing-1000).
4061
+ * @cssproperty --dds-input-height-lg - The height of the large input. Default is var(--dds-spacing-1200).
4062
+ * @cssproperty --dds-input-padding-xs - The padding of the extra small input. Default is 0 var(--dds-spacing-200).
4063
+ * @cssproperty --dds-input-padding-sm - The padding of the small input. Default is 0 var(--dds-spacing-300).
4064
+ * @cssproperty --dds-input-padding-lg - The padding of the large input. Default is 0 var(--dds-spacing-400).
4065
+ * @cssproperty --dds-input-font-size-xs - The font size of the extra small input. Default is var(--dds-font-sm).
4066
+ * @cssproperty --dds-input-font-size-sm - The font size of the small input. Default is var(--dds-font-base).
4067
+ * @cssproperty --dds-input-font-size-lg - The font size of the large input. Default is var(--dds-font-lg).
4068
+ * @cssproperty --dds-input-border - The border of the input. Default is var(--dds-border-width-base) solid var(--dds-border-neutral-base).
4069
+ * @cssproperty --dds-input-background - The background color of the input. Default is var(--dds-fields-background-default).
4022
4070
  * @cssproperty --dds-input-text-color - The text color of the input. Default is var(--dds-text-neutral-base).
4023
4071
  * @cssproperty --dds-input-border-radius - The border radius of the input. Default is var(--dds-radius-base).
4024
- * @cssproperty --dds-input-border-width - The border width of the input. Default is var(--dds-border-width-base).
4072
+ * @cssproperty --dds-input-disabled-border - The border of the disabled input. Default is 0 solid var(--dds-border-neutral-disabled).
4025
4073
  * @cssproperty --dds-input-disabled-background - The background color of the disabled input. Default is var(--dds-fields-background-disabled).
4026
4074
  * @cssproperty --dds-input-disabled-text - The text color of the disabled input. Default is var(--dds-text-neutral-disabled).
4075
+ * @cssproperty --dds-input-readonly-border - The border of the readonly input. Default is 0 solid var(--dds-border-neutral-subtle).
4027
4076
  * @cssproperty --dds-input-readonly-background - The background color of the readonly input. Default is var(--dds-fields-background-read-only).
4028
4077
  * @cssproperty --dds-input-readonly-text - The text color of the readonly input. Default is var(--dds-text-neutral-subtle).
4029
- * @cssproperty --dds-input-success-border - The border color of the success input. Default is var(--dds-border-positive-base).
4030
- * @cssproperty --dds-input-error-border - The border color of the error input. Default is var(--dds-border-negative-base).
4031
- * @cssproperty --dds-input-addon-background - The background color of the input addon. Default is var(--dds-background-ui-neutral-enabled).
4032
- * @cssproperty --dds-input-addon-success-background - The background color of the success input addon. Default is var(--dds-background-ui-positive-enabled).
4033
- * @cssproperty --dds-input-addon-error-background - The background color of the error input addon. Default is var(--dds-background-ui-negative-enabled).
4078
+ * @cssproperty --dds-input-success-border - The border of the success input. Default is var(--dds-border-width-base) solid var(--dds-border-positive-base).
4079
+ * @cssproperty --dds-input-error-border - The border of the error input. Default is var(--dds-border-width-base) solid var(--dds-border-negative-base).
4080
+ * @cssproperty --dds-input-addon-background - The background color of the input addon. Default is var(--dds-fields-background-default).
4081
+ * @cssproperty --dds-input-addon-success-background - The background color of the success input addon. Default is var(--dds-fields-background-default).
4082
+ * @cssproperty --dds-input-addon-error-background - The background color of the error input addon. Default is var(--dds-fields-background-default).
4083
+ * @cssproperty --dds-input-addon-border-before - The border of the addon before the input. Default is var(--dds-border-width-base) solid var(--dds-border-neutral-base).
4084
+ * @cssproperty --dds-input-addon-border-after - The border of the addon after the input. Default is var(--dds-border-width-base) solid var(--dds-border-neutral-base).
4085
+ * @cssproperty --dds-input-addon-border-width-before - The border width of the addon before the input. Default is var(--dds-border-width-base) 0 var(--dds-border-width-base) var(--dds-border-width-base).
4086
+ * @cssproperty --dds-input-addon-border-width-after - The border width of the addon after the input. Default is var(--dds-border-width-base) var(--dds-border-width-base) var(--dds-border-width-base) 0.
4087
+ * @cssproperty --dds-input-addon-success-border - The border of the success addon. Default is var(--dds-border-width-base) solid var(--dds-border-positive-base).
4088
+ * @cssproperty --dds-input-addon-success-border-before - The border of the success addon before the input. Default is var(--dds-border-width-base) solid var(--dds-border-positive-base).
4089
+ * @cssproperty --dds-input-addon-success-border-after - The border of the success addon after the input. Default is var(--dds-border-width-base) solid var(--dds-border-positive-base).
4090
+ * @cssproperty --dds-input-addon-success-border-width-before - The border width of the success addon before the input. Default is var(--dds-border-width-base) 0 var(--dds-border-width-base) var(--dds-border-width-base).
4091
+ * @cssproperty --dds-input-addon-success-border-width-after - The border width of the success addon after the input. Default is var(--dds-border-width-base) var(--dds-border-width-base) var(--dds-border-width-base) 0.
4092
+ * @cssproperty --dds-input-addon-error-border-before - The border of the error addon before the input. Default is var(--dds-border-width-base) solid var(--dds-border-negative-base).
4093
+ * @cssproperty --dds-input-addon-error-border-after - The border of the error addon after the input. Default is var(--dds-border-width-base) solid var(--dds-border-negative-base).
4094
+ * @cssproperty --dds-input-addon-error-border-width-before - The border width of the error addon before the input. Default is var(--dds-border-width-base) 0 var(--dds-border-width-base) var(--dds-border-width-base).
4095
+ * @cssproperty --dds-input-addon-error-border-width-after - The border width of the error addon after the input. Default is var(--dds-border-width-base) var(--dds-border-width-base) var(--dds-border-width-base) 0.
4034
4096
  *
4035
4097
  * @csspart postfix - The postfix of the input.
4036
4098
  * @csspart decrement - The decrement button of the input.
@@ -4420,23 +4482,43 @@ export declare class DapDSPager extends DdsElement {
4420
4482
  * @event {{ void }} dds-blur - Fired when the input loses focus.
4421
4483
  * @event {{ void }} dds-focus - Emitted when the input gains focus.
4422
4484
  *
4423
- * @cssproperty --dds-input-height - The height of the input. Default is var(--dds-spacing-1000).
4424
- * @cssproperty --dds-input-padding - The padding of the input. Default is var(--dds-spacing-300).
4425
- * @cssproperty --dds-input-font-size - The font size of the input. Default is var(--dds-font-base).
4426
- * @cssproperty --dds-input-border-color - The border color of the input. Default is var(--dds-border-neutral-base).
4427
- * @cssproperty --dds-input-background-color - The background color of the input. Default is var(--dds-fields-background-default).
4485
+ * @cssproperty --dds-input-height-xs - The height of the extra small input. Default is var(--dds-spacing-800).
4486
+ * @cssproperty --dds-input-height-sm - The height of the small input. Default is var(--dds-spacing-1000).
4487
+ * @cssproperty --dds-input-height-lg - The height of the large input. Default is var(--dds-spacing-1200).
4488
+ * @cssproperty --dds-input-padding-xs - The padding of the extra small input. Default is 0 var(--dds-spacing-200).
4489
+ * @cssproperty --dds-input-padding-sm - The padding of the small input. Default is 0 var(--dds-spacing-300).
4490
+ * @cssproperty --dds-input-padding-lg - The padding of the large input. Default is 0 var(--dds-spacing-400).
4491
+ * @cssproperty --dds-input-font-size-xs - The font size of the extra small input. Default is var(--dds-font-sm).
4492
+ * @cssproperty --dds-input-font-size-sm - The font size of the small input. Default is var(--dds-font-base).
4493
+ * @cssproperty --dds-input-font-size-lg - The font size of the large input. Default is var(--dds-font-lg).
4494
+ * @cssproperty --dds-input-border - The border of the input. Default is var(--dds-border-width-base) solid var(--dds-border-neutral-base).
4495
+ * @cssproperty --dds-input-background - The background color of the input. Default is var(--dds-fields-background-default).
4428
4496
  * @cssproperty --dds-input-text-color - The text color of the input. Default is var(--dds-text-neutral-base).
4429
4497
  * @cssproperty --dds-input-border-radius - The border radius of the input. Default is var(--dds-radius-base).
4430
- * @cssproperty --dds-input-border-width - The border width of the input. Default is var(--dds-border-width-base).
4498
+ * @cssproperty --dds-input-disabled-border - The border of the disabled input. Default is 0 solid var(--dds-border-neutral-disabled).
4431
4499
  * @cssproperty --dds-input-disabled-background - The background color of the disabled input. Default is var(--dds-fields-background-disabled).
4432
4500
  * @cssproperty --dds-input-disabled-text - The text color of the disabled input. Default is var(--dds-text-neutral-disabled).
4501
+ * @cssproperty --dds-input-readonly-border - The border of the readonly input. Default is 0 solid var(--dds-border-neutral-subtle).
4433
4502
  * @cssproperty --dds-input-readonly-background - The background color of the readonly input. Default is var(--dds-fields-background-read-only).
4434
4503
  * @cssproperty --dds-input-readonly-text - The text color of the readonly input. Default is var(--dds-text-neutral-subtle).
4435
- * @cssproperty --dds-input-success-border - The border color of the success input. Default is var(--dds-border-positive-base).
4436
- * @cssproperty --dds-input-error-border - The border color of the error input. Default is var(--dds-border-negative-base).
4437
- * @cssproperty --dds-input-addon-background - The background color of the input addon. Default is var(--dds-background-ui-neutral-enabled).
4438
- * @cssproperty --dds-input-addon-success-background - The background color of the success input addon. Default is var(--dds-background-ui-positive-enabled).
4439
- * @cssproperty --dds-input-addon-error-background - The background color of the error input addon. Default is var(--dds-background-ui-negative-enabled).
4504
+ * @cssproperty --dds-input-success-border - The border of the success input. Default is var(--dds-border-width-base) solid var(--dds-border-positive-base).
4505
+ * @cssproperty --dds-input-error-border - The border of the error input. Default is var(--dds-border-width-base) solid var(--dds-border-negative-base).
4506
+ * @cssproperty --dds-input-addon-background - The background color of the input addon. Default is var(--dds-fields-background-default).
4507
+ * @cssproperty --dds-input-addon-success-background - The background color of the success input addon. Default is var(--dds-fields-background-default).
4508
+ * @cssproperty --dds-input-addon-error-background - The background color of the error input addon. Default is var(--dds-fields-background-default).
4509
+ * @cssproperty --dds-input-addon-border-before - The border of the addon before the input. Default is var(--dds-border-width-base) solid var(--dds-border-neutral-base).
4510
+ * @cssproperty --dds-input-addon-border-after - The border of the addon after the input. Default is var(--dds-border-width-base) solid var(--dds-border-neutral-base).
4511
+ * @cssproperty --dds-input-addon-border-width-before - The border width of the addon before the input. Default is var(--dds-border-width-base) 0 var(--dds-border-width-base) var(--dds-border-width-base).
4512
+ * @cssproperty --dds-input-addon-border-width-after - The border width of the addon after the input. Default is var(--dds-border-width-base) var(--dds-border-width-base) var(--dds-border-width-base) 0.
4513
+ * @cssproperty --dds-input-addon-success-border - The border of the success addon. Default is var(--dds-border-width-base) solid var(--dds-border-positive-base).
4514
+ * @cssproperty --dds-input-addon-success-border-before - The border of the success addon before the input. Default is var(--dds-border-width-base) solid var(--dds-border-positive-base).
4515
+ * @cssproperty --dds-input-addon-success-border-after - The border of the success addon after the input. Default is var(--dds-border-width-base) solid var(--dds-border-positive-base).
4516
+ * @cssproperty --dds-input-addon-success-border-width-before - The border width of the success addon before the input. Default is var(--dds-border-width-base) 0 var(--dds-border-width-base) var(--dds-border-width-base).
4517
+ * @cssproperty --dds-input-addon-success-border-width-after - The border width of the success addon after the input. Default is var(--dds-border-width-base) var(--dds-border-width-base) var(--dds-border-width-base) 0.
4518
+ * @cssproperty --dds-input-addon-error-border-before - The border of the error addon before the input. Default is var(--dds-border-width-base) solid var(--dds-border-negative-base).
4519
+ * @cssproperty --dds-input-addon-error-border-after - The border of the error addon after the input. Default is var(--dds-border-width-base) solid var(--dds-border-negative-base).
4520
+ * @cssproperty --dds-input-addon-error-border-width-before - The border width of the error addon before the input. Default is var(--dds-border-width-base) 0 var(--dds-border-width-base) var(--dds-border-width-base).
4521
+ * @cssproperty --dds-input-addon-error-border-width-after - The border width of the error addon after the input. Default is var(--dds-border-width-base) var(--dds-border-width-base) var(--dds-border-width-base) 0.
4440
4522
  *
4441
4523
  * @csspart postfix - The postfix of the password input.
4442
4524
  * @csspart password-input - The password input.
@@ -5344,12 +5426,16 @@ export declare class DapDSSkipLink extends DdsElement {
5344
5426
  * @title - Snackbar
5345
5427
  *
5346
5428
  * @csspart host - The host element
5429
+ * @csspart message - The message part of the snackbar
5430
+ * @csspart message-base - The base part of the message
5431
+ * @csspart message-text - The text part of the message
5432
+ * @csspart message-closebutton - The close button part of the message
5433
+ * @csspart message-close-icon - The close icon part of the message
5434
+ * @csspart message-actions - The actions part of the message
5347
5435
  *
5348
5436
  * @cssproperty --dds-snackbar-spacing - Spacing used for positioning the snackbar (default: var(--dds-spacing-400))
5349
5437
  * @cssproperty --dds-snackbar-z-index - Z-index of the snackbar container (default: 10000)
5350
5438
  * @cssproperty --dds-snackbar-pointer-events - Pointer events behavior for the snackbar (default: auto)
5351
- * @cssproperty --dds-snackbar-animation-duration - Duration of entrance animations (default: 0.3s)
5352
- * @cssproperty --dds-snackbar-animation-timing - Timing function for animations (default: ease-out)
5353
5439
  */
5354
5440
  export declare class DapDSSnackbar extends DdsElement {
5355
5441
  /** The maximum number of snackbar messages at a given time. */
@@ -5442,7 +5528,6 @@ export declare class DapDSSnackbar extends DdsElement {
5442
5528
  * @cssproperty --dds-snackbar-padding - Padding inside the snackbar.
5443
5529
  * @cssproperty --dds-snackbar-margin-bottom - Bottom margin of the snackbar.
5444
5530
  * @cssproperty --dds-snackbar-transition - Transition property for the snackbar.
5445
- * @cssproperty --dds-snackbar-border-width - Border width of the snackbar.
5446
5531
  * @cssproperty --dds-snackbar-border-radius - Border radius of the snackbar.
5447
5532
  * @cssproperty --dds-snackbar-font-size - Font size used in the snackbar.
5448
5533
  * @cssproperty --dds-snackbar-background - Background color of the snackbar.
@@ -5462,6 +5547,8 @@ export declare class DapDSSnackbar extends DdsElement {
5462
5547
  * @cssproperty --dds-snackbar-variant-text - Text color for information, success, and error variants.
5463
5548
  * @cssproperty --dds-snackbar-variant-icon - Icon color for information, success, and error variants.
5464
5549
  * @cssproperty --dds-snackbar-variant-link - Link color for information, success, and error variants.
5550
+ * @cssproperty --dds-snackbar-animation-duration - Duration of entrance animations (default: 0.3s)
5551
+ * @cssproperty --dds-snackbar-animation-timing - Timing function for animations (default: ease-out)
5465
5552
  */
5466
5553
  export declare class DapDSSnackbarMessage extends DdsElement {
5467
5554
  /** The actions of the snackbar item. */
@@ -6772,9 +6859,9 @@ export declare type DdsUploadCompleteEvent = CustomEvent<{
6772
6859
  }>;
6773
6860
 
6774
6861
  export declare type DdsUploadErrorEvent = CustomEvent<{
6775
- file: File;
6776
- error: Error;
6777
- item: DapDSFileInputListItem;
6862
+ file?: File;
6863
+ errors: Error[];
6864
+ item?: DapDSFileInputListItem;
6778
6865
  }>;
6779
6866
 
6780
6867
  export declare type DdsUploadProgressEvent = CustomEvent<{