@nyaruka/temba-components 0.138.0 → 0.138.4
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/.devcontainer/Dockerfile +0 -9
- package/.devcontainer/devcontainer.json +8 -3
- package/.github/workflows/build.yml +6 -1
- package/.github/workflows/cla.yml +1 -1
- package/.github/workflows/publish.yml +6 -1
- package/CHANGELOG.md +33 -0
- package/dist/locales/es.js +5 -5
- package/dist/locales/es.js.map +1 -1
- package/dist/locales/fr.js +5 -5
- package/dist/locales/fr.js.map +1 -1
- package/dist/locales/locale-codes.js +11 -2
- package/dist/locales/locale-codes.js.map +1 -1
- package/dist/locales/pt.js +5 -5
- package/dist/locales/pt.js.map +1 -1
- package/dist/temba-components.js +127 -94
- package/dist/temba-components.js.map +1 -1
- package/out-tsc/src/display/FloatingTab.js +16 -8
- package/out-tsc/src/display/FloatingTab.js.map +1 -1
- package/out-tsc/src/flow/CanvasMenu.js +33 -15
- package/out-tsc/src/flow/CanvasMenu.js.map +1 -1
- package/out-tsc/src/flow/CanvasNode.js +4 -0
- package/out-tsc/src/flow/CanvasNode.js.map +1 -1
- package/out-tsc/src/flow/Editor.js +279 -55
- package/out-tsc/src/flow/Editor.js.map +1 -1
- package/out-tsc/src/flow/NodeTypeSelector.js +13 -11
- package/out-tsc/src/flow/NodeTypeSelector.js.map +1 -1
- package/out-tsc/src/flow/Plumber.js +1 -1
- package/out-tsc/src/flow/Plumber.js.map +1 -1
- package/out-tsc/src/flow/actions/set_contact_field.js +5 -1
- package/out-tsc/src/flow/actions/set_contact_field.js.map +1 -1
- package/out-tsc/src/list/RunList.js +2 -1
- package/out-tsc/src/list/RunList.js.map +1 -1
- package/out-tsc/src/list/TicketList.js +2 -1
- package/out-tsc/src/list/TicketList.js.map +1 -1
- package/out-tsc/src/locales/es.js +5 -5
- package/out-tsc/src/locales/es.js.map +1 -1
- package/out-tsc/src/locales/fr.js +5 -5
- package/out-tsc/src/locales/fr.js.map +1 -1
- package/out-tsc/src/locales/locale-codes.js +11 -2
- package/out-tsc/src/locales/locale-codes.js.map +1 -1
- package/out-tsc/src/locales/pt.js +5 -5
- package/out-tsc/src/locales/pt.js.map +1 -1
- package/out-tsc/src/store/AppState.js +5 -0
- package/out-tsc/src/store/AppState.js.map +1 -1
- package/out-tsc/test/temba-contact-fields.test.js +3 -3
- package/out-tsc/test/temba-contact-fields.test.js.map +1 -1
- package/out-tsc/test/temba-flow-editor-node.test.js +2 -1
- package/out-tsc/test/temba-flow-editor-node.test.js.map +1 -1
- package/out-tsc/test/temba-select.test.js +1 -0
- package/out-tsc/test/temba-select.test.js.map +1 -1
- package/package.json +1 -1
- package/screenshots/truth/floating-tab/gray.png +0 -0
- package/screenshots/truth/floating-tab/green.png +0 -0
- package/screenshots/truth/floating-tab/purple.png +0 -0
- package/screenshots/truth/node-type-selector/action-mode.png +0 -0
- package/screenshots/truth/node-type-selector/split-mode.png +0 -0
- package/src/display/FloatingTab.ts +18 -8
- package/src/flow/CanvasMenu.ts +38 -16
- package/src/flow/CanvasNode.ts +8 -0
- package/src/flow/Editor.ts +343 -58
- package/src/flow/NodeTypeSelector.ts +13 -11
- package/src/flow/Plumber.ts +1 -1
- package/src/flow/actions/set_contact_field.ts +5 -1
- package/src/list/RunList.ts +2 -1
- package/src/list/TicketList.ts +2 -1
- package/src/locales/es.ts +18 -13
- package/src/locales/fr.ts +18 -13
- package/src/locales/locale-codes.ts +11 -2
- package/src/locales/pt.ts +18 -13
- package/src/store/AppState.ts +5 -0
- package/test/temba-contact-fields.test.ts +8 -3
- package/test/temba-flow-editor-node.test.ts +2 -1
- package/test/temba-select.test.ts +1 -0
package/.devcontainer/Dockerfile
CHANGED
|
@@ -6,16 +6,7 @@ ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium
|
|
|
6
6
|
ENV CHROME_PATH=/usr/bin/chromium
|
|
7
7
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
8
8
|
|
|
9
|
-
# Add minio configuration
|
|
10
|
-
ENV MINIO_ENDPOINT=http://minio:9000
|
|
11
|
-
ENV MINIO_PUBLIC_ENDPOINT=http://localhost:9000
|
|
12
|
-
ENV MINIO_ACCESS_KEY=root
|
|
13
|
-
ENV MINIO_SECRET_KEY=tembatemba
|
|
14
|
-
ENV MINIO_BUCKET=temba-attachments
|
|
15
|
-
|
|
16
9
|
RUN apt-get update \
|
|
17
10
|
&& apt-get install chromium fonts-noto-color-emoji dnsutils curl -y --no-install-recommends -qq
|
|
18
11
|
|
|
19
|
-
WORKDIR /workspaces/temba-components
|
|
20
|
-
RUN yarn install
|
|
21
12
|
USER node
|
|
@@ -8,13 +8,18 @@
|
|
|
8
8
|
3010
|
|
9
9
|
],
|
|
10
10
|
"runArgs": [
|
|
11
|
-
"--name=
|
|
11
|
+
"--name=temba-components",
|
|
12
12
|
"--network=textit_default",
|
|
13
13
|
"--hostname=temba-components",
|
|
14
14
|
"--add-host=minio:host-gateway"
|
|
15
15
|
],
|
|
16
|
+
"mounts": [
|
|
17
|
+
"source=${localEnv:NYARUKA_HOME}/temba-components,target=/workspaces/temba-components,type=bind,consistency=cached",
|
|
18
|
+
"source=${localEnv:CONDUCTOR_HOME}/workspaces,target=/workspaces/conductor,type=bind,consistency=cached"
|
|
19
|
+
],
|
|
20
|
+
"workspaceMount": "",
|
|
21
|
+
"workspaceFolder": "/workspaces/temba-components",
|
|
16
22
|
"remoteUser": "node",
|
|
17
|
-
"postCreateCommand": "sudo chown -R node /workspaces/temba-components/static/svg && sudo chown node /workspaces/temba-components && sudo chown node /workspaces/temba-components/screenshots && yarn install && echo 'Testing minio connection:' && curl -f http://minio:9000/minio/health/live || echo 'Minio connection failed - this is expected if minio is not running'",
|
|
18
23
|
"customizations": {
|
|
19
24
|
"vscode": {
|
|
20
25
|
"extensions": [
|
|
@@ -27,7 +32,7 @@
|
|
|
27
32
|
120
|
|
28
33
|
],
|
|
29
34
|
"prettier": {
|
|
30
|
-
"configPath": "
|
|
35
|
+
"configPath": ".prettierrc",
|
|
31
36
|
"documentSelectors": [
|
|
32
37
|
"*.{ts,js}"
|
|
33
38
|
]
|
|
@@ -20,12 +20,17 @@ jobs:
|
|
|
20
20
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
21
21
|
fetch-depth: 0
|
|
22
22
|
- run: docker network create --driver bridge textit_default
|
|
23
|
+
- name: Set environment variables
|
|
24
|
+
run: |
|
|
25
|
+
echo "NYARUKA_HOME=$(dirname ${{ github.workspace }})" >> $GITHUB_ENV
|
|
26
|
+
echo "CONDUCTOR_HOME=/tmp/conductor" >> $GITHUB_ENV
|
|
27
|
+
mkdir -p /tmp/conductor/workspaces
|
|
23
28
|
- name: Build and run dev container task
|
|
24
29
|
id: validate
|
|
25
30
|
uses: devcontainers/ci@v0.3
|
|
26
31
|
with:
|
|
27
32
|
runCmd: |
|
|
28
|
-
yarn validate 2>&1 | tee validate_output.log
|
|
33
|
+
yarn install && yarn validate 2>&1 | tee validate_output.log
|
|
29
34
|
exit ${PIPESTATUS[0]}
|
|
30
35
|
push: never
|
|
31
36
|
env: |
|
|
@@ -20,6 +20,6 @@ jobs:
|
|
|
20
20
|
path-to-signatures: 'signatures/version1/cla.json'
|
|
21
21
|
path-to-document: 'https://github.com/nyaruka/license/blob/main/TextIt_CLA.md'
|
|
22
22
|
branch: 'main'
|
|
23
|
-
allowlist: bot*,*copilot*,*github*
|
|
23
|
+
allowlist: bot*,*copilot*,*github*,*claude*
|
|
24
24
|
remote-organization-name: 'nyaruka'
|
|
25
25
|
remote-repository-name: 'legal'
|
|
@@ -16,10 +16,15 @@ jobs:
|
|
|
16
16
|
- name: Checkout (GitHub)
|
|
17
17
|
uses: actions/checkout@v4
|
|
18
18
|
- run: docker network create --driver bridge textit_default
|
|
19
|
+
- name: Set environment variables
|
|
20
|
+
run: |
|
|
21
|
+
echo "NYARUKA_HOME=$(dirname ${{ github.workspace }})" >> $GITHUB_ENV
|
|
22
|
+
echo "CONDUCTOR_HOME=/tmp/conductor" >> $GITHUB_ENV
|
|
23
|
+
mkdir -p /tmp/conductor/workspaces
|
|
19
24
|
- name: Build in dev container
|
|
20
25
|
uses: devcontainers/ci@v0.3
|
|
21
26
|
with:
|
|
22
|
-
runCmd: yarn run build
|
|
27
|
+
runCmd: yarn install && yarn run build
|
|
23
28
|
push: never
|
|
24
29
|
env: |
|
|
25
30
|
CI=true
|
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,41 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
#### [v0.138.4](https://github.com/nyaruka/temba-components/compare/v0.138.3...v0.138.4)
|
|
8
|
+
|
|
9
|
+
- Update build command to include yarn install [`a15d622`](https://github.com/nyaruka/temba-components/commit/a15d622a281171fe391b8bd3c2cd4e36f9cf2f9f)
|
|
10
|
+
|
|
11
|
+
#### [v0.138.3](https://github.com/nyaruka/temba-components/compare/v0.138.2...v0.138.3)
|
|
12
|
+
|
|
13
|
+
> 5 February 2026
|
|
14
|
+
|
|
15
|
+
- Fix publish.yml to set required environment variables for devcontainer [`#810`](https://github.com/nyaruka/temba-components/pull/810)
|
|
16
|
+
|
|
17
|
+
#### [v0.138.2](https://github.com/nyaruka/temba-components/compare/v0.138.1...v0.138.2)
|
|
18
|
+
|
|
19
|
+
> 5 February 2026
|
|
20
|
+
|
|
21
|
+
#### [v0.138.1](https://github.com/nyaruka/temba-components/compare/v0.138.0...v0.138.1)
|
|
22
|
+
|
|
23
|
+
> 5 February 2026
|
|
24
|
+
|
|
25
|
+
- Fix flaky test in temba-contact-fields [`#809`](https://github.com/nyaruka/temba-components/pull/809)
|
|
26
|
+
- Fix query parameter handling in TicketList and RunList refresh endpoints [`#807`](https://github.com/nyaruka/temba-components/pull/807)
|
|
27
|
+
- Updates for ci container [`#808`](https://github.com/nyaruka/temba-components/pull/808)
|
|
28
|
+
- Update devcontainer mounts to use NYARUKA_HOME and explicit mount paths [`#806`](https://github.com/nyaruka/temba-components/pull/806)
|
|
29
|
+
- Restructure devcontainer to use single shared container [`#805`](https://github.com/nyaruka/temba-components/pull/805)
|
|
30
|
+
- Plumbing updates [`#801`](https://github.com/nyaruka/temba-components/pull/801)
|
|
31
|
+
- Add CLAUDE.md with devcontainer test instructions [`#804`](https://github.com/nyaruka/temba-components/pull/804)
|
|
32
|
+
- Fix FloatingTab to respect user-provided top values [`#803`](https://github.com/nyaruka/temba-components/pull/803)
|
|
33
|
+
- Make devcontainers workspace-specific [`#802`](https://github.com/nyaruka/temba-components/pull/802)
|
|
34
|
+
- Remove file [`cf03ee1`](https://github.com/nyaruka/temba-components/commit/cf03ee105645e7221d28b0b2c366908619762394)
|
|
35
|
+
- Add 'claude' to allowlist in CLA workflow [`fee7548`](https://github.com/nyaruka/temba-components/commit/fee75483c66b731ea927b0c667221959137f8f35)
|
|
36
|
+
- Add 'claude' to allowlist in CLA workflow [`caebec9`](https://github.com/nyaruka/temba-components/commit/caebec9e440e6ca17298daeff31e903564ac1942)
|
|
37
|
+
|
|
7
38
|
#### [v0.138.0](https://github.com/nyaruka/temba-components/compare/v0.137.0...v0.138.0)
|
|
8
39
|
|
|
40
|
+
> 28 January 2026
|
|
41
|
+
|
|
9
42
|
- Revison Browser [`#800`](https://github.com/nyaruka/temba-components/pull/800)
|
|
10
43
|
- Add revision browser and tweak plumbing [`9f8e0fd`](https://github.com/nyaruka/temba-components/commit/9f8e0fddd0911474d50e00572c869dd8a6c9a523)
|
|
11
44
|
- Revision treatment, plumbing fixes [`ec3dce7`](https://github.com/nyaruka/temba-components/commit/ec3dce77a5c30619c57dd62ab4deeafa76b8cff4)
|
package/dist/locales/es.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable no-irregular-whitespace */
|
|
4
4
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
5
5
|
export const templates = {
|
|
6
|
-
scf1453991c986b25: `Tab para completar, enter para seleccionar`,
|
|
7
|
-
s73b4d70c02f4b4e0: `No options`,
|
|
8
|
-
s8f02e3a18ffc083a: `Are not currently in a flow`,
|
|
9
|
-
s638236250662c6b3: `Have sent a message in the last`,
|
|
10
|
-
s4788ee206c4570c7: `Have not started this flow in the last 90 days
|
|
6
|
+
'scf1453991c986b25': `Tab para completar, enter para seleccionar`,
|
|
7
|
+
's73b4d70c02f4b4e0': `No options`,
|
|
8
|
+
's8f02e3a18ffc083a': `Are not currently in a flow`,
|
|
9
|
+
's638236250662c6b3': `Have sent a message in the last`,
|
|
10
|
+
's4788ee206c4570c7': `Have not started this flow in the last 90 days`,
|
|
11
11
|
};
|
|
12
12
|
//# sourceMappingURL=es.js.map
|
package/dist/locales/es.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"es.js","sourceRoot":"","sources":["../../../src/locales/es.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"es.js","sourceRoot":"","sources":["../../../src/locales/es.ts"],"names":[],"mappings":"AACI,mCAAmC;AACnC,gDAAgD;AAKhD,4CAA4C;AAC5C,uDAAuD;AAEvD,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,mBAAmB,EAAE,4CAA4C;IACvE,mBAAmB,EAAE,YAAY;IACjC,mBAAmB,EAAE,6BAA6B;IAClD,mBAAmB,EAAE,iCAAiC;IACtD,mBAAmB,EAAE,gDAAgD;CAChE,CAAC","sourcesContent":["\n // Do not modify this file by hand!\n // Re-generate this file by running lit-localize\n\n \n \n\n /* eslint-disable no-irregular-whitespace */\n /* eslint-disable @typescript-eslint/no-explicit-any */\n\n export const templates = {\n 'scf1453991c986b25': `Tab para completar, enter para seleccionar`,\n's73b4d70c02f4b4e0': `No options`,\n's8f02e3a18ffc083a': `Are not currently in a flow`,\n's638236250662c6b3': `Have sent a message in the last`,\n's4788ee206c4570c7': `Have not started this flow in the last 90 days`,\n };\n "]}
|
package/dist/locales/fr.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable no-irregular-whitespace */
|
|
4
4
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
5
5
|
export const templates = {
|
|
6
|
-
s73b4d70c02f4b4e0: `No options`,
|
|
7
|
-
scf1453991c986b25: `Tab to complete, enter to select`,
|
|
8
|
-
s8f02e3a18ffc083a: `Are not currently in a flow`,
|
|
9
|
-
s638236250662c6b3: `Have sent a message in the last`,
|
|
10
|
-
s4788ee206c4570c7: `Have not started this flow in the last 90 days
|
|
6
|
+
's73b4d70c02f4b4e0': `No options`,
|
|
7
|
+
'scf1453991c986b25': `Tab to complete, enter to select`,
|
|
8
|
+
's8f02e3a18ffc083a': `Are not currently in a flow`,
|
|
9
|
+
's638236250662c6b3': `Have sent a message in the last`,
|
|
10
|
+
's4788ee206c4570c7': `Have not started this flow in the last 90 days`,
|
|
11
11
|
};
|
|
12
12
|
//# sourceMappingURL=fr.js.map
|
package/dist/locales/fr.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fr.js","sourceRoot":"","sources":["../../../src/locales/fr.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"fr.js","sourceRoot":"","sources":["../../../src/locales/fr.ts"],"names":[],"mappings":"AACI,mCAAmC;AACnC,gDAAgD;AAKhD,4CAA4C;AAC5C,uDAAuD;AAEvD,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,mBAAmB,EAAE,YAAY;IACvC,mBAAmB,EAAE,kCAAkC;IACvD,mBAAmB,EAAE,6BAA6B;IAClD,mBAAmB,EAAE,iCAAiC;IACtD,mBAAmB,EAAE,gDAAgD;CAChE,CAAC","sourcesContent":["\n // Do not modify this file by hand!\n // Re-generate this file by running lit-localize\n\n \n \n\n /* eslint-disable no-irregular-whitespace */\n /* eslint-disable @typescript-eslint/no-explicit-any */\n\n export const templates = {\n 's73b4d70c02f4b4e0': `No options`,\n'scf1453991c986b25': `Tab to complete, enter to select`,\n's8f02e3a18ffc083a': `Are not currently in a flow`,\n's638236250662c6b3': `Have sent a message in the last`,\n's4788ee206c4570c7': `Have not started this flow in the last 90 days`,\n };\n "]}
|
|
@@ -8,9 +8,18 @@ export const sourceLocale = `en`;
|
|
|
8
8
|
* The other locale codes that this application is localized into. Sorted
|
|
9
9
|
* lexicographically.
|
|
10
10
|
*/
|
|
11
|
-
export const targetLocales = [
|
|
11
|
+
export const targetLocales = [
|
|
12
|
+
`es`,
|
|
13
|
+
`fr`,
|
|
14
|
+
`pt`,
|
|
15
|
+
];
|
|
12
16
|
/**
|
|
13
17
|
* All valid project locale codes. Sorted lexicographically.
|
|
14
18
|
*/
|
|
15
|
-
export const allLocales = [
|
|
19
|
+
export const allLocales = [
|
|
20
|
+
`en`,
|
|
21
|
+
`es`,
|
|
22
|
+
`fr`,
|
|
23
|
+
`pt`,
|
|
24
|
+
];
|
|
16
25
|
//# sourceMappingURL=locale-codes.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"locale-codes.js","sourceRoot":"","sources":["../../../src/locales/locale-codes.ts"],"names":[],"mappings":"AAAA,mCAAmC;AACnC,iDAAiD;AAEjD;;GAEG;AACH,MAAM,CAAC,MAAM,YAAY,GAAG,IAAI,CAAC;AAEjC;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG,
|
|
1
|
+
{"version":3,"file":"locale-codes.js","sourceRoot":"","sources":["../../../src/locales/locale-codes.ts"],"names":[],"mappings":"AAAA,mCAAmC;AACnC,iDAAiD;AAEjD;;GAEG;AACH,MAAM,CAAC,MAAM,YAAY,GAAG,IAAI,CAAC;AAEjC;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,IAAI;IACJ,IAAI;IACJ,IAAI;CACI,CAAC;AAEX;;GAEG;AACH,MAAM,CAAC,MAAM,UAAU,GAAG;IACxB,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;CACI,CAAC","sourcesContent":["// Do not modify this file by hand!\n// Re-generate this file by running lit-localize.\n\n/**\n * The locale code that templates in this source code are written in.\n */\nexport const sourceLocale = `en`;\n\n/**\n * The other locale codes that this application is localized into. Sorted\n * lexicographically.\n */\nexport const targetLocales = [\n `es`,\n `fr`,\n `pt`,\n] as const;\n\n/**\n * All valid project locale codes. Sorted lexicographically.\n */\nexport const allLocales = [\n `en`,\n `es`,\n `fr`,\n `pt`,\n] as const;\n"]}
|
package/dist/locales/pt.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable no-irregular-whitespace */
|
|
4
4
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
5
5
|
export const templates = {
|
|
6
|
-
s73b4d70c02f4b4e0: `No options`,
|
|
7
|
-
scf1453991c986b25: `Tab to complete, enter to select`,
|
|
8
|
-
s8f02e3a18ffc083a: `Are not currently in a flow`,
|
|
9
|
-
s638236250662c6b3: `Have sent a message in the last`,
|
|
10
|
-
s4788ee206c4570c7: `Have not started this flow in the last 90 days
|
|
6
|
+
's73b4d70c02f4b4e0': `No options`,
|
|
7
|
+
'scf1453991c986b25': `Tab to complete, enter to select`,
|
|
8
|
+
's8f02e3a18ffc083a': `Are not currently in a flow`,
|
|
9
|
+
's638236250662c6b3': `Have sent a message in the last`,
|
|
10
|
+
's4788ee206c4570c7': `Have not started this flow in the last 90 days`,
|
|
11
11
|
};
|
|
12
12
|
//# sourceMappingURL=pt.js.map
|
package/dist/locales/pt.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pt.js","sourceRoot":"","sources":["../../../src/locales/pt.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"pt.js","sourceRoot":"","sources":["../../../src/locales/pt.ts"],"names":[],"mappings":"AACI,mCAAmC;AACnC,gDAAgD;AAKhD,4CAA4C;AAC5C,uDAAuD;AAEvD,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,mBAAmB,EAAE,YAAY;IACvC,mBAAmB,EAAE,kCAAkC;IACvD,mBAAmB,EAAE,6BAA6B;IAClD,mBAAmB,EAAE,iCAAiC;IACtD,mBAAmB,EAAE,gDAAgD;CAChE,CAAC","sourcesContent":["\n // Do not modify this file by hand!\n // Re-generate this file by running lit-localize\n\n \n \n\n /* eslint-disable no-irregular-whitespace */\n /* eslint-disable @typescript-eslint/no-explicit-any */\n\n export const templates = {\n 's73b4d70c02f4b4e0': `No options`,\n'scf1453991c986b25': `Tab to complete, enter to select`,\n's8f02e3a18ffc083a': `Are not currently in a flow`,\n's638236250662c6b3': `Have sent a message in the last`,\n's4788ee206c4570c7': `Have not started this flow in the last 90 days`,\n };\n "]}
|