@rip-lang/grid 0.1.0 → 0.2.1

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.
Files changed (2) hide show
  1. package/grid.rip +2 -2
  2. package/package.json +2 -7
package/grid.rip CHANGED
@@ -1,7 +1,7 @@
1
1
  import { get, use, start } from '@rip-lang/api'
2
- import { ripUI } from '@rip-lang/ui/serve'
2
+ import { ripApp } from '@rip-lang/api/app'
3
3
 
4
4
  dir = import.meta.dir
5
- use ripUI dir: dir
5
+ use ripApp dir: dir
6
6
  get '/*' -> @send "#{dir}/grid.html", 'text/html; charset=UTF-8'
7
7
  start port: 3003
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rip-lang/grid",
3
- "version": "0.1.0",
3
+ "version": "0.2.1",
4
4
  "description": "High-performance reactive data grid for Rip UI",
5
5
  "type": "module",
6
6
  "main": "grid.rip",
@@ -35,11 +35,6 @@
35
35
  "README.md"
36
36
  ],
37
37
  "peerDependencies": {
38
- "@rip-lang/ui": ">=0.3.19"
39
- },
40
- "peerDependenciesMeta": {
41
- "@rip-lang/ui": {
42
- "optional": false
43
- }
38
+ "rip-lang": ">=3.12.0"
44
39
  }
45
40
  }