micro-sidebar 1.0.1__tar.gz → 1.0.2__tar.gz
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.
- {micro_sidebar-1.0.1 → micro_sidebar-1.0.2}/PKG-INFO +16 -3
- {micro_sidebar-1.0.1 → micro_sidebar-1.0.2}/README.md +15 -2
- {micro_sidebar-1.0.1 → micro_sidebar-1.0.2}/micro_sidebar.egg-info/PKG-INFO +16 -3
- {micro_sidebar-1.0.1 → micro_sidebar-1.0.2}/pyproject.toml +1 -1
- {micro_sidebar-1.0.1 → micro_sidebar-1.0.2}/setup.py +1 -1
- {micro_sidebar-1.0.1 → micro_sidebar-1.0.2}/MANIFEST.in +0 -0
- {micro_sidebar-1.0.1 → micro_sidebar-1.0.2}/micro_sidebar.egg-info/SOURCES.txt +0 -0
- {micro_sidebar-1.0.1 → micro_sidebar-1.0.2}/micro_sidebar.egg-info/dependency_links.txt +0 -0
- {micro_sidebar-1.0.1 → micro_sidebar-1.0.2}/micro_sidebar.egg-info/requires.txt +0 -0
- {micro_sidebar-1.0.1 → micro_sidebar-1.0.2}/micro_sidebar.egg-info/top_level.txt +0 -0
- {micro_sidebar-1.0.1 → micro_sidebar-1.0.2}/setup.cfg +0 -0
- {micro_sidebar-1.0.1 → micro_sidebar-1.0.2}/sidebar/__init__.py +0 -0
- {micro_sidebar-1.0.1 → micro_sidebar-1.0.2}/sidebar/apps.py +0 -0
- {micro_sidebar-1.0.1 → micro_sidebar-1.0.2}/sidebar/migrations/__init__.py +0 -0
- {micro_sidebar-1.0.1 → micro_sidebar-1.0.2}/sidebar/static/sidebar/js/sidebar.js +0 -0
- {micro_sidebar-1.0.1 → micro_sidebar-1.0.2}/sidebar/static/sidebar/style.css +0 -0
- {micro_sidebar-1.0.1 → micro_sidebar-1.0.2}/sidebar/templates/sidebar/content.html +0 -0
- {micro_sidebar-1.0.1 → micro_sidebar-1.0.2}/sidebar/urls.py +0 -0
- {micro_sidebar-1.0.1 → micro_sidebar-1.0.2}/sidebar/views.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: micro_sidebar
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: A reusable Django sidebar for Web Apps
|
|
5
5
|
Home-page: https://github.com/debeski/micro-sidebar
|
|
6
6
|
Author: DeBeski
|
|
@@ -28,7 +28,7 @@ Dynamic: requires-python
|
|
|
28
28
|
|
|
29
29
|
# Micro Sidebar
|
|
30
30
|
|
|
31
|
-
A reusable Django sidebar app for Web Apps.
|
|
31
|
+
A reusable RTL Django sidebar app for Web Apps.
|
|
32
32
|
|
|
33
33
|
## Requirements
|
|
34
34
|
|
|
@@ -65,7 +65,7 @@ A reusable Django sidebar app for Web Apps.
|
|
|
65
65
|
```
|
|
66
66
|
|
|
67
67
|
4. **Add to your Base Template:**
|
|
68
|
-
In your `base.html` (or equivalent), include the sidebar. It is designed to sit
|
|
68
|
+
In your `base.html` (or equivalent), include the sidebar. It is designed to sit to the right of your main content.
|
|
69
69
|
|
|
70
70
|
Example structure using Flexbox:
|
|
71
71
|
```html
|
|
@@ -96,3 +96,16 @@ The default sidebar logic expects specific classes like `.list-group-item` and `
|
|
|
96
96
|
|
|
97
97
|
### Positioning
|
|
98
98
|
The sidebar is sticky by default. If your app has a top navigation bar (titlebar), the sidebar will automatically adjust its position below it on small screens. If no titlebar is detected, it will stick to the top of the viewport.
|
|
99
|
+
|
|
100
|
+
## RTL / LTR Support
|
|
101
|
+
This sidebar is primarily designed for **RTL (Right-to-Left)** interfaces (e.g., Arabic).
|
|
102
|
+
While it may theoretically work in LTR environments if standard Bootstrap files are used instead of RTL versions, this has **not been fully tested**.
|
|
103
|
+
> *Future updates are planned to support dynamic language switching between RTL and LTR.*
|
|
104
|
+
|
|
105
|
+
## Version History
|
|
106
|
+
|
|
107
|
+
| Version | Changes |
|
|
108
|
+
| :--- | :--- |
|
|
109
|
+
| **v1.0.0** | Initial Release. |
|
|
110
|
+
| **v1.0.1** | Fixed titlebar positioning bug causing overlap/gaps. |
|
|
111
|
+
| **v1.0.2** | Improved documentation clarity and added usage instructions. |
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Micro Sidebar
|
|
2
2
|
|
|
3
|
-
A reusable Django sidebar app for Web Apps.
|
|
3
|
+
A reusable RTL Django sidebar app for Web Apps.
|
|
4
4
|
|
|
5
5
|
## Requirements
|
|
6
6
|
|
|
@@ -37,7 +37,7 @@ A reusable Django sidebar app for Web Apps.
|
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
4. **Add to your Base Template:**
|
|
40
|
-
In your `base.html` (or equivalent), include the sidebar. It is designed to sit
|
|
40
|
+
In your `base.html` (or equivalent), include the sidebar. It is designed to sit to the right of your main content.
|
|
41
41
|
|
|
42
42
|
Example structure using Flexbox:
|
|
43
43
|
```html
|
|
@@ -68,3 +68,16 @@ The default sidebar logic expects specific classes like `.list-group-item` and `
|
|
|
68
68
|
|
|
69
69
|
### Positioning
|
|
70
70
|
The sidebar is sticky by default. If your app has a top navigation bar (titlebar), the sidebar will automatically adjust its position below it on small screens. If no titlebar is detected, it will stick to the top of the viewport.
|
|
71
|
+
|
|
72
|
+
## RTL / LTR Support
|
|
73
|
+
This sidebar is primarily designed for **RTL (Right-to-Left)** interfaces (e.g., Arabic).
|
|
74
|
+
While it may theoretically work in LTR environments if standard Bootstrap files are used instead of RTL versions, this has **not been fully tested**.
|
|
75
|
+
> *Future updates are planned to support dynamic language switching between RTL and LTR.*
|
|
76
|
+
|
|
77
|
+
## Version History
|
|
78
|
+
|
|
79
|
+
| Version | Changes |
|
|
80
|
+
| :--- | :--- |
|
|
81
|
+
| **v1.0.0** | Initial Release. |
|
|
82
|
+
| **v1.0.1** | Fixed titlebar positioning bug causing overlap/gaps. |
|
|
83
|
+
| **v1.0.2** | Improved documentation clarity and added usage instructions. |
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: micro_sidebar
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: A reusable Django sidebar for Web Apps
|
|
5
5
|
Home-page: https://github.com/debeski/micro-sidebar
|
|
6
6
|
Author: DeBeski
|
|
@@ -28,7 +28,7 @@ Dynamic: requires-python
|
|
|
28
28
|
|
|
29
29
|
# Micro Sidebar
|
|
30
30
|
|
|
31
|
-
A reusable Django sidebar app for Web Apps.
|
|
31
|
+
A reusable RTL Django sidebar app for Web Apps.
|
|
32
32
|
|
|
33
33
|
## Requirements
|
|
34
34
|
|
|
@@ -65,7 +65,7 @@ A reusable Django sidebar app for Web Apps.
|
|
|
65
65
|
```
|
|
66
66
|
|
|
67
67
|
4. **Add to your Base Template:**
|
|
68
|
-
In your `base.html` (or equivalent), include the sidebar. It is designed to sit
|
|
68
|
+
In your `base.html` (or equivalent), include the sidebar. It is designed to sit to the right of your main content.
|
|
69
69
|
|
|
70
70
|
Example structure using Flexbox:
|
|
71
71
|
```html
|
|
@@ -96,3 +96,16 @@ The default sidebar logic expects specific classes like `.list-group-item` and `
|
|
|
96
96
|
|
|
97
97
|
### Positioning
|
|
98
98
|
The sidebar is sticky by default. If your app has a top navigation bar (titlebar), the sidebar will automatically adjust its position below it on small screens. If no titlebar is detected, it will stick to the top of the viewport.
|
|
99
|
+
|
|
100
|
+
## RTL / LTR Support
|
|
101
|
+
This sidebar is primarily designed for **RTL (Right-to-Left)** interfaces (e.g., Arabic).
|
|
102
|
+
While it may theoretically work in LTR environments if standard Bootstrap files are used instead of RTL versions, this has **not been fully tested**.
|
|
103
|
+
> *Future updates are planned to support dynamic language switching between RTL and LTR.*
|
|
104
|
+
|
|
105
|
+
## Version History
|
|
106
|
+
|
|
107
|
+
| Version | Changes |
|
|
108
|
+
| :--- | :--- |
|
|
109
|
+
| **v1.0.0** | Initial Release. |
|
|
110
|
+
| **v1.0.1** | Fixed titlebar positioning bug causing overlap/gaps. |
|
|
111
|
+
| **v1.0.2** | Improved documentation clarity and added usage instructions. |
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|