@marianmeres/stuic 1.9.0 → 1.9.1

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.
@@ -103,5 +103,10 @@ $:
103
103
  class={twMerge(`overflow-x-hidden overflow-y-auto ${_class}`)}
104
104
  style="width: 100%; height: 100%; transition-duration: {duration}ms;"
105
105
  >
106
- <slot isExpanded={_isExpanded} inTransition={_isExpanding || _isShrinking} />
106
+ <slot
107
+ isExpanded={_isExpanded}
108
+ isExpanding={_isExpanding}
109
+ isShrinking={_isShrinking}
110
+ inTransition={_isExpanding || _isShrinking}
111
+ />
107
112
  </div>
@@ -17,6 +17,8 @@ declare const __propDef: {
17
17
  slots: {
18
18
  default: {
19
19
  isExpanded: boolean;
20
+ isExpanding: boolean;
21
+ isShrinking: boolean;
20
22
  inTransition: boolean;
21
23
  };
22
24
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marianmeres/stuic",
3
- "version": "1.9.0",
3
+ "version": "1.9.1",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run package",