@esportsplus/ui 0.20.5 → 0.20.6

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.
@@ -39,6 +39,7 @@ export default template.factory(function (attributes, content) {
39
39
  <div
40
40
  class='scrollbar'
41
41
  ${this?.attributes?.scrollbar}
42
+ ${attributes.scrollbar}
42
43
  ${{
43
44
  class: () => state.height >= 100 && 'scrollbar--hidden',
44
45
  style: () => `
package/package.json CHANGED
@@ -48,7 +48,7 @@
48
48
  "private": false,
49
49
  "sideEffects": false,
50
50
  "type": "module",
51
- "version": "0.20.5",
51
+ "version": "0.20.6",
52
52
  "scripts": {
53
53
  "build": "run-s build:vite build:ts",
54
54
  "build:ts": "tsc && tsc-alias",
@@ -16,7 +16,7 @@ let root = document.body,
16
16
 
17
17
 
18
18
  export default template.factory<A>(
19
- function(this: { attributes?: A }, attributes, content) {
19
+ function(this: { attributes?: A }, attributes, content) {
20
20
  let state = reactive({
21
21
  height: 100,
22
22
  translate: 0
@@ -53,6 +53,7 @@ export default template.factory<A>(
53
53
  <div
54
54
  class='scrollbar'
55
55
  ${this?.attributes?.scrollbar}
56
+ ${attributes.scrollbar}
56
57
  ${{
57
58
  class: () => state.height >= 100 && 'scrollbar--hidden',
58
59
  style: () => `