playhtml 2.1.12-beta.0 → 2.1.12
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 +0 -4
- package/README.md +6 -0
- package/dist/playhtml.es.js +1210 -1143
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,10 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
|
|
4
4
|
|
|
5
|
-
## 2.1.12 - 2024-08-13
|
|
6
|
-
|
|
7
|
-
- try removing indexeddb to fix compatibility issue.
|
|
8
|
-
|
|
9
5
|
## 2.1.6 - 2024-04-17
|
|
10
6
|
|
|
11
7
|
- fix bug with native image dragging conflicting with playhtml draggable elements.
|
package/README.md
CHANGED
|
@@ -189,6 +189,12 @@ IDs are recommended on all elements to uniquely identify them. If you are applyi
|
|
|
189
189
|
|
|
190
190
|
These capabilities are common ones that have been designed and created by the community. You should expect that they are relatively well-tested, and they simply build on top of the same API and constructs that `can-play` uses.
|
|
191
191
|
|
|
192
|
+
### `can-mirror`
|
|
193
|
+
|
|
194
|
+
**EXPERIMENTAL: USE WITH CAUTION**
|
|
195
|
+
|
|
196
|
+
Automatically syncs all styles and children of an element. This is a really powerful and expressive way to code as you normally do but have it be automatically collaborative. Still in testing and may have some bugs. NOTE that anyone can change the styles using their dev console and have it also sync across. Restricting values to certain ranges or values will soon be supported.
|
|
197
|
+
|
|
192
198
|
### `can-move`
|
|
193
199
|
|
|
194
200
|
https://github.com/spencerc99/playhtml/assets/14796580/215c7631-d71f-40e6-bdda-bd8146a88006
|