@shohojdhara/atomix 0.5.4 → 0.5.5

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 (34) hide show
  1. package/dist/atomix.css +3213 -159
  2. package/dist/atomix.css.map +1 -1
  3. package/dist/atomix.min.css +5 -5
  4. package/dist/atomix.min.css.map +1 -1
  5. package/dist/config.js +2 -5
  6. package/dist/config.js.map +1 -1
  7. package/dist/index.esm.js +11 -6
  8. package/dist/index.esm.js.map +1 -1
  9. package/dist/index.js +16 -7
  10. package/dist/index.js.map +1 -1
  11. package/dist/index.min.js +1 -1
  12. package/dist/index.min.js.map +1 -1
  13. package/dist/theme.js +0 -4
  14. package/dist/theme.js.map +1 -1
  15. package/package.json +1 -1
  16. package/src/lib/config/loader.ts +5 -2
  17. package/src/styles/01-settings/_settings.background.scss +34 -5
  18. package/src/styles/02-tools/_tools.background.scss +330 -52
  19. package/src/styles/06-components/_components.accordion.scss +2 -2
  20. package/src/styles/06-components/_components.badge.scss +1 -1
  21. package/src/styles/06-components/_components.button.scss +2 -2
  22. package/src/styles/06-components/_components.callout.scss +2 -2
  23. package/src/styles/06-components/_components.card.scss +1 -1
  24. package/src/styles/06-components/_components.dropdown.scss +1 -1
  25. package/src/styles/06-components/_components.dynamic-background.scss +69 -0
  26. package/src/styles/06-components/_components.edge-panel.scss +2 -2
  27. package/src/styles/06-components/_components.input.scss +3 -3
  28. package/src/styles/06-components/_components.messages.scss +6 -6
  29. package/src/styles/06-components/_components.modal.scss +1 -1
  30. package/src/styles/06-components/_components.navbar.scss +1 -1
  31. package/src/styles/06-components/_components.popover.scss +1 -1
  32. package/src/styles/06-components/_components.toggle.scss +1 -1
  33. package/src/styles/06-components/_components.tooltip.scss +3 -3
  34. package/src/styles/06-components/_index.scss +1 -0
@@ -348,7 +348,7 @@
348
348
  padding: rem.rem(8px);
349
349
  @include dynamic-background(
350
350
  var(--#{config.$prefix}body-bg),
351
- $background-transparency-enable: true,
351
+ $enable-transparency: true,
352
352
  $transparency: 0.15
353
353
  );
354
354
  }
@@ -357,7 +357,7 @@
357
357
  #{$root}__text {
358
358
  @include dynamic-background(
359
359
  var(--#{config.$prefix}body-bg),
360
- $background-transparency-enable: true
360
+ $enable-transparency: true
361
361
  );
362
362
  backdrop-filter: blur(8px);
363
363
  border: 1px solid rgba(255, 255, 255, 0.2);
@@ -369,7 +369,7 @@
369
369
  #{$root}__text {
370
370
  @include dynamic-background(
371
371
  var(--#{config.$prefix}brand-bg-subtle),
372
- $background-transparency-enable: true
372
+ $enable-transparency: true
373
373
  );
374
374
  border: 1px solid rgba(var(--#{config.$prefix}primary-rgb), 0.3);
375
375
  backdrop-filter: blur(8px);
@@ -378,7 +378,7 @@
378
378
  #{$root}__file {
379
379
  @include dynamic-background(
380
380
  var(--#{config.$prefix}brand-bg-subtle),
381
- $background-transparency-enable: true
381
+ $enable-transparency: true
382
382
  );
383
383
  border: 1px solid rgba(var(--#{config.$prefix}primary-rgb), 0.3);
384
384
  backdrop-filter: blur(8px);
@@ -389,7 +389,7 @@
389
389
  #{$root}__file {
390
390
  @include dynamic-background(
391
391
  var(--#{config.$prefix}brand-bg-subtle),
392
- $background-transparency-enable: true
392
+ $enable-transparency: true
393
393
  );
394
394
  border: 1px solid rgba(var(--#{config.$prefix}primary-rgb), 0.3);
395
395
  backdrop-filter: blur(8px);
@@ -400,7 +400,7 @@
400
400
  #{$root}__file-icon {
401
401
  @include dynamic-background(
402
402
  var(--#{config.$prefix}brand-bg-subtle),
403
- $background-transparency-enable: true
403
+ $enable-transparency: true
404
404
  );
405
405
  backdrop-filter: blur(8px);
406
406
  border: 1px solid rgba(255, 255, 255, 0.15);
@@ -146,7 +146,7 @@
146
146
  &__content {
147
147
  @include dynamic-background(
148
148
  var(--#{config.$prefix}modal-content-bg),
149
- $background-transparency-enable: true
149
+ $enable-transparency: true
150
150
  );
151
151
  box-shadow: none;
152
152
  border-radius: inherit;
@@ -252,7 +252,7 @@
252
252
  &--glass {
253
253
  position: relative;
254
254
  background-color: transparent;
255
- @include dynamic-background(var(--#{$prefix}navbar-bg), $background-transparency-enable: true);
255
+ @include dynamic-background(var(--#{$prefix}navbar-bg), $enable-transparency: true);
256
256
  }
257
257
 
258
258
  &--fixed-bottom {
@@ -96,7 +96,7 @@
96
96
  #{$root}__content-inner {
97
97
  @include dynamic-background(
98
98
  var(--#{$prefix}popover-bg),
99
- $background-transparency-enable: true
99
+ $enable-transparency: true
100
100
  );
101
101
  box-shadow: none;
102
102
  }
@@ -106,7 +106,7 @@
106
106
  #{$root}__switch {
107
107
  @include dynamic-background(
108
108
  var(--#{$prefix}toggle-switch-bg),
109
- $background-transparency-enable: true
109
+ $enable-transparency: true
110
110
  );
111
111
 
112
112
  &::before {
@@ -87,21 +87,21 @@
87
87
  #{$root}__content {
88
88
  @include dynamic-background(
89
89
  var(--#{$prefix}tooltip-bg),
90
- $background-transparency-enable: true,
90
+ $enable-transparency: true,
91
91
  $transparency: 0.3
92
92
  );
93
93
  }
94
94
  #{$root}__arrow {
95
95
  @include dynamic-background(
96
96
  var(--#{$prefix}tooltip-bg),
97
- $background-transparency-enable: true,
97
+ $enable-transparency: true,
98
98
  $transparency: 0.3
99
99
  );
100
100
  }
101
101
  #{$root}__arrow {
102
102
  @include dynamic-background(
103
103
  var(--#{$prefix}tooltip-bg),
104
- $background-transparency-enable: true,
104
+ $enable-transparency: true,
105
105
  $transparency: 0.3
106
106
  );
107
107
  }
@@ -16,6 +16,7 @@
16
16
  @forward 'components.countdown';
17
17
  @forward 'components.data-table';
18
18
  @forward 'components.dropdown';
19
+ @forward 'components.dynamic-background';
19
20
  @forward 'components.edge-panel';
20
21
  @forward 'components.footer';
21
22
  @forward 'components.form';