maverick-wave 3.7.0 → 3.10.0
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/.claude/settings.local.json +2 -1
- package/CHANGELOG.md +40 -0
- package/index.html +6 -0
- package/maverick-wave.min.css +5 -1
- package/maverick-wave.min.js +1 -1
- package/package.json +2 -2
- package/src/js/main.js +216 -0
- package/src/partials/documentation-container.html +3 -0
- package/src/partials/kanban-container.html +771 -0
- package/src/scss/abstracts/_variables.scss +1 -1
- package/src/scss/components/_buttons.scss +2 -1
- package/src/scss/components/_cards.scss +2 -1
- package/src/scss/components/_index.scss +1 -0
- package/src/scss/components/_kanban.scss +368 -0
- package/maverick-wave.css +0 -8241
- package/maverick-wave.js +0 -587
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,46 @@ Patch releases are only for test purposes - here I only document major and minor
|
|
|
6
6
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
7
7
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
8
8
|
|
|
9
|
+
<<<<<<< HEAD
|
|
10
|
+
<<<<<<< HEAD
|
|
11
|
+
<<<<<<< HEAD
|
|
12
|
+
<<<<<<< HEAD
|
|
13
|
+
||||||| 4031dbb
|
|
14
|
+
=======
|
|
15
|
+
||||||| 0be20d9
|
|
16
|
+
=======
|
|
17
|
+
||||||| da0294d
|
|
18
|
+
=======
|
|
19
|
+
## [3.10.0] - 2026-08-10
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
|
|
23
|
+
- kanban board
|
|
24
|
+
|
|
25
|
+
>>>>>>> main
|
|
26
|
+
## [3.9.0] - 2026-08-07
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
|
|
30
|
+
- technical issues
|
|
31
|
+
>>>>>>> main
|
|
32
|
+
|
|
33
|
+
## [3.8.0] - 2026-08-07
|
|
34
|
+
|
|
35
|
+
### Fixed
|
|
36
|
+
|
|
37
|
+
- technical issues
|
|
38
|
+
|
|
39
|
+
> > > > > > > main
|
|
40
|
+
||||||| 4031dbb
|
|
41
|
+
=======
|
|
42
|
+
## [3.8.0] - 2026-08-07
|
|
43
|
+
|
|
44
|
+
### Fixed
|
|
45
|
+
|
|
46
|
+
- technical issues
|
|
47
|
+
>>>>>>> main
|
|
48
|
+
|
|
9
49
|
## [3.7.0] - 2026-08-07
|
|
10
50
|
|
|
11
51
|
### Changed
|
package/index.html
CHANGED
|
@@ -382,6 +382,7 @@
|
|
|
382
382
|
<a href="#page-header" class="mw-section-btn">Page Header</a>
|
|
383
383
|
<a href="#meta-info" class="mw-section-btn">Meta Info</a>
|
|
384
384
|
<a href="#tables" class="mw-section-btn">Tables</a>
|
|
385
|
+
<a href="#kanban" class="mw-section-btn">Kanban</a>
|
|
385
386
|
<a href="#pagination" class="mw-section-btn">Pagination</a>
|
|
386
387
|
<a href="#timelines" class="mw-section-btn">Timelines</a>
|
|
387
388
|
<a href="#gallery" class="mw-section-btn">Image Gallery</a>
|
|
@@ -407,6 +408,11 @@
|
|
|
407
408
|
@@include('./src/partials/tables-container.html')
|
|
408
409
|
</div>
|
|
409
410
|
|
|
411
|
+
<!-- Kanban container -->
|
|
412
|
+
<div id="kanban">
|
|
413
|
+
@@include('./src/partials/kanban-container.html')
|
|
414
|
+
</div>
|
|
415
|
+
|
|
410
416
|
<!-- Pagination container -->
|
|
411
417
|
<div id="pagination">
|
|
412
418
|
@@include('./src/partials/pagination-container.html')
|