@oicl/openbridge-webcomponents 2.0.0-next.128 → 2.0.0-next.129
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/bundle/openbridge-webcomponents.bundle.js +12321 -11895
- package/bundle/openbridge-webcomponents.bundle.js.map +1 -1
- package/custom-elements.json +227 -3
- package/dist/building-blocks/readout-block/readout-block.css.js +53 -19
- package/dist/building-blocks/readout-block/readout-block.css.js.map +1 -1
- package/dist/building-blocks/readout-block/readout-block.d.ts +55 -0
- package/dist/building-blocks/readout-block/readout-block.d.ts.map +1 -1
- package/dist/building-blocks/readout-block/readout-block.js +57 -2
- package/dist/building-blocks/readout-block/readout-block.js.map +1 -1
- package/dist/navigation-instruments/readout/readout-shared.d.ts +23 -0
- package/dist/navigation-instruments/readout/readout-shared.d.ts.map +1 -1
- package/dist/navigation-instruments/readout/readout-shared.js +8 -0
- package/dist/navigation-instruments/readout/readout-shared.js.map +1 -1
- package/dist/navigation-instruments/readout/readout.css.js +138 -31
- package/dist/navigation-instruments/readout/readout.css.js.map +1 -1
- package/dist/navigation-instruments/readout/readout.d.ts +63 -3
- package/dist/navigation-instruments/readout/readout.d.ts.map +1 -1
- package/dist/navigation-instruments/readout/readout.js +127 -27
- package/dist/navigation-instruments/readout/readout.js.map +1 -1
- package/dist/navigation-instruments/readout-list-item/readout-list-item.css.js +64 -1
- package/dist/navigation-instruments/readout-list-item/readout-list-item.css.js.map +1 -1
- package/dist/navigation-instruments/readout-list-item/readout-list-item.d.ts +77 -2
- package/dist/navigation-instruments/readout-list-item/readout-list-item.d.ts.map +1 -1
- package/dist/navigation-instruments/readout-list-item/readout-list-item.js +100 -23
- package/dist/navigation-instruments/readout-list-item/readout-list-item.js.map +1 -1
- package/package.json +1 -1
package/custom-elements.json
CHANGED
|
@@ -41270,6 +41270,25 @@
|
|
|
41270
41270
|
"description": "Text alignment of the number within its reserved width.",
|
|
41271
41271
|
"attribute": "alignment"
|
|
41272
41272
|
},
|
|
41273
|
+
{
|
|
41274
|
+
"kind": "field",
|
|
41275
|
+
"name": "category",
|
|
41276
|
+
"type": {
|
|
41277
|
+
"text": "ReadoutAdviceCategory"
|
|
41278
|
+
},
|
|
41279
|
+
"description": "Semantic category of an advice block — picks the default marker icon and\nthe active styling. Only meaningful for `variant=\"advice\"`.",
|
|
41280
|
+
"attribute": "category"
|
|
41281
|
+
},
|
|
41282
|
+
{
|
|
41283
|
+
"kind": "field",
|
|
41284
|
+
"name": "active",
|
|
41285
|
+
"type": {
|
|
41286
|
+
"text": "boolean"
|
|
41287
|
+
},
|
|
41288
|
+
"default": "false",
|
|
41289
|
+
"description": "The advice is triggered: the marker swaps to its filled/status icon and\nthe number takes the category's triggered styling (SemiBold for\nregular/optimal/eco, active text colour for the alert categories). Only\nmeaningful for `variant=\"advice\"`.",
|
|
41290
|
+
"attribute": "active"
|
|
41291
|
+
},
|
|
41273
41292
|
{
|
|
41274
41293
|
"kind": "field",
|
|
41275
41294
|
"name": "dataQuality",
|
|
@@ -41415,6 +41434,17 @@
|
|
|
41415
41434
|
}
|
|
41416
41435
|
}
|
|
41417
41436
|
},
|
|
41437
|
+
{
|
|
41438
|
+
"kind": "method",
|
|
41439
|
+
"name": "adviceFallbackIcon",
|
|
41440
|
+
"privacy": "private",
|
|
41441
|
+
"return": {
|
|
41442
|
+
"type": {
|
|
41443
|
+
"text": "TemplateResult"
|
|
41444
|
+
}
|
|
41445
|
+
},
|
|
41446
|
+
"description": "The advice marker for the current category / triggered state. Resting\ncategories carry a neutral outline glyph (tinted via `currentColor`);\ntriggered alert categories swap to the filled IEC status icon, whose\ncolours are fixed fills and ignore `currentColor` by design."
|
|
41447
|
+
},
|
|
41418
41448
|
{
|
|
41419
41449
|
"kind": "method",
|
|
41420
41450
|
"name": "renderDegreeGlyph",
|
|
@@ -41573,6 +41603,23 @@
|
|
|
41573
41603
|
"description": "Text alignment of the number within its reserved width.",
|
|
41574
41604
|
"fieldName": "alignment"
|
|
41575
41605
|
},
|
|
41606
|
+
{
|
|
41607
|
+
"name": "category",
|
|
41608
|
+
"type": {
|
|
41609
|
+
"text": "ReadoutAdviceCategory"
|
|
41610
|
+
},
|
|
41611
|
+
"description": "Semantic category of an advice block — picks the default marker icon and\nthe active styling. Only meaningful for `variant=\"advice\"`.",
|
|
41612
|
+
"fieldName": "category"
|
|
41613
|
+
},
|
|
41614
|
+
{
|
|
41615
|
+
"name": "active",
|
|
41616
|
+
"type": {
|
|
41617
|
+
"text": "boolean"
|
|
41618
|
+
},
|
|
41619
|
+
"default": "false",
|
|
41620
|
+
"description": "The advice is triggered: the marker swaps to its filled/status icon and\nthe number takes the category's triggered styling (SemiBold for\nregular/optimal/eco, active text colour for the alert categories). Only\nmeaningful for `variant=\"advice\"`.",
|
|
41621
|
+
"fieldName": "active"
|
|
41622
|
+
},
|
|
41576
41623
|
{
|
|
41577
41624
|
"name": "dataQuality",
|
|
41578
41625
|
"type": {
|
|
@@ -92765,6 +92812,14 @@
|
|
|
92765
92812
|
},
|
|
92766
92813
|
"attribute": "adviceOptions"
|
|
92767
92814
|
},
|
|
92815
|
+
{
|
|
92816
|
+
"kind": "field",
|
|
92817
|
+
"name": "labelOptions",
|
|
92818
|
+
"type": {
|
|
92819
|
+
"text": "ReadoutLabelOptions | undefined"
|
|
92820
|
+
},
|
|
92821
|
+
"attribute": "labelOptions"
|
|
92822
|
+
},
|
|
92768
92823
|
{
|
|
92769
92824
|
"kind": "field",
|
|
92770
92825
|
"name": "unitOptions",
|
|
@@ -92909,6 +92964,15 @@
|
|
|
92909
92964
|
"privacy": "private",
|
|
92910
92965
|
"readonly": true
|
|
92911
92966
|
},
|
|
92967
|
+
{
|
|
92968
|
+
"kind": "field",
|
|
92969
|
+
"name": "isEqualSize",
|
|
92970
|
+
"type": {
|
|
92971
|
+
"text": "boolean"
|
|
92972
|
+
},
|
|
92973
|
+
"privacy": "private",
|
|
92974
|
+
"readonly": true
|
|
92975
|
+
},
|
|
92912
92976
|
{
|
|
92913
92977
|
"kind": "field",
|
|
92914
92978
|
"name": "isPopUp",
|
|
@@ -92995,6 +93059,26 @@
|
|
|
92995
93059
|
"description": "Value font weight passes straight to obc-textbox; regular when unset. Colour is separate.",
|
|
92996
93060
|
"readonly": true
|
|
92997
93061
|
},
|
|
93062
|
+
{
|
|
93063
|
+
"kind": "field",
|
|
93064
|
+
"name": "labelSize",
|
|
93065
|
+
"type": {
|
|
93066
|
+
"text": "ObcTextboxSize"
|
|
93067
|
+
},
|
|
93068
|
+
"privacy": "private",
|
|
93069
|
+
"description": "Label size: `xs` for dense list rows unless overridden (see ReadoutLabelOptions).",
|
|
93070
|
+
"readonly": true
|
|
93071
|
+
},
|
|
93072
|
+
{
|
|
93073
|
+
"kind": "field",
|
|
93074
|
+
"name": "labelWeight",
|
|
93075
|
+
"type": {
|
|
93076
|
+
"text": "ObcTextboxFontWeight"
|
|
93077
|
+
},
|
|
93078
|
+
"privacy": "private",
|
|
93079
|
+
"description": "Label weight: SemiBold only for enhanced (in-command) rows, regular\notherwise — the designer reduced the amount of semibold in the interface\n(Figma 6.1 review).",
|
|
93080
|
+
"readonly": true
|
|
93081
|
+
},
|
|
92998
93082
|
{
|
|
92999
93083
|
"kind": "field",
|
|
93000
93084
|
"name": "setpointWeight",
|
|
@@ -93074,7 +93158,7 @@
|
|
|
93074
93158
|
{
|
|
93075
93159
|
"name": "config",
|
|
93076
93160
|
"type": {
|
|
93077
|
-
"text": "{\n variant: ReadoutBlockVariant;\n value: number | string | null | undefined;\n /** Only the value block is ever text; setpoint / advice stay numeric. */\n valueType?: ReadoutValueType;\n valueSize: ObcTextboxSize;\n enhanced: boolean;\n weight: ObcTextboxFontWeight;\n hintedZeros: boolean;\n spaceReserver?: string;\n off?: boolean;\n hasDegree?: boolean;\n hasIcon?: boolean;\n touching?: boolean;\n hidePhase?: ReadoutBlockHidePhase;\n dataQuality?: ReadoutBlockDataQuality;\n alert?: false | AlertFrameConfig;\n }"
|
|
93161
|
+
"text": "{\n variant: ReadoutBlockVariant;\n value: number | string | null | undefined;\n /** Only the value block is ever text; setpoint / advice stay numeric. */\n valueType?: ReadoutValueType;\n valueSize: ObcTextboxSize;\n enhanced: boolean;\n weight: ObcTextboxFontWeight;\n hintedZeros: boolean;\n spaceReserver?: string;\n off?: boolean;\n hasDegree?: boolean;\n hasIcon?: boolean;\n touching?: boolean;\n hidePhase?: ReadoutBlockHidePhase;\n dataQuality?: ReadoutBlockDataQuality;\n alert?: false | AlertFrameConfig;\n /** Advice-only: semantic category + triggered state. */\n category?: ReadoutAdviceCategory;\n active?: boolean;\n }"
|
|
93078
93162
|
}
|
|
93079
93163
|
}
|
|
93080
93164
|
]
|
|
@@ -93217,6 +93301,17 @@
|
|
|
93217
93301
|
}
|
|
93218
93302
|
}
|
|
93219
93303
|
},
|
|
93304
|
+
{
|
|
93305
|
+
"kind": "method",
|
|
93306
|
+
"name": "renderSourceBlock",
|
|
93307
|
+
"privacy": "private",
|
|
93308
|
+
"return": {
|
|
93309
|
+
"type": {
|
|
93310
|
+
"text": "TemplateResult"
|
|
93311
|
+
}
|
|
93312
|
+
},
|
|
93313
|
+
"description": "The source text plus its optional state chip and deviation line. The\nplain (regular, no-deviation) case renders the bare textbox — byte-for-\nbyte the pre-6.1 output; a state or a deviation wraps it in the\n`.source-block` stack."
|
|
93314
|
+
},
|
|
93220
93315
|
{
|
|
93221
93316
|
"kind": "method",
|
|
93222
93317
|
"name": "renderTrailingSource",
|
|
@@ -93448,6 +93543,13 @@
|
|
|
93448
93543
|
},
|
|
93449
93544
|
"fieldName": "adviceOptions"
|
|
93450
93545
|
},
|
|
93546
|
+
{
|
|
93547
|
+
"name": "labelOptions",
|
|
93548
|
+
"type": {
|
|
93549
|
+
"text": "ReadoutLabelOptions | undefined"
|
|
93550
|
+
},
|
|
93551
|
+
"fieldName": "labelOptions"
|
|
93552
|
+
},
|
|
93451
93553
|
{
|
|
93452
93554
|
"name": "unitOptions",
|
|
93453
93555
|
"type": {
|
|
@@ -93497,6 +93599,14 @@
|
|
|
93497
93599
|
"module": "../readout/readout-formatters.js"
|
|
93498
93600
|
}
|
|
93499
93601
|
},
|
|
93602
|
+
{
|
|
93603
|
+
"kind": "js",
|
|
93604
|
+
"name": "ReadoutAdviceCategory",
|
|
93605
|
+
"declaration": {
|
|
93606
|
+
"name": "ReadoutAdviceCategory",
|
|
93607
|
+
"module": "../../building-blocks/readout-block/readout-block.js"
|
|
93608
|
+
}
|
|
93609
|
+
},
|
|
93500
93610
|
{
|
|
93501
93611
|
"kind": "js",
|
|
93502
93612
|
"name": "ReadoutListItemSize",
|
|
@@ -93654,6 +93764,10 @@
|
|
|
93654
93764
|
"description": "`<obc-readout>` – An instrument readout: a value with optional setpoint,\nadvice, label, unit, and source, arranged vertically or horizontally.\n\nA layout sibling of `<obc-readout-list-item>` built from the same\ncap-height \"readout building blocks\" (`obc-readout-block`): dynamic data is\npassed as top-level primitives (`value`, `setpoint`, `advice`, `label`,\n`unit`, `src`), global layout/format via top-level props (`size`,\n`priority`, `direction`, `stacking`, `alignment`, `hasDegree`,\n`dataQuality`, `alert`, …) and per-block tweaks via one object per block\n(`valueOptions`, `setpointOptions`, `adviceOptions`, `unitOptions`,\n`srcOptions`).\n\n### Features\n- **Building blocks:** value, optional setpoint, and optional advice\n segments, each cap-height-aligned and able to reserve a stable width.\n- **Sizes:** `small`, `medium`, `large` density scales.\n- **Direction:** `vertical` (blocks above a label+unit meta zone and source\n row) or `horizontal` (all segments on one row).\n- **Stacking & alignment:** vertical readouts arrange label/unit `inline`\n or `stacked`; stacked readouts align `vertical` (right), `left`, or\n `center`.\n- **Priority:** `regular`/`enhanced` colour emphasis; per-value `weight`\n is independent of colour.\n- **Setpoint interactions:** `always-visible`, `flip-flop` (emphasis swap),\n and `pop-up` (fade-out at setpoint), plus the `touching` focus state.\n- **Data quality:** `low-integrity`/`invalid` styling, per block or for the\n whole readout, combinable with `alert`.\n- **Alert frame:** optional `alert` wrapper (caution/warning/alarm/level).\n- **Source:** plain text by default; opt-in `picker` (context menu) or\n `flyout` interactivity via `srcOptions.interaction`.\n- **Formatting:** shared `fractionDigits`, width reservation via\n `maxDigits` and per-segment `hintedZeros`; a `null` value renders a dash.\n- **Text values:** `valueType=\"text\"` renders `value` verbatim (e.g.\n `\"Auto\"`) instead of formatting it as a number.\n\n### Usage Guidelines\nUse for stand-alone instrument readouts and readouts embedded in\ninstruments. Prefer `<obc-readout-list-item>` for dense rows in\nlists/tables (label left, value right) and `<obc-readout-list>` for\nauto-aligned groups of rows.",
|
|
93655
93765
|
"name": "ObcReadout",
|
|
93656
93766
|
"slots": [
|
|
93767
|
+
{
|
|
93768
|
+
"description": "Icon before the label/unit meta zone.",
|
|
93769
|
+
"name": "leading-icon"
|
|
93770
|
+
},
|
|
93657
93771
|
{
|
|
93658
93772
|
"description": "Icon before the value.",
|
|
93659
93773
|
"name": "value-icon"
|
|
@@ -93784,6 +93898,7 @@
|
|
|
93784
93898
|
"type": {
|
|
93785
93899
|
"text": "ReadoutSize | undefined"
|
|
93786
93900
|
},
|
|
93901
|
+
"description": "Density tier. Applies to the vertical direction only — the horizontal\narrangement exists in the large tier alone (Figma 6.1: it relies on the\nlabel+unit stack aligning with the L-size value caps), so `size` is\nignored when `direction` is `horizontal`.",
|
|
93787
93902
|
"attribute": "size"
|
|
93788
93903
|
},
|
|
93789
93904
|
{
|
|
@@ -93825,6 +93940,7 @@
|
|
|
93825
93940
|
"text": "boolean"
|
|
93826
93941
|
},
|
|
93827
93942
|
"default": "false",
|
|
93943
|
+
"description": "Render the cap-height degree glyph (`°`) after the ACTUAL VALUE only —\nthe setpoint / advice blocks never carry one (Figma 6.1 review: the unit\nis written once for the readout, and the degree follows the same rule).",
|
|
93828
93944
|
"attribute": "hasDegree"
|
|
93829
93945
|
},
|
|
93830
93946
|
{
|
|
@@ -93836,6 +93952,16 @@
|
|
|
93836
93952
|
"default": "false",
|
|
93837
93953
|
"attribute": "hasDegreeSpacer"
|
|
93838
93954
|
},
|
|
93955
|
+
{
|
|
93956
|
+
"kind": "field",
|
|
93957
|
+
"name": "hasLeadingIcon",
|
|
93958
|
+
"type": {
|
|
93959
|
+
"text": "boolean"
|
|
93960
|
+
},
|
|
93961
|
+
"default": "false",
|
|
93962
|
+
"description": "Show the `leading-icon` slot before the label/unit meta zone.",
|
|
93963
|
+
"attribute": "hasLeadingIcon"
|
|
93964
|
+
},
|
|
93839
93965
|
{
|
|
93840
93966
|
"kind": "field",
|
|
93841
93967
|
"name": "fractionDigits",
|
|
@@ -93897,6 +94023,14 @@
|
|
|
93897
94023
|
},
|
|
93898
94024
|
"attribute": "adviceOptions"
|
|
93899
94025
|
},
|
|
94026
|
+
{
|
|
94027
|
+
"kind": "field",
|
|
94028
|
+
"name": "labelOptions",
|
|
94029
|
+
"type": {
|
|
94030
|
+
"text": "ReadoutLabelOptions | undefined"
|
|
94031
|
+
},
|
|
94032
|
+
"attribute": "labelOptions"
|
|
94033
|
+
},
|
|
93900
94034
|
{
|
|
93901
94035
|
"kind": "field",
|
|
93902
94036
|
"name": "unitOptions",
|
|
@@ -94109,6 +94243,15 @@
|
|
|
94109
94243
|
"privacy": "private",
|
|
94110
94244
|
"readonly": true
|
|
94111
94245
|
},
|
|
94246
|
+
{
|
|
94247
|
+
"kind": "field",
|
|
94248
|
+
"name": "isEqualSize",
|
|
94249
|
+
"type": {
|
|
94250
|
+
"text": "boolean"
|
|
94251
|
+
},
|
|
94252
|
+
"privacy": "private",
|
|
94253
|
+
"readonly": true
|
|
94254
|
+
},
|
|
94112
94255
|
{
|
|
94113
94256
|
"kind": "field",
|
|
94114
94257
|
"name": "isPopUp",
|
|
@@ -94205,6 +94348,26 @@
|
|
|
94205
94348
|
"description": "Value font weight passes straight to obc-textbox; regular when unset. Colour is separate.",
|
|
94206
94349
|
"readonly": true
|
|
94207
94350
|
},
|
|
94351
|
+
{
|
|
94352
|
+
"kind": "field",
|
|
94353
|
+
"name": "labelSize",
|
|
94354
|
+
"type": {
|
|
94355
|
+
"text": "ObcTextboxSize"
|
|
94356
|
+
},
|
|
94357
|
+
"privacy": "private",
|
|
94358
|
+
"description": "Label size. The Figma 6.1 title block defaults large readouts to `s` — a\nscannable label should not sit at the smallest permitted size — while\nsmall/medium tiers stay `xs`; `labelOptions.size` overrides either way\n(per the design team, for context / density / secondary instruments).\nThe `s` default was confirmed by the design team (2026-08-17).\nTODO(designer): the medium-tier default is unverified in the new sheets\n(only XS and S exist on the title's size axis).",
|
|
94359
|
+
"readonly": true
|
|
94360
|
+
},
|
|
94361
|
+
{
|
|
94362
|
+
"kind": "field",
|
|
94363
|
+
"name": "labelWeight",
|
|
94364
|
+
"type": {
|
|
94365
|
+
"text": "ObcTextboxFontWeight"
|
|
94366
|
+
},
|
|
94367
|
+
"privacy": "private",
|
|
94368
|
+
"description": "Label weight: SemiBold only for enhanced (in-command) readouts, regular\notherwise — the designer reduced the amount of semibold in the interface\n(Figma 6.1 review).",
|
|
94369
|
+
"readonly": true
|
|
94370
|
+
},
|
|
94208
94371
|
{
|
|
94209
94372
|
"kind": "field",
|
|
94210
94373
|
"name": "setpointWeight",
|
|
@@ -94284,7 +94447,7 @@
|
|
|
94284
94447
|
{
|
|
94285
94448
|
"name": "config",
|
|
94286
94449
|
"type": {
|
|
94287
|
-
"text": "{\n variant: ReadoutBlockVariant;\n value: number | string | null | undefined;\n /** Only the value block is ever text; setpoint / advice stay numeric. */\n valueType?: ReadoutValueType;\n valueSize: ObcTextboxSize;\n enhanced: boolean;\n weight: ObcTextboxFontWeight;\n hintedZeros: boolean;\n spaceReserver?: string;\n off?: boolean;\n hasDegree?: boolean;\n hasIcon?: boolean;\n touching?: boolean;\n hidePhase?: ReadoutBlockHidePhase;\n dataQuality?: ReadoutBlockDataQuality;\n alert?: false | AlertFrameConfig;\n /**\n * Invisible width-reserving duplicate (see\n * {@link renderSetpointWidthReserve}): skips the forwarded icon slot so\n * the visible block keeps the slotted content — the block's default\n * marker has the same fixed tier width.\n */\n ghost?: boolean;\n }"
|
|
94450
|
+
"text": "{\n variant: ReadoutBlockVariant;\n value: number | string | null | undefined;\n /** Only the value block is ever text; setpoint / advice stay numeric. */\n valueType?: ReadoutValueType;\n valueSize: ObcTextboxSize;\n enhanced: boolean;\n weight: ObcTextboxFontWeight;\n hintedZeros: boolean;\n spaceReserver?: string;\n off?: boolean;\n hasDegree?: boolean;\n hasIcon?: boolean;\n touching?: boolean;\n hidePhase?: ReadoutBlockHidePhase;\n dataQuality?: ReadoutBlockDataQuality;\n alert?: false | AlertFrameConfig;\n /** Advice-only: semantic category + triggered state. */\n category?: ReadoutAdviceCategory;\n active?: boolean;\n /**\n * Invisible width-reserving duplicate (see\n * {@link renderSetpointWidthReserve}): skips the forwarded icon slot so\n * the visible block keeps the slotted content — the block's default\n * marker has the same fixed tier width.\n */\n ghost?: boolean;\n }"
|
|
94288
94451
|
}
|
|
94289
94452
|
}
|
|
94290
94453
|
]
|
|
@@ -94438,6 +94601,25 @@
|
|
|
94438
94601
|
}
|
|
94439
94602
|
}
|
|
94440
94603
|
},
|
|
94604
|
+
{
|
|
94605
|
+
"kind": "method",
|
|
94606
|
+
"name": "renderSourceBlock",
|
|
94607
|
+
"privacy": "private",
|
|
94608
|
+
"return": {
|
|
94609
|
+
"type": {
|
|
94610
|
+
"text": "TemplateResult"
|
|
94611
|
+
}
|
|
94612
|
+
},
|
|
94613
|
+
"parameters": [
|
|
94614
|
+
{
|
|
94615
|
+
"name": "src",
|
|
94616
|
+
"type": {
|
|
94617
|
+
"text": "string"
|
|
94618
|
+
}
|
|
94619
|
+
}
|
|
94620
|
+
],
|
|
94621
|
+
"description": "The plain (non-interactive) source: the textbox plus its optional state\nchip and deviation line. The regular no-deviation case renders the bare\ntextbox — the pre-6.1 output; a state or deviation wraps it in the\n`.source-block` stack. The picker / flyout button variants do not carry\nstate / deviation yet — TODO(designer): undefined in the 6.1 sheets."
|
|
94622
|
+
},
|
|
94441
94623
|
{
|
|
94442
94624
|
"kind": "method",
|
|
94443
94625
|
"name": "renderSource",
|
|
@@ -94447,7 +94629,7 @@
|
|
|
94447
94629
|
"text": "TemplateResult | typeof nothing"
|
|
94448
94630
|
}
|
|
94449
94631
|
},
|
|
94450
|
-
"description": "The source row (vertical) / segment (horizontal)
|
|
94632
|
+
"description": "The source row (vertical) / segment (horizontal). Only the horizontal\ndirection draws an auto divider before the source — the Figma 6.1 review\n(node 95:24490 \"remove dividers\", 95:26891 \"Source-divider are there\")\nkeeps the vertical source row divider-free while the horizontal flow\nseparates the source with a vertical rule."
|
|
94451
94633
|
},
|
|
94452
94634
|
{
|
|
94453
94635
|
"kind": "method",
|
|
@@ -94712,6 +94894,7 @@
|
|
|
94712
94894
|
"type": {
|
|
94713
94895
|
"text": "ReadoutSize | undefined"
|
|
94714
94896
|
},
|
|
94897
|
+
"description": "Density tier. Applies to the vertical direction only — the horizontal\narrangement exists in the large tier alone (Figma 6.1: it relies on the\nlabel+unit stack aligning with the L-size value caps), so `size` is\nignored when `direction` is `horizontal`.",
|
|
94715
94898
|
"fieldName": "size"
|
|
94716
94899
|
},
|
|
94717
94900
|
{
|
|
@@ -94748,6 +94931,7 @@
|
|
|
94748
94931
|
"text": "boolean"
|
|
94749
94932
|
},
|
|
94750
94933
|
"default": "false",
|
|
94934
|
+
"description": "Render the cap-height degree glyph (`°`) after the ACTUAL VALUE only —\nthe setpoint / advice blocks never carry one (Figma 6.1 review: the unit\nis written once for the readout, and the degree follows the same rule).",
|
|
94751
94935
|
"fieldName": "hasDegree"
|
|
94752
94936
|
},
|
|
94753
94937
|
{
|
|
@@ -94758,6 +94942,15 @@
|
|
|
94758
94942
|
"default": "false",
|
|
94759
94943
|
"fieldName": "hasDegreeSpacer"
|
|
94760
94944
|
},
|
|
94945
|
+
{
|
|
94946
|
+
"name": "hasLeadingIcon",
|
|
94947
|
+
"type": {
|
|
94948
|
+
"text": "boolean"
|
|
94949
|
+
},
|
|
94950
|
+
"default": "false",
|
|
94951
|
+
"description": "Show the `leading-icon` slot before the label/unit meta zone.",
|
|
94952
|
+
"fieldName": "hasLeadingIcon"
|
|
94953
|
+
},
|
|
94761
94954
|
{
|
|
94762
94955
|
"name": "fractionDigits",
|
|
94763
94956
|
"type": {
|
|
@@ -94812,6 +95005,13 @@
|
|
|
94812
95005
|
},
|
|
94813
95006
|
"fieldName": "adviceOptions"
|
|
94814
95007
|
},
|
|
95008
|
+
{
|
|
95009
|
+
"name": "labelOptions",
|
|
95010
|
+
"type": {
|
|
95011
|
+
"text": "ReadoutLabelOptions | undefined"
|
|
95012
|
+
},
|
|
95013
|
+
"fieldName": "labelOptions"
|
|
95014
|
+
},
|
|
94815
95015
|
{
|
|
94816
95016
|
"name": "unitOptions",
|
|
94817
95017
|
"type": {
|
|
@@ -94861,6 +95061,22 @@
|
|
|
94861
95061
|
"module": "./readout-formatters.js"
|
|
94862
95062
|
}
|
|
94863
95063
|
},
|
|
95064
|
+
{
|
|
95065
|
+
"kind": "js",
|
|
95066
|
+
"name": "ReadoutAdviceCategory",
|
|
95067
|
+
"declaration": {
|
|
95068
|
+
"name": "ReadoutAdviceCategory",
|
|
95069
|
+
"module": "../../building-blocks/readout-block/readout-block.js"
|
|
95070
|
+
}
|
|
95071
|
+
},
|
|
95072
|
+
{
|
|
95073
|
+
"kind": "js",
|
|
95074
|
+
"name": "ReadoutSourceState",
|
|
95075
|
+
"declaration": {
|
|
95076
|
+
"name": "ReadoutSourceState",
|
|
95077
|
+
"module": "../readout-list-item/readout-list-item.js"
|
|
95078
|
+
}
|
|
95079
|
+
},
|
|
94864
95080
|
{
|
|
94865
95081
|
"kind": "js",
|
|
94866
95082
|
"name": "ReadoutBlockState",
|
|
@@ -94893,6 +95109,14 @@
|
|
|
94893
95109
|
"module": "../readout-list-item/readout-list-item.js"
|
|
94894
95110
|
}
|
|
94895
95111
|
},
|
|
95112
|
+
{
|
|
95113
|
+
"kind": "js",
|
|
95114
|
+
"name": "ReadoutLabelOptions",
|
|
95115
|
+
"declaration": {
|
|
95116
|
+
"name": "ReadoutLabelOptions",
|
|
95117
|
+
"module": "../readout-list-item/readout-list-item.js"
|
|
95118
|
+
}
|
|
95119
|
+
},
|
|
94896
95120
|
{
|
|
94897
95121
|
"kind": "js",
|
|
94898
95122
|
"name": "ReadoutReserverOptions",
|
|
@@ -49,7 +49,11 @@ const componentStyle = css`* {
|
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
.hinted-zero {
|
|
52
|
-
|
|
52
|
+
/* Figma 6.1 review (node 95:24490): hinted zeros are lighter than the old
|
|
53
|
+
inactive tone and NEVER inherit the value's weight — a bold value must not
|
|
54
|
+
bold its hints. */
|
|
55
|
+
color: var(--obc-readout-block-hinted-color, var(--element-disabled-color));
|
|
56
|
+
font-weight: var(--global-typography-generic-l-font-weight-regular);
|
|
53
57
|
}
|
|
54
58
|
|
|
55
59
|
/* ---------- Text colours (overridable via custom properties) ----------
|
|
@@ -124,6 +128,27 @@ const componentStyle = css`* {
|
|
|
124
128
|
color: var(--obc-readout-block-advice-color, var(--element-neutral-color));
|
|
125
129
|
}
|
|
126
130
|
|
|
131
|
+
/* ---------- Advice categories (Figma 6.1 Readout-block-advice) ----------
|
|
132
|
+
* Resting categories are neutral; \`advice-active\` (triggered) tints the
|
|
133
|
+
* regular/optimal/eco diamond via currentColor (the IEC status icons of the
|
|
134
|
+
* alert categories carry fixed fills and ignore this) and switches the alert
|
|
135
|
+
* categories' number to the active text colour. */
|
|
136
|
+
|
|
137
|
+
.block-advice.advice-active.advice-optimal .block-icon {
|
|
138
|
+
color: var(--element-neutral-enhanced-color);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.block-advice.advice-active.advice-eco .block-icon {
|
|
142
|
+
color: var(--base-mint-400);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.block-advice.advice-active.advice-caution,
|
|
146
|
+
.block-advice.advice-active.advice-warning,
|
|
147
|
+
.block-advice.advice-active.advice-alarm,
|
|
148
|
+
.block-advice.advice-active.advice-running {
|
|
149
|
+
color: var(--element-active-color);
|
|
150
|
+
}
|
|
151
|
+
|
|
127
152
|
/* ---------- Per-block data quality ----------
|
|
128
153
|
* Uses \`outline\` (not \`border\`) so the chip never shifts the block's width — the
|
|
129
154
|
* value stays column-aligned across rows. */
|
|
@@ -188,39 +213,48 @@ const componentStyle = css`* {
|
|
|
188
213
|
|
|
189
214
|
/* ---------- Size tiers ----------
|
|
190
215
|
* Public small/medium/large map to the design token regular/medium/large
|
|
191
|
-
* tiers.
|
|
216
|
+
* tiers. The icon↔number gap follows the tier; the marker ICON size follows
|
|
217
|
+
* the block's rendered number size (\`value-size-*\`) instead — Figma 6.1
|
|
218
|
+
* (Readout-block-setpoint, review node 95:26891): a de-emphasised S setpoint
|
|
219
|
+
* carries the 16px arrow while an emphasised L one carries the 24px arrow,
|
|
220
|
+
* even though both sit in the same large-tier readout.
|
|
221
|
+
* \`--obc-readout-block-icon-size\` is the consumer escape hatch. */
|
|
192
222
|
|
|
193
223
|
.block.size-small {
|
|
194
224
|
gap: var(--instrument-components-readout-new-general-regular-icon-gap);
|
|
195
225
|
}
|
|
196
226
|
|
|
197
|
-
.size-small .block-icon {
|
|
198
|
-
inline-size: var(
|
|
199
|
-
--instrument-components-readout-new-general-regular-icon-size
|
|
200
|
-
);
|
|
201
|
-
block-size: var(
|
|
202
|
-
--instrument-components-readout-new-general-regular-icon-size
|
|
203
|
-
);
|
|
204
|
-
}
|
|
205
|
-
|
|
206
227
|
.block.size-medium {
|
|
207
228
|
gap: var(--instrument-components-readout-new-general-medium-icon-gap);
|
|
208
229
|
}
|
|
209
230
|
|
|
210
|
-
.size-
|
|
211
|
-
|
|
231
|
+
.block.size-large {
|
|
232
|
+
gap: var(--instrument-components-readout-new-general-large-icon-gap);
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.block.value-size-xs,
|
|
236
|
+
.block.value-size-s {
|
|
237
|
+
--_block-icon-size: var(
|
|
238
|
+
--instrument-components-readout-new-general-regular-icon-size
|
|
239
|
+
);
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.block.value-size-m {
|
|
243
|
+
--_block-icon-size: var(
|
|
212
244
|
--instrument-components-readout-new-general-medium-icon-size
|
|
213
245
|
);
|
|
214
|
-
block-size: var(--instrument-components-readout-new-general-medium-icon-size);
|
|
215
246
|
}
|
|
216
247
|
|
|
217
|
-
.block.size-
|
|
218
|
-
|
|
248
|
+
.block.value-size-l,
|
|
249
|
+
.block.value-size-xl {
|
|
250
|
+
--_block-icon-size: var(
|
|
251
|
+
--instrument-components-readout-new-general-large-icon-size
|
|
252
|
+
);
|
|
219
253
|
}
|
|
220
254
|
|
|
221
|
-
.
|
|
222
|
-
inline-size: var(--
|
|
223
|
-
block-size: var(--
|
|
255
|
+
.block .block-icon {
|
|
256
|
+
inline-size: var(--obc-readout-block-icon-size, var(--_block-icon-size));
|
|
257
|
+
block-size: var(--obc-readout-block-icon-size, var(--_block-icon-size));
|
|
224
258
|
}
|
|
225
259
|
`;
|
|
226
260
|
export {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"readout-block.css.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"readout-block.css.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -5,6 +5,15 @@ import { AlertFrameConfig } from '../../components/alert-frame/alert-frame.js';
|
|
|
5
5
|
import '../../components/textbox/textbox.js';
|
|
6
6
|
import '../../icons/icon-input-right.js';
|
|
7
7
|
import '../../icons/icon-notification-advice.js';
|
|
8
|
+
import '../../icons/icon-notification-advice-active.js';
|
|
9
|
+
import '../../icons/icon-caution-google.js';
|
|
10
|
+
import '../../icons/icon-caution-color-iec.js';
|
|
11
|
+
import '../../icons/icon-warning-unacknowledged-outlined.js';
|
|
12
|
+
import '../../icons/icon-warning-unacknowledged-iec.js';
|
|
13
|
+
import '../../icons/icon-alarm.js';
|
|
14
|
+
import '../../icons/icon-alarm-unacknowledged-iec.js';
|
|
15
|
+
import '../../icons/icon-running.js';
|
|
16
|
+
import '../../icons/icon-running-color-iec.js';
|
|
8
17
|
export { ObcTextboxSize, ObcTextboxFontWeight, ObcTextboxAlignment, } from '../../components/textbox/textbox.js';
|
|
9
18
|
export { ReadoutValueType } from '../../navigation-instruments/readout/readout-formatters.js';
|
|
10
19
|
/**
|
|
@@ -39,6 +48,31 @@ export declare enum ReadoutBlockDataQuality {
|
|
|
39
48
|
lowIntegrity = "low-integrity",
|
|
40
49
|
invalid = "invalid"
|
|
41
50
|
}
|
|
51
|
+
/**
|
|
52
|
+
* Semantic category of an advice block (Figma 6.1 "Readout-block-advice"
|
|
53
|
+
* Value axis). Drives the default marker icon and — while {@link
|
|
54
|
+
* ObcReadoutBlock.active} — the triggered styling:
|
|
55
|
+
* - `regular` / `optimal` / `eco`: the advice diamond; triggered renders the
|
|
56
|
+
* filled diamond (tinted enhanced-blue / mint for optimal / eco) and a
|
|
57
|
+
* SemiBold number.
|
|
58
|
+
* - `caution` / `warning` / `alarm` / `running`: the matching neutral outline
|
|
59
|
+
* icon; triggered swaps in the filled IEC status icon and the active text
|
|
60
|
+
* colour.
|
|
61
|
+
*
|
|
62
|
+
* TODO(designer): the optimal / eco triggered tint covers the whole diamond
|
|
63
|
+
* glyph — the Figma icon tints only the inner plus, which needs a two-tone
|
|
64
|
+
* icon asset; and the advice "Enhanced" state (indent background chip) is not
|
|
65
|
+
* implemented yet. Both flagged as "may change" in the 6.1 review.
|
|
66
|
+
*/
|
|
67
|
+
export declare enum ReadoutAdviceCategory {
|
|
68
|
+
regular = "regular",
|
|
69
|
+
optimal = "optimal",
|
|
70
|
+
eco = "eco",
|
|
71
|
+
caution = "caution",
|
|
72
|
+
warning = "warning",
|
|
73
|
+
alarm = "alarm",
|
|
74
|
+
running = "running"
|
|
75
|
+
}
|
|
42
76
|
/**
|
|
43
77
|
* Pop-up fade phase for a setpoint block. Driven by the parent's setpoint
|
|
44
78
|
* interaction state machine; only meaningful for `role="setpoint"`.
|
|
@@ -140,6 +174,20 @@ export declare class ObcReadoutBlock extends LitElement {
|
|
|
140
174
|
offText: string;
|
|
141
175
|
/** Text alignment of the number within its reserved width. */
|
|
142
176
|
alignment: ObcTextboxAlignment;
|
|
177
|
+
/**
|
|
178
|
+
* Semantic category of an advice block — picks the default marker icon and
|
|
179
|
+
* the {@link active} styling. Only meaningful for `variant="advice"`.
|
|
180
|
+
* @availableWhen variant==advice
|
|
181
|
+
*/
|
|
182
|
+
category: ReadoutAdviceCategory;
|
|
183
|
+
/**
|
|
184
|
+
* The advice is triggered: the marker swaps to its filled/status icon and
|
|
185
|
+
* the number takes the category's triggered styling (SemiBold for
|
|
186
|
+
* regular/optimal/eco, active text colour for the alert categories). Only
|
|
187
|
+
* meaningful for `variant="advice"`.
|
|
188
|
+
* @availableWhen variant==advice
|
|
189
|
+
*/
|
|
190
|
+
active: boolean;
|
|
143
191
|
/** Per-block measurement quality (outline chip). */
|
|
144
192
|
dataQuality?: ReadoutBlockDataQuality;
|
|
145
193
|
/** Per-block alert frame; nests inside any parent alert frame. */
|
|
@@ -179,6 +227,13 @@ export declare class ObcReadoutBlock extends LitElement {
|
|
|
179
227
|
private dataQualityClasses;
|
|
180
228
|
private onIconSlotChange;
|
|
181
229
|
private renderIcon;
|
|
230
|
+
/**
|
|
231
|
+
* The advice marker for the current category / triggered state. Resting
|
|
232
|
+
* categories carry a neutral outline glyph (tinted via `currentColor`);
|
|
233
|
+
* triggered alert categories swap to the filled IEC status icon, whose
|
|
234
|
+
* colours are fixed fills and ignore `currentColor` by design.
|
|
235
|
+
*/
|
|
236
|
+
private adviceFallbackIcon;
|
|
182
237
|
/**
|
|
183
238
|
* A cap-height `°` column whose width scales with the number size. Inherits the
|
|
184
239
|
* block's colour.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"readout-block.d.ts","sourceRoot":"","sources":["../../../src/building-blocks/readout-block/readout-block.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAgD,MAAM,KAAK,CAAC;AAK9E,OAAO,qCAAqC,CAAC;AAC7C,OAAO,EACL,cAAc,EACd,oBAAoB,EACpB,mBAAmB,EACpB,MAAM,qCAAqC,CAAC;AAC7C,OAAO,iCAAiC,CAAC;AACzC,OAAO,yCAAyC,CAAC;AACjD,OAAO,EAUL,gBAAgB,EAEjB,MAAM,4DAA4D,CAAC;AACpE,OAAO,EACL,KAAK,gBAAgB,EAEtB,MAAM,6CAA6C,CAAC;AAGrD,OAAO,EACL,cAAc,EACd,oBAAoB,EACpB,mBAAmB,GACpB,MAAM,qCAAqC,CAAC;AAC7C,OAAO,EAAC,gBAAgB,EAAC,MAAM,4DAA4D,CAAC;AAE5F;;;;;;GAMG;AACH,oBAAY,mBAAmB;IAC7B,KAAK,UAAU;IACf,QAAQ,aAAa;IACrB,MAAM,WAAW;CAClB;AAED;;;;;GAKG;AACH,oBAAY,gBAAgB;IAC1B,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,KAAK,UAAU;CAChB;AAED;;;;GAIG;AACH,oBAAY,uBAAuB;IACjC,YAAY,kBAAkB;IAC9B,OAAO,YAAY;CACpB;AAED;;;GAGG;AACH,oBAAY,qBAAqB;IAC/B,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,MAAM,WAAW;CAClB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,qBACa,eAAgB,SAAQ,UAAU;IAC7C,oDAAoD;IAC1B,OAAO,EAAE,mBAAmB,CAC1B;IAE5B;;;OAGG;IACuB,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAQ;IAE/D;;;;OAIG;IACuB,SAAS,EAAE,gBAAgB,CAC3B;IAE1B,kDAAkD;IACxB,IAAI,EAAE,gBAAgB,CAA0B;IAE1E;;;;OAIG;IACuB,SAAS,CAAC,EAAE,cAAc,CAAC;IAErD,uCAAuC;IACZ,QAAQ,UAAS;IAE5C,6EAA6E;IACnD,MAAM,EAAE,oBAAoB,CACvB;IAE/B,yDAAyD;IAC9B,SAAS,UAAS;IAE7C,8EAA8E;IACnD,OAAO,UAAS;IAE3C;;;;;;;;OAQG;IACuB,cAAc,SAAK;IAE7C;;;;;;;;OAQG;IACuB,SAAS,SAAK;IAExC;;;OAGG;IACwB,WAAW,UAAS;IAE/C,sEAAsE;IAC5C,aAAa,CAAC,EAAE,MAAM,CAAC;IAEjD,0EAA0E;IAC/C,GAAG,UAAS;IAEvC,qCAAqC;IACX,OAAO,SAAS;IAE1C,8DAA8D;IACpC,SAAS,EAAE,mBAAmB,CAC5B;IAE5B,oDAAoD;IAC1B,WAAW,CAAC,EAAE,uBAAuB,CAAC;IAKhE,kEAAkE;IACxC,KAAK,EAAE,OAAO,GAAG,gBAAgB,CAAS;IAEpE,4EAA4E;IACjD,QAAQ,UAAS;IAE5C,0EAA0E;IAChD,SAAS,EAAE,qBAAqB,CAC7B;IAEpB,OAAO,CAAC,eAAe,CAAS;IAEzC,OAAO,KAAK,iBAAiB,GAY5B;IAED;;;;OAIG;IACH,OAAO,KAAK,iBAAiB,GAE5B;IAED;;;;;;;;OAQG;IACH,OAAO,KAAK,kBAAkB,GAK7B;IAED,OAAO,KAAK,oBAAoB,GAc/B;IAED,2EAA2E;IAC3E,OAAO,KAAK,YAAY,GASvB;IAED;;;;;OAKG;IACH,OAAO,CAAC,aAAa;IAUrB,OAAO,CAAC,kBAAkB;IAQ1B,OAAO,CAAC,gBAAgB,CAMtB;IAEF,OAAO,CAAC,UAAU;IAsBlB;;;OAGG;IACH,OAAO,CAAC,iBAAiB;cAiBN,UAAU,CAAC,OAAO,EAAE,GAAG,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,IAAI;IAazD,MAAM;
|
|
1
|
+
{"version":3,"file":"readout-block.d.ts","sourceRoot":"","sources":["../../../src/building-blocks/readout-block/readout-block.ts"],"names":[],"mappings":"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"}
|