@ctrliq/quantic-components 1.61.2 → 1.61.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.
@@ -55963,16 +55963,14 @@
55963
55963
  }
55964
55964
 
55965
55965
  .backdrop--subtle {
55966
- background-color: rgba(
55967
- var(--quantic-component-dialog-backdrop-color),
55968
- 0.5
55966
+ background-color: rgb(
55967
+ var(--quantic-component-dialog-backdrop-color) / 0.7
55969
55968
  );
55970
55969
  }
55971
55970
 
55972
55971
  .backdrop--opaque {
55973
- background-color: rgba(
55974
- var(--quantic-component-dialog-backdrop-color),
55975
- 0.95
55972
+ background-color: rgb(
55973
+ var(--quantic-component-dialog-backdrop-color) / 0.8
55976
55974
  );
55977
55975
  backdrop-filter: blur(4px);
55978
55976
  }
@@ -55983,10 +55981,20 @@
55983
55981
  }
55984
55982
  `;
55985
55983
  __decorate([
55986
- prop({ type: 'boolean', default: 'false', reflect: true, description: 'Whether the backdrop is visible.' })
55984
+ prop({
55985
+ type: 'boolean',
55986
+ default: 'false',
55987
+ reflect: true,
55988
+ description: 'Whether the backdrop is visible.',
55989
+ })
55987
55990
  ], exports.DialogBackdropElement.prototype, "visible", void 0);
55988
55991
  __decorate([
55989
- prop({ type: 'DialogBackdrop', options: Object.values(DialogBackdrop), default: DialogBackdrop.Opaque, description: 'Visual style of the backdrop overlay.' })
55992
+ prop({
55993
+ type: 'DialogBackdrop',
55994
+ options: Object.values(DialogBackdrop),
55995
+ default: DialogBackdrop.Opaque,
55996
+ description: 'Visual style of the backdrop overlay.',
55997
+ })
55990
55998
  ], exports.DialogBackdropElement.prototype, "variant", void 0);
55991
55999
  exports.DialogBackdropElement = __decorate([
55992
56000
  quanticElement('quantic-dialog-backdrop')
@@ -57694,6 +57702,9 @@
57694
57702
  return trap;
57695
57703
  };
57696
57704
 
57705
+ exports.DialogBackdropElement.ensureDefined();
57706
+ exports.Button.ensureDefined();
57707
+ exports.LucideIconX.ensureDefined();
57697
57708
  exports.Dialog = class Dialog extends AutoHideEmptySlotsMixin(QuanticElement) {
57698
57709
  constructor() {
57699
57710
  super(...arguments);
@@ -64469,6 +64480,21 @@
64469
64480
  box-sizing: border-box;
64470
64481
  overflow-x: hidden;
64471
64482
  overflow-y: auto;
64483
+ scrollbar-width: thin;
64484
+ scrollbar-color: var(--quantic-border-secondary) transparent;
64485
+ }
64486
+
64487
+ .main::-webkit-scrollbar {
64488
+ width: 4px;
64489
+ }
64490
+
64491
+ .main::-webkit-scrollbar-track {
64492
+ background: transparent;
64493
+ }
64494
+
64495
+ .main::-webkit-scrollbar-thumb {
64496
+ background: var(--quantic-border-secondary);
64497
+ border-radius: var(--quantic-radius-full);
64472
64498
  }
64473
64499
 
64474
64500
  .main:not(.is-aside-expanded) .main {