@oicl/openbridge-webcomponents 2.0.0-next.83 → 2.0.0-next.85
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 +1223 -493
- package/bundle/openbridge-webcomponents.bundle.js.map +1 -1
- package/custom-elements.json +642 -196
- package/dist/components/tab-item/tab-item.css.js +8 -1
- package/dist/components/tab-item/tab-item.css.js.map +1 -1
- package/dist/components/tab-item/tab-item.d.ts +44 -0
- package/dist/components/tab-item/tab-item.d.ts.map +1 -1
- package/dist/components/tab-item/tab-item.js +44 -25
- package/dist/components/tab-item/tab-item.js.map +1 -1
- package/dist/components/tab-row/tab-row.d.ts +23 -9
- package/dist/components/tab-row/tab-row.d.ts.map +1 -1
- package/dist/components/tab-row/tab-row.js +24 -7
- package/dist/components/tab-row/tab-row.js.map +1 -1
- package/dist/components/textbox/textbox.css.js +29 -5
- package/dist/components/textbox/textbox.css.js.map +1 -1
- package/dist/components/textbox/textbox.d.ts +5 -0
- package/dist/components/textbox/textbox.d.ts.map +1 -1
- package/dist/components/textbox/textbox.js +6 -1
- package/dist/components/textbox/textbox.js.map +1 -1
- package/dist/navigation-instruments/readout-list-item/readout-list-item.css.js +611 -230
- 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 +280 -61
- 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 +529 -247
- package/dist/navigation-instruments/readout-list-item/readout-list-item.js.map +1 -1
- package/package.json +1 -1
package/custom-elements.json
CHANGED
|
@@ -61743,6 +61743,15 @@
|
|
|
61743
61743
|
"description": "Shows a vertical divider on the left edge of the tab (except when checked).\nUseful for visually separating tabs.\n\nDefault: false",
|
|
61744
61744
|
"attribute": "has-divider"
|
|
61745
61745
|
},
|
|
61746
|
+
{
|
|
61747
|
+
"kind": "field",
|
|
61748
|
+
"name": "badges",
|
|
61749
|
+
"type": {
|
|
61750
|
+
"text": "TabItemBadge[]"
|
|
61751
|
+
},
|
|
61752
|
+
"default": "[]",
|
|
61753
|
+
"description": "One or more badges (count/status) to display on the tab.\n\nWhen this array is non-empty it takes precedence over the deprecated\nsingle-badge props (`hasBadge`, `badgeType`, `badgeSize`, `badgeCount`,\n`badgeShowNumber`, `showLeadingBadgeIcon`). When empty, the deprecated\nprops are used instead (gated by `hasBadge`).\n\nDefault: []"
|
|
61754
|
+
},
|
|
61746
61755
|
{
|
|
61747
61756
|
"kind": "field",
|
|
61748
61757
|
"name": "hasBadge",
|
|
@@ -61750,7 +61759,7 @@
|
|
|
61750
61759
|
"text": "boolean"
|
|
61751
61760
|
},
|
|
61752
61761
|
"default": "false",
|
|
61753
|
-
"
|
|
61762
|
+
"deprecated": "Use the `badges` array instead.\n\nDisplays a badge (count/status) on the tab.\nConfigure badge appearance via `badgeCount`, `badgeType`, `badgeSize`, etc.\n\nDefault: false",
|
|
61754
61763
|
"attribute": "has-badge"
|
|
61755
61764
|
},
|
|
61756
61765
|
{
|
|
@@ -61809,7 +61818,7 @@
|
|
|
61809
61818
|
"type": {
|
|
61810
61819
|
"text": "string"
|
|
61811
61820
|
},
|
|
61812
|
-
"
|
|
61821
|
+
"deprecated": "Use the `badges` array instead.\n\nType of badge to display (e.g., 'regular', 'alarm', 'warning', etc.).\nSee `BadgeType` enum for available options.\n\nDefault: 'regular'",
|
|
61813
61822
|
"attribute": "badgeType"
|
|
61814
61823
|
},
|
|
61815
61824
|
{
|
|
@@ -61818,7 +61827,7 @@
|
|
|
61818
61827
|
"type": {
|
|
61819
61828
|
"text": "string"
|
|
61820
61829
|
},
|
|
61821
|
-
"
|
|
61830
|
+
"deprecated": "Use the `badges` array instead.\n\nSize of the badge ('regular' or 'large').\nSee `BadgeSize` enum for available options.\n\nDefault: 'regular'",
|
|
61822
61831
|
"attribute": "badgeSize"
|
|
61823
61832
|
},
|
|
61824
61833
|
{
|
|
@@ -61828,7 +61837,7 @@
|
|
|
61828
61837
|
"text": "boolean"
|
|
61829
61838
|
},
|
|
61830
61839
|
"default": "true",
|
|
61831
|
-
"
|
|
61840
|
+
"deprecated": "Use the `badges` array instead.\n\nShows the badge's numeric value. When false, only the badge background is rendered (for status-only badges).\n\nDefault: true"
|
|
61832
61841
|
},
|
|
61833
61842
|
{
|
|
61834
61843
|
"kind": "field",
|
|
@@ -61837,7 +61846,7 @@
|
|
|
61837
61846
|
"text": "number"
|
|
61838
61847
|
},
|
|
61839
61848
|
"default": "0",
|
|
61840
|
-
"
|
|
61849
|
+
"deprecated": "Use the `badges` array instead.\n\nThe numeric value to display in the badge (e.g., count of notifications).\n\nDefault: 0",
|
|
61841
61850
|
"attribute": "badgeCount"
|
|
61842
61851
|
},
|
|
61843
61852
|
{
|
|
@@ -61847,7 +61856,7 @@
|
|
|
61847
61856
|
"text": "boolean"
|
|
61848
61857
|
},
|
|
61849
61858
|
"default": "false",
|
|
61850
|
-
"
|
|
61859
|
+
"deprecated": "Use the `badges` array instead.\n\nShows an icon inside the badge.\nSupply icon content via the `badge-icon` slot.\n\nDefault: false",
|
|
61851
61860
|
"attribute": "showLeadingBadgeIcon"
|
|
61852
61861
|
},
|
|
61853
61862
|
{
|
|
@@ -61888,6 +61897,28 @@
|
|
|
61888
61897
|
}
|
|
61889
61898
|
}
|
|
61890
61899
|
]
|
|
61900
|
+
},
|
|
61901
|
+
{
|
|
61902
|
+
"kind": "field",
|
|
61903
|
+
"name": "effectiveBadges",
|
|
61904
|
+
"type": {
|
|
61905
|
+
"text": "TabItemBadge[]"
|
|
61906
|
+
},
|
|
61907
|
+
"privacy": "private",
|
|
61908
|
+
"readonly": true
|
|
61909
|
+
},
|
|
61910
|
+
{
|
|
61911
|
+
"kind": "method",
|
|
61912
|
+
"name": "renderBadge",
|
|
61913
|
+
"privacy": "private",
|
|
61914
|
+
"parameters": [
|
|
61915
|
+
{
|
|
61916
|
+
"name": "badge",
|
|
61917
|
+
"type": {
|
|
61918
|
+
"text": "TabItemBadge"
|
|
61919
|
+
}
|
|
61920
|
+
}
|
|
61921
|
+
]
|
|
61891
61922
|
}
|
|
61892
61923
|
],
|
|
61893
61924
|
"events": [
|
|
@@ -61970,7 +62001,7 @@
|
|
|
61970
62001
|
"text": "boolean"
|
|
61971
62002
|
},
|
|
61972
62003
|
"default": "false",
|
|
61973
|
-
"
|
|
62004
|
+
"deprecated": "Use the `badges` array instead.\n\nDisplays a badge (count/status) on the tab.\nConfigure badge appearance via `badgeCount`, `badgeType`, `badgeSize`, etc.\n\nDefault: false",
|
|
61974
62005
|
"fieldName": "hasBadge"
|
|
61975
62006
|
},
|
|
61976
62007
|
{
|
|
@@ -62023,7 +62054,7 @@
|
|
|
62023
62054
|
"type": {
|
|
62024
62055
|
"text": "string"
|
|
62025
62056
|
},
|
|
62026
|
-
"
|
|
62057
|
+
"deprecated": "Use the `badges` array instead.\n\nType of badge to display (e.g., 'regular', 'alarm', 'warning', etc.).\nSee `BadgeType` enum for available options.\n\nDefault: 'regular'",
|
|
62027
62058
|
"fieldName": "badgeType"
|
|
62028
62059
|
},
|
|
62029
62060
|
{
|
|
@@ -62031,7 +62062,7 @@
|
|
|
62031
62062
|
"type": {
|
|
62032
62063
|
"text": "string"
|
|
62033
62064
|
},
|
|
62034
|
-
"
|
|
62065
|
+
"deprecated": "Use the `badges` array instead.\n\nSize of the badge ('regular' or 'large').\nSee `BadgeSize` enum for available options.\n\nDefault: 'regular'",
|
|
62035
62066
|
"fieldName": "badgeSize"
|
|
62036
62067
|
},
|
|
62037
62068
|
{
|
|
@@ -62040,7 +62071,7 @@
|
|
|
62040
62071
|
"text": "number"
|
|
62041
62072
|
},
|
|
62042
62073
|
"default": "0",
|
|
62043
|
-
"
|
|
62074
|
+
"deprecated": "Use the `badges` array instead.\n\nThe numeric value to display in the badge (e.g., count of notifications).\n\nDefault: 0",
|
|
62044
62075
|
"fieldName": "badgeCount"
|
|
62045
62076
|
},
|
|
62046
62077
|
{
|
|
@@ -62049,7 +62080,7 @@
|
|
|
62049
62080
|
"text": "boolean"
|
|
62050
62081
|
},
|
|
62051
62082
|
"default": "false",
|
|
62052
|
-
"
|
|
62083
|
+
"deprecated": "Use the `badges` array instead.\n\nShows an icon inside the badge.\nSupply icon content via the `badge-icon` slot.\n\nDefault: false",
|
|
62053
62084
|
"fieldName": "showLeadingBadgeIcon"
|
|
62054
62085
|
}
|
|
62055
62086
|
],
|
|
@@ -62086,7 +62117,7 @@
|
|
|
62086
62117
|
"declarations": [
|
|
62087
62118
|
{
|
|
62088
62119
|
"kind": "class",
|
|
62089
|
-
"description": "`<obc-tab-row>` – A horizontal tab navigation bar for switching between multiple content sections.\n\nDisplays a row of interactive tabs, each representing a distinct view or section. Supports subtitles, badges, icons, close buttons, and an optional \"add new tab\" action. Designed for use cases where users need to quickly switch between related content areas, such as dashboards, settings, or document editors.\n\n---\n\n### Features\n- **Tab Selection:** Only one tab can be selected at a time; selection is managed via the `selectedTabId` property.\n- **Closeable Tabs:** Optionally display a close button on each tab (`hasClose`), allowing users to remove tabs dynamically.\n- **Add New Tab:** Optionally show an \"add new tab\" button at the end of the row (`hasAddNewTab`), emitting an event when clicked.\n- **Subtitles:** Optionally show secondary contextual text below each tab title (`showSubtitle` and `subtitle`).\n- **Badges:** Tabs can display badges with counts and types (e.g., notification, alarm, enhance), supporting different badge sizes and optional hiding of the number.\n- **Icons:** Each tab can show a leading icon (customizable via slot), and optionally a badge icon.\n- **Disabled Tabs:** Individual tabs can be disabled to prevent user interaction.\n- **Hug Mode:** When `hug` is enabled, tabs use a compact layout with reduced padding.\n- **Responsive Layout:** Tabs are arranged horizontally and adapt to the available width.\n\n---\n\n### Usage Guidelines\nUse `<obc-tab-row>` to organize content into logical sections that users can switch between without leaving the current page. Ideal for navigation in multi-view interfaces, such as settings panels, dashboards, or editors. Each tab should represent a distinct, high-level section. Avoid using tabs for navigation between unrelated pages or for single-action toggles.\n\n- Use badges to highlight new activity or counts (e.g., unread messages).\n- Use the close button for tabs that represent removable or temporary content (e.g., documents, chat sessions).\n- The \"add new tab\" action is suitable for interfaces where users can create new sections dynamically.\n- For best accessibility, ensure each tab has a unique `id` and descriptive `title`.\n\n**TODO(designer):** Confirm if there are recommended limits on the number of tabs, or guidance for handling overflow (e.g., scrolling, collapsing).\n\n---\n\n### Example\n```html\n<obc-tab-row\n .tabs=${[\n {id: 'tab1', title: 'Inbox', subtitle: 'Monitoring', hasBadge: true, badgeCount: 5, badgeType: 'notification'},\n {id: 'tab2', title: 'Updates'},\n {id: 'tab3', title: 'Settings', hasLeadingIcon: true}\n ]}\n selectedTabId=\"tab1\"\n show-subtitle\n hasClose\n hasAddNewTab\n>\n <obi-placeholder slot=\"tab-tab1-icon\"></obi-placeholder>\n <obi-placeholder slot=\"tab-tab3-icon\"></obi-placeholder>\n</obc-tab-row>\n```\n\n---\n\n### Slots\n\n| Slot Name | Renders When... | Purpose |\n|--------------------------|------------------------------------|------------------------------------------------------|\n| `tab-<id>-icon`
|
|
62120
|
+
"description": "`<obc-tab-row>` – A horizontal tab navigation bar for switching between multiple content sections.\n\nDisplays a row of interactive tabs, each representing a distinct view or section. Supports subtitles, badges, icons, close buttons, and an optional \"add new tab\" action. Designed for use cases where users need to quickly switch between related content areas, such as dashboards, settings, or document editors.\n\n---\n\n### Features\n- **Tab Selection:** Only one tab can be selected at a time; selection is managed via the `selectedTabId` property.\n- **Closeable Tabs:** Optionally display a close button on each tab (`hasClose`), allowing users to remove tabs dynamically.\n- **Add New Tab:** Optionally show an \"add new tab\" button at the end of the row (`hasAddNewTab`), emitting an event when clicked.\n- **Subtitles:** Optionally show secondary contextual text below each tab title (`showSubtitle` and `subtitle`).\n- **Badges:** Tabs can display badges with counts and types (e.g., notification, alarm, enhance), supporting different badge sizes and optional hiding of the number.\n- **Icons:** Each tab can show a leading icon (customizable via slot), and optionally a badge icon.\n- **Disabled Tabs:** Individual tabs can be disabled to prevent user interaction.\n- **Hug Mode:** When `hug` is enabled, tabs use a compact layout with reduced padding.\n- **Responsive Layout:** Tabs are arranged horizontally and adapt to the available width.\n\n---\n\n### Usage Guidelines\nUse `<obc-tab-row>` to organize content into logical sections that users can switch between without leaving the current page. Ideal for navigation in multi-view interfaces, such as settings panels, dashboards, or editors. Each tab should represent a distinct, high-level section. Avoid using tabs for navigation between unrelated pages or for single-action toggles.\n\n- Use badges to highlight new activity or counts (e.g., unread messages).\n- Use the close button for tabs that represent removable or temporary content (e.g., documents, chat sessions).\n- The \"add new tab\" action is suitable for interfaces where users can create new sections dynamically.\n- For best accessibility, ensure each tab has a unique `id` and descriptive `title`.\n\n**TODO(designer):** Confirm if there are recommended limits on the number of tabs, or guidance for handling overflow (e.g., scrolling, collapsing).\n\n---\n\n### Example\n```html\n<obc-tab-row\n .tabs=${[\n {id: 'tab1', title: 'Inbox', subtitle: 'Monitoring', hasBadge: true, badgeCount: 5, badgeType: 'notification'},\n {id: 'tab2', title: 'Updates'},\n {id: 'tab3', title: 'Settings', hasLeadingIcon: true}\n ]}\n selectedTabId=\"tab1\"\n show-subtitle\n hasClose\n hasAddNewTab\n>\n <obi-placeholder slot=\"tab-tab1-icon\"></obi-placeholder>\n <obi-placeholder slot=\"tab-tab3-icon\"></obi-placeholder>\n</obc-tab-row>\n```\n\n---\n\n### Slots\n\n| Slot Name | Renders When... | Purpose |\n|--------------------------|------------------------------------|------------------------------------------------------|\n| `tab-<id>-icon` | If `hasLeadingIcon` is true | Leading icon for a specific tab (replaceable) |\n| `tab-<id>-<iconSlotName>` | For each badge that declares an `iconSlotName` | Custom icon for a specific tab's badge (replaceable). The deprecated single-badge path uses `tab-<id>-badge-icon`. |\n\n---\n\n### Events\n- `tab-selected` – Fired when a tab is selected. Detail: `{tab, id, index}`.\n- `tab-closed` – Fired when a tab's close button is clicked. Detail: `{tab, id, index}`.\n- `add-new-tab` – Fired when the \"add new tab\" button is clicked. No detail.\n\n---\n\n### Best Practices\n- Only one tab should be selected at a time.\n- Use badges sparingly to avoid overwhelming the user.\n- Avoid using the close button for tabs that should always be present.\n- For accessibility, ensure tab titles are clear and concise.\n- If using custom icons, provide them via the appropriate named slot for each tab.",
|
|
62090
62121
|
"name": "ObcTabRow",
|
|
62091
62122
|
"slots": [
|
|
62092
62123
|
{
|
|
@@ -62094,8 +62125,8 @@
|
|
|
62094
62125
|
"name": "tab-<id>-icon"
|
|
62095
62126
|
},
|
|
62096
62127
|
{
|
|
62097
|
-
"description": "
|
|
62098
|
-
"name": "tab-<id
|
|
62128
|
+
"description": "Custom badge icon slot for each tab, one per badge that declares an `iconSlotName`. The deprecated single-badge path uses `tab-<id>-badge-icon`.",
|
|
62129
|
+
"name": "tab-<id>-<iconSlotName>"
|
|
62099
62130
|
}
|
|
62100
62131
|
],
|
|
62101
62132
|
"members": [
|
|
@@ -62106,7 +62137,7 @@
|
|
|
62106
62137
|
"text": "TabData[]"
|
|
62107
62138
|
},
|
|
62108
62139
|
"default": "[]",
|
|
62109
|
-
"description": "The list of tabs to display. Each tab is defined by an object with properties such as `id`, `title`, `subtitle`, `showSubtitle`, `hasLeadingIcon`, `hasBadge`, `badgeCount`, `badgeType`, `badgeSize`, `badgeShowNumber`, `showLeadingBadgeIcon`, and `disabled`.\n\n- `id` (string): Unique identifier for the tab.\n- `title` (string): Display label for the tab.\n- `subtitle` (string): Contextual text shown below the title when subtitle display is enabled.\n- `showSubtitle` (boolean): Optional per-tab override for displaying the subtitle.\n- `hasLeadingIcon` (boolean): Whether to show a leading icon (default: true).\n- `hasBadge` (boolean): Whether to show a badge on the tab.\n- `badgeCount` (number): Number to display in the badge.\n- `badgeType` (BadgeType): Visual style of the badge (e.g., notification, alarm, enhance).\n- `badgeSize` (BadgeSize): Size of the badge (e.g., regular, large).\n- `badgeShowNumber` (boolean): If true, shows the badge number.\n- `showLeadingBadgeIcon` (boolean): If true, shows a badge icon.\n- `disabled` (boolean): If true, disables the tab.",
|
|
62140
|
+
"description": "The list of tabs to display. Each tab is defined by an object with properties such as `id`, `title`, `subtitle`, `showSubtitle`, `hasLeadingIcon`, `hasBadge`, `badgeCount`, `badgeType`, `badgeSize`, `badgeShowNumber`, `showLeadingBadgeIcon`, and `disabled`.\n\n- `id` (string): Unique identifier for the tab.\n- `title` (string): Display label for the tab.\n- `subtitle` (string): Contextual text shown below the title when subtitle display is enabled.\n- `showSubtitle` (boolean): Optional per-tab override for displaying the subtitle.\n- `hasLeadingIcon` (boolean): Whether to show a leading icon (default: true).\n- `badges` (TabItemBadge[]): One or more badges to display on the tab. Takes precedence over the deprecated single-badge fields below.\n- `hasBadge` (boolean, deprecated): Whether to show a badge on the tab.\n- `badgeCount` (number, deprecated): Number to display in the badge.\n- `badgeType` (BadgeType, deprecated): Visual style of the badge (e.g., notification, alarm, enhance).\n- `badgeSize` (BadgeSize, deprecated): Size of the badge (e.g., regular, large).\n- `badgeShowNumber` (boolean, deprecated): If true, shows the badge number.\n- `showLeadingBadgeIcon` (boolean, deprecated): If true, shows a badge icon.\n- `disabled` (boolean): If true, disables the tab.",
|
|
62110
62141
|
"attribute": "tabs"
|
|
62111
62142
|
},
|
|
62112
62143
|
{
|
|
@@ -62129,6 +62160,15 @@
|
|
|
62129
62160
|
"description": "Whether to display a close button on each tab. When enabled, users can remove tabs individually.\n\nDefault: `false`.",
|
|
62130
62161
|
"attribute": "has-close"
|
|
62131
62162
|
},
|
|
62163
|
+
{
|
|
62164
|
+
"kind": "field",
|
|
62165
|
+
"name": "centerContent",
|
|
62166
|
+
"type": {
|
|
62167
|
+
"text": "boolean"
|
|
62168
|
+
},
|
|
62169
|
+
"default": "false",
|
|
62170
|
+
"attribute": "centerContent"
|
|
62171
|
+
},
|
|
62132
62172
|
{
|
|
62133
62173
|
"kind": "field",
|
|
62134
62174
|
"name": "hug",
|
|
@@ -62252,7 +62292,7 @@
|
|
|
62252
62292
|
"text": "TabData[]"
|
|
62253
62293
|
},
|
|
62254
62294
|
"default": "[]",
|
|
62255
|
-
"description": "The list of tabs to display. Each tab is defined by an object with properties such as `id`, `title`, `subtitle`, `showSubtitle`, `hasLeadingIcon`, `hasBadge`, `badgeCount`, `badgeType`, `badgeSize`, `badgeShowNumber`, `showLeadingBadgeIcon`, and `disabled`.\n\n- `id` (string): Unique identifier for the tab.\n- `title` (string): Display label for the tab.\n- `subtitle` (string): Contextual text shown below the title when subtitle display is enabled.\n- `showSubtitle` (boolean): Optional per-tab override for displaying the subtitle.\n- `hasLeadingIcon` (boolean): Whether to show a leading icon (default: true).\n- `hasBadge` (boolean): Whether to show a badge on the tab.\n- `badgeCount` (number): Number to display in the badge.\n- `badgeType` (BadgeType): Visual style of the badge (e.g., notification, alarm, enhance).\n- `badgeSize` (BadgeSize): Size of the badge (e.g., regular, large).\n- `badgeShowNumber` (boolean): If true, shows the badge number.\n- `showLeadingBadgeIcon` (boolean): If true, shows a badge icon.\n- `disabled` (boolean): If true, disables the tab.",
|
|
62295
|
+
"description": "The list of tabs to display. Each tab is defined by an object with properties such as `id`, `title`, `subtitle`, `showSubtitle`, `hasLeadingIcon`, `hasBadge`, `badgeCount`, `badgeType`, `badgeSize`, `badgeShowNumber`, `showLeadingBadgeIcon`, and `disabled`.\n\n- `id` (string): Unique identifier for the tab.\n- `title` (string): Display label for the tab.\n- `subtitle` (string): Contextual text shown below the title when subtitle display is enabled.\n- `showSubtitle` (boolean): Optional per-tab override for displaying the subtitle.\n- `hasLeadingIcon` (boolean): Whether to show a leading icon (default: true).\n- `badges` (TabItemBadge[]): One or more badges to display on the tab. Takes precedence over the deprecated single-badge fields below.\n- `hasBadge` (boolean, deprecated): Whether to show a badge on the tab.\n- `badgeCount` (number, deprecated): Number to display in the badge.\n- `badgeType` (BadgeType, deprecated): Visual style of the badge (e.g., notification, alarm, enhance).\n- `badgeSize` (BadgeSize, deprecated): Size of the badge (e.g., regular, large).\n- `badgeShowNumber` (boolean, deprecated): If true, shows the badge number.\n- `showLeadingBadgeIcon` (boolean, deprecated): If true, shows a badge icon.\n- `disabled` (boolean): If true, disables the tab.",
|
|
62256
62296
|
"fieldName": "tabs"
|
|
62257
62297
|
},
|
|
62258
62298
|
{
|
|
@@ -62273,6 +62313,14 @@
|
|
|
62273
62313
|
"description": "Whether to display a close button on each tab. When enabled, users can remove tabs individually.\n\nDefault: `false`.",
|
|
62274
62314
|
"fieldName": "hasClose"
|
|
62275
62315
|
},
|
|
62316
|
+
{
|
|
62317
|
+
"name": "centerContent",
|
|
62318
|
+
"type": {
|
|
62319
|
+
"text": "boolean"
|
|
62320
|
+
},
|
|
62321
|
+
"default": "false",
|
|
62322
|
+
"fieldName": "centerContent"
|
|
62323
|
+
},
|
|
62276
62324
|
{
|
|
62277
62325
|
"name": "hug",
|
|
62278
62326
|
"type": {
|
|
@@ -64954,7 +65002,7 @@
|
|
|
64954
65002
|
"declarations": [
|
|
64955
65003
|
{
|
|
64956
65004
|
"kind": "class",
|
|
64957
|
-
"description": "`<obc-textbox>` – A text container that renders inline text at a\nprecise, cap-height-trimmed size with configurable alignment and reservable\nwidth.\n\nUse it to present short, read-only strings – such as values, labels, or\nunits – where vertical metrics must line up exactly across rows and the\nhorizontal footprint should stay stable while the text changes (for example\na numeric value that updates frequently). Synonyms: text container, value\nbox, label box.\n\n## Features / Variants\n- **Size:** `xs`, `s`, `m` (default), `l`, `xl` – each maps to a fixed box\n height (16 / 20 / 24 / 32 / 40 px) with 4px padding above and below, giving\n cap heights of 8 / 12 / 16 / 24 / 32 px so text aligns to a predictable\n grid.\n- **Font weight:** `regular` (default), `semibold`, `bold`.\n- **Alignment:** `left`, `center`, `right` (default) – positions the text\n within the box's width when the box is wider than the content.\n- **Reserved width:** content placed in the `length` slot reserves a minimum\n width invisibly, so the box does not resize as the visible text changes.\n The box always shows all content – it never crops.\n\n## Usage Guidelines\n- Pass the longest expected string to the `length` slot (e.g. `\"888.8\"` or\n `\"Wind speed\"`) so the box reserves space and does not jump in width as the\n visible value updates.\n- This is a display primitive for static text – use an input component for\n editable values.\n\n## Slots\n| Slot | Renders when… | Purpose |\n|-----------|--------------------|------------------------------------------------------|\n| (default) | Always | The visible text content. |\n| `length` | Always (invisible) | Reserves a minimum width based on its content width. |",
|
|
65005
|
+
"description": "`<obc-textbox>` – A text container that renders inline text at a\nprecise, cap-height-trimmed size with configurable alignment and reservable\nwidth.\n\nUse it to present short, read-only strings – such as values, labels, or\nunits – where vertical metrics must line up exactly across rows and the\nhorizontal footprint should stay stable while the text changes (for example\na numeric value that updates frequently). Synonyms: text container, value\nbox, label box.\n\n## Features / Variants\n- **Size:** `xs`, `s`, `m` (default), `l`, `xl` – each maps to a fixed box\n height (16 / 20 / 24 / 32 / 40 px) with 4px padding above and below, giving\n cap heights of 8 / 12 / 16 / 24 / 32 px so text aligns to a predictable\n grid.\n- **Font weight:** `regular` (default), `semibold`, `bold`.\n- **Tabular numbers:** `tabularNums` (default off) renders digits as\n fixed-width, lining numerals (`tabular-nums lining-nums` + the `ss04`/`tnum`/\n `lnum` features) so numeric values stay column-aligned and stable in width\n as they update – use it for readouts and other live numeric displays.\n- **Alignment:** `left`, `center`, `right` (default) – positions the text\n within the box's width when the box is wider than the content.\n- **Reserved width:** content placed in the `length` slot reserves a minimum\n width invisibly, so the box does not resize as the visible text changes.\n The box always shows all content – it never crops.\n\n## Usage Guidelines\n- Pass the longest expected string to the `length` slot (e.g. `\"888.8\"` or\n `\"Wind speed\"`) so the box reserves space and does not jump in width as the\n visible value updates.\n- This is a display primitive for static text – use an input component for\n editable values.\n\n## Slots\n| Slot | Renders when… | Purpose |\n|-----------|--------------------|------------------------------------------------------|\n| (default) | Always | The visible text content. |\n| `length` | Always (invisible) | Reserves a minimum width based on its content width. |",
|
|
64958
65006
|
"name": "ObcTextbox",
|
|
64959
65007
|
"slots": [
|
|
64960
65008
|
{
|
|
@@ -64990,6 +65038,15 @@
|
|
|
64990
65038
|
"text": "ObcTextboxFontWeight"
|
|
64991
65039
|
},
|
|
64992
65040
|
"attribute": "fontWeight"
|
|
65041
|
+
},
|
|
65042
|
+
{
|
|
65043
|
+
"kind": "field",
|
|
65044
|
+
"name": "tabularNums",
|
|
65045
|
+
"type": {
|
|
65046
|
+
"text": "boolean"
|
|
65047
|
+
},
|
|
65048
|
+
"default": "false",
|
|
65049
|
+
"attribute": "tabularNums"
|
|
64993
65050
|
}
|
|
64994
65051
|
],
|
|
64995
65052
|
"attributes": [
|
|
@@ -65013,6 +65070,14 @@
|
|
|
65013
65070
|
"text": "ObcTextboxFontWeight"
|
|
65014
65071
|
},
|
|
65015
65072
|
"fieldName": "fontWeight"
|
|
65073
|
+
},
|
|
65074
|
+
{
|
|
65075
|
+
"name": "tabularNums",
|
|
65076
|
+
"type": {
|
|
65077
|
+
"text": "boolean"
|
|
65078
|
+
},
|
|
65079
|
+
"default": "false",
|
|
65080
|
+
"fieldName": "tabularNums"
|
|
65016
65081
|
}
|
|
65017
65082
|
],
|
|
65018
65083
|
"superclass": {
|
|
@@ -85157,167 +85222,171 @@
|
|
|
85157
85222
|
"declarations": [
|
|
85158
85223
|
{
|
|
85159
85224
|
"kind": "class",
|
|
85160
|
-
"description": "`<obc-readout-list-item>` – A compact
|
|
85225
|
+
"description": "`<obc-readout-list-item>` – A compact, dense readout row for lists and tables.\n\nRenders a label, an optional source, an optional unit, and up to three\ncap-height \"readout building blocks\" – advice, setpoint, and value – each a\nfixed-width-reservable numeric segment. Dynamic data is passed as top-level\nprimitives (`value`, `setpoint`, `advice`, `label`, `unit`, `src`). Global\nlayout/format is configured via top-level props (`size`, `priority`,\n`stacking`, `hasDegree`, `dataQuality`, `alert`, …) and per-block tweaks via one\nobject per block (`valueOptions`, `setpointOptions`, `adviceOptions`,\n`unitOptions`, `srcOptions`).\n\n### Features\n- **Building blocks:** value, optional setpoint, and optional advice segments,\n each cap-height-aligned and able to reserve a stable width.\n- **Sizes:** `small`, `medium`, `large` density scales.\n- **Stacking:** `trailing-unit`, `leading-unit`, `leading-src` placement.\n- **Priority:** `regular`/`enhanced` colour emphasis; per-value `weight`\n (`regular`/`semibold`/`bold`) is independent of colour.\n- **Setpoint flip-flop:** swaps emphasis between value and setpoint as the\n value reaches the setpoint.\n- **Data quality:** `low-integrity`/`invalid` styling, combinable with `alert`.\n- **Alert frame:** optional `alert` wrapper (caution/warning/alarm/level).\n- **Clickable:** optionally rendered as a focusable button with `squared`,\n `round-corners`, or `round` corners.\n- **Formatting:** shared `fractionDigits`, width reservation via `maxDigits`\n and per-segment `hintedZeros`; a `null` value renders a dash (`-`).\n\n### Usage Guidelines\nUse for dense readout rows in lists/tables. Prefer `<obc-readout>` for rich\nmulti-segment instrument layouts, source pickers, or flyout behaviour.",
|
|
85161
85226
|
"name": "ObcReadoutListItem",
|
|
85162
85227
|
"slots": [
|
|
85163
85228
|
{
|
|
85164
|
-
"description": "
|
|
85229
|
+
"description": "Icon before the label.",
|
|
85165
85230
|
"name": "leading-icon"
|
|
85166
85231
|
},
|
|
85167
85232
|
{
|
|
85168
|
-
"description": "
|
|
85233
|
+
"description": "Icon before the value.",
|
|
85169
85234
|
"name": "value-icon"
|
|
85235
|
+
},
|
|
85236
|
+
{
|
|
85237
|
+
"description": "Overrides the default setpoint icon.",
|
|
85238
|
+
"name": "setpoint-icon"
|
|
85239
|
+
},
|
|
85240
|
+
{
|
|
85241
|
+
"description": "Overrides the default advice icon.",
|
|
85242
|
+
"name": "advice-icon"
|
|
85170
85243
|
}
|
|
85171
85244
|
],
|
|
85172
85245
|
"members": [
|
|
85173
85246
|
{
|
|
85174
85247
|
"kind": "field",
|
|
85175
|
-
"name": "
|
|
85248
|
+
"name": "label",
|
|
85176
85249
|
"type": {
|
|
85177
|
-
"text": "
|
|
85250
|
+
"text": "string | undefined"
|
|
85178
85251
|
},
|
|
85179
|
-
"attribute": "
|
|
85252
|
+
"attribute": "label"
|
|
85180
85253
|
},
|
|
85181
85254
|
{
|
|
85182
85255
|
"kind": "field",
|
|
85183
|
-
"name": "
|
|
85256
|
+
"name": "unit",
|
|
85184
85257
|
"type": {
|
|
85185
|
-
"text": "
|
|
85258
|
+
"text": "string | undefined"
|
|
85186
85259
|
},
|
|
85187
|
-
"attribute": "
|
|
85260
|
+
"attribute": "unit"
|
|
85188
85261
|
},
|
|
85189
85262
|
{
|
|
85190
85263
|
"kind": "field",
|
|
85191
|
-
"name": "
|
|
85264
|
+
"name": "src",
|
|
85192
85265
|
"type": {
|
|
85193
|
-
"text": "
|
|
85266
|
+
"text": "string | undefined"
|
|
85194
85267
|
},
|
|
85195
|
-
"attribute": "
|
|
85268
|
+
"attribute": "src"
|
|
85196
85269
|
},
|
|
85197
85270
|
{
|
|
85198
85271
|
"kind": "field",
|
|
85199
|
-
"name": "
|
|
85272
|
+
"name": "hasValue",
|
|
85200
85273
|
"type": {
|
|
85201
|
-
"text": "
|
|
85274
|
+
"text": "boolean"
|
|
85202
85275
|
},
|
|
85203
|
-
"
|
|
85276
|
+
"default": "true"
|
|
85204
85277
|
},
|
|
85205
85278
|
{
|
|
85206
85279
|
"kind": "field",
|
|
85207
|
-
"name": "
|
|
85280
|
+
"name": "value",
|
|
85208
85281
|
"type": {
|
|
85209
|
-
"text": "
|
|
85282
|
+
"text": "number | null"
|
|
85210
85283
|
},
|
|
85211
|
-
"default": "
|
|
85212
|
-
"attribute": "
|
|
85284
|
+
"default": "null",
|
|
85285
|
+
"attribute": "value"
|
|
85213
85286
|
},
|
|
85214
85287
|
{
|
|
85215
85288
|
"kind": "field",
|
|
85216
|
-
"name": "
|
|
85289
|
+
"name": "off",
|
|
85217
85290
|
"type": {
|
|
85218
|
-
"text": "
|
|
85291
|
+
"text": "boolean"
|
|
85219
85292
|
},
|
|
85220
|
-
"default": "
|
|
85221
|
-
"
|
|
85293
|
+
"default": "false",
|
|
85294
|
+
"description": "Render the value as the literal \"OFF\" (e.g. equipment powered down). Affects the value only.",
|
|
85295
|
+
"attribute": "off"
|
|
85222
85296
|
},
|
|
85223
85297
|
{
|
|
85224
85298
|
"kind": "field",
|
|
85225
|
-
"name": "
|
|
85299
|
+
"name": "hasSetpoint",
|
|
85226
85300
|
"type": {
|
|
85227
|
-
"text": "
|
|
85301
|
+
"text": "boolean"
|
|
85228
85302
|
},
|
|
85229
|
-
"default": "
|
|
85230
|
-
"attribute": "
|
|
85303
|
+
"default": "false",
|
|
85304
|
+
"attribute": "hasSetpoint"
|
|
85231
85305
|
},
|
|
85232
85306
|
{
|
|
85233
85307
|
"kind": "field",
|
|
85234
|
-
"name": "
|
|
85308
|
+
"name": "setpoint",
|
|
85235
85309
|
"type": {
|
|
85236
|
-
"text": "
|
|
85310
|
+
"text": "number | undefined"
|
|
85237
85311
|
},
|
|
85238
|
-
"
|
|
85239
|
-
"attribute": "src"
|
|
85312
|
+
"attribute": "setpoint"
|
|
85240
85313
|
},
|
|
85241
85314
|
{
|
|
85242
85315
|
"kind": "field",
|
|
85243
|
-
"name": "
|
|
85316
|
+
"name": "hasAdvice",
|
|
85244
85317
|
"type": {
|
|
85245
|
-
"text": "
|
|
85318
|
+
"text": "boolean"
|
|
85246
85319
|
},
|
|
85247
|
-
"default": "
|
|
85248
|
-
"attribute": "
|
|
85320
|
+
"default": "false",
|
|
85321
|
+
"attribute": "hasAdvice"
|
|
85249
85322
|
},
|
|
85250
85323
|
{
|
|
85251
85324
|
"kind": "field",
|
|
85252
|
-
"name": "
|
|
85325
|
+
"name": "advice",
|
|
85253
85326
|
"type": {
|
|
85254
85327
|
"text": "number | undefined"
|
|
85255
85328
|
},
|
|
85256
|
-
"
|
|
85257
|
-
"attribute": "setpointValue"
|
|
85329
|
+
"attribute": "advice"
|
|
85258
85330
|
},
|
|
85259
85331
|
{
|
|
85260
85332
|
"kind": "field",
|
|
85261
|
-
"name": "
|
|
85333
|
+
"name": "size",
|
|
85262
85334
|
"type": {
|
|
85263
|
-
"text": "
|
|
85335
|
+
"text": "ReadoutListItemSize | undefined"
|
|
85264
85336
|
},
|
|
85265
|
-
"
|
|
85266
|
-
"attribute": "hasSetpoint"
|
|
85337
|
+
"attribute": "size"
|
|
85267
85338
|
},
|
|
85268
85339
|
{
|
|
85269
85340
|
"kind": "field",
|
|
85270
|
-
"name": "
|
|
85341
|
+
"name": "priority",
|
|
85271
85342
|
"type": {
|
|
85272
|
-
"text": "
|
|
85343
|
+
"text": "ReadoutListItemPriority | undefined"
|
|
85273
85344
|
},
|
|
85274
|
-
"
|
|
85275
|
-
"attribute": "hasDegree"
|
|
85345
|
+
"attribute": "priority"
|
|
85276
85346
|
},
|
|
85277
85347
|
{
|
|
85278
85348
|
"kind": "field",
|
|
85279
|
-
"name": "
|
|
85349
|
+
"name": "stacking",
|
|
85280
85350
|
"type": {
|
|
85281
|
-
"text": "
|
|
85351
|
+
"text": "ReadoutListItemStacking | undefined"
|
|
85282
85352
|
},
|
|
85283
|
-
"
|
|
85284
|
-
"attribute": "hasUnit"
|
|
85353
|
+
"attribute": "stacking"
|
|
85285
85354
|
},
|
|
85286
85355
|
{
|
|
85287
85356
|
"kind": "field",
|
|
85288
|
-
"name": "
|
|
85357
|
+
"name": "clickable",
|
|
85289
85358
|
"type": {
|
|
85290
|
-
"text": "boolean"
|
|
85359
|
+
"text": "boolean | ReadoutListItemClickable"
|
|
85291
85360
|
},
|
|
85292
85361
|
"default": "false",
|
|
85293
|
-
"attribute": "
|
|
85362
|
+
"attribute": "clickable"
|
|
85294
85363
|
},
|
|
85295
85364
|
{
|
|
85296
85365
|
"kind": "field",
|
|
85297
|
-
"name": "
|
|
85366
|
+
"name": "hasLeadingIcon",
|
|
85298
85367
|
"type": {
|
|
85299
85368
|
"text": "boolean"
|
|
85300
85369
|
},
|
|
85301
85370
|
"default": "false",
|
|
85302
|
-
"attribute": "
|
|
85371
|
+
"attribute": "hasLeadingIcon"
|
|
85303
85372
|
},
|
|
85304
85373
|
{
|
|
85305
85374
|
"kind": "field",
|
|
85306
|
-
"name": "
|
|
85375
|
+
"name": "hasDegree",
|
|
85307
85376
|
"type": {
|
|
85308
85377
|
"text": "boolean"
|
|
85309
85378
|
},
|
|
85310
85379
|
"default": "false",
|
|
85311
|
-
"attribute": "
|
|
85380
|
+
"attribute": "hasDegree"
|
|
85312
85381
|
},
|
|
85313
85382
|
{
|
|
85314
85383
|
"kind": "field",
|
|
85315
|
-
"name": "
|
|
85384
|
+
"name": "hasDegreeSpacer",
|
|
85316
85385
|
"type": {
|
|
85317
85386
|
"text": "boolean"
|
|
85318
85387
|
},
|
|
85319
85388
|
"default": "false",
|
|
85320
|
-
"attribute": "
|
|
85389
|
+
"attribute": "hasDegreeSpacer"
|
|
85321
85390
|
},
|
|
85322
85391
|
{
|
|
85323
85392
|
"kind": "field",
|
|
@@ -85330,115 +85399,172 @@
|
|
|
85330
85399
|
},
|
|
85331
85400
|
{
|
|
85332
85401
|
"kind": "field",
|
|
85333
|
-
"name": "
|
|
85402
|
+
"name": "maxDigits",
|
|
85334
85403
|
"type": {
|
|
85335
|
-
"text": "
|
|
85404
|
+
"text": "number"
|
|
85336
85405
|
},
|
|
85337
|
-
"default": "
|
|
85338
|
-
"attribute": "
|
|
85406
|
+
"default": "0",
|
|
85407
|
+
"attribute": "maxDigits"
|
|
85339
85408
|
},
|
|
85340
85409
|
{
|
|
85341
85410
|
"kind": "field",
|
|
85342
|
-
"name": "
|
|
85411
|
+
"name": "dataQuality",
|
|
85343
85412
|
"type": {
|
|
85344
|
-
"text": "
|
|
85413
|
+
"text": "ReadoutListItemDataQuality | undefined"
|
|
85345
85414
|
},
|
|
85346
|
-
"
|
|
85347
|
-
"attribute": "minValueLength"
|
|
85415
|
+
"attribute": "dataQuality"
|
|
85348
85416
|
},
|
|
85349
85417
|
{
|
|
85350
85418
|
"kind": "field",
|
|
85351
|
-
"name": "
|
|
85419
|
+
"name": "alert",
|
|
85352
85420
|
"type": {
|
|
85353
|
-
"text": "boolean"
|
|
85421
|
+
"text": "boolean | AlertFrameConfig"
|
|
85354
85422
|
},
|
|
85355
85423
|
"default": "false",
|
|
85356
|
-
"attribute": "
|
|
85424
|
+
"attribute": "alert"
|
|
85357
85425
|
},
|
|
85358
85426
|
{
|
|
85359
85427
|
"kind": "field",
|
|
85360
|
-
"name": "
|
|
85428
|
+
"name": "valueOptions",
|
|
85429
|
+
"type": {
|
|
85430
|
+
"text": "ReadoutValueOptions | undefined"
|
|
85431
|
+
},
|
|
85432
|
+
"attribute": "valueOptions"
|
|
85433
|
+
},
|
|
85434
|
+
{
|
|
85435
|
+
"kind": "field",
|
|
85436
|
+
"name": "setpointOptions",
|
|
85437
|
+
"type": {
|
|
85438
|
+
"text": "ReadoutSetpointOptions | undefined"
|
|
85439
|
+
},
|
|
85440
|
+
"attribute": "setpointOptions"
|
|
85441
|
+
},
|
|
85442
|
+
{
|
|
85443
|
+
"kind": "field",
|
|
85444
|
+
"name": "adviceOptions",
|
|
85445
|
+
"type": {
|
|
85446
|
+
"text": "ReadoutAdviceOptions | undefined"
|
|
85447
|
+
},
|
|
85448
|
+
"attribute": "adviceOptions"
|
|
85449
|
+
},
|
|
85450
|
+
{
|
|
85451
|
+
"kind": "field",
|
|
85452
|
+
"name": "unitOptions",
|
|
85453
|
+
"type": {
|
|
85454
|
+
"text": "ReadoutReserverOptions | undefined"
|
|
85455
|
+
},
|
|
85456
|
+
"attribute": "unitOptions"
|
|
85457
|
+
},
|
|
85458
|
+
{
|
|
85459
|
+
"kind": "field",
|
|
85460
|
+
"name": "srcOptions",
|
|
85461
|
+
"type": {
|
|
85462
|
+
"text": "ReadoutSrcOptions | undefined"
|
|
85463
|
+
},
|
|
85464
|
+
"attribute": "srcOptions"
|
|
85465
|
+
},
|
|
85466
|
+
{
|
|
85467
|
+
"kind": "field",
|
|
85468
|
+
"name": "deferredSetpointHidePhase",
|
|
85469
|
+
"type": {
|
|
85470
|
+
"text": "'none' | 'hiding' | 'hidden'"
|
|
85471
|
+
},
|
|
85472
|
+
"privacy": "private",
|
|
85473
|
+
"default": "'none'",
|
|
85474
|
+
"description": "Pop-up deferred-hide phase for the setpoint (see updated)."
|
|
85475
|
+
},
|
|
85476
|
+
{
|
|
85477
|
+
"kind": "field",
|
|
85478
|
+
"name": "deferredSetpointHideTimer",
|
|
85479
|
+
"type": {
|
|
85480
|
+
"text": "number | undefined"
|
|
85481
|
+
},
|
|
85482
|
+
"privacy": "private"
|
|
85483
|
+
},
|
|
85484
|
+
{
|
|
85485
|
+
"kind": "field",
|
|
85486
|
+
"name": "hasCompletedFirstUpdate",
|
|
85361
85487
|
"type": {
|
|
85362
85488
|
"text": "boolean"
|
|
85363
85489
|
},
|
|
85364
|
-
"
|
|
85365
|
-
"
|
|
85490
|
+
"privacy": "private",
|
|
85491
|
+
"default": "false"
|
|
85366
85492
|
},
|
|
85367
85493
|
{
|
|
85368
85494
|
"kind": "field",
|
|
85369
|
-
"name": "
|
|
85495
|
+
"name": "resolvedSize",
|
|
85370
85496
|
"type": {
|
|
85371
|
-
"text": "
|
|
85497
|
+
"text": "ReadoutListItemSize"
|
|
85372
85498
|
},
|
|
85373
85499
|
"privacy": "private",
|
|
85374
85500
|
"readonly": true
|
|
85375
85501
|
},
|
|
85376
85502
|
{
|
|
85377
85503
|
"kind": "field",
|
|
85378
|
-
"name": "
|
|
85504
|
+
"name": "resolvedStacking",
|
|
85379
85505
|
"type": {
|
|
85380
|
-
"text": "
|
|
85506
|
+
"text": "ReadoutListItemStacking"
|
|
85381
85507
|
},
|
|
85382
85508
|
"privacy": "private",
|
|
85383
85509
|
"readonly": true
|
|
85384
85510
|
},
|
|
85385
85511
|
{
|
|
85386
85512
|
"kind": "field",
|
|
85387
|
-
"name": "
|
|
85513
|
+
"name": "resolvedPriority",
|
|
85388
85514
|
"type": {
|
|
85389
|
-
"text": "
|
|
85515
|
+
"text": "ReadoutListItemPriority"
|
|
85390
85516
|
},
|
|
85391
85517
|
"privacy": "private",
|
|
85392
85518
|
"readonly": true
|
|
85393
85519
|
},
|
|
85394
85520
|
{
|
|
85395
85521
|
"kind": "field",
|
|
85396
|
-
"name": "
|
|
85522
|
+
"name": "resolvedFractionDigits",
|
|
85397
85523
|
"type": {
|
|
85398
|
-
"text": "
|
|
85524
|
+
"text": "number"
|
|
85399
85525
|
},
|
|
85400
85526
|
"privacy": "private",
|
|
85401
85527
|
"readonly": true
|
|
85402
85528
|
},
|
|
85403
85529
|
{
|
|
85404
85530
|
"kind": "field",
|
|
85405
|
-
"name": "
|
|
85531
|
+
"name": "resolvedMaxDigits",
|
|
85406
85532
|
"type": {
|
|
85407
|
-
"text": "
|
|
85533
|
+
"text": "number"
|
|
85408
85534
|
},
|
|
85409
85535
|
"privacy": "private",
|
|
85410
85536
|
"readonly": true
|
|
85411
85537
|
},
|
|
85412
85538
|
{
|
|
85413
85539
|
"kind": "field",
|
|
85414
|
-
"name": "
|
|
85540
|
+
"name": "resolvedClickable",
|
|
85415
85541
|
"type": {
|
|
85416
|
-
"text": "
|
|
85542
|
+
"text": "false | Required<ReadoutListItemClickable>"
|
|
85417
85543
|
},
|
|
85418
85544
|
"privacy": "private",
|
|
85419
85545
|
"readonly": true
|
|
85420
85546
|
},
|
|
85421
85547
|
{
|
|
85422
85548
|
"kind": "field",
|
|
85423
|
-
"name": "
|
|
85549
|
+
"name": "isAtSetpoint",
|
|
85424
85550
|
"type": {
|
|
85425
|
-
"text": "
|
|
85551
|
+
"text": "boolean"
|
|
85426
85552
|
},
|
|
85427
85553
|
"privacy": "private",
|
|
85428
85554
|
"readonly": true
|
|
85429
85555
|
},
|
|
85430
85556
|
{
|
|
85431
85557
|
"kind": "field",
|
|
85432
|
-
"name": "
|
|
85558
|
+
"name": "resolvedSetpointInteraction",
|
|
85433
85559
|
"type": {
|
|
85434
|
-
"text": "
|
|
85560
|
+
"text": "ReadoutListItemSetpointInteraction"
|
|
85435
85561
|
},
|
|
85436
85562
|
"privacy": "private",
|
|
85437
85563
|
"readonly": true
|
|
85438
85564
|
},
|
|
85439
85565
|
{
|
|
85440
85566
|
"kind": "field",
|
|
85441
|
-
"name": "
|
|
85567
|
+
"name": "isFlipFlop",
|
|
85442
85568
|
"type": {
|
|
85443
85569
|
"text": "boolean"
|
|
85444
85570
|
},
|
|
@@ -85447,7 +85573,7 @@
|
|
|
85447
85573
|
},
|
|
85448
85574
|
{
|
|
85449
85575
|
"kind": "field",
|
|
85450
|
-
"name": "
|
|
85576
|
+
"name": "isPopUp",
|
|
85451
85577
|
"type": {
|
|
85452
85578
|
"text": "boolean"
|
|
85453
85579
|
},
|
|
@@ -85456,7 +85582,7 @@
|
|
|
85456
85582
|
},
|
|
85457
85583
|
{
|
|
85458
85584
|
"kind": "field",
|
|
85459
|
-
"name": "
|
|
85585
|
+
"name": "setpointTouching",
|
|
85460
85586
|
"type": {
|
|
85461
85587
|
"text": "boolean"
|
|
85462
85588
|
},
|
|
@@ -85464,117 +85590,376 @@
|
|
|
85464
85590
|
"readonly": true
|
|
85465
85591
|
},
|
|
85466
85592
|
{
|
|
85467
|
-
"kind": "
|
|
85468
|
-
"name": "
|
|
85469
|
-
"
|
|
85470
|
-
|
|
85471
|
-
|
|
85472
|
-
"
|
|
85473
|
-
"
|
|
85474
|
-
"
|
|
85593
|
+
"kind": "field",
|
|
85594
|
+
"name": "isSetpointEmphasized",
|
|
85595
|
+
"type": {
|
|
85596
|
+
"text": "boolean"
|
|
85597
|
+
},
|
|
85598
|
+
"privacy": "private",
|
|
85599
|
+
"description": "The setpoint is rendered \"emphasised\" (primary size + SemiBold weight) when\nit is the focus of attention: while actively adjusting (`touching`), or while\na flip-flop has the value away from the setpoint. Otherwise it is a secondary\n(smaller, regular-weight) reference next to the value.",
|
|
85600
|
+
"readonly": true
|
|
85475
85601
|
},
|
|
85476
85602
|
{
|
|
85477
|
-
"kind": "
|
|
85478
|
-
"name": "
|
|
85479
|
-
"
|
|
85603
|
+
"kind": "field",
|
|
85604
|
+
"name": "rowEnhanced",
|
|
85605
|
+
"type": {
|
|
85606
|
+
"text": "boolean"
|
|
85607
|
+
},
|
|
85608
|
+
"privacy": "private",
|
|
85609
|
+
"description": "The row's enhanced (in-command) colour state, applied uniformly to BOTH the\nvalue and the setpoint — they are always either both neutral or both enhanced\n(never a blue setpoint next to a grey value). Driven by `priority` only;\n`valueOptions.weight` changes weight, not colour.",
|
|
85610
|
+
"readonly": true
|
|
85480
85611
|
},
|
|
85481
85612
|
{
|
|
85482
|
-
"kind": "
|
|
85483
|
-
"name": "
|
|
85484
|
-
"
|
|
85485
|
-
|
|
85486
|
-
|
|
85487
|
-
"
|
|
85488
|
-
"
|
|
85489
|
-
"
|
|
85613
|
+
"kind": "field",
|
|
85614
|
+
"name": "primarySize",
|
|
85615
|
+
"type": {
|
|
85616
|
+
"text": "ObcTextboxSize"
|
|
85617
|
+
},
|
|
85618
|
+
"privacy": "private",
|
|
85619
|
+
"description": "Primary value-typography size for the current density tier.",
|
|
85620
|
+
"readonly": true
|
|
85490
85621
|
},
|
|
85491
85622
|
{
|
|
85492
|
-
"kind": "
|
|
85493
|
-
"name": "
|
|
85494
|
-
"
|
|
85623
|
+
"kind": "field",
|
|
85624
|
+
"name": "secondarySize",
|
|
85625
|
+
"type": {
|
|
85626
|
+
"text": "ObcTextboxSize"
|
|
85627
|
+
},
|
|
85628
|
+
"privacy": "private",
|
|
85629
|
+
"description": "Secondary (de-emphasised) value-typography size for the current density tier.",
|
|
85630
|
+
"readonly": true
|
|
85495
85631
|
},
|
|
85496
85632
|
{
|
|
85497
|
-
"kind": "
|
|
85498
|
-
"name": "
|
|
85499
|
-
"privacy": "private"
|
|
85500
|
-
}
|
|
85501
|
-
],
|
|
85502
|
-
"attributes": [
|
|
85503
|
-
{
|
|
85504
|
-
"name": "size",
|
|
85633
|
+
"kind": "field",
|
|
85634
|
+
"name": "valueSize",
|
|
85505
85635
|
"type": {
|
|
85506
|
-
"text": "
|
|
85636
|
+
"text": "ObcTextboxSize"
|
|
85507
85637
|
},
|
|
85508
|
-
"
|
|
85638
|
+
"privacy": "private",
|
|
85639
|
+
"readonly": true
|
|
85509
85640
|
},
|
|
85510
85641
|
{
|
|
85511
|
-
"
|
|
85642
|
+
"kind": "field",
|
|
85643
|
+
"name": "setpointSize",
|
|
85512
85644
|
"type": {
|
|
85513
|
-
"text": "
|
|
85645
|
+
"text": "ObcTextboxSize"
|
|
85514
85646
|
},
|
|
85515
|
-
"
|
|
85647
|
+
"privacy": "private",
|
|
85648
|
+
"readonly": true
|
|
85516
85649
|
},
|
|
85517
85650
|
{
|
|
85518
|
-
"
|
|
85651
|
+
"kind": "field",
|
|
85652
|
+
"name": "valueWeight",
|
|
85519
85653
|
"type": {
|
|
85520
|
-
"text": "
|
|
85654
|
+
"text": "ObcTextboxFontWeight"
|
|
85521
85655
|
},
|
|
85522
|
-
"
|
|
85656
|
+
"privacy": "private",
|
|
85657
|
+
"description": "Value font weight passes straight to obc-textbox; regular when unset. Colour is separate.",
|
|
85658
|
+
"readonly": true
|
|
85523
85659
|
},
|
|
85524
85660
|
{
|
|
85525
|
-
"
|
|
85661
|
+
"kind": "field",
|
|
85662
|
+
"name": "setpointWeight",
|
|
85526
85663
|
"type": {
|
|
85527
|
-
"text": "
|
|
85664
|
+
"text": "ObcTextboxFontWeight"
|
|
85528
85665
|
},
|
|
85529
|
-
"
|
|
85666
|
+
"privacy": "private",
|
|
85667
|
+
"description": "Setpoint is SemiBold only while emphasised, otherwise regular weight.",
|
|
85668
|
+
"readonly": true
|
|
85530
85669
|
},
|
|
85531
85670
|
{
|
|
85532
|
-
"
|
|
85671
|
+
"kind": "method",
|
|
85672
|
+
"name": "numericFormatOptions",
|
|
85673
|
+
"privacy": "private",
|
|
85674
|
+
"return": {
|
|
85675
|
+
"type": {
|
|
85676
|
+
"text": "ReadoutNumericFormatOptions"
|
|
85677
|
+
}
|
|
85678
|
+
},
|
|
85679
|
+
"parameters": [
|
|
85680
|
+
{
|
|
85681
|
+
"name": "maxDigits",
|
|
85682
|
+
"type": {
|
|
85683
|
+
"text": "number"
|
|
85684
|
+
}
|
|
85685
|
+
}
|
|
85686
|
+
]
|
|
85687
|
+
},
|
|
85688
|
+
{
|
|
85689
|
+
"kind": "field",
|
|
85690
|
+
"name": "reserverText",
|
|
85533
85691
|
"type": {
|
|
85534
|
-
"text": "
|
|
85692
|
+
"text": "string"
|
|
85535
85693
|
},
|
|
85536
|
-
"
|
|
85537
|
-
"
|
|
85694
|
+
"privacy": "private",
|
|
85695
|
+
"description": "Widest possible value string for width reservation (e.g. `\"000.0\"`).",
|
|
85696
|
+
"readonly": true
|
|
85538
85697
|
},
|
|
85698
|
+
{
|
|
85699
|
+
"kind": "method",
|
|
85700
|
+
"name": "widerReserver",
|
|
85701
|
+
"privacy": "private",
|
|
85702
|
+
"return": {
|
|
85703
|
+
"type": {
|
|
85704
|
+
"text": "string"
|
|
85705
|
+
}
|
|
85706
|
+
},
|
|
85707
|
+
"parameters": [
|
|
85708
|
+
{
|
|
85709
|
+
"name": "explicit",
|
|
85710
|
+
"type": {
|
|
85711
|
+
"text": "string | undefined"
|
|
85712
|
+
}
|
|
85713
|
+
},
|
|
85714
|
+
{
|
|
85715
|
+
"name": "derived",
|
|
85716
|
+
"type": {
|
|
85717
|
+
"text": "string"
|
|
85718
|
+
}
|
|
85719
|
+
}
|
|
85720
|
+
],
|
|
85721
|
+
"description": "Effective width reserver for a numeric block: the wider of the explicit\n`spaceReserver` and the `maxDigits`/`fractionDigits`-derived reserve, so an\nexplicit reserver can never reserve *less* than the formatted value needs.\nUnder tabular-nums the rendered width is proportional to character count, so\n\"wider\" compares string length."
|
|
85722
|
+
},
|
|
85723
|
+
{
|
|
85724
|
+
"kind": "method",
|
|
85725
|
+
"name": "dataQualityClasses",
|
|
85726
|
+
"privacy": "private",
|
|
85727
|
+
"return": {
|
|
85728
|
+
"type": {
|
|
85729
|
+
"text": "Record<string, boolean>"
|
|
85730
|
+
}
|
|
85731
|
+
},
|
|
85732
|
+
"parameters": [
|
|
85733
|
+
{
|
|
85734
|
+
"name": "dataQuality",
|
|
85735
|
+
"type": {
|
|
85736
|
+
"text": "ReadoutListItemDataQuality | undefined"
|
|
85737
|
+
}
|
|
85738
|
+
}
|
|
85739
|
+
],
|
|
85740
|
+
"description": "classMap fragment for a block / source carrying per-block data quality."
|
|
85741
|
+
},
|
|
85742
|
+
{
|
|
85743
|
+
"kind": "method",
|
|
85744
|
+
"name": "renderIcon",
|
|
85745
|
+
"privacy": "private",
|
|
85746
|
+
"return": {
|
|
85747
|
+
"type": {
|
|
85748
|
+
"text": "TemplateResult | typeof nothing"
|
|
85749
|
+
}
|
|
85750
|
+
},
|
|
85751
|
+
"parameters": [
|
|
85752
|
+
{
|
|
85753
|
+
"name": "role",
|
|
85754
|
+
"type": {
|
|
85755
|
+
"text": "BlockRole"
|
|
85756
|
+
}
|
|
85757
|
+
}
|
|
85758
|
+
]
|
|
85759
|
+
},
|
|
85760
|
+
{
|
|
85761
|
+
"kind": "method",
|
|
85762
|
+
"name": "renderBlock",
|
|
85763
|
+
"privacy": "private",
|
|
85764
|
+
"return": {
|
|
85765
|
+
"type": {
|
|
85766
|
+
"text": "TemplateResult"
|
|
85767
|
+
}
|
|
85768
|
+
},
|
|
85769
|
+
"parameters": [
|
|
85770
|
+
{
|
|
85771
|
+
"name": "config",
|
|
85772
|
+
"type": {
|
|
85773
|
+
"text": "{\n role: BlockRole;\n value: number | null | undefined;\n size: ObcTextboxSize;\n enhanced: boolean;\n weight: ObcTextboxFontWeight;\n hintedZeros: boolean;\n spaceReserver?: string;\n off?: boolean;\n hasDegree?: boolean;\n extraClasses?: Record<string, boolean>;\n dataQuality?: ReadoutListItemDataQuality;\n alert?: false | AlertFrameConfig;\n }"
|
|
85774
|
+
}
|
|
85775
|
+
}
|
|
85776
|
+
]
|
|
85777
|
+
},
|
|
85778
|
+
{
|
|
85779
|
+
"kind": "method",
|
|
85780
|
+
"name": "renderDegreeGlyph",
|
|
85781
|
+
"privacy": "private",
|
|
85782
|
+
"return": {
|
|
85783
|
+
"type": {
|
|
85784
|
+
"text": "TemplateResult"
|
|
85785
|
+
}
|
|
85786
|
+
},
|
|
85787
|
+
"parameters": [
|
|
85788
|
+
{
|
|
85789
|
+
"name": "size",
|
|
85790
|
+
"type": {
|
|
85791
|
+
"text": "ObcTextboxSize"
|
|
85792
|
+
}
|
|
85793
|
+
},
|
|
85794
|
+
{
|
|
85795
|
+
"name": "opts",
|
|
85796
|
+
"default": "{}",
|
|
85797
|
+
"type": {
|
|
85798
|
+
"text": "{enhanced?: boolean; inherit?: boolean}"
|
|
85799
|
+
}
|
|
85800
|
+
}
|
|
85801
|
+
],
|
|
85802
|
+
"description": "A cap-height `°` column whose width scales with the value size. Used after\nthe value (as the value↔unit boundary, via renderValueUnitGap) and\ninside the setpoint / advice blocks. `inherit` makes the glyph take the\nsurrounding block's colour (setpoint/advice); otherwise it uses the value\ncolour, optionally `enhanced`."
|
|
85803
|
+
},
|
|
85804
|
+
{
|
|
85805
|
+
"kind": "method",
|
|
85806
|
+
"name": "renderValueUnitGap",
|
|
85807
|
+
"privacy": "private",
|
|
85808
|
+
"return": {
|
|
85809
|
+
"type": {
|
|
85810
|
+
"text": "TemplateResult | typeof nothing"
|
|
85811
|
+
}
|
|
85812
|
+
},
|
|
85813
|
+
"description": "The gap rendered between the value digits and the unit.\n\n- `hasDegree`: a cap-height `°` column whose width scales with the value\n size (the `°` replaces the default gap).\n- otherwise: the default 2px gap (only when a trailing unit follows).\n\n`hasDegreeSpacer` deliberately does NOT add anything here — it keeps the 2px\ngap and instead widens the unit column via renderDegreeSpacer (a\nspacer AFTER the unit). That way a non-degree row's value digits stay\naligned with degree rows (degree column width = spacer width + 2px gap)\nwhile its unit shifts left. Mirrors Figma `1:2920` (spacer) / `1:2970`\n(degree).\n\nTODO(designer): cross-size alignment is deferred. Degree rows of different\nvalue sizes have different `°` column widths (6/8/12px), so their value digit\nedges stagger by `degree-width`. For degree rows of mixed sizes you cannot\nalign the value digit edges AND keep the unit column aligned — resolving it\nneeds a design decision (a constant degree reserve, which widens the smaller\nrows' `°`, OR pinning the value edge and letting the unit column stagger)."
|
|
85814
|
+
},
|
|
85815
|
+
{
|
|
85816
|
+
"kind": "method",
|
|
85817
|
+
"name": "renderDegreeSpacer",
|
|
85818
|
+
"privacy": "private",
|
|
85819
|
+
"return": {
|
|
85820
|
+
"type": {
|
|
85821
|
+
"text": "TemplateResult | typeof nothing"
|
|
85822
|
+
}
|
|
85823
|
+
},
|
|
85824
|
+
"description": "A spacer rendered AFTER the unit when `hasDegreeSpacer` is set on a\nnon-degree row. Its width (`degree-compensation-padding`) = the degree\ncolumn width minus the 2px gap, so the row's value digits align with degree\nrows in the same column while its unit shifts left. See\nrenderValueUnitGap."
|
|
85825
|
+
},
|
|
85826
|
+
{
|
|
85827
|
+
"kind": "method",
|
|
85828
|
+
"name": "renderTextbox",
|
|
85829
|
+
"privacy": "private",
|
|
85830
|
+
"return": {
|
|
85831
|
+
"type": {
|
|
85832
|
+
"text": "TemplateResult"
|
|
85833
|
+
}
|
|
85834
|
+
},
|
|
85835
|
+
"parameters": [
|
|
85836
|
+
{
|
|
85837
|
+
"name": "role",
|
|
85838
|
+
"type": {
|
|
85839
|
+
"text": "'label' | 'unit' | 'source'"
|
|
85840
|
+
}
|
|
85841
|
+
},
|
|
85842
|
+
{
|
|
85843
|
+
"name": "text",
|
|
85844
|
+
"type": {
|
|
85845
|
+
"text": "string"
|
|
85846
|
+
}
|
|
85847
|
+
},
|
|
85848
|
+
{
|
|
85849
|
+
"name": "reserver",
|
|
85850
|
+
"optional": true,
|
|
85851
|
+
"type": {
|
|
85852
|
+
"text": "string"
|
|
85853
|
+
}
|
|
85854
|
+
},
|
|
85855
|
+
{
|
|
85856
|
+
"name": "state",
|
|
85857
|
+
"optional": true,
|
|
85858
|
+
"type": {
|
|
85859
|
+
"text": "ReadoutBlockState"
|
|
85860
|
+
}
|
|
85861
|
+
}
|
|
85862
|
+
]
|
|
85863
|
+
},
|
|
85864
|
+
{
|
|
85865
|
+
"kind": "method",
|
|
85866
|
+
"name": "renderValueCluster",
|
|
85867
|
+
"privacy": "private",
|
|
85868
|
+
"return": {
|
|
85869
|
+
"type": {
|
|
85870
|
+
"text": "TemplateResult"
|
|
85871
|
+
}
|
|
85872
|
+
}
|
|
85873
|
+
},
|
|
85874
|
+
{
|
|
85875
|
+
"kind": "method",
|
|
85876
|
+
"name": "renderLabelContainer",
|
|
85877
|
+
"privacy": "private",
|
|
85878
|
+
"return": {
|
|
85879
|
+
"type": {
|
|
85880
|
+
"text": "TemplateResult"
|
|
85881
|
+
}
|
|
85882
|
+
}
|
|
85883
|
+
},
|
|
85884
|
+
{
|
|
85885
|
+
"kind": "method",
|
|
85886
|
+
"name": "renderTrailingUnit",
|
|
85887
|
+
"privacy": "private",
|
|
85888
|
+
"return": {
|
|
85889
|
+
"type": {
|
|
85890
|
+
"text": "TemplateResult | typeof nothing"
|
|
85891
|
+
}
|
|
85892
|
+
}
|
|
85893
|
+
},
|
|
85894
|
+
{
|
|
85895
|
+
"kind": "method",
|
|
85896
|
+
"name": "renderTrailingSource",
|
|
85897
|
+
"privacy": "private",
|
|
85898
|
+
"return": {
|
|
85899
|
+
"type": {
|
|
85900
|
+
"text": "TemplateResult | typeof nothing"
|
|
85901
|
+
}
|
|
85902
|
+
}
|
|
85903
|
+
},
|
|
85904
|
+
{
|
|
85905
|
+
"kind": "method",
|
|
85906
|
+
"name": "renderContent",
|
|
85907
|
+
"privacy": "private",
|
|
85908
|
+
"return": {
|
|
85909
|
+
"type": {
|
|
85910
|
+
"text": "TemplateResult"
|
|
85911
|
+
}
|
|
85912
|
+
}
|
|
85913
|
+
},
|
|
85914
|
+
{
|
|
85915
|
+
"kind": "method",
|
|
85916
|
+
"name": "clearDeferredSetpointHide",
|
|
85917
|
+
"privacy": "private",
|
|
85918
|
+
"return": {
|
|
85919
|
+
"type": {
|
|
85920
|
+
"text": "void"
|
|
85921
|
+
}
|
|
85922
|
+
}
|
|
85923
|
+
}
|
|
85924
|
+
],
|
|
85925
|
+
"attributes": [
|
|
85539
85926
|
{
|
|
85540
85927
|
"name": "label",
|
|
85541
85928
|
"type": {
|
|
85542
|
-
"text": "string"
|
|
85929
|
+
"text": "string | undefined"
|
|
85543
85930
|
},
|
|
85544
|
-
"default": "''",
|
|
85545
85931
|
"fieldName": "label"
|
|
85546
85932
|
},
|
|
85547
85933
|
{
|
|
85548
85934
|
"name": "unit",
|
|
85549
85935
|
"type": {
|
|
85550
|
-
"text": "string"
|
|
85936
|
+
"text": "string | undefined"
|
|
85551
85937
|
},
|
|
85552
|
-
"default": "''",
|
|
85553
85938
|
"fieldName": "unit"
|
|
85554
85939
|
},
|
|
85555
85940
|
{
|
|
85556
85941
|
"name": "src",
|
|
85557
85942
|
"type": {
|
|
85558
|
-
"text": "string"
|
|
85943
|
+
"text": "string | undefined"
|
|
85559
85944
|
},
|
|
85560
|
-
"default": "''",
|
|
85561
85945
|
"fieldName": "src"
|
|
85562
85946
|
},
|
|
85563
85947
|
{
|
|
85564
85948
|
"name": "value",
|
|
85565
85949
|
"type": {
|
|
85566
|
-
"text": "number |
|
|
85950
|
+
"text": "number | null"
|
|
85567
85951
|
},
|
|
85568
|
-
"default": "
|
|
85952
|
+
"default": "null",
|
|
85569
85953
|
"fieldName": "value"
|
|
85570
85954
|
},
|
|
85571
85955
|
{
|
|
85572
|
-
"name": "
|
|
85956
|
+
"name": "off",
|
|
85573
85957
|
"type": {
|
|
85574
|
-
"text": "
|
|
85958
|
+
"text": "boolean"
|
|
85575
85959
|
},
|
|
85576
|
-
"default": "
|
|
85577
|
-
"
|
|
85960
|
+
"default": "false",
|
|
85961
|
+
"description": "Render the value as the literal \"OFF\" (e.g. equipment powered down). Affects the value only.",
|
|
85962
|
+
"fieldName": "off"
|
|
85578
85963
|
},
|
|
85579
85964
|
{
|
|
85580
85965
|
"name": "hasSetpoint",
|
|
@@ -85585,36 +85970,55 @@
|
|
|
85585
85970
|
"fieldName": "hasSetpoint"
|
|
85586
85971
|
},
|
|
85587
85972
|
{
|
|
85588
|
-
"name": "
|
|
85973
|
+
"name": "setpoint",
|
|
85589
85974
|
"type": {
|
|
85590
|
-
"text": "
|
|
85975
|
+
"text": "number | undefined"
|
|
85591
85976
|
},
|
|
85592
|
-
"
|
|
85593
|
-
"fieldName": "hasDegree"
|
|
85977
|
+
"fieldName": "setpoint"
|
|
85594
85978
|
},
|
|
85595
85979
|
{
|
|
85596
|
-
"name": "
|
|
85980
|
+
"name": "hasAdvice",
|
|
85597
85981
|
"type": {
|
|
85598
85982
|
"text": "boolean"
|
|
85599
85983
|
},
|
|
85600
85984
|
"default": "false",
|
|
85601
|
-
"fieldName": "
|
|
85985
|
+
"fieldName": "hasAdvice"
|
|
85602
85986
|
},
|
|
85603
85987
|
{
|
|
85604
|
-
"name": "
|
|
85988
|
+
"name": "advice",
|
|
85605
85989
|
"type": {
|
|
85606
|
-
"text": "
|
|
85990
|
+
"text": "number | undefined"
|
|
85607
85991
|
},
|
|
85608
|
-
"
|
|
85609
|
-
"fieldName": "hasLabel"
|
|
85992
|
+
"fieldName": "advice"
|
|
85610
85993
|
},
|
|
85611
85994
|
{
|
|
85612
|
-
"name": "
|
|
85995
|
+
"name": "size",
|
|
85613
85996
|
"type": {
|
|
85614
|
-
"text": "
|
|
85997
|
+
"text": "ReadoutListItemSize | undefined"
|
|
85998
|
+
},
|
|
85999
|
+
"fieldName": "size"
|
|
86000
|
+
},
|
|
86001
|
+
{
|
|
86002
|
+
"name": "priority",
|
|
86003
|
+
"type": {
|
|
86004
|
+
"text": "ReadoutListItemPriority | undefined"
|
|
86005
|
+
},
|
|
86006
|
+
"fieldName": "priority"
|
|
86007
|
+
},
|
|
86008
|
+
{
|
|
86009
|
+
"name": "stacking",
|
|
86010
|
+
"type": {
|
|
86011
|
+
"text": "ReadoutListItemStacking | undefined"
|
|
86012
|
+
},
|
|
86013
|
+
"fieldName": "stacking"
|
|
86014
|
+
},
|
|
86015
|
+
{
|
|
86016
|
+
"name": "clickable",
|
|
86017
|
+
"type": {
|
|
86018
|
+
"text": "boolean | ReadoutListItemClickable"
|
|
85615
86019
|
},
|
|
85616
86020
|
"default": "false",
|
|
85617
|
-
"fieldName": "
|
|
86021
|
+
"fieldName": "clickable"
|
|
85618
86022
|
},
|
|
85619
86023
|
{
|
|
85620
86024
|
"name": "hasLeadingIcon",
|
|
@@ -85625,12 +86029,20 @@
|
|
|
85625
86029
|
"fieldName": "hasLeadingIcon"
|
|
85626
86030
|
},
|
|
85627
86031
|
{
|
|
85628
|
-
"name": "
|
|
86032
|
+
"name": "hasDegree",
|
|
85629
86033
|
"type": {
|
|
85630
86034
|
"text": "boolean"
|
|
85631
86035
|
},
|
|
85632
86036
|
"default": "false",
|
|
85633
|
-
"fieldName": "
|
|
86037
|
+
"fieldName": "hasDegree"
|
|
86038
|
+
},
|
|
86039
|
+
{
|
|
86040
|
+
"name": "hasDegreeSpacer",
|
|
86041
|
+
"type": {
|
|
86042
|
+
"text": "boolean"
|
|
86043
|
+
},
|
|
86044
|
+
"default": "false",
|
|
86045
|
+
"fieldName": "hasDegreeSpacer"
|
|
85634
86046
|
},
|
|
85635
86047
|
{
|
|
85636
86048
|
"name": "fractionDigits",
|
|
@@ -85641,36 +86053,62 @@
|
|
|
85641
86053
|
"fieldName": "fractionDigits"
|
|
85642
86054
|
},
|
|
85643
86055
|
{
|
|
85644
|
-
"name": "
|
|
86056
|
+
"name": "maxDigits",
|
|
85645
86057
|
"type": {
|
|
85646
|
-
"text": "
|
|
86058
|
+
"text": "number"
|
|
85647
86059
|
},
|
|
85648
|
-
"default": "
|
|
85649
|
-
"fieldName": "
|
|
86060
|
+
"default": "0",
|
|
86061
|
+
"fieldName": "maxDigits"
|
|
85650
86062
|
},
|
|
85651
86063
|
{
|
|
85652
|
-
"name": "
|
|
86064
|
+
"name": "dataQuality",
|
|
85653
86065
|
"type": {
|
|
85654
|
-
"text": "
|
|
86066
|
+
"text": "ReadoutListItemDataQuality | undefined"
|
|
85655
86067
|
},
|
|
85656
|
-
"
|
|
85657
|
-
"fieldName": "minValueLength"
|
|
86068
|
+
"fieldName": "dataQuality"
|
|
85658
86069
|
},
|
|
85659
86070
|
{
|
|
85660
|
-
"name": "
|
|
86071
|
+
"name": "alert",
|
|
85661
86072
|
"type": {
|
|
85662
|
-
"text": "boolean"
|
|
86073
|
+
"text": "boolean | AlertFrameConfig"
|
|
85663
86074
|
},
|
|
85664
86075
|
"default": "false",
|
|
85665
|
-
"fieldName": "
|
|
86076
|
+
"fieldName": "alert"
|
|
85666
86077
|
},
|
|
85667
86078
|
{
|
|
85668
|
-
"name": "
|
|
86079
|
+
"name": "valueOptions",
|
|
85669
86080
|
"type": {
|
|
85670
|
-
"text": "
|
|
86081
|
+
"text": "ReadoutValueOptions | undefined"
|
|
85671
86082
|
},
|
|
85672
|
-
"
|
|
85673
|
-
|
|
86083
|
+
"fieldName": "valueOptions"
|
|
86084
|
+
},
|
|
86085
|
+
{
|
|
86086
|
+
"name": "setpointOptions",
|
|
86087
|
+
"type": {
|
|
86088
|
+
"text": "ReadoutSetpointOptions | undefined"
|
|
86089
|
+
},
|
|
86090
|
+
"fieldName": "setpointOptions"
|
|
86091
|
+
},
|
|
86092
|
+
{
|
|
86093
|
+
"name": "adviceOptions",
|
|
86094
|
+
"type": {
|
|
86095
|
+
"text": "ReadoutAdviceOptions | undefined"
|
|
86096
|
+
},
|
|
86097
|
+
"fieldName": "adviceOptions"
|
|
86098
|
+
},
|
|
86099
|
+
{
|
|
86100
|
+
"name": "unitOptions",
|
|
86101
|
+
"type": {
|
|
86102
|
+
"text": "ReadoutReserverOptions | undefined"
|
|
86103
|
+
},
|
|
86104
|
+
"fieldName": "unitOptions"
|
|
86105
|
+
},
|
|
86106
|
+
{
|
|
86107
|
+
"name": "srcOptions",
|
|
86108
|
+
"type": {
|
|
86109
|
+
"text": "ReadoutSrcOptions | undefined"
|
|
86110
|
+
},
|
|
86111
|
+
"fieldName": "srcOptions"
|
|
85674
86112
|
}
|
|
85675
86113
|
],
|
|
85676
86114
|
"superclass": {
|
|
@@ -85682,6 +86120,14 @@
|
|
|
85682
86120
|
}
|
|
85683
86121
|
],
|
|
85684
86122
|
"exports": [
|
|
86123
|
+
{
|
|
86124
|
+
"kind": "js",
|
|
86125
|
+
"name": "ObcTextboxFontWeight",
|
|
86126
|
+
"declaration": {
|
|
86127
|
+
"name": "ObcTextboxFontWeight",
|
|
86128
|
+
"module": "../../components/textbox/textbox.js"
|
|
86129
|
+
}
|
|
86130
|
+
},
|
|
85685
86131
|
{
|
|
85686
86132
|
"kind": "js",
|
|
85687
86133
|
"name": "ObcReadoutListItem",
|