@dryui/ui 1.7.3 → 1.7.4

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": "@dryui/ui",
3
- "version": "1.7.3",
3
+ "version": "1.7.4",
4
4
  "description": "Zero-dependency styled Svelte 5 components with scoped styles and --dry-* CSS variable theming.",
5
5
  "author": "Rob Balfre",
6
6
  "license": "MIT",
@@ -784,16 +784,16 @@
784
784
  "postpack": "bun ../../scripts/postpack-exports.ts"
785
785
  },
786
786
  "dependencies": {
787
- "@dryui/primitives": "^1.7.3"
787
+ "@dryui/primitives": "^1.7.4"
788
788
  },
789
789
  "peerDependencies": {
790
- "svelte": "^5.55.1"
790
+ "svelte": "^5.55.4"
791
791
  },
792
792
  "devDependencies": {
793
- "@dryui/lint": "^0.4.2",
794
- "svelte": "^5.55.3",
793
+ "@dryui/lint": "^0.4.3",
794
+ "svelte": "^5.55.4",
795
795
  "@sveltejs/package": "^2.5.7",
796
796
  "svelte-check": "^4.4.6",
797
- "typescript": "^6.0.2"
797
+ "typescript": "^6.0.3"
798
798
  }
799
799
  }
@@ -92,12 +92,8 @@ Use AlertDialog (not Dialog) for destructive confirmations. It requires explicit
92
92
  <p>This action cannot be undone.</p>
93
93
  </AlertDialog.Body>
94
94
  <AlertDialog.Footer>
95
- <AlertDialog.Cancel>
96
- <Button variant="outline">Cancel</Button>
97
- </AlertDialog.Cancel>
98
- <AlertDialog.Action>
99
- <Button variant="solid">Delete</Button>
100
- </AlertDialog.Action>
95
+ <AlertDialog.Cancel>Cancel</AlertDialog.Cancel>
96
+ <AlertDialog.Action>Delete</AlertDialog.Action>
101
97
  </AlertDialog.Footer>
102
98
  </AlertDialog.Content>
103
99
  </AlertDialog.Root>
@@ -144,12 +144,8 @@ Use AlertDialog for destructive confirmations. It traps focus and requires expli
144
144
  <p>This action cannot be undone.</p>
145
145
  </AlertDialog.Body>
146
146
  <AlertDialog.Footer>
147
- <AlertDialog.Cancel>
148
- <Button variant="outline">Cancel</Button>
149
- </AlertDialog.Cancel>
150
- <AlertDialog.Action>
151
- <Button variant="solid">Delete</Button>
152
- </AlertDialog.Action>
147
+ <AlertDialog.Cancel>Cancel</AlertDialog.Cancel>
148
+ <AlertDialog.Action>Delete</AlertDialog.Action>
153
149
  </AlertDialog.Footer>
154
150
  </AlertDialog.Content>
155
151
  </AlertDialog.Root>