overflowed 0.0.0-experimental-20260129225612 → 0.0.0-experimental-006
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/README.md +16 -0
- package/package.json +12 -3
package/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
TODO:
|
|
2
|
+
|
|
3
|
+
infinite scroll interactive scroll arrow
|
|
4
|
+
|
|
5
|
+
overflow container:
|
|
6
|
+
|
|
7
|
+
- mutation observer to automatically register the items and overflow
|
|
8
|
+
- add index to the items? mirror item style fully?
|
|
9
|
+
- trigger event when overflow count changes
|
|
10
|
+
- todo: ensure it doesn't fully collapse when no overflow element exists
|
|
11
|
+
- make it work with column-reverse and row-reverse
|
|
12
|
+
|
|
13
|
+
probably should wait a while before shipping this:
|
|
14
|
+
|
|
15
|
+
- use css anchor positioning instead of mirror element thingy? releases in firefox 147
|
|
16
|
+
- @container scroll-state
|
package/package.json
CHANGED
|
@@ -1,10 +1,19 @@
|
|
|
1
1
|
{
|
|
2
|
+
"type": "module",
|
|
2
3
|
"name": "overflowed",
|
|
3
|
-
"version": "0.0.0-experimental-20260129225612",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"
|
|
5
|
+
"homepage": "https://overflowed.aht.cx",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/ahtcx/overflow-container.git",
|
|
9
|
+
"directory": "packages/core"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/ahtcx/overflowed"
|
|
13
|
+
},
|
|
6
14
|
"exports": {
|
|
7
15
|
".": "./dist/mod.js",
|
|
8
16
|
"./package.json": "./package.json"
|
|
9
|
-
}
|
|
17
|
+
},
|
|
18
|
+
"version": "v0.0.0-experimental-006"
|
|
10
19
|
}
|