anentrypoint-design 0.0.63 → 0.0.66

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": "anentrypoint-design",
3
- "version": "0.0.63",
3
+ "version": "0.0.66",
4
4
  "description": "247420 design system SDK — webjsx + modified ripple-ui, single-file ESM bundle for reproducible use of the AnEntrypoint design.",
5
5
  "type": "module",
6
6
  "main": "./dist/247420.js",
@@ -86,9 +86,6 @@ export function Status({ left = [], right = [] } = {}) {
86
86
 
87
87
  export function AppShell({ topbar, crumb, side, main, status, narrow } = {}) {
88
88
  const hasSide = Boolean(side);
89
- const sideMotionClass = hasSide
90
- ? ' animate__animated animate__fadeInLeft'
91
- : ' animate__animated animate__fadeOutLeft';
92
89
  const sideNode = hasSide
93
90
  ? side
94
91
  : h('aside', { class: 'app-side', 'aria-hidden': 'true' });
@@ -97,7 +94,7 @@ export function AppShell({ topbar, crumb, side, main, status, narrow } = {}) {
97
94
  topbar || null,
98
95
  crumb || null,
99
96
  h('div', { class: 'app-body' + (hasSide ? '' : ' no-side') },
100
- h('div', { class: 'app-side-shell' + sideMotionClass }, sideNode),
97
+ h('div', { class: 'app-side-shell' }, sideNode),
101
98
  h('main', { class: 'app-main' + (narrow ? ' narrow' : '') }, ...(Array.isArray(main) ? main : [main]))
102
99
  ),
103
100
  status || null
@@ -1,32 +1,16 @@
1
- .fdash { display: flex; height: 100%; font-family: var(--ff-ui, Nunito, sans-serif); color: var(--ink, #1F1B16); }
2
- .fdash-side { flex: 0 0 180px; background: var(--panel-1, #ECE6D5); border-right: 1px solid var(--panel-2, #DDD3BC); padding: 8px 0; overflow-y: auto; }
3
- .fdash-nav { display: flex; flex-direction: column; gap: 2px; }
4
- .fdash-nav button { text-align: left; padding: 6px 12px; background: transparent; color: inherit; border: 0; cursor: pointer; font-family: inherit; font-size: 12px; border-left: 4px solid transparent; }
5
- .fdash-nav button:hover { background: var(--panel-hover, rgba(0,0,0,0.04)); }
6
- .fdash-nav button.active { background: var(--panel-select, #C8E4CA); border-left-color: var(--panel-accent, #3F8A4A); font-weight: 600; }
7
- .fdash-nav .glyph { display: inline-block; width: 16px; opacity: 0.7; font-family: var(--ff-mono, JetBrains Mono, monospace); }
8
- .fdash-nav .group-head { padding: 10px 12px 4px; font-size: 9px; opacity: 0.5; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
9
- .fdash-main { flex: 1; padding: 12px 16px; overflow: auto; min-width: 0; }
10
- .fdash-h { font-size: 14px; font-weight: 700; margin: 0 0 8px; }
11
- .fdash-kpi { display: flex; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
12
- .fdash-kpi .k { background: var(--panel-2, #DDD3BC); padding: 6px 12px; border-radius: var(--r-1, 6px); min-width: 80px; }
13
- .fdash-kpi .k .v { font-size: 18px; font-weight: 700; font-family: var(--ff-mono, JetBrains Mono, monospace); }
14
- .fdash-kpi .k .l { font-size: 10px; opacity: 0.7; text-transform: uppercase; }
15
- .fdash-panel { background: var(--panel-1, #ECE6D5); border-radius: var(--r-1, 6px); padding: 8px 12px; margin-bottom: 8px; }
16
- .fdash-panel h3 { font-size: 12px; font-weight: 700; margin: 0 0 6px; opacity: 0.8; text-transform: uppercase; }
17
- .fdash-panel pre { font-family: var(--ff-mono, JetBrains Mono, monospace); font-size: 11px; white-space: pre-wrap; word-break: break-all; margin: 0; max-height: 280px; overflow: auto; }
18
- .fdash-panel table { width: 100%; border-collapse: collapse; font-size: 12px; }
19
- .fdash-panel th, .fdash-panel td { padding: 4px 8px; text-align: left; border-bottom: 1px solid var(--panel-2, #DDD3BC); }
20
- .fdash-panel th { font-weight: 600; opacity: 0.7; font-size: 10px; text-transform: uppercase; }
21
- .fdash-row { display: flex; align-items: center; gap: 8px; padding: 4px 0; font-size: 12px; }
22
- .fdash-row .code { font-family: var(--ff-mono, JetBrains Mono, monospace); opacity: 0.6; }
23
- .fdash-row .meta { margin-left: auto; opacity: 0.5; font-size: 11px; }
24
- .fdash-form { display: flex; gap: 4px; flex-wrap: wrap; align-items: center; margin-bottom: 8px; }
25
- .fdash-form input, .fdash-form textarea, .fdash-form select { font: inherit; padding: 4px 8px; border: 1px solid var(--panel-2, #DDD3BC); border-radius: var(--r-1, 6px); background: var(--panel-0, #F5F0E4); color: inherit; }
26
- .fdash-form button { padding: 4px 12px; background: var(--panel-accent, #3F8A4A); color: #fff; border: 0; border-radius: var(--r-1, 6px); cursor: pointer; }
27
- .fdash-form button.danger { background: #c44; }
28
- .fdash-chip { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 11px; margin: 2px; }
29
- .fdash-chip.ok { background: var(--panel-select, #C8E4CA); }
30
- .fdash-chip.miss { background: var(--panel-2, #DDD3BC); opacity: 0.6; }
31
- .fdash-empty { padding: 20px; text-align: center; opacity: 0.5; font-size: 12px; }
32
- @media (max-width: 600px) { .fdash-side { flex: 0 0 56px; } .fdash-nav button .label { display: none; } }
1
+ /* freddie-dashboard.css minimal supplemental rule.
2
+ The dashboard now renders through bible components (AppShell/Panel/Kpi/
3
+ Table/Receipt/Hero/Row/EmptyState/Chip) that ship their own classes via
4
+ 247420.css. The only extra: a styled <pre> for raw JSON dumps. */
5
+ .app-fd .fd-pre {
6
+ font-family: var(--ff-mono, JetBrains Mono, monospace);
7
+ font-size: 12px;
8
+ white-space: pre-wrap;
9
+ word-break: break-all;
10
+ margin: 0;
11
+ max-height: 320px;
12
+ overflow: auto;
13
+ background: var(--panel-2, #DDD3BC);
14
+ padding: 8px 10px;
15
+ border-radius: var(--r-1, 6px);
16
+ }