@startupjs-ui/smart-sidebar 0.2.0-alpha.0 → 0.2.0-alpha.2
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.
- package/CHANGELOG.md +16 -0
- package/index.tsx +0 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.2.0-alpha.2](https://github.com/startupjs/startupjs-ui/compare/v0.2.0-alpha.1...v0.2.0-alpha.2) (2026-04-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @startupjs-ui/smart-sidebar
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [0.2.0-alpha.1](https://github.com/startupjs/startupjs-ui/compare/v0.2.0-alpha.0...v0.2.0-alpha.1) (2026-04-10)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @startupjs-ui/smart-sidebar
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [0.2.0-alpha.0](https://github.com/startupjs/startupjs-ui/compare/v0.1.22...v0.2.0-alpha.0) (2026-03-27)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @startupjs-ui/smart-sidebar
|
package/index.tsx
CHANGED
|
@@ -71,7 +71,6 @@ function SmartSidebar ({
|
|
|
71
71
|
// when change dimensions from mobile
|
|
72
72
|
// to desktop resolution or when rendering happen on desktop resolution
|
|
73
73
|
// we open sidebar if it was opened on mobile resolution or default value
|
|
74
|
-
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
|
|
75
74
|
$open.set(open || defaultOpen)
|
|
76
75
|
} else {
|
|
77
76
|
// when change dimensions from desktop
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@startupjs-ui/smart-sidebar",
|
|
3
|
-
"version": "0.2.0-alpha.
|
|
3
|
+
"version": "0.2.0-alpha.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -8,14 +8,14 @@
|
|
|
8
8
|
"types": "index.d.ts",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@startupjs-ui/core": "^0.2.0-alpha.
|
|
12
|
-
"@startupjs-ui/drawer-sidebar": "^0.2.0-alpha.
|
|
13
|
-
"@startupjs-ui/sidebar": "^0.2.0-alpha.
|
|
11
|
+
"@startupjs-ui/core": "^0.2.0-alpha.1",
|
|
12
|
+
"@startupjs-ui/drawer-sidebar": "^0.2.0-alpha.2",
|
|
13
|
+
"@startupjs-ui/sidebar": "^0.2.0-alpha.2"
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {
|
|
16
16
|
"react": "*",
|
|
17
17
|
"react-native": "*",
|
|
18
18
|
"startupjs": "*"
|
|
19
19
|
},
|
|
20
|
-
"gitHead": "
|
|
20
|
+
"gitHead": "8a6ae7871e4c82f3e24d5911a9df42338e057e7a"
|
|
21
21
|
}
|