@nyaruka/temba-components 0.138.0 → 0.138.6

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.
Files changed (76) hide show
  1. package/.devcontainer/Dockerfile +0 -9
  2. package/.devcontainer/devcontainer.json +8 -3
  3. package/.github/workflows/build.yml +6 -1
  4. package/.github/workflows/cla.yml +1 -1
  5. package/.github/workflows/publish.yml +6 -1
  6. package/CHANGELOG.md +39 -0
  7. package/dist/locales/es.js +5 -5
  8. package/dist/locales/es.js.map +1 -1
  9. package/dist/locales/fr.js +5 -5
  10. package/dist/locales/fr.js.map +1 -1
  11. package/dist/locales/locale-codes.js +11 -2
  12. package/dist/locales/locale-codes.js.map +1 -1
  13. package/dist/locales/pt.js +5 -5
  14. package/dist/locales/pt.js.map +1 -1
  15. package/dist/temba-components.js +131 -98
  16. package/dist/temba-components.js.map +1 -1
  17. package/out-tsc/src/display/FloatingTab.js +16 -8
  18. package/out-tsc/src/display/FloatingTab.js.map +1 -1
  19. package/out-tsc/src/flow/CanvasMenu.js +33 -15
  20. package/out-tsc/src/flow/CanvasMenu.js.map +1 -1
  21. package/out-tsc/src/flow/CanvasNode.js +4 -0
  22. package/out-tsc/src/flow/CanvasNode.js.map +1 -1
  23. package/out-tsc/src/flow/Editor.js +279 -55
  24. package/out-tsc/src/flow/Editor.js.map +1 -1
  25. package/out-tsc/src/flow/NodeTypeSelector.js +13 -11
  26. package/out-tsc/src/flow/NodeTypeSelector.js.map +1 -1
  27. package/out-tsc/src/flow/Plumber.js +1 -1
  28. package/out-tsc/src/flow/Plumber.js.map +1 -1
  29. package/out-tsc/src/flow/actions/set_contact_field.js +5 -1
  30. package/out-tsc/src/flow/actions/set_contact_field.js.map +1 -1
  31. package/out-tsc/src/list/RunList.js +2 -1
  32. package/out-tsc/src/list/RunList.js.map +1 -1
  33. package/out-tsc/src/list/TicketList.js +2 -1
  34. package/out-tsc/src/list/TicketList.js.map +1 -1
  35. package/out-tsc/src/live/ContactChat.js +18 -1
  36. package/out-tsc/src/live/ContactChat.js.map +1 -1
  37. package/out-tsc/src/locales/es.js +5 -5
  38. package/out-tsc/src/locales/es.js.map +1 -1
  39. package/out-tsc/src/locales/fr.js +5 -5
  40. package/out-tsc/src/locales/fr.js.map +1 -1
  41. package/out-tsc/src/locales/locale-codes.js +11 -2
  42. package/out-tsc/src/locales/locale-codes.js.map +1 -1
  43. package/out-tsc/src/locales/pt.js +5 -5
  44. package/out-tsc/src/locales/pt.js.map +1 -1
  45. package/out-tsc/src/store/AppState.js +5 -0
  46. package/out-tsc/src/store/AppState.js.map +1 -1
  47. package/out-tsc/test/temba-contact-fields.test.js +3 -3
  48. package/out-tsc/test/temba-contact-fields.test.js.map +1 -1
  49. package/out-tsc/test/temba-flow-editor-node.test.js +2 -1
  50. package/out-tsc/test/temba-flow-editor-node.test.js.map +1 -1
  51. package/out-tsc/test/temba-select.test.js +1 -0
  52. package/out-tsc/test/temba-select.test.js.map +1 -1
  53. package/package.json +1 -1
  54. package/screenshots/truth/floating-tab/gray.png +0 -0
  55. package/screenshots/truth/floating-tab/green.png +0 -0
  56. package/screenshots/truth/floating-tab/purple.png +0 -0
  57. package/screenshots/truth/node-type-selector/action-mode.png +0 -0
  58. package/screenshots/truth/node-type-selector/split-mode.png +0 -0
  59. package/src/display/FloatingTab.ts +18 -8
  60. package/src/flow/CanvasMenu.ts +38 -16
  61. package/src/flow/CanvasNode.ts +8 -0
  62. package/src/flow/Editor.ts +343 -58
  63. package/src/flow/NodeTypeSelector.ts +13 -11
  64. package/src/flow/Plumber.ts +1 -1
  65. package/src/flow/actions/set_contact_field.ts +5 -1
  66. package/src/list/RunList.ts +2 -1
  67. package/src/list/TicketList.ts +2 -1
  68. package/src/live/ContactChat.ts +19 -1
  69. package/src/locales/es.ts +18 -13
  70. package/src/locales/fr.ts +18 -13
  71. package/src/locales/locale-codes.ts +11 -2
  72. package/src/locales/pt.ts +18 -13
  73. package/src/store/AppState.ts +5 -0
  74. package/test/temba-contact-fields.test.ts +8 -3
  75. package/test/temba-flow-editor-node.test.ts +2 -1
  76. package/test/temba-select.test.ts +1 -0
