@genesislcap/pbc-notify-ui 15.24.1 → 15.25.1
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/dist/custom-elements.json +1395 -1395
- package/dist/dts/react.d.ts +31 -31
- package/dist/react.cjs +16 -16
- package/dist/react.mjs +13 -13
- package/package.json +22 -22
|
@@ -2041,19 +2041,54 @@
|
|
|
2041
2041
|
},
|
|
2042
2042
|
{
|
|
2043
2043
|
"kind": "javascript-module",
|
|
2044
|
-
"path": "src/components/foundation-
|
|
2044
|
+
"path": "src/components/foundation-sounds/foundation-sounds-panel.styles.ts",
|
|
2045
2045
|
"declarations": [
|
|
2046
2046
|
{
|
|
2047
2047
|
"kind": "variable",
|
|
2048
|
-
"name": "
|
|
2049
|
-
"default": "
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2048
|
+
"name": "FoundationSoundsPanelStyles",
|
|
2049
|
+
"default": "css`\n :host {\n display: flex;\n flex-direction: column;\n height: 100%;\n min-height: 0;\n width: 100%;\n }\n\n .sounds-controls {\n display: flex;\n flex-direction: column;\n flex: 1;\n min-height: 0;\n gap: 12px;\n padding: calc(var(--design-unit) * 3px);\n box-sizing: border-box;\n }\n\n .sounds-help-disclosure {\n flex: 0 0 auto;\n }\n\n .sounds-help-toggle {\n margin-inline-start: calc(var(--design-unit) * 1px);\n }\n\n .sounds-help-toggle::before {\n content: '+';\n }\n\n .sounds-help-disclosure[expanded] .sounds-help-toggle::before {\n content: '−';\n }\n\n .sounds-help {\n margin: 0;\n font-size: var(--type-ramp-minus-1-font-size);\n color: var(--neutral-foreground-hint);\n text-align: left;\n }\n\n .volume-row {\n display: flex;\n align-items: center;\n flex: 0 0 auto;\n gap: calc(var(--design-unit) * 2px);\n min-width: 0;\n }\n\n .volume-icon {\n flex: 0 0 auto;\n }\n\n .volume-label {\n flex: 0 0 auto;\n font-size: var(--type-ramp-minus-1-font-size);\n color: var(--neutral-foreground-hint);\n }\n\n .volume-slider {\n flex: 1 1 auto;\n min-width: 0;\n }\n\n .volume-percent {\n flex: 0 0 auto;\n min-width: 3ch;\n text-align: end;\n font-size: var(--type-ramp-minus-1-font-size);\n color: var(--neutral-foreground-hint);\n }\n\n .mute-all {\n flex: 0 0 auto;\n margin: 0;\n }\n\n .sound-rules-panel {\n flex: 1 1 auto;\n min-height: 0;\n overflow: auto;\n }\n\n .sound-rules {\n display: flex;\n flex-direction: column;\n gap: 12px;\n }\n\n .sound-rule {\n display: flex;\n flex-direction: column;\n gap: 8px;\n padding: 12px;\n border: calc(var(--stroke-width) * 1px) solid var(--neutral-stroke-divider-rest);\n border-radius: calc(var(--control-corner-radius) * 1px);\n\n /* Keep absolute listboxes from being clipped by the card itself. */\n overflow: visible;\n }\n\n .sound-rule-header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n font-weight: 700;\n font-size: var(--type-ramp-minus-1-font-size);\n }\n\n .sound-rule-actions {\n display: flex;\n align-items: center;\n gap: 2px;\n }\n\n .sound-rule-label {\n display: flex;\n flex-direction: column;\n gap: 4px;\n font-size: var(--type-ramp-minus-1-font-size);\n color: var(--neutral-foreground-hint);\n }\n\n .pattern-input,\n .match-mode-select,\n .rule-select,\n .sound-file-input {\n width: 100%;\n }\n\n /*\n * Anchor the listbox to the select host and use position:fixed so it escapes\n * .sound-rules-panel overflow:auto (and the rule card). Each select sets a\n * unique --sounds-select-anchor / anchor-name via inline style.\n * !important beats FAST's internal absolute top/bottom for [open] selects.\n */\n .match-mode-select[open]::part(listbox),\n .rule-select[open]::part(listbox) {\n position: fixed !important;\n /* stylelint-disable-next-line property-no-unknown -- CSS anchor positioning */\n position-anchor: var(--sounds-select-anchor);\n inset: auto !important;\n top: anchor(bottom) !important;\n left: anchor(left) !important;\n right: anchor(right) !important;\n bottom: auto !important;\n width: auto !important;\n margin-top: calc(var(--design-unit) * 1px);\n z-index: 10000;\n max-height: min(240px, 40vh);\n overflow-x: hidden;\n overflow-y: auto;\n box-shadow: 0 4px 16px rgb(0 0 0 / 24%);\n }\n\n .match-mode-select[open][position='above']::part(listbox),\n .rule-select[open][position='above']::part(listbox) {\n top: auto !important;\n bottom: anchor(top) !important;\n margin-top: 0;\n margin-bottom: calc(var(--design-unit) * 1px);\n }\n\n .sound-file-row {\n display: flex;\n align-items: center;\n gap: 4px;\n }\n\n .sound-file-row .sound-file-input {\n flex: 1;\n min-width: 0;\n }\n\n .choose-sound {\n cursor: pointer;\n }\n\n .sound-rules-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n flex: 0 0 auto;\n gap: 8px;\n }\n\n .rule-count {\n font-size: var(--type-ramp-minus-1-font-size);\n color: var(--neutral-foreground-hint);\n }\n\n .file-input {\n display: none;\n }\n\n ${scrollbarStyles}\n`"
|
|
2050
|
+
}
|
|
2051
|
+
],
|
|
2052
|
+
"exports": [
|
|
2053
2053
|
{
|
|
2054
|
-
"kind": "
|
|
2055
|
-
"
|
|
2056
|
-
"
|
|
2054
|
+
"kind": "js",
|
|
2055
|
+
"name": "FoundationSoundsPanelStyles",
|
|
2056
|
+
"declaration": {
|
|
2057
|
+
"name": "FoundationSoundsPanelStyles",
|
|
2058
|
+
"module": "src/components/foundation-sounds/foundation-sounds-panel.styles.ts"
|
|
2059
|
+
}
|
|
2060
|
+
}
|
|
2061
|
+
]
|
|
2062
|
+
},
|
|
2063
|
+
{
|
|
2064
|
+
"kind": "javascript-module",
|
|
2065
|
+
"path": "src/components/foundation-sounds/foundation-sounds-panel.template.ts",
|
|
2066
|
+
"declarations": [
|
|
2067
|
+
{
|
|
2068
|
+
"kind": "variable",
|
|
2069
|
+
"name": "FoundationSoundsPanelTemplate",
|
|
2070
|
+
"default": "html<FoundationSoundsPanel>`\n <div class=\"sounds-controls\" part=\"controls\">\n <input\n ${ref('fileInput')}\n class=\"file-input\"\n type=\"file\"\n accept=\"audio/*\"\n @change=${(x, c) => x.onFileSelected(c.event)}\n />\n <rapid-disclosure class=\"sounds-help-disclosure\" appearance=\"lightweight\">\n <span slot=\"title\">\n Sound Alerts Information\n <span class=\"sounds-help-toggle\" aria-hidden=\"true\"></span>\n </span>\n <p class=\"sounds-help\">\n Add up to ${(x) => x.maxRules} sounds.\n <br />\n Match text in MESSAGE or HEADER (a word or phrase), or a notification rule (including rules\n created when you subscribe to a template).\n <br />\n The first matching rule is played.\n </p>\n </rapid-disclosure>\n <div class=\"volume-row\">\n <rapid-icon\n class=\"volume-icon\"\n name=${(x) => (x.muted || x.volumePercent === 0 ? 'volume-xmark' : 'volume-high')}\n ></rapid-icon>\n <span class=\"volume-label\">Volume</span>\n <rapid-slider\n class=\"volume-slider\"\n min=\"0\"\n max=\"100\"\n step=\"1\"\n :value=${(x) => String(x.volumePercent)}\n @change=${(x, c) => x.onVolumeChange(c.event)}\n ></rapid-slider>\n <span class=\"volume-percent\">${(x) => `${x.volumePercent}%`}</span>\n <rapid-button\n class=\"mute-all\"\n appearance=\"lightweight\"\n title=${(x) => (x.muted ? 'Unmute alert sounds' : 'Mute all alert sounds')}\n @click=${(x) => x.toggleMute()}\n >\n ${(x) => (x.muted ? 'Unmute' : 'Mute all')}\n </rapid-button>\n </div>\n <div class=\"sound-rules-panel\">\n <div class=\"sound-rules\">\n ${repeat(\n (x) => x.rules,\n html<AlertSoundRuleView, FoundationSoundsPanel>`\n <div class=\"sound-rule\" data-rule-index=${(x) => x.index}>\n <div class=\"sound-rule-header\">\n <span>Rule ${(x) => x.index + 1}</span>\n <div class=\"sound-rule-actions\">\n <rapid-button\n class=\"mute-rule\"\n appearance=\"stealth\"\n title=${(x) => (x.muted ? 'Unmute this rule' : 'Mute this rule')}\n @click=${(x, c) => c.parent.toggleRuleMute(x.index)}\n >\n <rapid-icon\n name=${(x) => (x.muted ? 'volume-xmark' : 'volume-high')}\n ></rapid-icon>\n </rapid-button>\n <rapid-button\n class=\"remove-rule\"\n appearance=\"stealth\"\n title=${(_, c) => (c.parent.canRemoveRule ? 'Remove rule' : 'Reset rule')}\n @click=${(x, c) => c.parent.removeRule(x.index)}\n >\n <rapid-icon name=\"trash\"></rapid-icon>\n </rapid-button>\n </div>\n </div>\n <label class=\"sound-rule-label\">\n Match by\n <rapid-select\n class=\"match-mode-select\"\n style=${(x) =>\n `anchor-name: --sound-match-${x.index}; --sounds-select-anchor: --sound-match-${x.index}`}\n :value=${(x) => x.matchMode}\n @change=${(x, c) => c.parent.onMatchModeChange(x.index, c.event)}\n >\n <rapid-option value=\"message\">MESSAGE text</rapid-option>\n <rapid-option value=\"header\">HEADER text</rapid-option>\n <rapid-option value=\"rule\">Notification rule</rapid-option>\n </rapid-select>\n </label>\n <label\n class=\"sound-rule-label\"\n style=${(x) => (x.matchMode === 'rule' ? 'display: none;' : '')}\n >\n ${(x) => (x.matchMode === 'header' ? 'HEADER text' : 'MESSAGE text')}\n <rapid-text-field\n class=\"pattern-input\"\n placeholder=${(x) =>\n x.matchMode === 'header' ? 'e.g. Price alert' : 'e.g. limit breached'}\n :value=${(x) => x.pattern}\n @input=${(x, c) => c.parent.onPatternInput(x.index, c.event)}\n ></rapid-text-field>\n </label>\n <label\n class=\"sound-rule-label\"\n style=${(x) => (x.matchMode === 'rule' ? '' : 'display: none;')}\n >\n Notification rule\n <rapid-select\n class=\"rule-select\"\n style=${(x) =>\n `anchor-name: --sound-rule-${x.index}; --sounds-select-anchor: --sound-rule-${x.index}`}\n :value=${(x) => x.templateId ?? ''}\n @change=${(x, c) => c.parent.onRuleChange(x.index, c.event)}\n >\n <options-datasource\n value-field=\"id\"\n label-field=\"name\"\n option-element=\"rapid-option\"\n :data=${(_, c) => c.parent.ruleSelectOptions}\n ></options-datasource>\n </rapid-select>\n </label>\n <label class=\"sound-rule-label\">\n Sound file\n <div class=\"sound-file-row\">\n <rapid-text-field\n class=\"sound-file-input\"\n readonly\n placeholder=\"No sound selected\"\n :value=${(x) => x.fileName ?? ''}\n title=${(x) => x.fileName ?? 'No sound selected'}\n >\n <rapid-icon\n slot=\"end\"\n class=\"choose-sound\"\n name=\"folder-open\"\n title=\"Choose alert sound\"\n @click=${(x, c) => {\n c.event.stopPropagation();\n return c.parent.openFilePicker(x.index);\n }}\n ></rapid-icon>\n </rapid-text-field>\n <rapid-button\n class=\"test-sound\"\n appearance=\"stealth\"\n title=\"Test play this sound\"\n ?disabled=${(x) => !x.hasSound}\n @click=${(x, c) => c.parent.testSound(x.index)}\n >\n <rapid-icon name=\"play\"></rapid-icon>\n </rapid-button>\n <rapid-button\n class=\"clear-sound\"\n appearance=\"stealth\"\n title=\"Clear sound file\"\n ?disabled=${(x) => !x.hasSound}\n @click=${(x, c) => c.parent.clearSound(x.index)}\n >\n <rapid-icon name=\"times\"></rapid-icon>\n </rapid-button>\n </div>\n </label>\n </div>\n `,\n )}\n </div>\n </div>\n <div class=\"sound-rules-footer\">\n <rapid-button\n class=\"add-rule\"\n appearance=\"lightweight\"\n title=\"Add sound rule\"\n ?disabled=${(x) => !x.canAddRule}\n @click=${(x) => x.addRule()}\n >\n <rapid-icon name=\"plus\"></rapid-icon>\n Add rule\n </rapid-button>\n <span class=\"rule-count\">${(x) => `${x.rules.length} / ${x.maxRules}`}</span>\n </div>\n </div>\n`"
|
|
2071
|
+
}
|
|
2072
|
+
],
|
|
2073
|
+
"exports": [
|
|
2074
|
+
{
|
|
2075
|
+
"kind": "js",
|
|
2076
|
+
"name": "FoundationSoundsPanelTemplate",
|
|
2077
|
+
"declaration": {
|
|
2078
|
+
"name": "FoundationSoundsPanelTemplate",
|
|
2079
|
+
"module": "src/components/foundation-sounds/foundation-sounds-panel.template.ts"
|
|
2080
|
+
}
|
|
2081
|
+
}
|
|
2082
|
+
]
|
|
2083
|
+
},
|
|
2084
|
+
{
|
|
2085
|
+
"kind": "javascript-module",
|
|
2086
|
+
"path": "src/components/foundation-sounds/foundation-sounds-panel.ts",
|
|
2087
|
+
"declarations": [
|
|
2088
|
+
{
|
|
2089
|
+
"kind": "class",
|
|
2090
|
+
"description": "Configures alert sound rules in the inbox Sounds tab. Persists via the shared\nAlertSoundPlayer; playback is handled by layout-mounted\nFoundationSounds.",
|
|
2091
|
+
"name": "FoundationSoundsPanel",
|
|
2057
2092
|
"members": [
|
|
2058
2093
|
{
|
|
2059
2094
|
"kind": "field",
|
|
@@ -2064,56 +2099,21 @@
|
|
|
2064
2099
|
},
|
|
2065
2100
|
{
|
|
2066
2101
|
"kind": "field",
|
|
2067
|
-
"name": "
|
|
2068
|
-
"type": {
|
|
2069
|
-
"text": "boolean"
|
|
2070
|
-
},
|
|
2071
|
-
"description": "True when editing an existing entity (clear should set CLEAR_ALERT_SOUND).",
|
|
2072
|
-
"readonly": true
|
|
2073
|
-
},
|
|
2074
|
-
{
|
|
2075
|
-
"kind": "field",
|
|
2076
|
-
"name": "alertSoundEntityId",
|
|
2077
|
-
"type": {
|
|
2078
|
-
"text": "string | null"
|
|
2079
|
-
},
|
|
2080
|
-
"description": "DYNAMIC_RULE_ID of the entity being edited (null on create).\nUsed when alertSoundCacheSyncMode is `'entity'`.",
|
|
2081
|
-
"readonly": true
|
|
2082
|
-
},
|
|
2083
|
-
{
|
|
2084
|
-
"kind": "field",
|
|
2085
|
-
"name": "alertSoundCacheSyncMode",
|
|
2086
|
-
"type": {
|
|
2087
|
-
"text": "'entity' | 'all'"
|
|
2088
|
-
},
|
|
2089
|
-
"description": "`'entity'` — update/clear cache for alertSoundEntityId (rules).\n`'all'` — drop every cached server sound (templates; instance ids unknown).",
|
|
2090
|
-
"readonly": true
|
|
2091
|
-
},
|
|
2092
|
-
{
|
|
2093
|
-
"kind": "field",
|
|
2094
|
-
"name": "alertSoundFileName",
|
|
2095
|
-
"type": {
|
|
2096
|
-
"text": "string"
|
|
2097
|
-
},
|
|
2098
|
-
"default": "''",
|
|
2099
|
-
"description": "Display name of the attached / pending alert sound file."
|
|
2100
|
-
},
|
|
2101
|
-
{
|
|
2102
|
-
"kind": "field",
|
|
2103
|
-
"name": "alertSoundMimeType",
|
|
2102
|
+
"name": "volumePercent",
|
|
2104
2103
|
"type": {
|
|
2105
|
-
"text": "
|
|
2104
|
+
"text": "number"
|
|
2106
2105
|
},
|
|
2107
|
-
"default": "
|
|
2106
|
+
"default": "100",
|
|
2107
|
+
"description": "Global playback volume 0–100. @internal"
|
|
2108
2108
|
},
|
|
2109
2109
|
{
|
|
2110
2110
|
"kind": "field",
|
|
2111
|
-
"name": "
|
|
2111
|
+
"name": "selectableRules",
|
|
2112
2112
|
"type": {
|
|
2113
|
-
"text": "
|
|
2113
|
+
"text": "AlertSoundSelectableRule[]"
|
|
2114
2114
|
},
|
|
2115
|
-
"default": "
|
|
2116
|
-
"description": "
|
|
2115
|
+
"default": "[]",
|
|
2116
|
+
"description": "Notification rules from REQ_NOTIFICATION_RULE. @internal"
|
|
2117
2117
|
},
|
|
2118
2118
|
{
|
|
2119
2119
|
"kind": "field",
|
|
@@ -2124,58 +2124,98 @@
|
|
|
2124
2124
|
},
|
|
2125
2125
|
{
|
|
2126
2126
|
"kind": "field",
|
|
2127
|
-
"name": "
|
|
2127
|
+
"name": "pendingRuleIndex",
|
|
2128
2128
|
"type": {
|
|
2129
|
-
"text": "
|
|
2129
|
+
"text": "number | null"
|
|
2130
2130
|
},
|
|
2131
|
+
"privacy": "private",
|
|
2131
2132
|
"default": "null"
|
|
2132
2133
|
},
|
|
2133
2134
|
{
|
|
2134
2135
|
"kind": "field",
|
|
2135
|
-
"name": "
|
|
2136
|
-
"
|
|
2137
|
-
|
|
2138
|
-
},
|
|
2139
|
-
"default": "false",
|
|
2140
|
-
"description": "True when the user picked a new file this session (needs upload)."
|
|
2136
|
+
"name": "player",
|
|
2137
|
+
"privacy": "private",
|
|
2138
|
+
"readonly": true
|
|
2141
2139
|
},
|
|
2142
2140
|
{
|
|
2143
2141
|
"kind": "field",
|
|
2144
|
-
"name": "
|
|
2142
|
+
"name": "unsubscribePlayer",
|
|
2145
2143
|
"type": {
|
|
2146
|
-
"text": "
|
|
2144
|
+
"text": "(() => void) | undefined"
|
|
2147
2145
|
},
|
|
2148
|
-
"
|
|
2146
|
+
"privacy": "private"
|
|
2149
2147
|
},
|
|
2150
2148
|
{
|
|
2151
2149
|
"kind": "field",
|
|
2152
|
-
"name": "
|
|
2150
|
+
"name": "ignoreSelectChanges",
|
|
2153
2151
|
"type": {
|
|
2154
|
-
"text": "
|
|
2152
|
+
"text": "boolean"
|
|
2155
2153
|
},
|
|
2156
|
-
"
|
|
2157
|
-
"
|
|
2154
|
+
"privacy": "private",
|
|
2155
|
+
"default": "false",
|
|
2156
|
+
"description": "Suppresses select change events while options are rebuilt."
|
|
2158
2157
|
},
|
|
2159
2158
|
{
|
|
2160
2159
|
"kind": "method",
|
|
2161
|
-
"name": "
|
|
2160
|
+
"name": "onMatchModeChange",
|
|
2161
|
+
"return": {
|
|
2162
|
+
"type": {
|
|
2163
|
+
"text": "boolean"
|
|
2164
|
+
}
|
|
2165
|
+
},
|
|
2162
2166
|
"parameters": [
|
|
2163
2167
|
{
|
|
2164
|
-
"name": "
|
|
2168
|
+
"name": "index",
|
|
2165
2169
|
"type": {
|
|
2166
|
-
"text": "
|
|
2170
|
+
"text": "number"
|
|
2171
|
+
}
|
|
2172
|
+
},
|
|
2173
|
+
{
|
|
2174
|
+
"name": "event",
|
|
2175
|
+
"type": {
|
|
2176
|
+
"text": "Event"
|
|
2167
2177
|
}
|
|
2168
2178
|
}
|
|
2169
2179
|
]
|
|
2170
2180
|
},
|
|
2171
2181
|
{
|
|
2172
2182
|
"kind": "method",
|
|
2173
|
-
"name": "
|
|
2183
|
+
"name": "onPatternInput",
|
|
2184
|
+
"return": {
|
|
2185
|
+
"type": {
|
|
2186
|
+
"text": "boolean"
|
|
2187
|
+
}
|
|
2188
|
+
},
|
|
2189
|
+
"parameters": [
|
|
2190
|
+
{
|
|
2191
|
+
"name": "index",
|
|
2192
|
+
"type": {
|
|
2193
|
+
"text": "number"
|
|
2194
|
+
}
|
|
2195
|
+
},
|
|
2196
|
+
{
|
|
2197
|
+
"name": "event",
|
|
2198
|
+
"type": {
|
|
2199
|
+
"text": "Event"
|
|
2200
|
+
}
|
|
2201
|
+
}
|
|
2202
|
+
]
|
|
2174
2203
|
},
|
|
2175
2204
|
{
|
|
2176
2205
|
"kind": "method",
|
|
2177
|
-
"name": "
|
|
2206
|
+
"name": "onRuleChange",
|
|
2207
|
+
"return": {
|
|
2208
|
+
"type": {
|
|
2209
|
+
"text": "boolean"
|
|
2210
|
+
}
|
|
2211
|
+
},
|
|
2178
2212
|
"parameters": [
|
|
2213
|
+
{
|
|
2214
|
+
"name": "index",
|
|
2215
|
+
"type": {
|
|
2216
|
+
"text": "number"
|
|
2217
|
+
}
|
|
2218
|
+
},
|
|
2179
2219
|
{
|
|
2180
2220
|
"name": "event",
|
|
2181
2221
|
"type": {
|
|
@@ -2186,886 +2226,939 @@
|
|
|
2186
2226
|
},
|
|
2187
2227
|
{
|
|
2188
2228
|
"kind": "method",
|
|
2189
|
-
"name": "
|
|
2229
|
+
"name": "openFilePicker",
|
|
2230
|
+
"return": {
|
|
2231
|
+
"type": {
|
|
2232
|
+
"text": "boolean"
|
|
2233
|
+
}
|
|
2234
|
+
},
|
|
2235
|
+
"parameters": [
|
|
2236
|
+
{
|
|
2237
|
+
"name": "index",
|
|
2238
|
+
"type": {
|
|
2239
|
+
"text": "number"
|
|
2240
|
+
}
|
|
2241
|
+
}
|
|
2242
|
+
]
|
|
2190
2243
|
},
|
|
2191
2244
|
{
|
|
2192
2245
|
"kind": "method",
|
|
2193
|
-
"name": "
|
|
2246
|
+
"name": "onFileSelected",
|
|
2247
|
+
"return": {
|
|
2248
|
+
"type": {
|
|
2249
|
+
"text": "boolean"
|
|
2250
|
+
}
|
|
2251
|
+
},
|
|
2252
|
+
"parameters": [
|
|
2253
|
+
{
|
|
2254
|
+
"name": "event",
|
|
2255
|
+
"type": {
|
|
2256
|
+
"text": "Event"
|
|
2257
|
+
}
|
|
2258
|
+
}
|
|
2259
|
+
]
|
|
2194
2260
|
},
|
|
2195
2261
|
{
|
|
2196
2262
|
"kind": "method",
|
|
2197
|
-
"name": "
|
|
2263
|
+
"name": "clearSound",
|
|
2264
|
+
"return": {
|
|
2265
|
+
"type": {
|
|
2266
|
+
"text": "boolean"
|
|
2267
|
+
}
|
|
2268
|
+
},
|
|
2269
|
+
"parameters": [
|
|
2270
|
+
{
|
|
2271
|
+
"name": "index",
|
|
2272
|
+
"type": {
|
|
2273
|
+
"text": "number"
|
|
2274
|
+
}
|
|
2275
|
+
}
|
|
2276
|
+
]
|
|
2198
2277
|
},
|
|
2199
2278
|
{
|
|
2200
2279
|
"kind": "method",
|
|
2201
|
-
"name": "
|
|
2280
|
+
"name": "testSound",
|
|
2281
|
+
"return": {
|
|
2282
|
+
"type": {
|
|
2283
|
+
"text": "boolean"
|
|
2284
|
+
}
|
|
2285
|
+
},
|
|
2286
|
+
"parameters": [
|
|
2287
|
+
{
|
|
2288
|
+
"name": "index",
|
|
2289
|
+
"type": {
|
|
2290
|
+
"text": "number"
|
|
2291
|
+
}
|
|
2292
|
+
}
|
|
2293
|
+
]
|
|
2202
2294
|
},
|
|
2203
2295
|
{
|
|
2204
2296
|
"kind": "method",
|
|
2205
|
-
"name": "
|
|
2297
|
+
"name": "toggleRuleMute",
|
|
2206
2298
|
"return": {
|
|
2207
2299
|
"type": {
|
|
2208
|
-
"text": "
|
|
2300
|
+
"text": "boolean"
|
|
2209
2301
|
}
|
|
2210
2302
|
},
|
|
2211
2303
|
"parameters": [
|
|
2212
2304
|
{
|
|
2213
|
-
"name": "
|
|
2305
|
+
"name": "index",
|
|
2214
2306
|
"type": {
|
|
2215
|
-
"text": "
|
|
2307
|
+
"text": "number"
|
|
2216
2308
|
}
|
|
2217
2309
|
}
|
|
2218
|
-
]
|
|
2219
|
-
"description": "Merges pending sound / clear flag onto a create/update DETAILS object."
|
|
2310
|
+
]
|
|
2220
2311
|
},
|
|
2221
2312
|
{
|
|
2222
2313
|
"kind": "method",
|
|
2223
|
-
"name": "
|
|
2224
|
-
"
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2314
|
+
"name": "onVolumeChange",
|
|
2315
|
+
"return": {
|
|
2316
|
+
"type": {
|
|
2317
|
+
"text": "boolean"
|
|
2318
|
+
}
|
|
2319
|
+
},
|
|
2320
|
+
"parameters": [
|
|
2321
|
+
{
|
|
2322
|
+
"name": "event",
|
|
2323
|
+
"type": {
|
|
2324
|
+
"text": "Event"
|
|
2325
|
+
}
|
|
2326
|
+
}
|
|
2327
|
+
]
|
|
2328
|
+
},
|
|
2228
2329
|
{
|
|
2229
|
-
"
|
|
2230
|
-
"
|
|
2231
|
-
|
|
2330
|
+
"kind": "method",
|
|
2331
|
+
"name": "toggleMute",
|
|
2332
|
+
"return": {
|
|
2333
|
+
"type": {
|
|
2334
|
+
"text": "boolean"
|
|
2335
|
+
}
|
|
2232
2336
|
}
|
|
2233
|
-
}
|
|
2234
|
-
],
|
|
2235
|
-
"privacy": "public"
|
|
2236
|
-
}
|
|
2237
|
-
],
|
|
2238
|
-
"exports": [
|
|
2239
|
-
{
|
|
2240
|
-
"kind": "js",
|
|
2241
|
-
"name": "alertSoundAttachmentTemplate",
|
|
2242
|
-
"declaration": {
|
|
2243
|
-
"name": "alertSoundAttachmentTemplate",
|
|
2244
|
-
"module": "src/components/foundation-notification-dashboard/alert-sound-attachment.ts"
|
|
2245
|
-
}
|
|
2246
|
-
},
|
|
2247
|
-
{
|
|
2248
|
-
"kind": "js",
|
|
2249
|
-
"name": "AlertSoundAttachmentMixin",
|
|
2250
|
-
"declaration": {
|
|
2251
|
-
"name": "AlertSoundAttachmentMixin",
|
|
2252
|
-
"module": "src/components/foundation-notification-dashboard/alert-sound-attachment.ts"
|
|
2253
|
-
}
|
|
2254
|
-
}
|
|
2255
|
-
]
|
|
2256
|
-
},
|
|
2257
|
-
{
|
|
2258
|
-
"kind": "javascript-module",
|
|
2259
|
-
"path": "src/components/foundation-notification-dashboard/index.ts",
|
|
2260
|
-
"declarations": [],
|
|
2261
|
-
"exports": [
|
|
2262
|
-
{
|
|
2263
|
-
"kind": "js",
|
|
2264
|
-
"name": "*",
|
|
2265
|
-
"declaration": {
|
|
2266
|
-
"name": "*",
|
|
2267
|
-
"package": "./notification-dashboard"
|
|
2268
|
-
}
|
|
2269
|
-
}
|
|
2270
|
-
]
|
|
2271
|
-
},
|
|
2272
|
-
{
|
|
2273
|
-
"kind": "javascript-module",
|
|
2274
|
-
"path": "src/components/foundation-notification-dashboard/notification-dashboard.styles.ts",
|
|
2275
|
-
"declarations": [
|
|
2276
|
-
{
|
|
2277
|
-
"kind": "variable",
|
|
2278
|
-
"name": "FoundationNotificationDashboardStyles",
|
|
2279
|
-
"default": "css`\n .notification-dashboard,\n rapid-tabs,\n rapid-tab-panel {\n height: 100%;\n }\n\n .no-permissions {\n font-family: var(--body-font);\n color: var(--neutral-foreground-rest);\n height: 100%;\n display: flex;\n align-items: center;\n justify-content: center;\n }\n`",
|
|
2280
|
-
"privacy": "public"
|
|
2281
|
-
}
|
|
2282
|
-
],
|
|
2283
|
-
"exports": [
|
|
2284
|
-
{
|
|
2285
|
-
"kind": "js",
|
|
2286
|
-
"name": "FoundationNotificationDashboardStyles",
|
|
2287
|
-
"declaration": {
|
|
2288
|
-
"name": "FoundationNotificationDashboardStyles",
|
|
2289
|
-
"module": "src/components/foundation-notification-dashboard/notification-dashboard.styles.ts"
|
|
2290
|
-
}
|
|
2291
|
-
}
|
|
2292
|
-
]
|
|
2293
|
-
},
|
|
2294
|
-
{
|
|
2295
|
-
"kind": "javascript-module",
|
|
2296
|
-
"path": "src/components/foundation-notification-dashboard/notification-dashboard.tabs.ts",
|
|
2297
|
-
"declarations": [
|
|
2298
|
-
{
|
|
2299
|
-
"kind": "class",
|
|
2300
|
-
"description": "",
|
|
2301
|
-
"name": "NotificationDashboardTab",
|
|
2302
|
-
"members": [
|
|
2337
|
+
},
|
|
2303
2338
|
{
|
|
2304
|
-
"kind": "
|
|
2305
|
-
"name": "
|
|
2306
|
-
"
|
|
2307
|
-
"
|
|
2339
|
+
"kind": "method",
|
|
2340
|
+
"name": "addRule",
|
|
2341
|
+
"return": {
|
|
2342
|
+
"type": {
|
|
2343
|
+
"text": "boolean"
|
|
2344
|
+
}
|
|
2308
2345
|
}
|
|
2309
2346
|
},
|
|
2310
2347
|
{
|
|
2311
|
-
"kind": "
|
|
2312
|
-
"name": "
|
|
2313
|
-
"
|
|
2314
|
-
"
|
|
2315
|
-
|
|
2348
|
+
"kind": "method",
|
|
2349
|
+
"name": "removeRule",
|
|
2350
|
+
"return": {
|
|
2351
|
+
"type": {
|
|
2352
|
+
"text": "boolean"
|
|
2353
|
+
}
|
|
2354
|
+
},
|
|
2355
|
+
"parameters": [
|
|
2356
|
+
{
|
|
2357
|
+
"name": "index",
|
|
2358
|
+
"type": {
|
|
2359
|
+
"text": "number"
|
|
2360
|
+
}
|
|
2361
|
+
}
|
|
2362
|
+
]
|
|
2316
2363
|
},
|
|
2317
2364
|
{
|
|
2318
|
-
"kind": "
|
|
2319
|
-
"name": "
|
|
2320
|
-
"
|
|
2321
|
-
"
|
|
2322
|
-
|
|
2365
|
+
"kind": "method",
|
|
2366
|
+
"name": "reloadRules",
|
|
2367
|
+
"return": {
|
|
2368
|
+
"type": {
|
|
2369
|
+
"text": "Promise<void>"
|
|
2370
|
+
}
|
|
2371
|
+
},
|
|
2372
|
+
"description": "Reloads the notification-rule picker (e.g. when the Sounds tab is opened)."
|
|
2323
2373
|
},
|
|
2324
2374
|
{
|
|
2325
|
-
"kind": "
|
|
2326
|
-
"name": "
|
|
2327
|
-
"
|
|
2328
|
-
|
|
2375
|
+
"kind": "method",
|
|
2376
|
+
"name": "loadRules",
|
|
2377
|
+
"privacy": "private",
|
|
2378
|
+
"return": {
|
|
2379
|
+
"type": {
|
|
2380
|
+
"text": "Promise<void>"
|
|
2381
|
+
}
|
|
2329
2382
|
}
|
|
2383
|
+
},
|
|
2384
|
+
{
|
|
2385
|
+
"kind": "method",
|
|
2386
|
+
"name": "settleRuleOptions",
|
|
2387
|
+
"privacy": "private",
|
|
2388
|
+
"return": {
|
|
2389
|
+
"type": {
|
|
2390
|
+
"text": "Promise<void>"
|
|
2391
|
+
}
|
|
2392
|
+
},
|
|
2393
|
+
"description": "Suppresses select `change` events only while options-datasource rebuilds\nthe DOM — not for the `getRules()` round trip itself, so a user picking a\nrule while a request is in flight isn't silently dropped."
|
|
2394
|
+
},
|
|
2395
|
+
{
|
|
2396
|
+
"kind": "method",
|
|
2397
|
+
"name": "applyRuleSelectValues",
|
|
2398
|
+
"privacy": "private",
|
|
2399
|
+
"return": {
|
|
2400
|
+
"type": {
|
|
2401
|
+
"text": "void"
|
|
2402
|
+
}
|
|
2403
|
+
},
|
|
2404
|
+
"description": "Re-applies persisted template ids onto `.rule-select` hosts after\noptions-datasource has rebuilt its options. We deliberately do *not* bind\n`:initialSelectedValue` to templateId: that path compares the option label\nagainst Select.value (the option id), always mismatches, clearData()'s the\nselect, and leaves the next pick stuck on \"Select a rule...\"."
|
|
2405
|
+
},
|
|
2406
|
+
{
|
|
2407
|
+
"kind": "method",
|
|
2408
|
+
"name": "mapRules",
|
|
2409
|
+
"privacy": "private",
|
|
2410
|
+
"return": {
|
|
2411
|
+
"type": {
|
|
2412
|
+
"text": "AlertSoundSelectableRule[]"
|
|
2413
|
+
}
|
|
2414
|
+
},
|
|
2415
|
+
"parameters": [
|
|
2416
|
+
{
|
|
2417
|
+
"name": "ruleList",
|
|
2418
|
+
"type": {
|
|
2419
|
+
"text": "NamedRuleRow[]"
|
|
2420
|
+
}
|
|
2421
|
+
}
|
|
2422
|
+
]
|
|
2423
|
+
},
|
|
2424
|
+
{
|
|
2425
|
+
"kind": "method",
|
|
2426
|
+
"name": "ruleMatchId",
|
|
2427
|
+
"privacy": "private",
|
|
2428
|
+
"return": {
|
|
2429
|
+
"type": {
|
|
2430
|
+
"text": "string"
|
|
2431
|
+
}
|
|
2432
|
+
},
|
|
2433
|
+
"parameters": [
|
|
2434
|
+
{
|
|
2435
|
+
"name": "rule",
|
|
2436
|
+
"type": {
|
|
2437
|
+
"text": "NamedRuleRow | undefined"
|
|
2438
|
+
}
|
|
2439
|
+
}
|
|
2440
|
+
]
|
|
2441
|
+
},
|
|
2442
|
+
{
|
|
2443
|
+
"kind": "method",
|
|
2444
|
+
"name": "syncSoundState",
|
|
2445
|
+
"privacy": "private"
|
|
2330
2446
|
}
|
|
2331
|
-
]
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
"name": "NOTIFICATION_DASHBOARD_TABS",
|
|
2336
|
-
"type": {
|
|
2337
|
-
"text": "NotificationDashboardTab[]"
|
|
2447
|
+
],
|
|
2448
|
+
"superclass": {
|
|
2449
|
+
"name": "GenesisElement",
|
|
2450
|
+
"package": "@genesislcap/web-core"
|
|
2338
2451
|
},
|
|
2339
|
-
"
|
|
2452
|
+
"tagName": "foundation-sounds-panel",
|
|
2453
|
+
"customElement": true
|
|
2340
2454
|
}
|
|
2341
2455
|
],
|
|
2342
2456
|
"exports": [
|
|
2343
2457
|
{
|
|
2344
2458
|
"kind": "js",
|
|
2345
|
-
"name": "
|
|
2459
|
+
"name": "FoundationSoundsPanel",
|
|
2346
2460
|
"declaration": {
|
|
2347
|
-
"name": "
|
|
2348
|
-
"module": "src/components/foundation-
|
|
2461
|
+
"name": "FoundationSoundsPanel",
|
|
2462
|
+
"module": "src/components/foundation-sounds/foundation-sounds-panel.ts"
|
|
2349
2463
|
}
|
|
2350
2464
|
},
|
|
2351
2465
|
{
|
|
2352
|
-
"kind": "
|
|
2353
|
-
"name": "
|
|
2466
|
+
"kind": "custom-element-definition",
|
|
2467
|
+
"name": "foundation-sounds-panel",
|
|
2354
2468
|
"declaration": {
|
|
2355
|
-
"name": "
|
|
2356
|
-
"module": "src/components/foundation-
|
|
2469
|
+
"name": "FoundationSoundsPanel",
|
|
2470
|
+
"module": "src/components/foundation-sounds/foundation-sounds-panel.ts"
|
|
2357
2471
|
}
|
|
2358
2472
|
}
|
|
2359
2473
|
]
|
|
2360
2474
|
},
|
|
2361
2475
|
{
|
|
2362
2476
|
"kind": "javascript-module",
|
|
2363
|
-
"path": "src/components/foundation-
|
|
2477
|
+
"path": "src/components/foundation-sounds/foundation-sounds.styles.ts",
|
|
2364
2478
|
"declarations": [
|
|
2365
2479
|
{
|
|
2366
2480
|
"kind": "variable",
|
|
2367
|
-
"name": "
|
|
2368
|
-
"default": "
|
|
2481
|
+
"name": "FoundationSoundsStyles",
|
|
2482
|
+
"default": "css`\n :host {\n display: none;\n }\n`",
|
|
2483
|
+
"description": "Headless layout listener — take no space in the layout chrome."
|
|
2369
2484
|
}
|
|
2370
2485
|
],
|
|
2371
2486
|
"exports": [
|
|
2372
2487
|
{
|
|
2373
2488
|
"kind": "js",
|
|
2374
|
-
"name": "
|
|
2489
|
+
"name": "FoundationSoundsStyles",
|
|
2375
2490
|
"declaration": {
|
|
2376
|
-
"name": "
|
|
2377
|
-
"module": "src/components/foundation-
|
|
2491
|
+
"name": "FoundationSoundsStyles",
|
|
2492
|
+
"module": "src/components/foundation-sounds/foundation-sounds.styles.ts"
|
|
2378
2493
|
}
|
|
2379
2494
|
}
|
|
2380
2495
|
]
|
|
2381
2496
|
},
|
|
2382
2497
|
{
|
|
2383
2498
|
"kind": "javascript-module",
|
|
2384
|
-
"path": "src/components/foundation-
|
|
2499
|
+
"path": "src/components/foundation-sounds/foundation-sounds.ts",
|
|
2385
2500
|
"declarations": [
|
|
2386
2501
|
{
|
|
2387
2502
|
"kind": "class",
|
|
2388
|
-
"description": "",
|
|
2389
|
-
"name": "
|
|
2503
|
+
"description": "Headless listener for inbox alert inserts. Plays configured sounds via the\nshared AlertSoundPlayer. Mount once in the app layout.\n\nConfigure rules in the inbox Sounds tab with FoundationSoundsPanel.",
|
|
2504
|
+
"name": "FoundationSounds",
|
|
2390
2505
|
"members": [
|
|
2391
2506
|
{
|
|
2392
2507
|
"kind": "field",
|
|
2393
|
-
"name": "
|
|
2508
|
+
"name": "connect",
|
|
2394
2509
|
"type": {
|
|
2395
|
-
"text": "
|
|
2510
|
+
"text": "Connect"
|
|
2396
2511
|
}
|
|
2397
2512
|
},
|
|
2398
2513
|
{
|
|
2399
2514
|
"kind": "field",
|
|
2400
|
-
"name": "
|
|
2515
|
+
"name": "inboxService",
|
|
2401
2516
|
"type": {
|
|
2402
|
-
"text": "
|
|
2403
|
-
}
|
|
2404
|
-
"default": "false"
|
|
2517
|
+
"text": "FoundationInboxService"
|
|
2518
|
+
}
|
|
2405
2519
|
},
|
|
2406
2520
|
{
|
|
2407
2521
|
"kind": "field",
|
|
2408
|
-
"name": "
|
|
2522
|
+
"name": "ruleService",
|
|
2409
2523
|
"type": {
|
|
2410
|
-
"text": "
|
|
2411
|
-
}
|
|
2412
|
-
|
|
2413
|
-
}
|
|
2414
|
-
],
|
|
2415
|
-
"superclass": {
|
|
2416
|
-
"name": "GenesisElement",
|
|
2417
|
-
"package": "@genesislcap/web-core"
|
|
2418
|
-
},
|
|
2419
|
-
"tagName": "foundation-notification-dashboard",
|
|
2420
|
-
"customElement": true
|
|
2421
|
-
}
|
|
2422
|
-
],
|
|
2423
|
-
"exports": [
|
|
2424
|
-
{
|
|
2425
|
-
"kind": "js",
|
|
2426
|
-
"name": "FoundationNotificationDashboard",
|
|
2427
|
-
"declaration": {
|
|
2428
|
-
"name": "FoundationNotificationDashboard",
|
|
2429
|
-
"module": "src/components/foundation-notification-dashboard/notification-dashboard.ts"
|
|
2430
|
-
}
|
|
2431
|
-
},
|
|
2432
|
-
{
|
|
2433
|
-
"kind": "custom-element-definition",
|
|
2434
|
-
"name": "foundation-notification-dashboard",
|
|
2435
|
-
"declaration": {
|
|
2436
|
-
"name": "FoundationNotificationDashboard",
|
|
2437
|
-
"module": "src/components/foundation-notification-dashboard/notification-dashboard.ts"
|
|
2438
|
-
}
|
|
2439
|
-
}
|
|
2440
|
-
]
|
|
2441
|
-
},
|
|
2442
|
-
{
|
|
2443
|
-
"kind": "javascript-module",
|
|
2444
|
-
"path": "src/components/foundation-notification-dashboard/notification-dashboard.utils.ts",
|
|
2445
|
-
"declarations": [
|
|
2446
|
-
{
|
|
2447
|
-
"kind": "class",
|
|
2448
|
-
"description": "",
|
|
2449
|
-
"name": "UUIDGenerator",
|
|
2450
|
-
"members": [
|
|
2524
|
+
"text": "RuleService"
|
|
2525
|
+
}
|
|
2526
|
+
},
|
|
2451
2527
|
{
|
|
2452
2528
|
"kind": "field",
|
|
2453
|
-
"name": "
|
|
2529
|
+
"name": "soundEnabled",
|
|
2454
2530
|
"type": {
|
|
2455
|
-
"text": "
|
|
2531
|
+
"text": "boolean"
|
|
2456
2532
|
},
|
|
2457
|
-
"
|
|
2458
|
-
"
|
|
2459
|
-
},
|
|
2460
|
-
{
|
|
2461
|
-
"kind": "field",
|
|
2462
|
-
"name": "createUUID",
|
|
2463
|
-
"static": true
|
|
2464
|
-
}
|
|
2465
|
-
]
|
|
2466
|
-
},
|
|
2467
|
-
{
|
|
2468
|
-
"kind": "function",
|
|
2469
|
-
"name": "isEmpty",
|
|
2470
|
-
"parameters": [
|
|
2471
|
-
{
|
|
2472
|
-
"name": "value"
|
|
2473
|
-
}
|
|
2474
|
-
]
|
|
2475
|
-
},
|
|
2476
|
-
{
|
|
2477
|
-
"kind": "class",
|
|
2478
|
-
"description": "",
|
|
2479
|
-
"name": "DynamicRuleUtils",
|
|
2480
|
-
"members": [
|
|
2481
|
-
{
|
|
2482
|
-
"kind": "field",
|
|
2483
|
-
"name": "createEmptyCondition",
|
|
2484
|
-
"static": true
|
|
2533
|
+
"default": "true",
|
|
2534
|
+
"description": "When false, new audible alerts are tracked but do not play."
|
|
2485
2535
|
},
|
|
2486
2536
|
{
|
|
2487
2537
|
"kind": "field",
|
|
2488
|
-
"name": "
|
|
2489
|
-
"
|
|
2538
|
+
"name": "connectionSub",
|
|
2539
|
+
"type": {
|
|
2540
|
+
"text": "Subscription | undefined"
|
|
2541
|
+
},
|
|
2542
|
+
"privacy": "private"
|
|
2490
2543
|
},
|
|
2491
2544
|
{
|
|
2492
2545
|
"kind": "field",
|
|
2493
|
-
"name": "
|
|
2494
|
-
"
|
|
2546
|
+
"name": "player",
|
|
2547
|
+
"privacy": "private",
|
|
2548
|
+
"readonly": true
|
|
2495
2549
|
},
|
|
2496
2550
|
{
|
|
2497
2551
|
"kind": "field",
|
|
2498
|
-
"name": "
|
|
2499
|
-
"
|
|
2552
|
+
"name": "knownAlertIds",
|
|
2553
|
+
"privacy": "private",
|
|
2554
|
+
"default": "new Set<string>()"
|
|
2500
2555
|
},
|
|
2501
2556
|
{
|
|
2502
2557
|
"kind": "field",
|
|
2503
|
-
"name": "
|
|
2504
|
-
"
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
"
|
|
2508
|
-
"name": "createConditions",
|
|
2509
|
-
"static": true,
|
|
2510
|
-
"return": {
|
|
2511
|
-
"type": {
|
|
2512
|
-
"text": "any"
|
|
2513
|
-
}
|
|
2514
|
-
},
|
|
2515
|
-
"parameters": [
|
|
2516
|
-
{
|
|
2517
|
-
"name": "conditions",
|
|
2518
|
-
"type": {
|
|
2519
|
-
"text": "ConditionNode[]"
|
|
2520
|
-
}
|
|
2521
|
-
},
|
|
2522
|
-
{
|
|
2523
|
-
"name": "parameters",
|
|
2524
|
-
"optional": true
|
|
2525
|
-
}
|
|
2526
|
-
]
|
|
2527
|
-
},
|
|
2528
|
-
{
|
|
2529
|
-
"kind": "method",
|
|
2530
|
-
"name": "hasMultiValueCondition",
|
|
2531
|
-
"static": true,
|
|
2532
|
-
"return": {
|
|
2533
|
-
"type": {
|
|
2534
|
-
"text": "boolean"
|
|
2535
|
-
}
|
|
2536
|
-
},
|
|
2537
|
-
"parameters": [
|
|
2538
|
-
{
|
|
2539
|
-
"name": "conditions",
|
|
2540
|
-
"type": {
|
|
2541
|
-
"text": "ConditionNode[]"
|
|
2542
|
-
}
|
|
2543
|
-
}
|
|
2544
|
-
]
|
|
2545
|
-
},
|
|
2546
|
-
{
|
|
2547
|
-
"kind": "method",
|
|
2548
|
-
"name": "hasOrJoin",
|
|
2549
|
-
"static": true,
|
|
2550
|
-
"return": {
|
|
2551
|
-
"type": {
|
|
2552
|
-
"text": "boolean"
|
|
2553
|
-
}
|
|
2554
|
-
},
|
|
2555
|
-
"parameters": [
|
|
2556
|
-
{
|
|
2557
|
-
"name": "conditions",
|
|
2558
|
-
"type": {
|
|
2559
|
-
"text": "ConditionNode[]"
|
|
2560
|
-
}
|
|
2561
|
-
}
|
|
2562
|
-
]
|
|
2563
|
-
},
|
|
2564
|
-
{
|
|
2565
|
-
"kind": "method",
|
|
2566
|
-
"name": "hasGroup",
|
|
2567
|
-
"static": true,
|
|
2568
|
-
"return": {
|
|
2569
|
-
"type": {
|
|
2570
|
-
"text": "boolean"
|
|
2571
|
-
}
|
|
2572
|
-
},
|
|
2573
|
-
"parameters": [
|
|
2574
|
-
{
|
|
2575
|
-
"name": "conditions",
|
|
2576
|
-
"type": {
|
|
2577
|
-
"text": "ConditionNode[]"
|
|
2578
|
-
}
|
|
2579
|
-
}
|
|
2580
|
-
]
|
|
2581
|
-
},
|
|
2582
|
-
{
|
|
2583
|
-
"kind": "method",
|
|
2584
|
-
"name": "hasUnsupportedOperator",
|
|
2585
|
-
"static": true,
|
|
2586
|
-
"return": {
|
|
2587
|
-
"type": {
|
|
2588
|
-
"text": "boolean"
|
|
2589
|
-
}
|
|
2590
|
-
},
|
|
2591
|
-
"parameters": [
|
|
2592
|
-
{
|
|
2593
|
-
"name": "conditions",
|
|
2594
|
-
"type": {
|
|
2595
|
-
"text": "ConditionNode[]"
|
|
2596
|
-
}
|
|
2597
|
-
}
|
|
2598
|
-
]
|
|
2558
|
+
"name": "serverSoundFetches",
|
|
2559
|
+
"privacy": "private",
|
|
2560
|
+
"readonly": true,
|
|
2561
|
+
"default": "new Map<string, Promise<boolean>>()",
|
|
2562
|
+
"description": "In-flight server sound fetches keyed by DYNAMIC_RULE_ID."
|
|
2599
2563
|
},
|
|
2600
2564
|
{
|
|
2601
2565
|
"kind": "method",
|
|
2602
|
-
"name": "
|
|
2603
|
-
"
|
|
2604
|
-
"return": {
|
|
2605
|
-
"type": {
|
|
2606
|
-
"text": "
|
|
2607
|
-
}
|
|
2608
|
-
},
|
|
2609
|
-
"parameters": [
|
|
2610
|
-
{
|
|
2611
|
-
"name": "conditions",
|
|
2612
|
-
"type": {
|
|
2613
|
-
"text": "ConditionNode[]"
|
|
2614
|
-
}
|
|
2566
|
+
"name": "subscribeToAlerts",
|
|
2567
|
+
"privacy": "private",
|
|
2568
|
+
"return": {
|
|
2569
|
+
"type": {
|
|
2570
|
+
"text": "void"
|
|
2615
2571
|
}
|
|
2616
|
-
|
|
2572
|
+
}
|
|
2573
|
+
},
|
|
2574
|
+
{
|
|
2575
|
+
"kind": "field",
|
|
2576
|
+
"name": "subscriptionHandler",
|
|
2577
|
+
"privacy": "private"
|
|
2617
2578
|
},
|
|
2618
2579
|
{
|
|
2619
2580
|
"kind": "method",
|
|
2620
|
-
"name": "
|
|
2621
|
-
"
|
|
2581
|
+
"name": "playForNewAlerts",
|
|
2582
|
+
"privacy": "private",
|
|
2622
2583
|
"return": {
|
|
2623
2584
|
"type": {
|
|
2624
|
-
"text": "
|
|
2585
|
+
"text": "Promise<void>"
|
|
2625
2586
|
}
|
|
2626
2587
|
},
|
|
2627
2588
|
"parameters": [
|
|
2628
2589
|
{
|
|
2629
|
-
"name": "
|
|
2630
|
-
"type": {
|
|
2631
|
-
"text": "ConditionNode[]"
|
|
2632
|
-
}
|
|
2633
|
-
},
|
|
2634
|
-
{
|
|
2635
|
-
"name": "fields",
|
|
2590
|
+
"name": "rows",
|
|
2636
2591
|
"type": {
|
|
2637
|
-
"text": "
|
|
2592
|
+
"text": "Array<{\n id: string;\n message?: string;\n header?: string;\n dynamicRuleId?: string;\n }>"
|
|
2638
2593
|
}
|
|
2639
2594
|
}
|
|
2640
2595
|
]
|
|
2641
2596
|
},
|
|
2642
|
-
{
|
|
2643
|
-
"kind": "field",
|
|
2644
|
-
"name": "createEmptyGroup",
|
|
2645
|
-
"static": true
|
|
2646
|
-
},
|
|
2647
2597
|
{
|
|
2648
2598
|
"kind": "method",
|
|
2649
|
-
"name": "
|
|
2650
|
-
"
|
|
2599
|
+
"name": "tryPlayServerSound",
|
|
2600
|
+
"privacy": "private",
|
|
2651
2601
|
"return": {
|
|
2652
2602
|
"type": {
|
|
2653
|
-
"text": "
|
|
2603
|
+
"text": "Promise<boolean>"
|
|
2654
2604
|
}
|
|
2655
2605
|
},
|
|
2656
2606
|
"parameters": [
|
|
2657
2607
|
{
|
|
2658
|
-
"name": "
|
|
2608
|
+
"name": "dynamicRuleId",
|
|
2659
2609
|
"type": {
|
|
2660
|
-
"text": "
|
|
2610
|
+
"text": "string"
|
|
2661
2611
|
}
|
|
2662
2612
|
}
|
|
2663
2613
|
]
|
|
2664
2614
|
},
|
|
2665
2615
|
{
|
|
2666
2616
|
"kind": "method",
|
|
2667
|
-
"name": "
|
|
2668
|
-
"
|
|
2617
|
+
"name": "fetchAndCacheServerSound",
|
|
2618
|
+
"privacy": "private",
|
|
2669
2619
|
"return": {
|
|
2670
2620
|
"type": {
|
|
2671
|
-
"text": "
|
|
2621
|
+
"text": "Promise<boolean>"
|
|
2672
2622
|
}
|
|
2673
2623
|
},
|
|
2674
2624
|
"parameters": [
|
|
2675
2625
|
{
|
|
2676
|
-
"name": "
|
|
2626
|
+
"name": "dynamicRuleId",
|
|
2677
2627
|
"type": {
|
|
2678
2628
|
"text": "string"
|
|
2679
2629
|
}
|
|
2680
2630
|
}
|
|
2681
2631
|
]
|
|
2682
2632
|
}
|
|
2683
|
-
]
|
|
2633
|
+
],
|
|
2634
|
+
"attributes": [
|
|
2635
|
+
{
|
|
2636
|
+
"name": "sound-enabled",
|
|
2637
|
+
"type": {
|
|
2638
|
+
"text": "boolean"
|
|
2639
|
+
},
|
|
2640
|
+
"default": "true",
|
|
2641
|
+
"description": "When false, new audible alerts are tracked but do not play.",
|
|
2642
|
+
"fieldName": "soundEnabled"
|
|
2643
|
+
}
|
|
2644
|
+
],
|
|
2645
|
+
"superclass": {
|
|
2646
|
+
"name": "GenesisElement",
|
|
2647
|
+
"package": "@genesislcap/web-core"
|
|
2648
|
+
},
|
|
2649
|
+
"tagName": "foundation-sounds",
|
|
2650
|
+
"customElement": true
|
|
2651
|
+
}
|
|
2652
|
+
],
|
|
2653
|
+
"exports": [
|
|
2654
|
+
{
|
|
2655
|
+
"kind": "js",
|
|
2656
|
+
"name": "FoundationSounds",
|
|
2657
|
+
"declaration": {
|
|
2658
|
+
"name": "FoundationSounds",
|
|
2659
|
+
"module": "src/components/foundation-sounds/foundation-sounds.ts"
|
|
2660
|
+
}
|
|
2684
2661
|
},
|
|
2685
2662
|
{
|
|
2686
|
-
"kind": "
|
|
2687
|
-
"
|
|
2688
|
-
"
|
|
2663
|
+
"kind": "custom-element-definition",
|
|
2664
|
+
"name": "foundation-sounds",
|
|
2665
|
+
"declaration": {
|
|
2666
|
+
"name": "FoundationSounds",
|
|
2667
|
+
"module": "src/components/foundation-sounds/foundation-sounds.ts"
|
|
2668
|
+
}
|
|
2669
|
+
}
|
|
2670
|
+
]
|
|
2671
|
+
},
|
|
2672
|
+
{
|
|
2673
|
+
"kind": "javascript-module",
|
|
2674
|
+
"path": "src/components/foundation-notification-dashboard/alert-sound-attachment.ts",
|
|
2675
|
+
"declarations": [
|
|
2676
|
+
{
|
|
2677
|
+
"kind": "variable",
|
|
2678
|
+
"name": "alertSoundAttachmentTemplate",
|
|
2679
|
+
"default": "html<AlertSoundAttachmentHost>`\n <div class=\"alert-sound\">\n <input\n ${ref('fileInput')}\n class=\"file-input\"\n type=\"file\"\n accept=\"audio/*\"\n @change=${(x, c) => x.onAlertSoundSelected(c.event)}\n />\n <label>Alert sound</label>\n <div class=\"alert-sound-row\">\n <span class=\"alert-sound-name\" title=${(x) => x.alertSoundFileName || ''}>\n ${(x) => x.alertSoundFileName || 'No sound attached'}\n </span>\n <rapid-button appearance=\"lightweight\" @click=${(x) => x.openAlertSoundPicker()}>\n ${(x) => (x.hasAlertSound ? 'Replace' : 'Attach')}\n </rapid-button>\n ${when(\n (x) => x.hasAlertSound,\n html<AlertSoundAttachmentHost>`\n <rapid-button appearance=\"lightweight\" @click=${(x) => x.testAttachedAlertSound()}>\n Test\n </rapid-button>\n <rapid-button appearance=\"lightweight\" @click=${(x) => x.clearAttachedAlertSound()}>\n Clear\n </rapid-button>\n `,\n )}\n </div>\n </div>\n`",
|
|
2680
|
+
"description": "Shared Attach/Replace/Test/Clear UI for rule and template dialogs.",
|
|
2681
|
+
"privacy": "public"
|
|
2682
|
+
},
|
|
2683
|
+
{
|
|
2684
|
+
"kind": "mixin",
|
|
2685
|
+
"description": "Mixin: pick / test / clear / load server sound + apply fields to submit payload.\n\nSubclasses must provide ruleService, isAlertSoundEditMode,\nalertSoundEntityId, and alertSoundCacheSyncMode.",
|
|
2686
|
+
"name": "AlertSoundAttachmentMixin",
|
|
2689
2687
|
"members": [
|
|
2690
2688
|
{
|
|
2691
2689
|
"kind": "field",
|
|
2692
|
-
"name": "
|
|
2693
|
-
"
|
|
2690
|
+
"name": "ruleService",
|
|
2691
|
+
"type": {
|
|
2692
|
+
"text": "RuleService"
|
|
2693
|
+
}
|
|
2694
2694
|
},
|
|
2695
2695
|
{
|
|
2696
|
-
"kind": "
|
|
2697
|
-
"name": "
|
|
2698
|
-
"
|
|
2699
|
-
|
|
2700
|
-
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
]
|
|
2696
|
+
"kind": "field",
|
|
2697
|
+
"name": "isAlertSoundEditMode",
|
|
2698
|
+
"type": {
|
|
2699
|
+
"text": "boolean"
|
|
2700
|
+
},
|
|
2701
|
+
"description": "True when editing an existing entity (clear should set CLEAR_ALERT_SOUND).",
|
|
2702
|
+
"readonly": true
|
|
2704
2703
|
},
|
|
2705
2704
|
{
|
|
2706
|
-
"kind": "
|
|
2707
|
-
"name": "
|
|
2708
|
-
"
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2705
|
+
"kind": "field",
|
|
2706
|
+
"name": "alertSoundEntityId",
|
|
2707
|
+
"type": {
|
|
2708
|
+
"text": "string | null"
|
|
2709
|
+
},
|
|
2710
|
+
"description": "DYNAMIC_RULE_ID of the entity being edited (null on create).\nUsed when alertSoundCacheSyncMode is `'entity'`.",
|
|
2711
|
+
"readonly": true
|
|
2712
|
+
},
|
|
2713
|
+
{
|
|
2714
|
+
"kind": "field",
|
|
2715
|
+
"name": "alertSoundCacheSyncMode",
|
|
2716
|
+
"type": {
|
|
2717
|
+
"text": "'entity' | 'all'"
|
|
2718
|
+
},
|
|
2719
|
+
"description": "`'entity'` — update/clear cache for alertSoundEntityId (rules).\n`'all'` — drop every cached server sound (templates; instance ids unknown).",
|
|
2720
|
+
"readonly": true
|
|
2721
|
+
},
|
|
2722
|
+
{
|
|
2723
|
+
"kind": "field",
|
|
2724
|
+
"name": "alertSoundFileName",
|
|
2725
|
+
"type": {
|
|
2726
|
+
"text": "string"
|
|
2727
|
+
},
|
|
2728
|
+
"default": "''",
|
|
2729
|
+
"description": "Display name of the attached / pending alert sound file."
|
|
2730
|
+
},
|
|
2731
|
+
{
|
|
2732
|
+
"kind": "field",
|
|
2733
|
+
"name": "alertSoundMimeType",
|
|
2734
|
+
"type": {
|
|
2735
|
+
"text": "string"
|
|
2736
|
+
},
|
|
2737
|
+
"default": "''"
|
|
2738
|
+
},
|
|
2739
|
+
{
|
|
2740
|
+
"kind": "field",
|
|
2741
|
+
"name": "hasAlertSound",
|
|
2742
|
+
"type": {
|
|
2743
|
+
"text": "boolean"
|
|
2744
|
+
},
|
|
2745
|
+
"default": "false",
|
|
2746
|
+
"description": "True when edit loaded an existing server sound (or user attached one)."
|
|
2747
|
+
},
|
|
2748
|
+
{
|
|
2749
|
+
"kind": "field",
|
|
2750
|
+
"name": "fileInput",
|
|
2751
|
+
"type": {
|
|
2752
|
+
"text": "HTMLInputElement"
|
|
2753
|
+
}
|
|
2754
|
+
},
|
|
2755
|
+
{
|
|
2756
|
+
"kind": "field",
|
|
2757
|
+
"name": "pendingAlertSoundData",
|
|
2758
|
+
"type": {
|
|
2759
|
+
"text": "string | null"
|
|
2760
|
+
},
|
|
2761
|
+
"default": "null"
|
|
2762
|
+
},
|
|
2763
|
+
{
|
|
2764
|
+
"kind": "field",
|
|
2765
|
+
"name": "alertSoundDirty",
|
|
2766
|
+
"type": {
|
|
2767
|
+
"text": "boolean"
|
|
2768
|
+
},
|
|
2769
|
+
"default": "false",
|
|
2770
|
+
"description": "True when the user picked a new file this session (needs upload)."
|
|
2771
|
+
},
|
|
2772
|
+
{
|
|
2773
|
+
"kind": "field",
|
|
2774
|
+
"name": "clearAlertSound",
|
|
2775
|
+
"type": {
|
|
2776
|
+
"text": "boolean"
|
|
2777
|
+
},
|
|
2778
|
+
"default": "false"
|
|
2779
|
+
},
|
|
2780
|
+
{
|
|
2781
|
+
"kind": "field",
|
|
2782
|
+
"name": "testAudio",
|
|
2783
|
+
"type": {
|
|
2784
|
+
"text": "HTMLAudioElement | null"
|
|
2785
|
+
},
|
|
2786
|
+
"default": "null",
|
|
2787
|
+
"description": "In-progress Test playback; not private — mixin return type is exported."
|
|
2725
2788
|
},
|
|
2726
2789
|
{
|
|
2727
2790
|
"kind": "method",
|
|
2728
|
-
"name": "
|
|
2729
|
-
"static": true,
|
|
2791
|
+
"name": "loadExistingAlertSound",
|
|
2730
2792
|
"parameters": [
|
|
2731
2793
|
{
|
|
2732
|
-
"name": "
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
|
|
2736
|
-
"optional": true
|
|
2794
|
+
"name": "dynamicRuleId",
|
|
2795
|
+
"type": {
|
|
2796
|
+
"text": "string"
|
|
2797
|
+
}
|
|
2737
2798
|
}
|
|
2738
2799
|
]
|
|
2739
2800
|
},
|
|
2740
2801
|
{
|
|
2741
2802
|
"kind": "method",
|
|
2742
|
-
"name": "
|
|
2743
|
-
|
|
2744
|
-
"parameters": [
|
|
2745
|
-
{
|
|
2746
|
-
"name": "parameters"
|
|
2747
|
-
}
|
|
2748
|
-
]
|
|
2749
|
-
}
|
|
2750
|
-
]
|
|
2751
|
-
},
|
|
2752
|
-
{
|
|
2753
|
-
"kind": "class",
|
|
2754
|
-
"description": "",
|
|
2755
|
-
"name": "RuleUtils",
|
|
2756
|
-
"members": [
|
|
2803
|
+
"name": "openAlertSoundPicker"
|
|
2804
|
+
},
|
|
2757
2805
|
{
|
|
2758
2806
|
"kind": "method",
|
|
2759
|
-
"name": "
|
|
2760
|
-
"privacy": "private",
|
|
2761
|
-
"static": true,
|
|
2807
|
+
"name": "onAlertSoundSelected",
|
|
2762
2808
|
"parameters": [
|
|
2763
2809
|
{
|
|
2764
|
-
"name": "
|
|
2810
|
+
"name": "event",
|
|
2765
2811
|
"type": {
|
|
2766
|
-
"text": "
|
|
2812
|
+
"text": "Event"
|
|
2767
2813
|
}
|
|
2768
|
-
},
|
|
2769
|
-
{
|
|
2770
|
-
"name": "condition"
|
|
2771
2814
|
}
|
|
2772
2815
|
]
|
|
2773
2816
|
},
|
|
2774
2817
|
{
|
|
2775
2818
|
"kind": "method",
|
|
2776
|
-
"name": "
|
|
2777
|
-
|
|
2819
|
+
"name": "clearAttachedAlertSound"
|
|
2820
|
+
},
|
|
2821
|
+
{
|
|
2822
|
+
"kind": "method",
|
|
2823
|
+
"name": "testAttachedAlertSound"
|
|
2824
|
+
},
|
|
2825
|
+
{
|
|
2826
|
+
"kind": "method",
|
|
2827
|
+
"name": "stopTestSound"
|
|
2828
|
+
},
|
|
2829
|
+
{
|
|
2830
|
+
"kind": "method",
|
|
2831
|
+
"name": "resetAlertSoundState"
|
|
2832
|
+
},
|
|
2833
|
+
{
|
|
2834
|
+
"kind": "method",
|
|
2835
|
+
"name": "applyAlertSoundToPayload",
|
|
2836
|
+
"return": {
|
|
2837
|
+
"type": {
|
|
2838
|
+
"text": "T"
|
|
2839
|
+
}
|
|
2840
|
+
},
|
|
2778
2841
|
"parameters": [
|
|
2779
2842
|
{
|
|
2780
|
-
"name": "
|
|
2843
|
+
"name": "target",
|
|
2844
|
+
"type": {
|
|
2845
|
+
"text": "T"
|
|
2846
|
+
}
|
|
2781
2847
|
}
|
|
2782
|
-
]
|
|
2848
|
+
],
|
|
2849
|
+
"description": "Merges pending sound / clear flag onto a create/update DETAILS object."
|
|
2850
|
+
},
|
|
2851
|
+
{
|
|
2852
|
+
"kind": "method",
|
|
2853
|
+
"name": "syncAlertSoundCacheAfterSave",
|
|
2854
|
+
"description": "Keep AlertSoundPlayer's in-memory NOTIFY_ALERT_SOUND cache in sync with\nwhat we just saved — otherwise the next alert still plays the old file."
|
|
2783
2855
|
}
|
|
2784
|
-
]
|
|
2785
|
-
},
|
|
2786
|
-
{
|
|
2787
|
-
"kind": "function",
|
|
2788
|
-
"name": "showNotificationError",
|
|
2856
|
+
],
|
|
2789
2857
|
"parameters": [
|
|
2790
2858
|
{
|
|
2791
|
-
"name": "
|
|
2859
|
+
"name": "Base",
|
|
2860
|
+
"type": {
|
|
2861
|
+
"text": "TBase"
|
|
2862
|
+
}
|
|
2792
2863
|
}
|
|
2793
|
-
]
|
|
2864
|
+
],
|
|
2865
|
+
"privacy": "public"
|
|
2794
2866
|
}
|
|
2795
2867
|
],
|
|
2796
2868
|
"exports": [
|
|
2797
2869
|
{
|
|
2798
2870
|
"kind": "js",
|
|
2799
|
-
"name": "
|
|
2800
|
-
"declaration": {
|
|
2801
|
-
"name": "UUIDGenerator",
|
|
2802
|
-
"module": "src/components/foundation-notification-dashboard/notification-dashboard.utils.ts"
|
|
2803
|
-
}
|
|
2804
|
-
},
|
|
2805
|
-
{
|
|
2806
|
-
"kind": "js",
|
|
2807
|
-
"name": "isEmpty",
|
|
2871
|
+
"name": "alertSoundAttachmentTemplate",
|
|
2808
2872
|
"declaration": {
|
|
2809
|
-
"name": "
|
|
2810
|
-
"module": "src/components/foundation-notification-dashboard/
|
|
2873
|
+
"name": "alertSoundAttachmentTemplate",
|
|
2874
|
+
"module": "src/components/foundation-notification-dashboard/alert-sound-attachment.ts"
|
|
2811
2875
|
}
|
|
2812
2876
|
},
|
|
2813
2877
|
{
|
|
2814
2878
|
"kind": "js",
|
|
2815
|
-
"name": "
|
|
2879
|
+
"name": "AlertSoundAttachmentMixin",
|
|
2816
2880
|
"declaration": {
|
|
2817
|
-
"name": "
|
|
2818
|
-
"module": "src/components/foundation-notification-dashboard/
|
|
2881
|
+
"name": "AlertSoundAttachmentMixin",
|
|
2882
|
+
"module": "src/components/foundation-notification-dashboard/alert-sound-attachment.ts"
|
|
2819
2883
|
}
|
|
2820
|
-
}
|
|
2884
|
+
}
|
|
2885
|
+
]
|
|
2886
|
+
},
|
|
2887
|
+
{
|
|
2888
|
+
"kind": "javascript-module",
|
|
2889
|
+
"path": "src/components/foundation-notification-dashboard/index.ts",
|
|
2890
|
+
"declarations": [],
|
|
2891
|
+
"exports": [
|
|
2821
2892
|
{
|
|
2822
2893
|
"kind": "js",
|
|
2823
|
-
"name": "
|
|
2894
|
+
"name": "*",
|
|
2824
2895
|
"declaration": {
|
|
2825
|
-
"name": "
|
|
2826
|
-
"
|
|
2896
|
+
"name": "*",
|
|
2897
|
+
"package": "./notification-dashboard"
|
|
2827
2898
|
}
|
|
2828
|
-
}
|
|
2899
|
+
}
|
|
2900
|
+
]
|
|
2901
|
+
},
|
|
2902
|
+
{
|
|
2903
|
+
"kind": "javascript-module",
|
|
2904
|
+
"path": "src/components/foundation-notification-dashboard/notification-dashboard.styles.ts",
|
|
2905
|
+
"declarations": [
|
|
2829
2906
|
{
|
|
2830
|
-
"kind": "
|
|
2831
|
-
"name": "
|
|
2832
|
-
"
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2907
|
+
"kind": "variable",
|
|
2908
|
+
"name": "FoundationNotificationDashboardStyles",
|
|
2909
|
+
"default": "css`\n .notification-dashboard,\n rapid-tabs,\n rapid-tab-panel {\n height: 100%;\n }\n\n .no-permissions {\n font-family: var(--body-font);\n color: var(--neutral-foreground-rest);\n height: 100%;\n display: flex;\n align-items: center;\n justify-content: center;\n }\n`",
|
|
2910
|
+
"privacy": "public"
|
|
2911
|
+
}
|
|
2912
|
+
],
|
|
2913
|
+
"exports": [
|
|
2837
2914
|
{
|
|
2838
2915
|
"kind": "js",
|
|
2839
|
-
"name": "
|
|
2916
|
+
"name": "FoundationNotificationDashboardStyles",
|
|
2840
2917
|
"declaration": {
|
|
2841
|
-
"name": "
|
|
2842
|
-
"module": "src/components/foundation-notification-dashboard/notification-dashboard.
|
|
2918
|
+
"name": "FoundationNotificationDashboardStyles",
|
|
2919
|
+
"module": "src/components/foundation-notification-dashboard/notification-dashboard.styles.ts"
|
|
2843
2920
|
}
|
|
2844
2921
|
}
|
|
2845
2922
|
]
|
|
2846
2923
|
},
|
|
2847
2924
|
{
|
|
2848
2925
|
"kind": "javascript-module",
|
|
2849
|
-
"path": "src/components/foundation-
|
|
2926
|
+
"path": "src/components/foundation-notification-dashboard/notification-dashboard.tabs.ts",
|
|
2850
2927
|
"declarations": [
|
|
2928
|
+
{
|
|
2929
|
+
"kind": "class",
|
|
2930
|
+
"description": "",
|
|
2931
|
+
"name": "NotificationDashboardTab",
|
|
2932
|
+
"members": [
|
|
2933
|
+
{
|
|
2934
|
+
"kind": "field",
|
|
2935
|
+
"name": "id",
|
|
2936
|
+
"type": {
|
|
2937
|
+
"text": "string"
|
|
2938
|
+
}
|
|
2939
|
+
},
|
|
2940
|
+
{
|
|
2941
|
+
"kind": "field",
|
|
2942
|
+
"name": "name",
|
|
2943
|
+
"type": {
|
|
2944
|
+
"text": "string"
|
|
2945
|
+
}
|
|
2946
|
+
},
|
|
2947
|
+
{
|
|
2948
|
+
"kind": "field",
|
|
2949
|
+
"name": "component",
|
|
2950
|
+
"type": {
|
|
2951
|
+
"text": "string"
|
|
2952
|
+
}
|
|
2953
|
+
},
|
|
2954
|
+
{
|
|
2955
|
+
"kind": "field",
|
|
2956
|
+
"name": "right",
|
|
2957
|
+
"type": {
|
|
2958
|
+
"text": "string"
|
|
2959
|
+
}
|
|
2960
|
+
}
|
|
2961
|
+
]
|
|
2962
|
+
},
|
|
2851
2963
|
{
|
|
2852
2964
|
"kind": "variable",
|
|
2853
|
-
"name": "
|
|
2854
|
-
"
|
|
2965
|
+
"name": "NOTIFICATION_DASHBOARD_TABS",
|
|
2966
|
+
"type": {
|
|
2967
|
+
"text": "NotificationDashboardTab[]"
|
|
2968
|
+
},
|
|
2969
|
+
"default": "[\n {\n id: 'rules',\n name: 'Rules',\n component: 'rule-management',\n right: 'NotificationRuleView',\n },\n {\n id: 'templates',\n name: 'Templates',\n component: 'template-management',\n right: 'NotificationRuleTemplateView',\n },\n {\n id: 'routes',\n name: 'Routes',\n component: 'route-management',\n right: 'NotificationRouteView',\n },\n /* TODO: Not needed at the moment\n {\n id: 'notify-audit',\n name: 'Notify Audit',\n component: 'notify-audit-management',\n right: 'NotificationAuditView',\n },\n */\n]"
|
|
2855
2970
|
}
|
|
2856
2971
|
],
|
|
2857
2972
|
"exports": [
|
|
2858
2973
|
{
|
|
2859
2974
|
"kind": "js",
|
|
2860
|
-
"name": "
|
|
2975
|
+
"name": "NotificationDashboardTab",
|
|
2861
2976
|
"declaration": {
|
|
2862
|
-
"name": "
|
|
2863
|
-
"module": "src/components/foundation-
|
|
2977
|
+
"name": "NotificationDashboardTab",
|
|
2978
|
+
"module": "src/components/foundation-notification-dashboard/notification-dashboard.tabs.ts"
|
|
2979
|
+
}
|
|
2980
|
+
},
|
|
2981
|
+
{
|
|
2982
|
+
"kind": "js",
|
|
2983
|
+
"name": "NOTIFICATION_DASHBOARD_TABS",
|
|
2984
|
+
"declaration": {
|
|
2985
|
+
"name": "NOTIFICATION_DASHBOARD_TABS",
|
|
2986
|
+
"module": "src/components/foundation-notification-dashboard/notification-dashboard.tabs.ts"
|
|
2864
2987
|
}
|
|
2865
2988
|
}
|
|
2866
2989
|
]
|
|
2867
2990
|
},
|
|
2868
2991
|
{
|
|
2869
2992
|
"kind": "javascript-module",
|
|
2870
|
-
"path": "src/components/foundation-
|
|
2993
|
+
"path": "src/components/foundation-notification-dashboard/notification-dashboard.template.ts",
|
|
2871
2994
|
"declarations": [
|
|
2872
2995
|
{
|
|
2873
2996
|
"kind": "variable",
|
|
2874
|
-
"name": "
|
|
2875
|
-
"default": "html<
|
|
2997
|
+
"name": "FoundationNotificationDashboardTemplate",
|
|
2998
|
+
"default": "html<FoundationNotificationDashboard>`\n <div class=\"notification-dashboard\">\n ${whenElse(\n (x) => x.hasPermissions,\n html`\n <rapid-tabs class=\"tabs\">\n <!-- Tabs -->\n ${repeat(\n (_) => NOTIFICATION_DASHBOARD_TABS,\n html<NotificationDashboardTab>`\n ${when(\n (x, c) => (c.parent.auth as Auth).currentUser.hasPermission(x.right),\n html<NotificationDashboardTab>`\n <rapid-tab slot=\"${(x) => x.id}-tab\">${(x) => x.name}</rapid-tab>\n `,\n )}\n `,\n )}\n\n <!-- Panels -->\n ${repeat(\n (_) => NOTIFICATION_DASHBOARD_TABS,\n html<NotificationDashboardTab>`\n ${when(\n (x, c) => (c.parent.auth as Auth).currentUser.hasPermission(x.right),\n html`\n ${\n /* HTML Render */\n (x) => html<NotificationDashboardTab>`\n <rapid-tab-panel slot=\"${x.id}-tab\"\n id=\"${x.id}-tab-panel\">\n <${x.component}></${x.component}>\n </rapid-tab-panel>\n `\n }\n `,\n )}\n `,\n )}\n </rapid-tabs>\n `,\n html`\n <div class=\"no-permissions\">\n <label>User has no permissions to view Notification Screens</label>\n </div>\n `,\n )}\n </div>\n`"
|
|
2876
2999
|
}
|
|
2877
3000
|
],
|
|
2878
3001
|
"exports": [
|
|
2879
3002
|
{
|
|
2880
3003
|
"kind": "js",
|
|
2881
|
-
"name": "
|
|
3004
|
+
"name": "FoundationNotificationDashboardTemplate",
|
|
2882
3005
|
"declaration": {
|
|
2883
|
-
"name": "
|
|
2884
|
-
"module": "src/components/foundation-
|
|
3006
|
+
"name": "FoundationNotificationDashboardTemplate",
|
|
3007
|
+
"module": "src/components/foundation-notification-dashboard/notification-dashboard.template.ts"
|
|
2885
3008
|
}
|
|
2886
3009
|
}
|
|
2887
3010
|
]
|
|
2888
3011
|
},
|
|
2889
3012
|
{
|
|
2890
3013
|
"kind": "javascript-module",
|
|
2891
|
-
"path": "src/components/foundation-
|
|
3014
|
+
"path": "src/components/foundation-notification-dashboard/notification-dashboard.ts",
|
|
2892
3015
|
"declarations": [
|
|
2893
3016
|
{
|
|
2894
3017
|
"kind": "class",
|
|
2895
|
-
"description": "
|
|
2896
|
-
"name": "
|
|
3018
|
+
"description": "",
|
|
3019
|
+
"name": "FoundationNotificationDashboard",
|
|
2897
3020
|
"members": [
|
|
2898
3021
|
{
|
|
2899
3022
|
"kind": "field",
|
|
2900
|
-
"name": "
|
|
3023
|
+
"name": "auth",
|
|
2901
3024
|
"type": {
|
|
2902
|
-
"text": "
|
|
3025
|
+
"text": "Auth"
|
|
2903
3026
|
}
|
|
2904
3027
|
},
|
|
2905
3028
|
{
|
|
2906
3029
|
"kind": "field",
|
|
2907
|
-
"name": "
|
|
3030
|
+
"name": "ready",
|
|
2908
3031
|
"type": {
|
|
2909
|
-
"text": "
|
|
3032
|
+
"text": "boolean"
|
|
2910
3033
|
},
|
|
2911
|
-
"default": "
|
|
2912
|
-
"description": "Global playback volume 0–100. @internal"
|
|
3034
|
+
"default": "false"
|
|
2913
3035
|
},
|
|
2914
3036
|
{
|
|
2915
3037
|
"kind": "field",
|
|
2916
|
-
"name": "
|
|
3038
|
+
"name": "hasPermissions",
|
|
3039
|
+
"type": {
|
|
3040
|
+
"text": "boolean"
|
|
3041
|
+
},
|
|
3042
|
+
"default": "true"
|
|
3043
|
+
}
|
|
3044
|
+
],
|
|
3045
|
+
"superclass": {
|
|
3046
|
+
"name": "GenesisElement",
|
|
3047
|
+
"package": "@genesislcap/web-core"
|
|
3048
|
+
},
|
|
3049
|
+
"tagName": "foundation-notification-dashboard",
|
|
3050
|
+
"customElement": true
|
|
3051
|
+
}
|
|
3052
|
+
],
|
|
3053
|
+
"exports": [
|
|
3054
|
+
{
|
|
3055
|
+
"kind": "js",
|
|
3056
|
+
"name": "FoundationNotificationDashboard",
|
|
3057
|
+
"declaration": {
|
|
3058
|
+
"name": "FoundationNotificationDashboard",
|
|
3059
|
+
"module": "src/components/foundation-notification-dashboard/notification-dashboard.ts"
|
|
3060
|
+
}
|
|
3061
|
+
},
|
|
3062
|
+
{
|
|
3063
|
+
"kind": "custom-element-definition",
|
|
3064
|
+
"name": "foundation-notification-dashboard",
|
|
3065
|
+
"declaration": {
|
|
3066
|
+
"name": "FoundationNotificationDashboard",
|
|
3067
|
+
"module": "src/components/foundation-notification-dashboard/notification-dashboard.ts"
|
|
3068
|
+
}
|
|
3069
|
+
}
|
|
3070
|
+
]
|
|
3071
|
+
},
|
|
3072
|
+
{
|
|
3073
|
+
"kind": "javascript-module",
|
|
3074
|
+
"path": "src/components/foundation-notification-dashboard/notification-dashboard.utils.ts",
|
|
3075
|
+
"declarations": [
|
|
3076
|
+
{
|
|
3077
|
+
"kind": "class",
|
|
3078
|
+
"description": "",
|
|
3079
|
+
"name": "UUIDGenerator",
|
|
3080
|
+
"members": [
|
|
3081
|
+
{
|
|
3082
|
+
"kind": "field",
|
|
3083
|
+
"name": "uuid",
|
|
2917
3084
|
"type": {
|
|
2918
|
-
"text": "
|
|
3085
|
+
"text": "UUID"
|
|
2919
3086
|
},
|
|
2920
|
-
"
|
|
2921
|
-
"
|
|
3087
|
+
"privacy": "private",
|
|
3088
|
+
"static": true
|
|
2922
3089
|
},
|
|
2923
3090
|
{
|
|
2924
3091
|
"kind": "field",
|
|
2925
|
-
"name": "
|
|
2926
|
-
"
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
|
|
3092
|
+
"name": "createUUID",
|
|
3093
|
+
"static": true
|
|
3094
|
+
}
|
|
3095
|
+
]
|
|
3096
|
+
},
|
|
3097
|
+
{
|
|
3098
|
+
"kind": "function",
|
|
3099
|
+
"name": "isEmpty",
|
|
3100
|
+
"parameters": [
|
|
2930
3101
|
{
|
|
2931
|
-
"
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
3102
|
+
"name": "value"
|
|
3103
|
+
}
|
|
3104
|
+
]
|
|
3105
|
+
},
|
|
3106
|
+
{
|
|
3107
|
+
"kind": "class",
|
|
3108
|
+
"description": "",
|
|
3109
|
+
"name": "DynamicRuleUtils",
|
|
3110
|
+
"members": [
|
|
2939
3111
|
{
|
|
2940
3112
|
"kind": "field",
|
|
2941
|
-
"name": "
|
|
2942
|
-
"
|
|
2943
|
-
"readonly": true
|
|
3113
|
+
"name": "createEmptyCondition",
|
|
3114
|
+
"static": true
|
|
2944
3115
|
},
|
|
2945
3116
|
{
|
|
2946
3117
|
"kind": "field",
|
|
2947
|
-
"name": "
|
|
2948
|
-
"
|
|
2949
|
-
"text": "(() => void) | undefined"
|
|
2950
|
-
},
|
|
2951
|
-
"privacy": "private"
|
|
3118
|
+
"name": "createAssignment",
|
|
3119
|
+
"static": true
|
|
2952
3120
|
},
|
|
2953
3121
|
{
|
|
2954
3122
|
"kind": "field",
|
|
2955
|
-
"name": "
|
|
2956
|
-
"
|
|
2957
|
-
"text": "boolean"
|
|
2958
|
-
},
|
|
2959
|
-
"privacy": "private",
|
|
2960
|
-
"default": "false",
|
|
2961
|
-
"description": "Suppresses select change events while options are rebuilt."
|
|
3123
|
+
"name": "createTextAssignment",
|
|
3124
|
+
"static": true
|
|
2962
3125
|
},
|
|
2963
3126
|
{
|
|
2964
|
-
"kind": "
|
|
2965
|
-
"name": "
|
|
2966
|
-
"
|
|
2967
|
-
"type": {
|
|
2968
|
-
"text": "boolean"
|
|
2969
|
-
}
|
|
2970
|
-
},
|
|
2971
|
-
"parameters": [
|
|
2972
|
-
{
|
|
2973
|
-
"name": "index",
|
|
2974
|
-
"type": {
|
|
2975
|
-
"text": "number"
|
|
2976
|
-
}
|
|
2977
|
-
},
|
|
2978
|
-
{
|
|
2979
|
-
"name": "event",
|
|
2980
|
-
"type": {
|
|
2981
|
-
"text": "Event"
|
|
2982
|
-
}
|
|
2983
|
-
}
|
|
2984
|
-
]
|
|
3127
|
+
"kind": "field",
|
|
3128
|
+
"name": "getAssignmentValue",
|
|
3129
|
+
"static": true
|
|
2985
3130
|
},
|
|
2986
3131
|
{
|
|
2987
|
-
"kind": "
|
|
2988
|
-
"name": "
|
|
2989
|
-
"
|
|
2990
|
-
"type": {
|
|
2991
|
-
"text": "boolean"
|
|
2992
|
-
}
|
|
2993
|
-
},
|
|
2994
|
-
"parameters": [
|
|
2995
|
-
{
|
|
2996
|
-
"name": "index",
|
|
2997
|
-
"type": {
|
|
2998
|
-
"text": "number"
|
|
2999
|
-
}
|
|
3000
|
-
},
|
|
3001
|
-
{
|
|
3002
|
-
"name": "event",
|
|
3003
|
-
"type": {
|
|
3004
|
-
"text": "Event"
|
|
3005
|
-
}
|
|
3006
|
-
}
|
|
3007
|
-
]
|
|
3132
|
+
"kind": "field",
|
|
3133
|
+
"name": "getAssignmentText",
|
|
3134
|
+
"static": true
|
|
3008
3135
|
},
|
|
3009
3136
|
{
|
|
3010
3137
|
"kind": "method",
|
|
3011
|
-
"name": "
|
|
3138
|
+
"name": "createConditions",
|
|
3139
|
+
"static": true,
|
|
3012
3140
|
"return": {
|
|
3013
3141
|
"type": {
|
|
3014
|
-
"text": "
|
|
3142
|
+
"text": "any"
|
|
3015
3143
|
}
|
|
3016
3144
|
},
|
|
3017
3145
|
"parameters": [
|
|
3018
3146
|
{
|
|
3019
|
-
"name": "
|
|
3147
|
+
"name": "conditions",
|
|
3020
3148
|
"type": {
|
|
3021
|
-
"text": "
|
|
3149
|
+
"text": "ConditionNode[]"
|
|
3022
3150
|
}
|
|
3023
3151
|
},
|
|
3024
3152
|
{
|
|
3025
|
-
"name": "
|
|
3026
|
-
"
|
|
3027
|
-
"text": "Event"
|
|
3028
|
-
}
|
|
3029
|
-
}
|
|
3030
|
-
]
|
|
3031
|
-
},
|
|
3032
|
-
{
|
|
3033
|
-
"kind": "method",
|
|
3034
|
-
"name": "openFilePicker",
|
|
3035
|
-
"return": {
|
|
3036
|
-
"type": {
|
|
3037
|
-
"text": "boolean"
|
|
3038
|
-
}
|
|
3039
|
-
},
|
|
3040
|
-
"parameters": [
|
|
3041
|
-
{
|
|
3042
|
-
"name": "index",
|
|
3043
|
-
"type": {
|
|
3044
|
-
"text": "number"
|
|
3045
|
-
}
|
|
3046
|
-
}
|
|
3047
|
-
]
|
|
3048
|
-
},
|
|
3049
|
-
{
|
|
3050
|
-
"kind": "method",
|
|
3051
|
-
"name": "onFileSelected",
|
|
3052
|
-
"return": {
|
|
3053
|
-
"type": {
|
|
3054
|
-
"text": "boolean"
|
|
3055
|
-
}
|
|
3056
|
-
},
|
|
3057
|
-
"parameters": [
|
|
3058
|
-
{
|
|
3059
|
-
"name": "event",
|
|
3060
|
-
"type": {
|
|
3061
|
-
"text": "Event"
|
|
3062
|
-
}
|
|
3153
|
+
"name": "parameters",
|
|
3154
|
+
"optional": true
|
|
3063
3155
|
}
|
|
3064
3156
|
]
|
|
3065
3157
|
},
|
|
3066
3158
|
{
|
|
3067
3159
|
"kind": "method",
|
|
3068
|
-
"name": "
|
|
3160
|
+
"name": "hasMultiValueCondition",
|
|
3161
|
+
"static": true,
|
|
3069
3162
|
"return": {
|
|
3070
3163
|
"type": {
|
|
3071
3164
|
"text": "boolean"
|
|
@@ -3073,16 +3166,17 @@
|
|
|
3073
3166
|
},
|
|
3074
3167
|
"parameters": [
|
|
3075
3168
|
{
|
|
3076
|
-
"name": "
|
|
3169
|
+
"name": "conditions",
|
|
3077
3170
|
"type": {
|
|
3078
|
-
"text": "
|
|
3171
|
+
"text": "ConditionNode[]"
|
|
3079
3172
|
}
|
|
3080
3173
|
}
|
|
3081
3174
|
]
|
|
3082
3175
|
},
|
|
3083
3176
|
{
|
|
3084
3177
|
"kind": "method",
|
|
3085
|
-
"name": "
|
|
3178
|
+
"name": "hasOrJoin",
|
|
3179
|
+
"static": true,
|
|
3086
3180
|
"return": {
|
|
3087
3181
|
"type": {
|
|
3088
3182
|
"text": "boolean"
|
|
@@ -3090,16 +3184,17 @@
|
|
|
3090
3184
|
},
|
|
3091
3185
|
"parameters": [
|
|
3092
3186
|
{
|
|
3093
|
-
"name": "
|
|
3187
|
+
"name": "conditions",
|
|
3094
3188
|
"type": {
|
|
3095
|
-
"text": "
|
|
3189
|
+
"text": "ConditionNode[]"
|
|
3096
3190
|
}
|
|
3097
3191
|
}
|
|
3098
3192
|
]
|
|
3099
3193
|
},
|
|
3100
3194
|
{
|
|
3101
3195
|
"kind": "method",
|
|
3102
|
-
"name": "
|
|
3196
|
+
"name": "hasGroup",
|
|
3197
|
+
"static": true,
|
|
3103
3198
|
"return": {
|
|
3104
3199
|
"type": {
|
|
3105
3200
|
"text": "boolean"
|
|
@@ -3107,16 +3202,17 @@
|
|
|
3107
3202
|
},
|
|
3108
3203
|
"parameters": [
|
|
3109
3204
|
{
|
|
3110
|
-
"name": "
|
|
3205
|
+
"name": "conditions",
|
|
3111
3206
|
"type": {
|
|
3112
|
-
"text": "
|
|
3207
|
+
"text": "ConditionNode[]"
|
|
3113
3208
|
}
|
|
3114
3209
|
}
|
|
3115
3210
|
]
|
|
3116
3211
|
},
|
|
3117
3212
|
{
|
|
3118
3213
|
"kind": "method",
|
|
3119
|
-
"name": "
|
|
3214
|
+
"name": "hasUnsupportedOperator",
|
|
3215
|
+
"static": true,
|
|
3120
3216
|
"return": {
|
|
3121
3217
|
"type": {
|
|
3122
3218
|
"text": "boolean"
|
|
@@ -3124,112 +3220,64 @@
|
|
|
3124
3220
|
},
|
|
3125
3221
|
"parameters": [
|
|
3126
3222
|
{
|
|
3127
|
-
"name": "
|
|
3223
|
+
"name": "conditions",
|
|
3128
3224
|
"type": {
|
|
3129
|
-
"text": "
|
|
3225
|
+
"text": "ConditionNode[]"
|
|
3130
3226
|
}
|
|
3131
3227
|
}
|
|
3132
3228
|
]
|
|
3133
3229
|
},
|
|
3134
3230
|
{
|
|
3135
3231
|
"kind": "method",
|
|
3136
|
-
"name": "
|
|
3137
|
-
"
|
|
3138
|
-
"type": {
|
|
3139
|
-
"text": "boolean"
|
|
3140
|
-
}
|
|
3141
|
-
}
|
|
3142
|
-
},
|
|
3143
|
-
{
|
|
3144
|
-
"kind": "method",
|
|
3145
|
-
"name": "addRule",
|
|
3146
|
-
"return": {
|
|
3147
|
-
"type": {
|
|
3148
|
-
"text": "boolean"
|
|
3149
|
-
}
|
|
3150
|
-
}
|
|
3151
|
-
},
|
|
3152
|
-
{
|
|
3153
|
-
"kind": "method",
|
|
3154
|
-
"name": "removeRule",
|
|
3232
|
+
"name": "flattenConditions",
|
|
3233
|
+
"static": true,
|
|
3155
3234
|
"return": {
|
|
3156
3235
|
"type": {
|
|
3157
|
-
"text": "
|
|
3236
|
+
"text": "ConditionBuilderEntity[]"
|
|
3158
3237
|
}
|
|
3159
3238
|
},
|
|
3160
3239
|
"parameters": [
|
|
3161
3240
|
{
|
|
3162
|
-
"name": "
|
|
3241
|
+
"name": "conditions",
|
|
3163
3242
|
"type": {
|
|
3164
|
-
"text": "
|
|
3243
|
+
"text": "ConditionNode[]"
|
|
3165
3244
|
}
|
|
3166
3245
|
}
|
|
3167
|
-
]
|
|
3168
|
-
},
|
|
3169
|
-
{
|
|
3170
|
-
"kind": "method",
|
|
3171
|
-
"name": "reloadRules",
|
|
3172
|
-
"return": {
|
|
3173
|
-
"type": {
|
|
3174
|
-
"text": "Promise<void>"
|
|
3175
|
-
}
|
|
3176
|
-
},
|
|
3177
|
-
"description": "Reloads the notification-rule picker (e.g. when the Sounds tab is opened)."
|
|
3178
|
-
},
|
|
3179
|
-
{
|
|
3180
|
-
"kind": "method",
|
|
3181
|
-
"name": "loadRules",
|
|
3182
|
-
"privacy": "private",
|
|
3183
|
-
"return": {
|
|
3184
|
-
"type": {
|
|
3185
|
-
"text": "Promise<void>"
|
|
3186
|
-
}
|
|
3187
|
-
}
|
|
3188
|
-
},
|
|
3189
|
-
{
|
|
3190
|
-
"kind": "method",
|
|
3191
|
-
"name": "settleRuleOptions",
|
|
3192
|
-
"privacy": "private",
|
|
3193
|
-
"return": {
|
|
3194
|
-
"type": {
|
|
3195
|
-
"text": "Promise<void>"
|
|
3196
|
-
}
|
|
3197
|
-
},
|
|
3198
|
-
"description": "Suppresses select `change` events only while options-datasource rebuilds\nthe DOM — not for the `getRules()` round trip itself, so a user picking a\nrule while a request is in flight isn't silently dropped."
|
|
3199
|
-
},
|
|
3200
|
-
{
|
|
3201
|
-
"kind": "method",
|
|
3202
|
-
"name": "applyRuleSelectValues",
|
|
3203
|
-
"privacy": "private",
|
|
3204
|
-
"return": {
|
|
3205
|
-
"type": {
|
|
3206
|
-
"text": "void"
|
|
3207
|
-
}
|
|
3208
|
-
},
|
|
3209
|
-
"description": "Re-applies persisted template ids onto `.rule-select` hosts after\noptions-datasource has rebuilt its options. We deliberately do *not* bind\n`:initialSelectedValue` to templateId: that path compares the option label\nagainst Select.value (the option id), always mismatches, clearData()'s the\nselect, and leaves the next pick stuck on \"Select a rule...\"."
|
|
3246
|
+
]
|
|
3210
3247
|
},
|
|
3211
3248
|
{
|
|
3212
3249
|
"kind": "method",
|
|
3213
|
-
"name": "
|
|
3214
|
-
"
|
|
3250
|
+
"name": "resolveLeftValues",
|
|
3251
|
+
"static": true,
|
|
3215
3252
|
"return": {
|
|
3216
3253
|
"type": {
|
|
3217
|
-
"text": "
|
|
3254
|
+
"text": "ConditionNode[]"
|
|
3218
3255
|
}
|
|
3219
3256
|
},
|
|
3220
3257
|
"parameters": [
|
|
3221
3258
|
{
|
|
3222
|
-
"name": "
|
|
3259
|
+
"name": "conditions",
|
|
3223
3260
|
"type": {
|
|
3224
|
-
"text": "
|
|
3261
|
+
"text": "ConditionNode[]"
|
|
3262
|
+
}
|
|
3263
|
+
},
|
|
3264
|
+
{
|
|
3265
|
+
"name": "fields",
|
|
3266
|
+
"type": {
|
|
3267
|
+
"text": "any[]"
|
|
3225
3268
|
}
|
|
3226
3269
|
}
|
|
3227
3270
|
]
|
|
3228
3271
|
},
|
|
3272
|
+
{
|
|
3273
|
+
"kind": "field",
|
|
3274
|
+
"name": "createEmptyGroup",
|
|
3275
|
+
"static": true
|
|
3276
|
+
},
|
|
3229
3277
|
{
|
|
3230
3278
|
"kind": "method",
|
|
3231
|
-
"name": "
|
|
3232
|
-
"
|
|
3279
|
+
"name": "buildRawExpression",
|
|
3280
|
+
"static": true,
|
|
3233
3281
|
"return": {
|
|
3234
3282
|
"type": {
|
|
3235
3283
|
"text": "string"
|
|
@@ -3237,239 +3285,191 @@
|
|
|
3237
3285
|
},
|
|
3238
3286
|
"parameters": [
|
|
3239
3287
|
{
|
|
3240
|
-
"name": "
|
|
3288
|
+
"name": "conditions",
|
|
3241
3289
|
"type": {
|
|
3242
|
-
"text": "
|
|
3290
|
+
"text": "ConditionNode[]"
|
|
3243
3291
|
}
|
|
3244
3292
|
}
|
|
3245
3293
|
]
|
|
3246
3294
|
},
|
|
3247
3295
|
{
|
|
3248
3296
|
"kind": "method",
|
|
3249
|
-
"name": "
|
|
3250
|
-
"
|
|
3297
|
+
"name": "parseRawExpression",
|
|
3298
|
+
"static": true,
|
|
3299
|
+
"return": {
|
|
3300
|
+
"type": {
|
|
3301
|
+
"text": "ConditionNode[] | null"
|
|
3302
|
+
}
|
|
3303
|
+
},
|
|
3304
|
+
"parameters": [
|
|
3305
|
+
{
|
|
3306
|
+
"name": "rawExpression",
|
|
3307
|
+
"type": {
|
|
3308
|
+
"text": "string"
|
|
3309
|
+
}
|
|
3310
|
+
}
|
|
3311
|
+
]
|
|
3251
3312
|
}
|
|
3252
|
-
]
|
|
3253
|
-
"superclass": {
|
|
3254
|
-
"name": "GenesisElement",
|
|
3255
|
-
"package": "@genesislcap/web-core"
|
|
3256
|
-
},
|
|
3257
|
-
"tagName": "foundation-sounds-panel",
|
|
3258
|
-
"customElement": true
|
|
3259
|
-
}
|
|
3260
|
-
],
|
|
3261
|
-
"exports": [
|
|
3262
|
-
{
|
|
3263
|
-
"kind": "js",
|
|
3264
|
-
"name": "FoundationSoundsPanel",
|
|
3265
|
-
"declaration": {
|
|
3266
|
-
"name": "FoundationSoundsPanel",
|
|
3267
|
-
"module": "src/components/foundation-sounds/foundation-sounds-panel.ts"
|
|
3268
|
-
}
|
|
3313
|
+
]
|
|
3269
3314
|
},
|
|
3270
|
-
{
|
|
3271
|
-
"kind": "custom-element-definition",
|
|
3272
|
-
"name": "foundation-sounds-panel",
|
|
3273
|
-
"declaration": {
|
|
3274
|
-
"name": "FoundationSoundsPanel",
|
|
3275
|
-
"module": "src/components/foundation-sounds/foundation-sounds-panel.ts"
|
|
3276
|
-
}
|
|
3277
|
-
}
|
|
3278
|
-
]
|
|
3279
|
-
},
|
|
3280
|
-
{
|
|
3281
|
-
"kind": "javascript-module",
|
|
3282
|
-
"path": "src/components/foundation-sounds/foundation-sounds.styles.ts",
|
|
3283
|
-
"declarations": [
|
|
3284
|
-
{
|
|
3285
|
-
"kind": "variable",
|
|
3286
|
-
"name": "FoundationSoundsStyles",
|
|
3287
|
-
"default": "css`\n :host {\n display: none;\n }\n`",
|
|
3288
|
-
"description": "Headless layout listener — take no space in the layout chrome."
|
|
3289
|
-
}
|
|
3290
|
-
],
|
|
3291
|
-
"exports": [
|
|
3292
|
-
{
|
|
3293
|
-
"kind": "js",
|
|
3294
|
-
"name": "FoundationSoundsStyles",
|
|
3295
|
-
"declaration": {
|
|
3296
|
-
"name": "FoundationSoundsStyles",
|
|
3297
|
-
"module": "src/components/foundation-sounds/foundation-sounds.styles.ts"
|
|
3298
|
-
}
|
|
3299
|
-
}
|
|
3300
|
-
]
|
|
3301
|
-
},
|
|
3302
|
-
{
|
|
3303
|
-
"kind": "javascript-module",
|
|
3304
|
-
"path": "src/components/foundation-sounds/foundation-sounds.ts",
|
|
3305
|
-
"declarations": [
|
|
3306
3315
|
{
|
|
3307
3316
|
"kind": "class",
|
|
3308
|
-
"description": "
|
|
3309
|
-
"name": "
|
|
3317
|
+
"description": "",
|
|
3318
|
+
"name": "TemplateUtils",
|
|
3310
3319
|
"members": [
|
|
3311
3320
|
{
|
|
3312
3321
|
"kind": "field",
|
|
3313
|
-
"name": "
|
|
3314
|
-
"
|
|
3315
|
-
"text": "Connect"
|
|
3316
|
-
}
|
|
3317
|
-
},
|
|
3318
|
-
{
|
|
3319
|
-
"kind": "field",
|
|
3320
|
-
"name": "inboxService",
|
|
3321
|
-
"type": {
|
|
3322
|
-
"text": "FoundationInboxService"
|
|
3323
|
-
}
|
|
3324
|
-
},
|
|
3325
|
-
{
|
|
3326
|
-
"kind": "field",
|
|
3327
|
-
"name": "ruleService",
|
|
3328
|
-
"type": {
|
|
3329
|
-
"text": "RuleService"
|
|
3330
|
-
}
|
|
3331
|
-
},
|
|
3332
|
-
{
|
|
3333
|
-
"kind": "field",
|
|
3334
|
-
"name": "soundEnabled",
|
|
3335
|
-
"type": {
|
|
3336
|
-
"text": "boolean"
|
|
3337
|
-
},
|
|
3338
|
-
"default": "true",
|
|
3339
|
-
"description": "When false, new audible alerts are tracked but do not play."
|
|
3340
|
-
},
|
|
3341
|
-
{
|
|
3342
|
-
"kind": "field",
|
|
3343
|
-
"name": "connectionSub",
|
|
3344
|
-
"type": {
|
|
3345
|
-
"text": "Subscription | undefined"
|
|
3346
|
-
},
|
|
3347
|
-
"privacy": "private"
|
|
3348
|
-
},
|
|
3349
|
-
{
|
|
3350
|
-
"kind": "field",
|
|
3351
|
-
"name": "player",
|
|
3352
|
-
"privacy": "private",
|
|
3353
|
-
"readonly": true
|
|
3354
|
-
},
|
|
3355
|
-
{
|
|
3356
|
-
"kind": "field",
|
|
3357
|
-
"name": "knownAlertIds",
|
|
3358
|
-
"privacy": "private",
|
|
3359
|
-
"default": "new Set<string>()"
|
|
3360
|
-
},
|
|
3361
|
-
{
|
|
3362
|
-
"kind": "field",
|
|
3363
|
-
"name": "serverSoundFetches",
|
|
3364
|
-
"privacy": "private",
|
|
3365
|
-
"readonly": true,
|
|
3366
|
-
"default": "new Map<string, Promise<boolean>>()",
|
|
3367
|
-
"description": "In-flight server sound fetches keyed by DYNAMIC_RULE_ID."
|
|
3322
|
+
"name": "createEmptyParameter",
|
|
3323
|
+
"static": true
|
|
3368
3324
|
},
|
|
3369
3325
|
{
|
|
3370
3326
|
"kind": "method",
|
|
3371
|
-
"name": "
|
|
3372
|
-
"
|
|
3373
|
-
"
|
|
3374
|
-
|
|
3375
|
-
"
|
|
3327
|
+
"name": "getParameters",
|
|
3328
|
+
"static": true,
|
|
3329
|
+
"parameters": [
|
|
3330
|
+
{
|
|
3331
|
+
"name": "parameters"
|
|
3376
3332
|
}
|
|
3377
|
-
|
|
3378
|
-
},
|
|
3379
|
-
{
|
|
3380
|
-
"kind": "field",
|
|
3381
|
-
"name": "subscriptionHandler",
|
|
3382
|
-
"privacy": "private"
|
|
3333
|
+
]
|
|
3383
3334
|
},
|
|
3384
3335
|
{
|
|
3385
3336
|
"kind": "method",
|
|
3386
|
-
"name": "
|
|
3337
|
+
"name": "buildRightValue",
|
|
3387
3338
|
"privacy": "private",
|
|
3388
|
-
"
|
|
3389
|
-
"type": {
|
|
3390
|
-
"text": "Promise<void>"
|
|
3391
|
-
}
|
|
3392
|
-
},
|
|
3339
|
+
"static": true,
|
|
3393
3340
|
"parameters": [
|
|
3394
3341
|
{
|
|
3395
|
-
"name": "
|
|
3342
|
+
"name": "logicalOperator",
|
|
3396
3343
|
"type": {
|
|
3397
|
-
"text": "
|
|
3344
|
+
"text": "LogicalOperator"
|
|
3398
3345
|
}
|
|
3346
|
+
},
|
|
3347
|
+
{
|
|
3348
|
+
"name": "condition"
|
|
3349
|
+
},
|
|
3350
|
+
{
|
|
3351
|
+
"name": "parameters",
|
|
3352
|
+
"optional": true
|
|
3399
3353
|
}
|
|
3400
3354
|
]
|
|
3401
3355
|
},
|
|
3402
3356
|
{
|
|
3403
3357
|
"kind": "method",
|
|
3404
|
-
"name": "
|
|
3405
|
-
"
|
|
3406
|
-
"return": {
|
|
3407
|
-
"type": {
|
|
3408
|
-
"text": "Promise<boolean>"
|
|
3409
|
-
}
|
|
3410
|
-
},
|
|
3358
|
+
"name": "getConditions",
|
|
3359
|
+
"static": true,
|
|
3411
3360
|
"parameters": [
|
|
3412
3361
|
{
|
|
3413
|
-
"name": "
|
|
3414
|
-
|
|
3415
|
-
|
|
3416
|
-
|
|
3362
|
+
"name": "conditions"
|
|
3363
|
+
},
|
|
3364
|
+
{
|
|
3365
|
+
"name": "parameters",
|
|
3366
|
+
"optional": true
|
|
3417
3367
|
}
|
|
3418
3368
|
]
|
|
3419
3369
|
},
|
|
3420
3370
|
{
|
|
3421
3371
|
"kind": "method",
|
|
3422
|
-
"name": "
|
|
3423
|
-
"
|
|
3424
|
-
"
|
|
3425
|
-
|
|
3426
|
-
"
|
|
3372
|
+
"name": "createParameterDetails",
|
|
3373
|
+
"static": true,
|
|
3374
|
+
"parameters": [
|
|
3375
|
+
{
|
|
3376
|
+
"name": "parameters"
|
|
3427
3377
|
}
|
|
3428
|
-
|
|
3378
|
+
]
|
|
3379
|
+
}
|
|
3380
|
+
]
|
|
3381
|
+
},
|
|
3382
|
+
{
|
|
3383
|
+
"kind": "class",
|
|
3384
|
+
"description": "",
|
|
3385
|
+
"name": "RuleUtils",
|
|
3386
|
+
"members": [
|
|
3387
|
+
{
|
|
3388
|
+
"kind": "method",
|
|
3389
|
+
"name": "buildRightValue",
|
|
3390
|
+
"privacy": "private",
|
|
3391
|
+
"static": true,
|
|
3429
3392
|
"parameters": [
|
|
3430
3393
|
{
|
|
3431
|
-
"name": "
|
|
3394
|
+
"name": "logicalOperator",
|
|
3432
3395
|
"type": {
|
|
3433
|
-
"text": "
|
|
3396
|
+
"text": "LogicalOperator"
|
|
3434
3397
|
}
|
|
3398
|
+
},
|
|
3399
|
+
{
|
|
3400
|
+
"name": "condition"
|
|
3401
|
+
}
|
|
3402
|
+
]
|
|
3403
|
+
},
|
|
3404
|
+
{
|
|
3405
|
+
"kind": "method",
|
|
3406
|
+
"name": "getConditions",
|
|
3407
|
+
"static": true,
|
|
3408
|
+
"parameters": [
|
|
3409
|
+
{
|
|
3410
|
+
"name": "conditions"
|
|
3435
3411
|
}
|
|
3436
3412
|
]
|
|
3437
3413
|
}
|
|
3438
|
-
]
|
|
3439
|
-
|
|
3414
|
+
]
|
|
3415
|
+
},
|
|
3416
|
+
{
|
|
3417
|
+
"kind": "function",
|
|
3418
|
+
"name": "showNotificationError",
|
|
3419
|
+
"parameters": [
|
|
3440
3420
|
{
|
|
3441
|
-
"name": "
|
|
3442
|
-
"type": {
|
|
3443
|
-
"text": "boolean"
|
|
3444
|
-
},
|
|
3445
|
-
"default": "true",
|
|
3446
|
-
"description": "When false, new audible alerts are tracked but do not play.",
|
|
3447
|
-
"fieldName": "soundEnabled"
|
|
3421
|
+
"name": "error"
|
|
3448
3422
|
}
|
|
3449
|
-
]
|
|
3450
|
-
"superclass": {
|
|
3451
|
-
"name": "GenesisElement",
|
|
3452
|
-
"package": "@genesislcap/web-core"
|
|
3453
|
-
},
|
|
3454
|
-
"tagName": "foundation-sounds",
|
|
3455
|
-
"customElement": true
|
|
3423
|
+
]
|
|
3456
3424
|
}
|
|
3457
3425
|
],
|
|
3458
3426
|
"exports": [
|
|
3459
3427
|
{
|
|
3460
3428
|
"kind": "js",
|
|
3461
|
-
"name": "
|
|
3429
|
+
"name": "UUIDGenerator",
|
|
3462
3430
|
"declaration": {
|
|
3463
|
-
"name": "
|
|
3464
|
-
"module": "src/components/foundation-
|
|
3431
|
+
"name": "UUIDGenerator",
|
|
3432
|
+
"module": "src/components/foundation-notification-dashboard/notification-dashboard.utils.ts"
|
|
3465
3433
|
}
|
|
3466
3434
|
},
|
|
3467
3435
|
{
|
|
3468
|
-
"kind": "
|
|
3469
|
-
"name": "
|
|
3436
|
+
"kind": "js",
|
|
3437
|
+
"name": "isEmpty",
|
|
3470
3438
|
"declaration": {
|
|
3471
|
-
"name": "
|
|
3472
|
-
"module": "src/components/foundation-
|
|
3439
|
+
"name": "isEmpty",
|
|
3440
|
+
"module": "src/components/foundation-notification-dashboard/notification-dashboard.utils.ts"
|
|
3441
|
+
}
|
|
3442
|
+
},
|
|
3443
|
+
{
|
|
3444
|
+
"kind": "js",
|
|
3445
|
+
"name": "DynamicRuleUtils",
|
|
3446
|
+
"declaration": {
|
|
3447
|
+
"name": "DynamicRuleUtils",
|
|
3448
|
+
"module": "src/components/foundation-notification-dashboard/notification-dashboard.utils.ts"
|
|
3449
|
+
}
|
|
3450
|
+
},
|
|
3451
|
+
{
|
|
3452
|
+
"kind": "js",
|
|
3453
|
+
"name": "TemplateUtils",
|
|
3454
|
+
"declaration": {
|
|
3455
|
+
"name": "TemplateUtils",
|
|
3456
|
+
"module": "src/components/foundation-notification-dashboard/notification-dashboard.utils.ts"
|
|
3457
|
+
}
|
|
3458
|
+
},
|
|
3459
|
+
{
|
|
3460
|
+
"kind": "js",
|
|
3461
|
+
"name": "RuleUtils",
|
|
3462
|
+
"declaration": {
|
|
3463
|
+
"name": "RuleUtils",
|
|
3464
|
+
"module": "src/components/foundation-notification-dashboard/notification-dashboard.utils.ts"
|
|
3465
|
+
}
|
|
3466
|
+
},
|
|
3467
|
+
{
|
|
3468
|
+
"kind": "js",
|
|
3469
|
+
"name": "showNotificationError",
|
|
3470
|
+
"declaration": {
|
|
3471
|
+
"name": "showNotificationError",
|
|
3472
|
+
"module": "src/components/foundation-notification-dashboard/notification-dashboard.utils.ts"
|
|
3473
3473
|
}
|
|
3474
3474
|
}
|
|
3475
3475
|
]
|
|
@@ -8244,103 +8244,253 @@
|
|
|
8244
8244
|
},
|
|
8245
8245
|
{
|
|
8246
8246
|
"kind": "method",
|
|
8247
|
-
"name": "resetAlertSoundState",
|
|
8248
|
-
"inheritedFrom": {
|
|
8249
|
-
"name": "AlertSoundAttachmentMixin",
|
|
8250
|
-
"module": "src/components/foundation-notification-dashboard/alert-sound-attachment.ts"
|
|
8251
|
-
}
|
|
8247
|
+
"name": "resetAlertSoundState",
|
|
8248
|
+
"inheritedFrom": {
|
|
8249
|
+
"name": "AlertSoundAttachmentMixin",
|
|
8250
|
+
"module": "src/components/foundation-notification-dashboard/alert-sound-attachment.ts"
|
|
8251
|
+
}
|
|
8252
|
+
},
|
|
8253
|
+
{
|
|
8254
|
+
"kind": "method",
|
|
8255
|
+
"name": "applyAlertSoundToPayload",
|
|
8256
|
+
"return": {
|
|
8257
|
+
"type": {
|
|
8258
|
+
"text": "T"
|
|
8259
|
+
}
|
|
8260
|
+
},
|
|
8261
|
+
"parameters": [
|
|
8262
|
+
{
|
|
8263
|
+
"name": "target",
|
|
8264
|
+
"type": {
|
|
8265
|
+
"text": "T"
|
|
8266
|
+
}
|
|
8267
|
+
}
|
|
8268
|
+
],
|
|
8269
|
+
"description": "Merges pending sound / clear flag onto a create/update DETAILS object.",
|
|
8270
|
+
"inheritedFrom": {
|
|
8271
|
+
"name": "AlertSoundAttachmentMixin",
|
|
8272
|
+
"module": "src/components/foundation-notification-dashboard/alert-sound-attachment.ts"
|
|
8273
|
+
}
|
|
8274
|
+
},
|
|
8275
|
+
{
|
|
8276
|
+
"kind": "method",
|
|
8277
|
+
"name": "syncAlertSoundCacheAfterSave",
|
|
8278
|
+
"description": "Keep AlertSoundPlayer's in-memory NOTIFY_ALERT_SOUND cache in sync with\nwhat we just saved — otherwise the next alert still plays the old file.",
|
|
8279
|
+
"inheritedFrom": {
|
|
8280
|
+
"name": "AlertSoundAttachmentMixin",
|
|
8281
|
+
"module": "src/components/foundation-notification-dashboard/alert-sound-attachment.ts"
|
|
8282
|
+
}
|
|
8283
|
+
}
|
|
8284
|
+
],
|
|
8285
|
+
"events": [
|
|
8286
|
+
{
|
|
8287
|
+
"description": "Fired when the dialog should close",
|
|
8288
|
+
"name": "close"
|
|
8289
|
+
}
|
|
8290
|
+
],
|
|
8291
|
+
"mixins": [
|
|
8292
|
+
{
|
|
8293
|
+
"name": "AlertSoundAttachmentMixin",
|
|
8294
|
+
"module": "/src/components/foundation-notification-dashboard/alert-sound-attachment"
|
|
8295
|
+
}
|
|
8296
|
+
],
|
|
8297
|
+
"superclass": {
|
|
8298
|
+
"name": "GenesisElement",
|
|
8299
|
+
"package": "@genesislcap/web-core"
|
|
8300
|
+
},
|
|
8301
|
+
"tagName": "template-dialog",
|
|
8302
|
+
"customElement": true
|
|
8303
|
+
}
|
|
8304
|
+
],
|
|
8305
|
+
"exports": [
|
|
8306
|
+
{
|
|
8307
|
+
"kind": "js",
|
|
8308
|
+
"name": "TemplateDialog",
|
|
8309
|
+
"declaration": {
|
|
8310
|
+
"name": "TemplateDialog",
|
|
8311
|
+
"module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-dialog.ts"
|
|
8312
|
+
}
|
|
8313
|
+
},
|
|
8314
|
+
{
|
|
8315
|
+
"kind": "custom-element-definition",
|
|
8316
|
+
"name": "template-dialog",
|
|
8317
|
+
"declaration": {
|
|
8318
|
+
"name": "TemplateDialog",
|
|
8319
|
+
"module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-dialog.ts"
|
|
8320
|
+
}
|
|
8321
|
+
}
|
|
8322
|
+
]
|
|
8323
|
+
},
|
|
8324
|
+
{
|
|
8325
|
+
"kind": "javascript-module",
|
|
8326
|
+
"path": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-dialog.types.ts",
|
|
8327
|
+
"declarations": [
|
|
8328
|
+
{
|
|
8329
|
+
"kind": "variable",
|
|
8330
|
+
"name": "TemplateDialogMode",
|
|
8331
|
+
"type": {
|
|
8332
|
+
"text": "{\n CREATE: 'create',\n EDIT: 'edit',\n}"
|
|
8333
|
+
},
|
|
8334
|
+
"default": "{\n CREATE: 'create',\n EDIT: 'edit',\n}"
|
|
8335
|
+
}
|
|
8336
|
+
],
|
|
8337
|
+
"exports": [
|
|
8338
|
+
{
|
|
8339
|
+
"kind": "js",
|
|
8340
|
+
"name": "TemplateDialogMode",
|
|
8341
|
+
"declaration": {
|
|
8342
|
+
"name": "TemplateDialogMode",
|
|
8343
|
+
"module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-dialog.types.ts"
|
|
8344
|
+
}
|
|
8345
|
+
}
|
|
8346
|
+
]
|
|
8347
|
+
},
|
|
8348
|
+
{
|
|
8349
|
+
"kind": "javascript-module",
|
|
8350
|
+
"path": "src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-group/rule-condition-group.template.ts",
|
|
8351
|
+
"declarations": [
|
|
8352
|
+
{
|
|
8353
|
+
"kind": "variable",
|
|
8354
|
+
"name": "RuleConditionGroupTemplate",
|
|
8355
|
+
"default": "html<RuleConditionGroup>`\n ${when(\n (x) => !x.isFirst,\n html`\n <div class=\"join-toggle-row\">\n <div class=\"join-toggle\">\n <span\n class=\"join-text${(x) => classNames(['active', x.joinOperator === 'AND'])}\"\n @click=${(x) => (x.joinOperator = 'AND')}\n >\n AND\n </span>\n <span\n class=\"join-text${(x) => classNames(['active', x.joinOperator === 'OR'])}\"\n @click=${(x) => (x.joinOperator = 'OR')}\n >\n OR\n </span>\n </div>\n </div>\n `,\n )}\n <div class=\"condition-group-row\">\n <div class=\"condition-group-box\">\n ${repeat(\n (x) => x.groupChildren,\n html<ConditionNode, RuleConditionGroup>`\n ${when(\n (x) => isGroup(x),\n html<ConditionNode>`\n <rule-condition-group\n :fields=${(x, c) => c.parent.fields}\n :node=${(x) => x}\n :isFirst=${(x, c) => c.index === 0}\n @edit=${(x, c) => c.parent.editChild(eventDetail(c))}\n @delete=${(x, c) => c.parent.deleteChild(eventDetail(c))}\n ></rule-condition-group>\n `,\n )}\n ${when(\n (x) => !isGroup(x),\n html<ConditionNode>`\n <rule-condition-builder\n :fields=${(x, c) => c.parent.fields}\n :condition=${(x) => x}\n :isFirst=${(x, c) => c.index === 0}\n @edit=${(x, c) => c.parent.editChild(eventDetail(c))}\n @delete=${(x, c) => c.parent.deleteChild(eventDetail(c))}\n ></rule-condition-builder>\n `,\n )}\n `,\n { positioning: true },\n )}\n\n <div class=\"content-row\">\n <rapid-button appearance=\"lightweight\" @click=${(x) => x.newCondition()}>\n + Condition\n </rapid-button>\n <rapid-button appearance=\"lightweight\" @click=${(x) => x.newGroup()}>+ Group</rapid-button>\n <rapid-button appearance=\"icon\" class=\"delete-group\" @click=${(x) => x.deleteSelf()}>\n <rapid-icon variant=\"regular\" name=\"trash-alt\" size=\"lg\" part=\"icon\"></rapid-icon>\n </rapid-button>\n </div>\n </div>\n </div>\n`"
|
|
8356
|
+
}
|
|
8357
|
+
],
|
|
8358
|
+
"exports": [
|
|
8359
|
+
{
|
|
8360
|
+
"kind": "js",
|
|
8361
|
+
"name": "RuleConditionGroupTemplate",
|
|
8362
|
+
"declaration": {
|
|
8363
|
+
"name": "RuleConditionGroupTemplate",
|
|
8364
|
+
"module": "src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-group/rule-condition-group.template.ts"
|
|
8365
|
+
}
|
|
8366
|
+
}
|
|
8367
|
+
]
|
|
8368
|
+
},
|
|
8369
|
+
{
|
|
8370
|
+
"kind": "javascript-module",
|
|
8371
|
+
"path": "src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-group/rule-condition-group.ts",
|
|
8372
|
+
"declarations": [
|
|
8373
|
+
{
|
|
8374
|
+
"kind": "class",
|
|
8375
|
+
"description": "Parenthesized group of conditions/nested groups for notification rule\ncriteria, joined to the previous sibling via AND/OR like a single\ncondition row - but bracketing its own children off from the rest of the\nlist, so e.g. \"(A && B) || C\" can be expressed without the AND silently\nspanning more than intended.",
|
|
8376
|
+
"name": "RuleConditionGroup",
|
|
8377
|
+
"members": [
|
|
8378
|
+
{
|
|
8379
|
+
"kind": "field",
|
|
8380
|
+
"name": "node",
|
|
8381
|
+
"type": {
|
|
8382
|
+
"text": "ConditionGroupEntity"
|
|
8383
|
+
}
|
|
8384
|
+
},
|
|
8385
|
+
{
|
|
8386
|
+
"kind": "field",
|
|
8387
|
+
"name": "fields",
|
|
8388
|
+
"type": {
|
|
8389
|
+
"text": "Field[]"
|
|
8390
|
+
},
|
|
8391
|
+
"default": "[]"
|
|
8392
|
+
},
|
|
8393
|
+
{
|
|
8394
|
+
"kind": "field",
|
|
8395
|
+
"name": "isFirst",
|
|
8396
|
+
"type": {
|
|
8397
|
+
"text": "boolean"
|
|
8398
|
+
},
|
|
8399
|
+
"default": "false"
|
|
8400
|
+
},
|
|
8401
|
+
{
|
|
8402
|
+
"kind": "field",
|
|
8403
|
+
"name": "joinOperator",
|
|
8404
|
+
"type": {
|
|
8405
|
+
"text": "string"
|
|
8406
|
+
}
|
|
8407
|
+
},
|
|
8408
|
+
{
|
|
8409
|
+
"kind": "field",
|
|
8410
|
+
"name": "groupChildren",
|
|
8411
|
+
"type": {
|
|
8412
|
+
"text": "ConditionNode[]"
|
|
8413
|
+
},
|
|
8414
|
+
"default": "[]"
|
|
8415
|
+
},
|
|
8416
|
+
{
|
|
8417
|
+
"kind": "method",
|
|
8418
|
+
"name": "nodeChanged"
|
|
8419
|
+
},
|
|
8420
|
+
{
|
|
8421
|
+
"kind": "method",
|
|
8422
|
+
"name": "joinOperatorChanged"
|
|
8423
|
+
},
|
|
8424
|
+
{
|
|
8425
|
+
"kind": "method",
|
|
8426
|
+
"name": "newCondition"
|
|
8427
|
+
},
|
|
8428
|
+
{
|
|
8429
|
+
"kind": "method",
|
|
8430
|
+
"name": "newGroup"
|
|
8252
8431
|
},
|
|
8253
8432
|
{
|
|
8254
8433
|
"kind": "method",
|
|
8255
|
-
"name": "
|
|
8256
|
-
"
|
|
8257
|
-
|
|
8258
|
-
"
|
|
8434
|
+
"name": "editChild",
|
|
8435
|
+
"parameters": [
|
|
8436
|
+
{
|
|
8437
|
+
"name": "_editedChild",
|
|
8438
|
+
"type": {
|
|
8439
|
+
"text": "ConditionNode"
|
|
8440
|
+
}
|
|
8259
8441
|
}
|
|
8260
|
-
|
|
8442
|
+
]
|
|
8443
|
+
},
|
|
8444
|
+
{
|
|
8445
|
+
"kind": "method",
|
|
8446
|
+
"name": "deleteChild",
|
|
8261
8447
|
"parameters": [
|
|
8262
8448
|
{
|
|
8263
|
-
"name": "
|
|
8449
|
+
"name": "deletedChild",
|
|
8264
8450
|
"type": {
|
|
8265
|
-
"text": "
|
|
8451
|
+
"text": "ConditionNode"
|
|
8266
8452
|
}
|
|
8267
8453
|
}
|
|
8268
|
-
]
|
|
8269
|
-
"description": "Merges pending sound / clear flag onto a create/update DETAILS object.",
|
|
8270
|
-
"inheritedFrom": {
|
|
8271
|
-
"name": "AlertSoundAttachmentMixin",
|
|
8272
|
-
"module": "src/components/foundation-notification-dashboard/alert-sound-attachment.ts"
|
|
8273
|
-
}
|
|
8454
|
+
]
|
|
8274
8455
|
},
|
|
8275
8456
|
{
|
|
8276
8457
|
"kind": "method",
|
|
8277
|
-
"name": "
|
|
8278
|
-
"description": "Keep AlertSoundPlayer's in-memory NOTIFY_ALERT_SOUND cache in sync with\nwhat we just saved — otherwise the next alert still plays the old file.",
|
|
8279
|
-
"inheritedFrom": {
|
|
8280
|
-
"name": "AlertSoundAttachmentMixin",
|
|
8281
|
-
"module": "src/components/foundation-notification-dashboard/alert-sound-attachment.ts"
|
|
8282
|
-
}
|
|
8458
|
+
"name": "deleteSelf"
|
|
8283
8459
|
}
|
|
8284
8460
|
],
|
|
8285
8461
|
"events": [
|
|
8286
8462
|
{
|
|
8287
|
-
"description": "Fired when
|
|
8288
|
-
"name": "
|
|
8289
|
-
}
|
|
8290
|
-
],
|
|
8291
|
-
"mixins": [
|
|
8463
|
+
"description": "Fired when this whole group should be removed",
|
|
8464
|
+
"name": "delete"
|
|
8465
|
+
},
|
|
8292
8466
|
{
|
|
8293
|
-
"
|
|
8294
|
-
"
|
|
8467
|
+
"description": "Fired when anything inside this group changes",
|
|
8468
|
+
"name": "edit"
|
|
8295
8469
|
}
|
|
8296
8470
|
],
|
|
8297
8471
|
"superclass": {
|
|
8298
8472
|
"name": "GenesisElement",
|
|
8299
8473
|
"package": "@genesislcap/web-core"
|
|
8300
8474
|
},
|
|
8301
|
-
"tagName": "
|
|
8475
|
+
"tagName": "rule-condition-group",
|
|
8302
8476
|
"customElement": true
|
|
8303
8477
|
}
|
|
8304
8478
|
],
|
|
8305
8479
|
"exports": [
|
|
8306
8480
|
{
|
|
8307
8481
|
"kind": "js",
|
|
8308
|
-
"name": "
|
|
8482
|
+
"name": "RuleConditionGroup",
|
|
8309
8483
|
"declaration": {
|
|
8310
|
-
"name": "
|
|
8311
|
-
"module": "src/components/foundation-notification-dashboard/components/
|
|
8484
|
+
"name": "RuleConditionGroup",
|
|
8485
|
+
"module": "src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-group/rule-condition-group.ts"
|
|
8312
8486
|
}
|
|
8313
8487
|
},
|
|
8314
8488
|
{
|
|
8315
8489
|
"kind": "custom-element-definition",
|
|
8316
|
-
"name": "
|
|
8317
|
-
"declaration": {
|
|
8318
|
-
"name": "TemplateDialog",
|
|
8319
|
-
"module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-dialog.ts"
|
|
8320
|
-
}
|
|
8321
|
-
}
|
|
8322
|
-
]
|
|
8323
|
-
},
|
|
8324
|
-
{
|
|
8325
|
-
"kind": "javascript-module",
|
|
8326
|
-
"path": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-dialog.types.ts",
|
|
8327
|
-
"declarations": [
|
|
8328
|
-
{
|
|
8329
|
-
"kind": "variable",
|
|
8330
|
-
"name": "TemplateDialogMode",
|
|
8331
|
-
"type": {
|
|
8332
|
-
"text": "{\n CREATE: 'create',\n EDIT: 'edit',\n}"
|
|
8333
|
-
},
|
|
8334
|
-
"default": "{\n CREATE: 'create',\n EDIT: 'edit',\n}"
|
|
8335
|
-
}
|
|
8336
|
-
],
|
|
8337
|
-
"exports": [
|
|
8338
|
-
{
|
|
8339
|
-
"kind": "js",
|
|
8340
|
-
"name": "TemplateDialogMode",
|
|
8490
|
+
"name": "rule-condition-group",
|
|
8341
8491
|
"declaration": {
|
|
8342
|
-
"name": "
|
|
8343
|
-
"module": "src/components/foundation-notification-dashboard/components/
|
|
8492
|
+
"name": "RuleConditionGroup",
|
|
8493
|
+
"module": "src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-group/rule-condition-group.ts"
|
|
8344
8494
|
}
|
|
8345
8495
|
}
|
|
8346
8496
|
]
|
|
@@ -8509,246 +8659,90 @@
|
|
|
8509
8659
|
},
|
|
8510
8660
|
{
|
|
8511
8661
|
"kind": "method",
|
|
8512
|
-
"name": "logicalOperatorChanged"
|
|
8513
|
-
},
|
|
8514
|
-
{
|
|
8515
|
-
"kind": "method",
|
|
8516
|
-
"name": "rightCriteriaChanged"
|
|
8517
|
-
},
|
|
8518
|
-
{
|
|
8519
|
-
"kind": "method",
|
|
8520
|
-
"name": "clearRightValueText",
|
|
8521
|
-
"privacy": "private"
|
|
8522
|
-
},
|
|
8523
|
-
{
|
|
8524
|
-
"kind": "method",
|
|
8525
|
-
"name": "clearRightValueSelect",
|
|
8526
|
-
"privacy": "private"
|
|
8527
|
-
},
|
|
8528
|
-
{
|
|
8529
|
-
"kind": "method",
|
|
8530
|
-
"name": "rightValueTextChanged"
|
|
8531
|
-
},
|
|
8532
|
-
{
|
|
8533
|
-
"kind": "method",
|
|
8534
|
-
"name": "rightValueSelectChanged"
|
|
8535
|
-
},
|
|
8536
|
-
{
|
|
8537
|
-
"kind": "method",
|
|
8538
|
-
"name": "rightValueMultiSelectChanged"
|
|
8539
|
-
},
|
|
8540
|
-
{
|
|
8541
|
-
"kind": "method",
|
|
8542
|
-
"name": "getEnumValues",
|
|
8543
|
-
"return": {
|
|
8544
|
-
"type": {
|
|
8545
|
-
"text": "string[]"
|
|
8546
|
-
}
|
|
8547
|
-
}
|
|
8548
|
-
},
|
|
8549
|
-
{
|
|
8550
|
-
"kind": "method",
|
|
8551
|
-
"name": "convertDateTime",
|
|
8552
|
-
"parameters": [
|
|
8553
|
-
{
|
|
8554
|
-
"name": "dateTimeStr",
|
|
8555
|
-
"type": {
|
|
8556
|
-
"text": "string"
|
|
8557
|
-
}
|
|
8558
|
-
}
|
|
8559
|
-
]
|
|
8560
|
-
},
|
|
8561
|
-
{
|
|
8562
|
-
"kind": "method",
|
|
8563
|
-
"name": "convertLongForDatePicker",
|
|
8564
|
-
"parameters": [
|
|
8565
|
-
{
|
|
8566
|
-
"name": "value",
|
|
8567
|
-
"type": {
|
|
8568
|
-
"text": "number"
|
|
8569
|
-
}
|
|
8570
|
-
},
|
|
8571
|
-
{
|
|
8572
|
-
"name": "time",
|
|
8573
|
-
"default": "false",
|
|
8574
|
-
"type": {
|
|
8575
|
-
"text": "boolean"
|
|
8576
|
-
}
|
|
8577
|
-
}
|
|
8578
|
-
]
|
|
8579
|
-
},
|
|
8580
|
-
{
|
|
8581
|
-
"kind": "method",
|
|
8582
|
-
"name": "getAllFields"
|
|
8583
|
-
},
|
|
8584
|
-
{
|
|
8585
|
-
"kind": "method",
|
|
8586
|
-
"name": "getApplicableFields"
|
|
8587
|
-
}
|
|
8588
|
-
],
|
|
8589
|
-
"events": [
|
|
8590
|
-
{
|
|
8591
|
-
"description": "Fired when a condition is deleted. detail: `ConditionBuilderEntity`",
|
|
8592
|
-
"name": "delete"
|
|
8593
|
-
},
|
|
8594
|
-
{
|
|
8595
|
-
"description": "Fired when a condition is edited. detail: `ConditionBuilderEntity`",
|
|
8596
|
-
"name": "edit"
|
|
8597
|
-
}
|
|
8598
|
-
],
|
|
8599
|
-
"superclass": {
|
|
8600
|
-
"name": "GenesisElement",
|
|
8601
|
-
"package": "@genesislcap/web-core"
|
|
8602
|
-
},
|
|
8603
|
-
"tagName": "rule-condition-builder",
|
|
8604
|
-
"customElement": true
|
|
8605
|
-
}
|
|
8606
|
-
],
|
|
8607
|
-
"exports": [
|
|
8608
|
-
{
|
|
8609
|
-
"kind": "js",
|
|
8610
|
-
"name": "RuleConditionBuilder",
|
|
8611
|
-
"declaration": {
|
|
8612
|
-
"name": "RuleConditionBuilder",
|
|
8613
|
-
"module": "src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-builder/rule-condition-builder.ts"
|
|
8614
|
-
}
|
|
8615
|
-
},
|
|
8616
|
-
{
|
|
8617
|
-
"kind": "custom-element-definition",
|
|
8618
|
-
"name": "rule-condition-builder",
|
|
8619
|
-
"declaration": {
|
|
8620
|
-
"name": "RuleConditionBuilder",
|
|
8621
|
-
"module": "src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-builder/rule-condition-builder.ts"
|
|
8622
|
-
}
|
|
8623
|
-
}
|
|
8624
|
-
]
|
|
8625
|
-
},
|
|
8626
|
-
{
|
|
8627
|
-
"kind": "javascript-module",
|
|
8628
|
-
"path": "src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-builder/rule-condition-builder.types.ts",
|
|
8629
|
-
"declarations": [],
|
|
8630
|
-
"exports": []
|
|
8631
|
-
},
|
|
8632
|
-
{
|
|
8633
|
-
"kind": "javascript-module",
|
|
8634
|
-
"path": "src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-group/rule-condition-group.template.ts",
|
|
8635
|
-
"declarations": [
|
|
8636
|
-
{
|
|
8637
|
-
"kind": "variable",
|
|
8638
|
-
"name": "RuleConditionGroupTemplate",
|
|
8639
|
-
"default": "html<RuleConditionGroup>`\n ${when(\n (x) => !x.isFirst,\n html`\n <div class=\"join-toggle-row\">\n <div class=\"join-toggle\">\n <span\n class=\"join-text${(x) => classNames(['active', x.joinOperator === 'AND'])}\"\n @click=${(x) => (x.joinOperator = 'AND')}\n >\n AND\n </span>\n <span\n class=\"join-text${(x) => classNames(['active', x.joinOperator === 'OR'])}\"\n @click=${(x) => (x.joinOperator = 'OR')}\n >\n OR\n </span>\n </div>\n </div>\n `,\n )}\n <div class=\"condition-group-row\">\n <div class=\"condition-group-box\">\n ${repeat(\n (x) => x.groupChildren,\n html<ConditionNode, RuleConditionGroup>`\n ${when(\n (x) => isGroup(x),\n html<ConditionNode>`\n <rule-condition-group\n :fields=${(x, c) => c.parent.fields}\n :node=${(x) => x}\n :isFirst=${(x, c) => c.index === 0}\n @edit=${(x, c) => c.parent.editChild(eventDetail(c))}\n @delete=${(x, c) => c.parent.deleteChild(eventDetail(c))}\n ></rule-condition-group>\n `,\n )}\n ${when(\n (x) => !isGroup(x),\n html<ConditionNode>`\n <rule-condition-builder\n :fields=${(x, c) => c.parent.fields}\n :condition=${(x) => x}\n :isFirst=${(x, c) => c.index === 0}\n @edit=${(x, c) => c.parent.editChild(eventDetail(c))}\n @delete=${(x, c) => c.parent.deleteChild(eventDetail(c))}\n ></rule-condition-builder>\n `,\n )}\n `,\n { positioning: true },\n )}\n\n <div class=\"content-row\">\n <rapid-button appearance=\"lightweight\" @click=${(x) => x.newCondition()}>\n + Condition\n </rapid-button>\n <rapid-button appearance=\"lightweight\" @click=${(x) => x.newGroup()}>+ Group</rapid-button>\n <rapid-button appearance=\"icon\" class=\"delete-group\" @click=${(x) => x.deleteSelf()}>\n <rapid-icon variant=\"regular\" name=\"trash-alt\" size=\"lg\" part=\"icon\"></rapid-icon>\n </rapid-button>\n </div>\n </div>\n </div>\n`"
|
|
8640
|
-
}
|
|
8641
|
-
],
|
|
8642
|
-
"exports": [
|
|
8643
|
-
{
|
|
8644
|
-
"kind": "js",
|
|
8645
|
-
"name": "RuleConditionGroupTemplate",
|
|
8646
|
-
"declaration": {
|
|
8647
|
-
"name": "RuleConditionGroupTemplate",
|
|
8648
|
-
"module": "src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-group/rule-condition-group.template.ts"
|
|
8649
|
-
}
|
|
8650
|
-
}
|
|
8651
|
-
]
|
|
8652
|
-
},
|
|
8653
|
-
{
|
|
8654
|
-
"kind": "javascript-module",
|
|
8655
|
-
"path": "src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-group/rule-condition-group.ts",
|
|
8656
|
-
"declarations": [
|
|
8657
|
-
{
|
|
8658
|
-
"kind": "class",
|
|
8659
|
-
"description": "Parenthesized group of conditions/nested groups for notification rule\ncriteria, joined to the previous sibling via AND/OR like a single\ncondition row - but bracketing its own children off from the rest of the\nlist, so e.g. \"(A && B) || C\" can be expressed without the AND silently\nspanning more than intended.",
|
|
8660
|
-
"name": "RuleConditionGroup",
|
|
8661
|
-
"members": [
|
|
8662
|
-
{
|
|
8663
|
-
"kind": "field",
|
|
8664
|
-
"name": "node",
|
|
8665
|
-
"type": {
|
|
8666
|
-
"text": "ConditionGroupEntity"
|
|
8667
|
-
}
|
|
8668
|
-
},
|
|
8669
|
-
{
|
|
8670
|
-
"kind": "field",
|
|
8671
|
-
"name": "fields",
|
|
8672
|
-
"type": {
|
|
8673
|
-
"text": "Field[]"
|
|
8674
|
-
},
|
|
8675
|
-
"default": "[]"
|
|
8662
|
+
"name": "logicalOperatorChanged"
|
|
8676
8663
|
},
|
|
8677
8664
|
{
|
|
8678
|
-
"kind": "
|
|
8679
|
-
"name": "
|
|
8680
|
-
"type": {
|
|
8681
|
-
"text": "boolean"
|
|
8682
|
-
},
|
|
8683
|
-
"default": "false"
|
|
8665
|
+
"kind": "method",
|
|
8666
|
+
"name": "rightCriteriaChanged"
|
|
8684
8667
|
},
|
|
8685
8668
|
{
|
|
8686
|
-
"kind": "
|
|
8687
|
-
"name": "
|
|
8688
|
-
"
|
|
8689
|
-
"text": "string"
|
|
8690
|
-
}
|
|
8669
|
+
"kind": "method",
|
|
8670
|
+
"name": "clearRightValueText",
|
|
8671
|
+
"privacy": "private"
|
|
8691
8672
|
},
|
|
8692
8673
|
{
|
|
8693
|
-
"kind": "
|
|
8694
|
-
"name": "
|
|
8695
|
-
"
|
|
8696
|
-
"text": "ConditionNode[]"
|
|
8697
|
-
},
|
|
8698
|
-
"default": "[]"
|
|
8674
|
+
"kind": "method",
|
|
8675
|
+
"name": "clearRightValueSelect",
|
|
8676
|
+
"privacy": "private"
|
|
8699
8677
|
},
|
|
8700
8678
|
{
|
|
8701
8679
|
"kind": "method",
|
|
8702
|
-
"name": "
|
|
8680
|
+
"name": "rightValueTextChanged"
|
|
8703
8681
|
},
|
|
8704
8682
|
{
|
|
8705
8683
|
"kind": "method",
|
|
8706
|
-
"name": "
|
|
8684
|
+
"name": "rightValueSelectChanged"
|
|
8707
8685
|
},
|
|
8708
8686
|
{
|
|
8709
8687
|
"kind": "method",
|
|
8710
|
-
"name": "
|
|
8688
|
+
"name": "rightValueMultiSelectChanged"
|
|
8711
8689
|
},
|
|
8712
8690
|
{
|
|
8713
8691
|
"kind": "method",
|
|
8714
|
-
"name": "
|
|
8692
|
+
"name": "getEnumValues",
|
|
8693
|
+
"return": {
|
|
8694
|
+
"type": {
|
|
8695
|
+
"text": "string[]"
|
|
8696
|
+
}
|
|
8697
|
+
}
|
|
8715
8698
|
},
|
|
8716
8699
|
{
|
|
8717
8700
|
"kind": "method",
|
|
8718
|
-
"name": "
|
|
8701
|
+
"name": "convertDateTime",
|
|
8719
8702
|
"parameters": [
|
|
8720
8703
|
{
|
|
8721
|
-
"name": "
|
|
8704
|
+
"name": "dateTimeStr",
|
|
8722
8705
|
"type": {
|
|
8723
|
-
"text": "
|
|
8706
|
+
"text": "string"
|
|
8724
8707
|
}
|
|
8725
8708
|
}
|
|
8726
8709
|
]
|
|
8727
8710
|
},
|
|
8728
8711
|
{
|
|
8729
8712
|
"kind": "method",
|
|
8730
|
-
"name": "
|
|
8713
|
+
"name": "convertLongForDatePicker",
|
|
8731
8714
|
"parameters": [
|
|
8732
8715
|
{
|
|
8733
|
-
"name": "
|
|
8716
|
+
"name": "value",
|
|
8734
8717
|
"type": {
|
|
8735
|
-
"text": "
|
|
8718
|
+
"text": "number"
|
|
8719
|
+
}
|
|
8720
|
+
},
|
|
8721
|
+
{
|
|
8722
|
+
"name": "time",
|
|
8723
|
+
"default": "false",
|
|
8724
|
+
"type": {
|
|
8725
|
+
"text": "boolean"
|
|
8736
8726
|
}
|
|
8737
8727
|
}
|
|
8738
8728
|
]
|
|
8739
8729
|
},
|
|
8740
8730
|
{
|
|
8741
8731
|
"kind": "method",
|
|
8742
|
-
"name": "
|
|
8732
|
+
"name": "getAllFields"
|
|
8733
|
+
},
|
|
8734
|
+
{
|
|
8735
|
+
"kind": "method",
|
|
8736
|
+
"name": "getApplicableFields"
|
|
8743
8737
|
}
|
|
8744
8738
|
],
|
|
8745
8739
|
"events": [
|
|
8746
8740
|
{
|
|
8747
|
-
"description": "Fired when
|
|
8741
|
+
"description": "Fired when a condition is deleted. detail: `ConditionBuilderEntity`",
|
|
8748
8742
|
"name": "delete"
|
|
8749
8743
|
},
|
|
8750
8744
|
{
|
|
8751
|
-
"description": "Fired when
|
|
8745
|
+
"description": "Fired when a condition is edited. detail: `ConditionBuilderEntity`",
|
|
8752
8746
|
"name": "edit"
|
|
8753
8747
|
}
|
|
8754
8748
|
],
|
|
@@ -8756,29 +8750,35 @@
|
|
|
8756
8750
|
"name": "GenesisElement",
|
|
8757
8751
|
"package": "@genesislcap/web-core"
|
|
8758
8752
|
},
|
|
8759
|
-
"tagName": "rule-condition-
|
|
8753
|
+
"tagName": "rule-condition-builder",
|
|
8760
8754
|
"customElement": true
|
|
8761
8755
|
}
|
|
8762
8756
|
],
|
|
8763
8757
|
"exports": [
|
|
8764
8758
|
{
|
|
8765
8759
|
"kind": "js",
|
|
8766
|
-
"name": "
|
|
8760
|
+
"name": "RuleConditionBuilder",
|
|
8767
8761
|
"declaration": {
|
|
8768
|
-
"name": "
|
|
8769
|
-
"module": "src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-
|
|
8762
|
+
"name": "RuleConditionBuilder",
|
|
8763
|
+
"module": "src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-builder/rule-condition-builder.ts"
|
|
8770
8764
|
}
|
|
8771
8765
|
},
|
|
8772
8766
|
{
|
|
8773
8767
|
"kind": "custom-element-definition",
|
|
8774
|
-
"name": "rule-condition-
|
|
8768
|
+
"name": "rule-condition-builder",
|
|
8775
8769
|
"declaration": {
|
|
8776
|
-
"name": "
|
|
8777
|
-
"module": "src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-
|
|
8770
|
+
"name": "RuleConditionBuilder",
|
|
8771
|
+
"module": "src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-builder/rule-condition-builder.ts"
|
|
8778
8772
|
}
|
|
8779
8773
|
}
|
|
8780
8774
|
]
|
|
8781
8775
|
},
|
|
8776
|
+
{
|
|
8777
|
+
"kind": "javascript-module",
|
|
8778
|
+
"path": "src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-builder/rule-condition-builder.types.ts",
|
|
8779
|
+
"declarations": [],
|
|
8780
|
+
"exports": []
|
|
8781
|
+
},
|
|
8782
8782
|
{
|
|
8783
8783
|
"kind": "javascript-module",
|
|
8784
8784
|
"path": "src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.styles.ts",
|
|
@@ -8869,284 +8869,126 @@
|
|
|
8869
8869
|
"kind": "field",
|
|
8870
8870
|
"name": "sourceSelected",
|
|
8871
8871
|
"type": {
|
|
8872
|
-
"text": "string"
|
|
8873
|
-
}
|
|
8874
|
-
},
|
|
8875
|
-
{
|
|
8876
|
-
"kind": "field",
|
|
8877
|
-
"name": "sourceTyped",
|
|
8878
|
-
"type": {
|
|
8879
|
-
"text": "string"
|
|
8880
|
-
}
|
|
8881
|
-
},
|
|
8882
|
-
{
|
|
8883
|
-
"kind": "field",
|
|
8884
|
-
"name": "sourceTextField",
|
|
8885
|
-
"type": {
|
|
8886
|
-
"text": "TextField"
|
|
8887
|
-
}
|
|
8888
|
-
},
|
|
8889
|
-
{
|
|
8890
|
-
"kind": "field",
|
|
8891
|
-
"name": "sourceSelect",
|
|
8892
|
-
"type": {
|
|
8893
|
-
"text": "Select"
|
|
8894
|
-
}
|
|
8895
|
-
},
|
|
8896
|
-
{
|
|
8897
|
-
"kind": "field",
|
|
8898
|
-
"name": "reqRepItems",
|
|
8899
|
-
"type": {
|
|
8900
|
-
"text": "array"
|
|
8901
|
-
},
|
|
8902
|
-
"default": "['REQUEST_1', 'REQUEST_2', 'REQUEST_3']"
|
|
8903
|
-
},
|
|
8904
|
-
{
|
|
8905
|
-
"kind": "method",
|
|
8906
|
-
"name": "deleteParameter"
|
|
8907
|
-
},
|
|
8908
|
-
{
|
|
8909
|
-
"kind": "method",
|
|
8910
|
-
"name": "parameterChanged"
|
|
8911
|
-
},
|
|
8912
|
-
{
|
|
8913
|
-
"kind": "method",
|
|
8914
|
-
"name": "nameChanged"
|
|
8915
|
-
},
|
|
8916
|
-
{
|
|
8917
|
-
"kind": "method",
|
|
8918
|
-
"name": "labelChanged"
|
|
8919
|
-
},
|
|
8920
|
-
{
|
|
8921
|
-
"kind": "method",
|
|
8922
|
-
"name": "typeChanged"
|
|
8923
|
-
},
|
|
8924
|
-
{
|
|
8925
|
-
"kind": "method",
|
|
8926
|
-
"name": "sourceTypeChanged"
|
|
8927
|
-
},
|
|
8928
|
-
{
|
|
8929
|
-
"kind": "method",
|
|
8930
|
-
"name": "sourceSelectedChanged"
|
|
8931
|
-
},
|
|
8932
|
-
{
|
|
8933
|
-
"kind": "method",
|
|
8934
|
-
"name": "sourceTypedChanged"
|
|
8935
|
-
},
|
|
8936
|
-
{
|
|
8937
|
-
"kind": "method",
|
|
8938
|
-
"name": "genericChanged",
|
|
8939
|
-
"privacy": "private",
|
|
8940
|
-
"parameters": [
|
|
8941
|
-
{
|
|
8942
|
-
"name": "parameterAttribute"
|
|
8943
|
-
},
|
|
8944
|
-
{
|
|
8945
|
-
"name": "value"
|
|
8946
|
-
}
|
|
8947
|
-
]
|
|
8948
|
-
}
|
|
8949
|
-
],
|
|
8950
|
-
"events": [
|
|
8951
|
-
{
|
|
8952
|
-
"description": "Fired when a parameter is deleted. detail: `ParameterBuilderEntity`",
|
|
8953
|
-
"name": "delete"
|
|
8954
|
-
},
|
|
8955
|
-
{
|
|
8956
|
-
"description": "Fired when a parameter is edited. detail: `ParameterBuilderEntity`",
|
|
8957
|
-
"name": "edit"
|
|
8958
|
-
}
|
|
8959
|
-
],
|
|
8960
|
-
"attributes": [
|
|
8961
|
-
{
|
|
8962
|
-
"name": "parameter",
|
|
8963
|
-
"type": {
|
|
8964
|
-
"text": "ParameterBuilderEntity"
|
|
8965
|
-
},
|
|
8966
|
-
"fieldName": "parameter"
|
|
8967
|
-
}
|
|
8968
|
-
],
|
|
8969
|
-
"superclass": {
|
|
8970
|
-
"name": "GenesisElement",
|
|
8971
|
-
"package": "@genesislcap/web-core"
|
|
8972
|
-
},
|
|
8973
|
-
"tagName": "parameter-builder",
|
|
8974
|
-
"customElement": true
|
|
8975
|
-
}
|
|
8976
|
-
],
|
|
8977
|
-
"exports": [
|
|
8978
|
-
{
|
|
8979
|
-
"kind": "js",
|
|
8980
|
-
"name": "ParameterBuilder",
|
|
8981
|
-
"declaration": {
|
|
8982
|
-
"name": "ParameterBuilder",
|
|
8983
|
-
"module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.ts"
|
|
8984
|
-
}
|
|
8985
|
-
},
|
|
8986
|
-
{
|
|
8987
|
-
"kind": "custom-element-definition",
|
|
8988
|
-
"name": "parameter-builder",
|
|
8989
|
-
"declaration": {
|
|
8990
|
-
"name": "ParameterBuilder",
|
|
8991
|
-
"module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.ts"
|
|
8992
|
-
}
|
|
8993
|
-
}
|
|
8994
|
-
]
|
|
8995
|
-
},
|
|
8996
|
-
{
|
|
8997
|
-
"kind": "javascript-module",
|
|
8998
|
-
"path": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-group/template-condition-group.template.ts",
|
|
8999
|
-
"declarations": [
|
|
9000
|
-
{
|
|
9001
|
-
"kind": "variable",
|
|
9002
|
-
"name": "TemplateConditionGroupTemplate",
|
|
9003
|
-
"default": "html<TemplateConditionGroup>`\n ${when(\n (x) => !x.isFirst,\n html`\n <div class=\"join-toggle-row\">\n <div class=\"join-toggle\">\n <span\n class=\"join-text${(x) => classNames(['active', x.joinOperator === 'AND'])}\"\n @click=${(x) => (x.joinOperator = 'AND')}\n >\n AND\n </span>\n <span\n class=\"join-text${(x) => classNames(['active', x.joinOperator === 'OR'])}\"\n @click=${(x) => (x.joinOperator = 'OR')}\n >\n OR\n </span>\n </div>\n </div>\n `,\n )}\n <div class=\"condition-group-row\">\n <div class=\"condition-group-box\">\n ${repeat(\n (x) => x.groupChildren,\n html<ConditionNode, TemplateConditionGroup>`\n ${when(\n (x) => isGroup(x),\n html<ConditionNode>`\n <template-condition-group\n :fields=${(x, c) => c.parent.fields}\n :parameters=${(x, c) => c.parent.parameters}\n :node=${(x) => x}\n :isFirst=${(x, c) => c.index === 0}\n @edit=${(x, c) => c.parent.editChild(eventDetail(c))}\n @delete=${(x, c) => c.parent.deleteChild(eventDetail(c))}\n ></template-condition-group>\n `,\n )}\n ${when(\n (x) => !isGroup(x),\n html<ConditionNode>`\n <template-condition-builder\n :fields=${(x, c) => c.parent.fields}\n :parameters=${(x, c) => c.parent.parameters}\n :condition=${(x) => x}\n :isFirst=${(x, c) => c.index === 0}\n @edit=${(x, c) => c.parent.editChild(eventDetail(c))}\n @delete=${(x, c) => c.parent.deleteChild(eventDetail(c))}\n ></template-condition-builder>\n `,\n )}\n `,\n { positioning: true },\n )}\n\n <div class=\"content-row\">\n <rapid-button appearance=\"lightweight\" @click=${(x) => x.newCondition()}>\n + Condition\n </rapid-button>\n <rapid-button appearance=\"lightweight\" @click=${(x) => x.newGroup()}>+ Group</rapid-button>\n <rapid-button appearance=\"icon\" class=\"delete-group\" @click=${(x) => x.deleteSelf()}>\n <rapid-icon variant=\"regular\" name=\"trash-alt\" size=\"lg\" part=\"icon\"></rapid-icon>\n </rapid-button>\n </div>\n </div>\n </div>\n`"
|
|
9004
|
-
}
|
|
9005
|
-
],
|
|
9006
|
-
"exports": [
|
|
9007
|
-
{
|
|
9008
|
-
"kind": "js",
|
|
9009
|
-
"name": "TemplateConditionGroupTemplate",
|
|
9010
|
-
"declaration": {
|
|
9011
|
-
"name": "TemplateConditionGroupTemplate",
|
|
9012
|
-
"module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-group/template-condition-group.template.ts"
|
|
9013
|
-
}
|
|
9014
|
-
}
|
|
9015
|
-
]
|
|
9016
|
-
},
|
|
9017
|
-
{
|
|
9018
|
-
"kind": "javascript-module",
|
|
9019
|
-
"path": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-group/template-condition-group.ts",
|
|
9020
|
-
"declarations": [
|
|
9021
|
-
{
|
|
9022
|
-
"kind": "class",
|
|
9023
|
-
"description": "Parenthesized group of conditions/nested groups for notification template\ncriteria - see rule-condition-group for the rationale. Also forwards\n:parameters down to nested template-condition-builder rows so parameter\nbinding (USER_ENTRY) keeps working inside a group.",
|
|
9024
|
-
"name": "TemplateConditionGroup",
|
|
9025
|
-
"members": [
|
|
9026
|
-
{
|
|
9027
|
-
"kind": "field",
|
|
9028
|
-
"name": "node",
|
|
9029
|
-
"type": {
|
|
9030
|
-
"text": "ConditionGroupEntity"
|
|
9031
|
-
}
|
|
9032
|
-
},
|
|
9033
|
-
{
|
|
9034
|
-
"kind": "field",
|
|
9035
|
-
"name": "fields",
|
|
9036
|
-
"type": {
|
|
9037
|
-
"text": "Field[]"
|
|
9038
|
-
},
|
|
9039
|
-
"default": "[]"
|
|
8872
|
+
"text": "string"
|
|
8873
|
+
}
|
|
9040
8874
|
},
|
|
9041
8875
|
{
|
|
9042
8876
|
"kind": "field",
|
|
9043
|
-
"name": "
|
|
8877
|
+
"name": "sourceTyped",
|
|
9044
8878
|
"type": {
|
|
9045
|
-
"text": "
|
|
9046
|
-
}
|
|
9047
|
-
"default": "[]"
|
|
8879
|
+
"text": "string"
|
|
8880
|
+
}
|
|
9048
8881
|
},
|
|
9049
8882
|
{
|
|
9050
8883
|
"kind": "field",
|
|
9051
|
-
"name": "
|
|
8884
|
+
"name": "sourceTextField",
|
|
9052
8885
|
"type": {
|
|
9053
|
-
"text": "
|
|
9054
|
-
}
|
|
9055
|
-
"default": "false"
|
|
8886
|
+
"text": "TextField"
|
|
8887
|
+
}
|
|
9056
8888
|
},
|
|
9057
8889
|
{
|
|
9058
8890
|
"kind": "field",
|
|
9059
|
-
"name": "
|
|
8891
|
+
"name": "sourceSelect",
|
|
9060
8892
|
"type": {
|
|
9061
|
-
"text": "
|
|
8893
|
+
"text": "Select"
|
|
9062
8894
|
}
|
|
9063
8895
|
},
|
|
9064
8896
|
{
|
|
9065
8897
|
"kind": "field",
|
|
9066
|
-
"name": "
|
|
8898
|
+
"name": "reqRepItems",
|
|
9067
8899
|
"type": {
|
|
9068
|
-
"text": "
|
|
8900
|
+
"text": "array"
|
|
9069
8901
|
},
|
|
9070
|
-
"default": "[]"
|
|
8902
|
+
"default": "['REQUEST_1', 'REQUEST_2', 'REQUEST_3']"
|
|
9071
8903
|
},
|
|
9072
8904
|
{
|
|
9073
8905
|
"kind": "method",
|
|
9074
|
-
"name": "
|
|
8906
|
+
"name": "deleteParameter"
|
|
9075
8907
|
},
|
|
9076
8908
|
{
|
|
9077
8909
|
"kind": "method",
|
|
9078
|
-
"name": "
|
|
8910
|
+
"name": "parameterChanged"
|
|
9079
8911
|
},
|
|
9080
8912
|
{
|
|
9081
8913
|
"kind": "method",
|
|
9082
|
-
"name": "
|
|
8914
|
+
"name": "nameChanged"
|
|
9083
8915
|
},
|
|
9084
8916
|
{
|
|
9085
8917
|
"kind": "method",
|
|
9086
|
-
"name": "
|
|
8918
|
+
"name": "labelChanged"
|
|
9087
8919
|
},
|
|
9088
8920
|
{
|
|
9089
8921
|
"kind": "method",
|
|
9090
|
-
"name": "
|
|
9091
|
-
"parameters": [
|
|
9092
|
-
{
|
|
9093
|
-
"name": "_editedChild",
|
|
9094
|
-
"type": {
|
|
9095
|
-
"text": "ConditionNode"
|
|
9096
|
-
}
|
|
9097
|
-
}
|
|
9098
|
-
]
|
|
8922
|
+
"name": "typeChanged"
|
|
9099
8923
|
},
|
|
9100
8924
|
{
|
|
9101
8925
|
"kind": "method",
|
|
9102
|
-
"name": "
|
|
8926
|
+
"name": "sourceTypeChanged"
|
|
8927
|
+
},
|
|
8928
|
+
{
|
|
8929
|
+
"kind": "method",
|
|
8930
|
+
"name": "sourceSelectedChanged"
|
|
8931
|
+
},
|
|
8932
|
+
{
|
|
8933
|
+
"kind": "method",
|
|
8934
|
+
"name": "sourceTypedChanged"
|
|
8935
|
+
},
|
|
8936
|
+
{
|
|
8937
|
+
"kind": "method",
|
|
8938
|
+
"name": "genericChanged",
|
|
8939
|
+
"privacy": "private",
|
|
9103
8940
|
"parameters": [
|
|
9104
8941
|
{
|
|
9105
|
-
"name": "
|
|
9106
|
-
|
|
9107
|
-
|
|
9108
|
-
|
|
8942
|
+
"name": "parameterAttribute"
|
|
8943
|
+
},
|
|
8944
|
+
{
|
|
8945
|
+
"name": "value"
|
|
9109
8946
|
}
|
|
9110
8947
|
]
|
|
9111
|
-
},
|
|
9112
|
-
{
|
|
9113
|
-
"kind": "method",
|
|
9114
|
-
"name": "deleteSelf"
|
|
9115
8948
|
}
|
|
9116
8949
|
],
|
|
9117
8950
|
"events": [
|
|
9118
8951
|
{
|
|
9119
|
-
"description": "Fired when
|
|
8952
|
+
"description": "Fired when a parameter is deleted. detail: `ParameterBuilderEntity`",
|
|
9120
8953
|
"name": "delete"
|
|
9121
8954
|
},
|
|
9122
8955
|
{
|
|
9123
|
-
"description": "Fired when
|
|
8956
|
+
"description": "Fired when a parameter is edited. detail: `ParameterBuilderEntity`",
|
|
9124
8957
|
"name": "edit"
|
|
9125
8958
|
}
|
|
9126
8959
|
],
|
|
8960
|
+
"attributes": [
|
|
8961
|
+
{
|
|
8962
|
+
"name": "parameter",
|
|
8963
|
+
"type": {
|
|
8964
|
+
"text": "ParameterBuilderEntity"
|
|
8965
|
+
},
|
|
8966
|
+
"fieldName": "parameter"
|
|
8967
|
+
}
|
|
8968
|
+
],
|
|
9127
8969
|
"superclass": {
|
|
9128
8970
|
"name": "GenesisElement",
|
|
9129
8971
|
"package": "@genesislcap/web-core"
|
|
9130
8972
|
},
|
|
9131
|
-
"tagName": "
|
|
8973
|
+
"tagName": "parameter-builder",
|
|
9132
8974
|
"customElement": true
|
|
9133
8975
|
}
|
|
9134
8976
|
],
|
|
9135
8977
|
"exports": [
|
|
9136
8978
|
{
|
|
9137
8979
|
"kind": "js",
|
|
9138
|
-
"name": "
|
|
8980
|
+
"name": "ParameterBuilder",
|
|
9139
8981
|
"declaration": {
|
|
9140
|
-
"name": "
|
|
9141
|
-
"module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/
|
|
8982
|
+
"name": "ParameterBuilder",
|
|
8983
|
+
"module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.ts"
|
|
9142
8984
|
}
|
|
9143
8985
|
},
|
|
9144
8986
|
{
|
|
9145
8987
|
"kind": "custom-element-definition",
|
|
9146
|
-
"name": "
|
|
8988
|
+
"name": "parameter-builder",
|
|
9147
8989
|
"declaration": {
|
|
9148
|
-
"name": "
|
|
9149
|
-
"module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/
|
|
8990
|
+
"name": "ParameterBuilder",
|
|
8991
|
+
"module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.ts"
|
|
9150
8992
|
}
|
|
9151
8993
|
}
|
|
9152
8994
|
]
|
|
@@ -9417,6 +9259,164 @@
|
|
|
9417
9259
|
}
|
|
9418
9260
|
}
|
|
9419
9261
|
]
|
|
9262
|
+
},
|
|
9263
|
+
{
|
|
9264
|
+
"kind": "javascript-module",
|
|
9265
|
+
"path": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-group/template-condition-group.template.ts",
|
|
9266
|
+
"declarations": [
|
|
9267
|
+
{
|
|
9268
|
+
"kind": "variable",
|
|
9269
|
+
"name": "TemplateConditionGroupTemplate",
|
|
9270
|
+
"default": "html<TemplateConditionGroup>`\n ${when(\n (x) => !x.isFirst,\n html`\n <div class=\"join-toggle-row\">\n <div class=\"join-toggle\">\n <span\n class=\"join-text${(x) => classNames(['active', x.joinOperator === 'AND'])}\"\n @click=${(x) => (x.joinOperator = 'AND')}\n >\n AND\n </span>\n <span\n class=\"join-text${(x) => classNames(['active', x.joinOperator === 'OR'])}\"\n @click=${(x) => (x.joinOperator = 'OR')}\n >\n OR\n </span>\n </div>\n </div>\n `,\n )}\n <div class=\"condition-group-row\">\n <div class=\"condition-group-box\">\n ${repeat(\n (x) => x.groupChildren,\n html<ConditionNode, TemplateConditionGroup>`\n ${when(\n (x) => isGroup(x),\n html<ConditionNode>`\n <template-condition-group\n :fields=${(x, c) => c.parent.fields}\n :parameters=${(x, c) => c.parent.parameters}\n :node=${(x) => x}\n :isFirst=${(x, c) => c.index === 0}\n @edit=${(x, c) => c.parent.editChild(eventDetail(c))}\n @delete=${(x, c) => c.parent.deleteChild(eventDetail(c))}\n ></template-condition-group>\n `,\n )}\n ${when(\n (x) => !isGroup(x),\n html<ConditionNode>`\n <template-condition-builder\n :fields=${(x, c) => c.parent.fields}\n :parameters=${(x, c) => c.parent.parameters}\n :condition=${(x) => x}\n :isFirst=${(x, c) => c.index === 0}\n @edit=${(x, c) => c.parent.editChild(eventDetail(c))}\n @delete=${(x, c) => c.parent.deleteChild(eventDetail(c))}\n ></template-condition-builder>\n `,\n )}\n `,\n { positioning: true },\n )}\n\n <div class=\"content-row\">\n <rapid-button appearance=\"lightweight\" @click=${(x) => x.newCondition()}>\n + Condition\n </rapid-button>\n <rapid-button appearance=\"lightweight\" @click=${(x) => x.newGroup()}>+ Group</rapid-button>\n <rapid-button appearance=\"icon\" class=\"delete-group\" @click=${(x) => x.deleteSelf()}>\n <rapid-icon variant=\"regular\" name=\"trash-alt\" size=\"lg\" part=\"icon\"></rapid-icon>\n </rapid-button>\n </div>\n </div>\n </div>\n`"
|
|
9271
|
+
}
|
|
9272
|
+
],
|
|
9273
|
+
"exports": [
|
|
9274
|
+
{
|
|
9275
|
+
"kind": "js",
|
|
9276
|
+
"name": "TemplateConditionGroupTemplate",
|
|
9277
|
+
"declaration": {
|
|
9278
|
+
"name": "TemplateConditionGroupTemplate",
|
|
9279
|
+
"module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-group/template-condition-group.template.ts"
|
|
9280
|
+
}
|
|
9281
|
+
}
|
|
9282
|
+
]
|
|
9283
|
+
},
|
|
9284
|
+
{
|
|
9285
|
+
"kind": "javascript-module",
|
|
9286
|
+
"path": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-group/template-condition-group.ts",
|
|
9287
|
+
"declarations": [
|
|
9288
|
+
{
|
|
9289
|
+
"kind": "class",
|
|
9290
|
+
"description": "Parenthesized group of conditions/nested groups for notification template\ncriteria - see rule-condition-group for the rationale. Also forwards\n:parameters down to nested template-condition-builder rows so parameter\nbinding (USER_ENTRY) keeps working inside a group.",
|
|
9291
|
+
"name": "TemplateConditionGroup",
|
|
9292
|
+
"members": [
|
|
9293
|
+
{
|
|
9294
|
+
"kind": "field",
|
|
9295
|
+
"name": "node",
|
|
9296
|
+
"type": {
|
|
9297
|
+
"text": "ConditionGroupEntity"
|
|
9298
|
+
}
|
|
9299
|
+
},
|
|
9300
|
+
{
|
|
9301
|
+
"kind": "field",
|
|
9302
|
+
"name": "fields",
|
|
9303
|
+
"type": {
|
|
9304
|
+
"text": "Field[]"
|
|
9305
|
+
},
|
|
9306
|
+
"default": "[]"
|
|
9307
|
+
},
|
|
9308
|
+
{
|
|
9309
|
+
"kind": "field",
|
|
9310
|
+
"name": "parameters",
|
|
9311
|
+
"type": {
|
|
9312
|
+
"text": "Array<ParameterBuilderEntity>"
|
|
9313
|
+
},
|
|
9314
|
+
"default": "[]"
|
|
9315
|
+
},
|
|
9316
|
+
{
|
|
9317
|
+
"kind": "field",
|
|
9318
|
+
"name": "isFirst",
|
|
9319
|
+
"type": {
|
|
9320
|
+
"text": "boolean"
|
|
9321
|
+
},
|
|
9322
|
+
"default": "false"
|
|
9323
|
+
},
|
|
9324
|
+
{
|
|
9325
|
+
"kind": "field",
|
|
9326
|
+
"name": "joinOperator",
|
|
9327
|
+
"type": {
|
|
9328
|
+
"text": "string"
|
|
9329
|
+
}
|
|
9330
|
+
},
|
|
9331
|
+
{
|
|
9332
|
+
"kind": "field",
|
|
9333
|
+
"name": "groupChildren",
|
|
9334
|
+
"type": {
|
|
9335
|
+
"text": "ConditionNode[]"
|
|
9336
|
+
},
|
|
9337
|
+
"default": "[]"
|
|
9338
|
+
},
|
|
9339
|
+
{
|
|
9340
|
+
"kind": "method",
|
|
9341
|
+
"name": "nodeChanged"
|
|
9342
|
+
},
|
|
9343
|
+
{
|
|
9344
|
+
"kind": "method",
|
|
9345
|
+
"name": "joinOperatorChanged"
|
|
9346
|
+
},
|
|
9347
|
+
{
|
|
9348
|
+
"kind": "method",
|
|
9349
|
+
"name": "newCondition"
|
|
9350
|
+
},
|
|
9351
|
+
{
|
|
9352
|
+
"kind": "method",
|
|
9353
|
+
"name": "newGroup"
|
|
9354
|
+
},
|
|
9355
|
+
{
|
|
9356
|
+
"kind": "method",
|
|
9357
|
+
"name": "editChild",
|
|
9358
|
+
"parameters": [
|
|
9359
|
+
{
|
|
9360
|
+
"name": "_editedChild",
|
|
9361
|
+
"type": {
|
|
9362
|
+
"text": "ConditionNode"
|
|
9363
|
+
}
|
|
9364
|
+
}
|
|
9365
|
+
]
|
|
9366
|
+
},
|
|
9367
|
+
{
|
|
9368
|
+
"kind": "method",
|
|
9369
|
+
"name": "deleteChild",
|
|
9370
|
+
"parameters": [
|
|
9371
|
+
{
|
|
9372
|
+
"name": "deletedChild",
|
|
9373
|
+
"type": {
|
|
9374
|
+
"text": "ConditionNode"
|
|
9375
|
+
}
|
|
9376
|
+
}
|
|
9377
|
+
]
|
|
9378
|
+
},
|
|
9379
|
+
{
|
|
9380
|
+
"kind": "method",
|
|
9381
|
+
"name": "deleteSelf"
|
|
9382
|
+
}
|
|
9383
|
+
],
|
|
9384
|
+
"events": [
|
|
9385
|
+
{
|
|
9386
|
+
"description": "Fired when this whole group should be removed",
|
|
9387
|
+
"name": "delete"
|
|
9388
|
+
},
|
|
9389
|
+
{
|
|
9390
|
+
"description": "Fired when anything inside this group changes",
|
|
9391
|
+
"name": "edit"
|
|
9392
|
+
}
|
|
9393
|
+
],
|
|
9394
|
+
"superclass": {
|
|
9395
|
+
"name": "GenesisElement",
|
|
9396
|
+
"package": "@genesislcap/web-core"
|
|
9397
|
+
},
|
|
9398
|
+
"tagName": "template-condition-group",
|
|
9399
|
+
"customElement": true
|
|
9400
|
+
}
|
|
9401
|
+
],
|
|
9402
|
+
"exports": [
|
|
9403
|
+
{
|
|
9404
|
+
"kind": "js",
|
|
9405
|
+
"name": "TemplateConditionGroup",
|
|
9406
|
+
"declaration": {
|
|
9407
|
+
"name": "TemplateConditionGroup",
|
|
9408
|
+
"module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-group/template-condition-group.ts"
|
|
9409
|
+
}
|
|
9410
|
+
},
|
|
9411
|
+
{
|
|
9412
|
+
"kind": "custom-element-definition",
|
|
9413
|
+
"name": "template-condition-group",
|
|
9414
|
+
"declaration": {
|
|
9415
|
+
"name": "TemplateConditionGroup",
|
|
9416
|
+
"module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-group/template-condition-group.ts"
|
|
9417
|
+
}
|
|
9418
|
+
}
|
|
9419
|
+
]
|
|
9420
9420
|
}
|
|
9421
9421
|
]
|
|
9422
9422
|
}
|