@pyreon/coolgrid 0.15.0 → 0.18.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pyreon/coolgrid",
3
- "version": "0.15.0",
3
+ "version": "0.18.0",
4
4
  "description": "Responsive grid system for Pyreon",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -42,20 +42,20 @@
42
42
  "typecheck": "tsc --noEmit"
43
43
  },
44
44
  "devDependencies": {
45
- "@pyreon/test-utils": "^0.13.2",
46
- "@pyreon/typescript": "^0.15.0",
47
- "@pyreon/ui-core": "^0.15.0",
45
+ "@pyreon/test-utils": "^0.13.5",
46
+ "@pyreon/typescript": "^0.18.0",
47
+ "@pyreon/ui-core": "^0.18.0",
48
48
  "@vitest/browser-playwright": "^4.1.4",
49
49
  "@vitus-labs/tools-rolldown": "^2.3.0"
50
50
  },
51
- "peerDependencies": {
52
- "@pyreon/core": "^0.15.0",
53
- "@pyreon/reactivity": "^0.15.0",
54
- "@pyreon/styler": "^0.15.0",
55
- "@pyreon/ui-core": "^0.15.0",
56
- "@pyreon/unistyle": "^0.15.0"
57
- },
58
51
  "engines": {
59
52
  "node": ">= 22"
53
+ },
54
+ "dependencies": {
55
+ "@pyreon/core": "^0.18.0",
56
+ "@pyreon/reactivity": "^0.18.0",
57
+ "@pyreon/styler": "^0.18.0",
58
+ "@pyreon/ui-core": "^0.18.0",
59
+ "@pyreon/unistyle": "^0.18.0"
60
60
  }
61
61
  }
@@ -44,7 +44,7 @@ describe('Col', () => {
44
44
  // Per-test timeout bump — subsequent tests in the file reuse the cached
45
45
  // module and run in 0ms, so the global 15s budget stays strict everywhere
46
46
  // else.
47
- it('returns a VNode', { timeout: 30000 }, async () => {
47
+ it('returns a VNode', { timeout: 60000 }, async () => {
48
48
  const Col = (await import('../Col')).default
49
49
  const result = asVNode(Col({ children: 'test' }))
50
50
  expect(result).toBeDefined()
@@ -29,7 +29,7 @@ describe('Container', () => {
29
29
  mockUseContext.mockReturnValue({ theme: {} })
30
30
  })
31
31
 
32
- it('returns a VNode', { timeout: 30_000 }, async () => {
32
+ it('returns a VNode', { timeout: 60_000 }, async () => {
33
33
  // Long timeout: this test dynamic-imports Container on first run,
34
34
  // which cold-loads the full styler → unistyle chain. On slow CI
35
35
  // runners it consistently hits ~13-14s, flaking against the
@@ -36,7 +36,7 @@ describe('Row', () => {
36
36
  // Per-test timeout bump — subsequent tests in the file reuse the cached
37
37
  // module and run in 0ms, so the global 15s budget stays strict everywhere
38
38
  // else.
39
- it('returns a VNode', { timeout: 30000 }, async () => {
39
+ it('returns a VNode', { timeout: 60000 }, async () => {
40
40
  const Row = (await import('../Row')).default
41
41
  const result = asVNode(Row({ children: 'test' }))
42
42
  expect(result).toBeDefined()