@erplora/outfitkit 0.1.22 → 0.1.23

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/dist/layout.css +24 -2
  2. package/package.json +1 -1
package/dist/layout.css CHANGED
@@ -18,7 +18,11 @@
18
18
 
19
19
  :root {
20
20
  --ok-grid-gap: clamp(0.75rem, 1.5vw, 1.25rem);
21
- --ok-section-pad-y: clamp(3rem, 7vw, 5.5rem);
21
+ --ok-section-pad-y-compact: clamp(2rem, 4vw, 3rem);
22
+ --ok-section-pad-y-standard: clamp(2.5rem, 5vw, 4.5rem);
23
+ --ok-section-pad-y-featured: clamp(3.5rem, 6vw, 5.5rem);
24
+ --ok-section-pad-y: var(--ok-section-pad-y-standard);
25
+ --ok-section-head-space: clamp(1.75rem, 3vw, 2.5rem);
22
26
  }
23
27
 
24
28
  /* ===== Container (web pública; en dashboard NO: ahí el ancho lo da el split-pane) ===== */
@@ -117,6 +121,24 @@
117
121
  font-family: var(--ok-font, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif);
118
122
  }
119
123
 
124
+ /* Ritmo vertical compartido. .ok-section-content permite conservar un
125
+ .ok-container explícito dentro de superficies full-bleed. Los modificadores
126
+ pueden vivir en el propio bloque o en un wrapper y se heredan por tokens. */
127
+ .ok-section-content {
128
+ box-sizing: border-box;
129
+ padding-block: var(--ok-section-pad-y);
130
+ }
131
+
132
+ .ok-section--compact {
133
+ --ok-section-pad-y: var(--ok-section-pad-y-compact);
134
+ --ok-section-head-space: clamp(1.5rem, 2.5vw, 2rem);
135
+ }
136
+
137
+ .ok-section--featured {
138
+ --ok-section-pad-y: var(--ok-section-pad-y-featured);
139
+ --ok-section-head-space: clamp(2rem, 4vw, 3rem);
140
+ }
141
+
120
142
  .ok-section--divider {
121
143
  border-top: 1px solid color-mix(in oklab, var(--ok-text, var(--ion-text-color, #18181b)) 8%, transparent);
122
144
  }
@@ -136,7 +158,7 @@
136
158
  display: flex;
137
159
  flex-direction: column;
138
160
  gap: 0.9rem;
139
- margin-bottom: clamp(2rem, 4vw, 3rem);
161
+ margin-bottom: var(--ok-section-head-space);
140
162
  max-width: 56ch;
141
163
  }
142
164
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erplora/outfitkit",
3
- "version": "0.1.22",
3
+ "version": "0.1.23",
4
4
  "description": "OutfitKit — librería de Web Components (Lit) que CONSTRUYE lo que Ionic no tiene (tree, data-table rica, inline-feedback, kpi/stat, stepper/wizard, calendar, kanban…) sobre primitivos de Ionic. Ionic es la base; OutfitKit cubre los huecos. npm + CDN, imports individuales, CSP-safe. Tema vía tokens --ok-* (fallback a --ion-*).",
5
5
  "type": "module",
6
6
  "license": "MIT",