@@ -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=dev-components",
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": "/workspaces/temba-components/.prettierrc",
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,47 @@ 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.6](https://github.com/nyaruka/temba-components/compare/v0.138.4...v0.138.6)
8
+
9
+ - Add ticket permission controls to ContactChat [`#811`](https://github.com/nyaruka/temba-components/pull/811)
10
+
11
+ #### [v0.138.4](https://github.com/nyaruka/temba-components/compare/v0.138.3...v0.138.4)
12
+
13
+ > 5 February 2026
14
+
15
+ - Update build command to include yarn install [`a15d622`](https://github.com/nyaruka/temba-components/commit/a15d622a281171fe391b8bd3c2cd4e36f9cf2f9f)
16
+
17
+ #### [v0.138.3](https://github.com/nyaruka/temba-components/compare/v0.138.2...v0.138.3)
18
+
19
+ > 5 February 2026
20
+
21
+ - Fix publish.yml to set required environment variables for devcontainer [`#810`](https://github.com/nyaruka/temba-components/pull/810)
22
+
23
+ #### [v0.138.2](https://github.com/nyaruka/temba-components/compare/v0.138.1...v0.138.2)
24
+
25
+ > 5 February 2026
26
+
27
+ #### [v0.138.1](https://github.com/nyaruka/temba-components/compare/v0.138.0...v0.138.1)
28
+
29
+ > 5 February 2026
30
+
31
+ - Fix flaky test in temba-contact-fields [`#809`](https://github.com/nyaruka/temba-components/pull/809)
32
+ - Fix query parameter handling in TicketList and RunList refresh endpoints [`#807`](https://github.com/nyaruka/temba-components/pull/807)
33
+ - Updates for ci container [`#808`](https://github.com/nyaruka/temba-components/pull/808)
34
+ - Update devcontainer mounts to use NYARUKA_HOME and explicit mount paths [`#806`](https://github.com/nyaruka/temba-components/pull/806)
35
+ - Restructure devcontainer to use single shared container [`#805`](https://github.com/nyaruka/temba-components/pull/805)
36
+ - Plumbing updates [`#801`](https://github.com/nyaruka/temba-components/pull/801)
37
+ - Add CLAUDE.md with devcontainer test instructions [`#804`](https://github.com/nyaruka/temba-components/pull/804)
38
+ - Fix FloatingTab to respect user-provided top values [`#803`](https://github.com/nyaruka/temba-components/pull/803)
39
+ - Make devcontainers workspace-specific [`#802`](https://github.com/nyaruka/temba-components/pull/802)
40
+ - Remove file [`cf03ee1`](https://github.com/nyaruka/temba-components/commit/cf03ee105645e7221d28b0b2c366908619762394)
41
+ - Add 'claude' to allowlist in CLA workflow [`fee7548`](https://github.com/nyaruka/temba-components/commit/fee75483c66b731ea927b0c667221959137f8f35)
42
+ - Add 'claude' to allowlist in CLA workflow [`caebec9`](https://github.com/nyaruka/temba-components/commit/caebec9e440e6ca17298daeff31e903564ac1942)
43
+
7
44
  #### [v0.138.0](https://github.com/nyaruka/temba-components/compare/v0.137.0...v0.138.0)
8
45
 
46
+ > 28 January 2026
47
+
9
48
  - Revison Browser [`#800`](https://github.com/nyaruka/temba-components/pull/800)
10
49
  - Add revision browser and tweak plumbing [`9f8e0fd`](https://github.com/nyaruka/temba-components/commit/9f8e0fddd0911474d50e00572c869dd8a6c9a523)
11
50
  - Revision treatment, plumbing fixes [`ec3dce7`](https://github.com/nyaruka/temba-components/commit/ec3dce77a5c30619c57dd62ab4deeafa76b8cff4)
@@ -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
@@ -1 +1 @@
1
- {"version":3,"file":"es.js","sourceRoot":"","sources":["../../../src/locales/es.ts"],"names":[],"mappings":"AAAA,mCAAmC;AACnC,gDAAgD;AAEhD,4CAA4C;AAC5C,uDAAuD;AAEvD,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,iBAAiB,EAAE,4CAA4C;IAC/D,iBAAiB,EAAE,YAAY;IAC/B,iBAAiB,EAAE,6BAA6B;IAChD,iBAAiB,EAAE,iCAAiC;IACpD,iBAAiB,EAAE,gDAAgD;CACpE,CAAC","sourcesContent":["// Do not modify this file by hand!\n// Re-generate this file by running lit-localize\n\n/* eslint-disable no-irregular-whitespace */\n/* eslint-disable @typescript-eslint/no-explicit-any */\n\nexport 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"]}
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 "]}
@@ -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
@@ -1 +1 @@
1
- {"version":3,"file":"fr.js","sourceRoot":"","sources":["../../../src/locales/fr.ts"],"names":[],"mappings":"AAAA,mCAAmC;AACnC,gDAAgD;AAEhD,4CAA4C;AAC5C,uDAAuD;AAEvD,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,iBAAiB,EAAE,YAAY;IAC/B,iBAAiB,EAAE,kCAAkC;IACrD,iBAAiB,EAAE,6BAA6B;IAChD,iBAAiB,EAAE,iCAAiC;IACpD,iBAAiB,EAAE,gDAAgD;CACpE,CAAC","sourcesContent":["// Do not modify this file by hand!\n// Re-generate this file by running lit-localize\n\n/* eslint-disable no-irregular-whitespace */\n/* eslint-disable @typescript-eslint/no-explicit-any */\n\nexport 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"]}
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 = [`es`, `fr`, `pt`];
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 = [`en`, `es`, `fr`, `pt`];
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,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,CAAU,CAAC;AAEzD;;GAEG;AACH,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAU,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 = [`es`, `fr`, `pt`] as const;\n\n/**\n * All valid project locale codes. Sorted lexicographically.\n */\nexport const allLocales = [`en`, `es`, `fr`, `pt`] as const;\n"]}
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"]}
@@ -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
@@ -1 +1 @@
1
- {"version":3,"file":"pt.js","sourceRoot":"","sources":["../../../src/locales/pt.ts"],"names":[],"mappings":"AAAA,mCAAmC;AACnC,gDAAgD;AAEhD,4CAA4C;AAC5C,uDAAuD;AAEvD,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,iBAAiB,EAAE,YAAY;IAC/B,iBAAiB,EAAE,kCAAkC;IACrD,iBAAiB,EAAE,6BAA6B;IAChD,iBAAiB,EAAE,iCAAiC;IACpD,iBAAiB,EAAE,gDAAgD;CACpE,CAAC","sourcesContent":["// Do not modify this file by hand!\n// Re-generate this file by running lit-localize\n\n/* eslint-disable no-irregular-whitespace */\n/* eslint-disable @typescript-eslint/no-explicit-any */\n\nexport 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"]}
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 "]}