hyperclayjs 1.28.2 → 1.28.3
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 +2 -2
- package/package.json +1 -1
- package/src/hyperclay.js +1 -1
- package/src/ui/theModal.js +16 -5
package/README.md
CHANGED
|
@@ -87,7 +87,7 @@ import 'hyperclayjs/presets/standard.js';
|
|
|
87
87
|
| Module | Size | Description |
|
|
88
88
|
|--------|------|-------------|
|
|
89
89
|
| dialogs | 8.5KB | ask(), consent(), tell(), snippet() dialog functions |
|
|
90
|
-
| the-modal |
|
|
90
|
+
| the-modal | 23KB | Full modal window creation system - window.theModal |
|
|
91
91
|
| toast | 15.8KB | Success/error message notifications, toast(msg, msgType) |
|
|
92
92
|
|
|
93
93
|
### Utilities (Core utilities (often auto-included))
|
|
@@ -145,7 +145,7 @@ Standard feature set for most use cases
|
|
|
145
145
|
|
|
146
146
|
**Modules:** `save-core`, `snapshot`, `save-system`, `unsaved-warning`, `edit-mode-helpers`, `persist`, `option-visibility`, `event-attrs`, `dom-helpers`, `toast`, `save-toast`, `export-to-window`, `view-mode-excludes-edit-modules`
|
|
147
147
|
|
|
148
|
-
### Everything (~337.
|
|
148
|
+
### Everything (~337.5KB)
|
|
149
149
|
All available features
|
|
150
150
|
|
|
151
151
|
Includes all available modules across all categories.
|
package/package.json
CHANGED
package/src/hyperclay.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* DO NOT EDIT THIS FILE DIRECTLY — it is generated from build/hyperclay.template.js
|
|
3
3
|
*
|
|
4
|
-
* HyperclayJS v1.28.
|
|
4
|
+
* HyperclayJS v1.28.3 - Minimal Browser-Native Loader
|
|
5
5
|
*
|
|
6
6
|
* Modules auto-init when imported (no separate init call needed).
|
|
7
7
|
* Include `export-to-window` feature to export to window.hyperclay.
|
package/src/ui/theModal.js
CHANGED
|
@@ -531,20 +531,31 @@ const modalCss = `<style class="micromodal-css">
|
|
|
531
531
|
}
|
|
532
532
|
|
|
533
533
|
.micromodal .snippet-link-box {
|
|
534
|
-
|
|
535
|
-
border: 2px solid #F6F7F9;
|
|
536
|
-
background-color: transparent;
|
|
537
|
-
font-size: 0.875rem;
|
|
534
|
+
font-size: 16px;
|
|
538
535
|
margin-top: 0.75rem;
|
|
536
|
+
text-align: right;
|
|
539
537
|
}
|
|
540
538
|
|
|
541
539
|
.micromodal .snippet-link-box a {
|
|
542
540
|
color: #F6F7F9;
|
|
543
|
-
text-decoration:
|
|
541
|
+
text-decoration: none;
|
|
542
|
+
display: inline-flex;
|
|
543
|
+
align-items: center;
|
|
544
|
+
gap: 0.3rem;
|
|
545
|
+
padding: 0.35rem 0.45rem;
|
|
546
|
+
border: 1px solid #474C64;
|
|
547
|
+
line-height: 1;
|
|
544
548
|
}
|
|
545
549
|
|
|
546
550
|
.micromodal .snippet-link-box a:hover {
|
|
547
551
|
color: #E5E7EB;
|
|
552
|
+
border-color: #75798B;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
.micromodal .snippet-link-box a svg {
|
|
556
|
+
width: 0.85rem;
|
|
557
|
+
height: 0.85rem;
|
|
558
|
+
flex-shrink: 0;
|
|
548
559
|
}
|
|
549
560
|
|
|
550
561
|
.micromodal button.micromodal__close {
|